blob: 3e084ebcf18e51aad08cbfcab35acc835675b069 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-themes/noia/noia-1.0.ebuild,v 1.1 2003/11/11 11:33:49 tad Exp $
inherit kde # not kde-base since we don't need c++ deps
need-kde 3
DESCRIPTION="Noia Icon Set for KDE"
SRC_URI="http://es.kde.org/downloads/noia-kde-icons-1.00.tgz"
HOMEPAGE="http://www.carlitus.net"
KEYWORDS="x86 ppc"
SLOT="0"
LICENSE="LGPL-2.1"
# stripping hangs and we've no binaries
RESTRICT="$RESTRICT nostrip"
src_unpack() {
unpack noia-kde-icons-1.00.tgz
mv "noia_kde_100" "${P}"
}
src_compile() {
return 1
}
src_install(){
dodir $PREFIX/share/icons/
cp -r ${S} ${D}/${PREFIX}/share/icons/
}
|