diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2007-12-30 23:15:28 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2007-12-30 23:15:28 +0000 |
commit | 2e91320e74aeb0eed0e2df75ee0ec20e2c879b80 (patch) | |
tree | c38740091bb4dcd2a16804f7ee6e3663b3735887 /x11-themes/nuvox/nuvox-07.1.ebuild | |
parent | Version bump #203833 by Philip Ludlam. (diff) | |
download | gentoo-2-2e91320e74aeb0eed0e2df75ee0ec20e2c879b80.tar.gz gentoo-2-2e91320e74aeb0eed0e2df75ee0ec20e2c879b80.tar.bz2 gentoo-2-2e91320e74aeb0eed0e2df75ee0ec20e2c879b80.zip |
Initial import of nuvox, an icon theme for KDE (and other FDO-compliant desktop environments).
(Portage version: 2.1.4_rc12)
Diffstat (limited to 'x11-themes/nuvox/nuvox-07.1.ebuild')
-rw-r--r-- | x11-themes/nuvox/nuvox-07.1.ebuild | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/x11-themes/nuvox/nuvox-07.1.ebuild b/x11-themes/nuvox/nuvox-07.1.ebuild new file mode 100644 index 000000000000..c1c1247617f7 --- /dev/null +++ b/x11-themes/nuvox/nuvox-07.1.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-themes/nuvox/nuvox-07.1.ebuild,v 1.1 2007/12/30 23:15:28 flameeyes Exp $ + +MY_P="nuvoX_${PV}" + +DESCRIPTION="NuvoX SVG icon theme." +SRC_URI="mirror://gentoo/${MY_P}.tar.gz" +HOMEPAGE="http://www.kde-look.org/content/show.php?content=38467" +LICENSE="GPL-2" + +IUSE="" +KEYWORDS="~amd64" +SLOT="0" + +RESTRICT="strip binchecks" + +S="${WORKDIR}/${MY_P}" + +DEPEND="media-gfx/imagemagick" +RDEPEND="" + +src_unpack() { + unpack ${A} + + sed -i \ + -e '/rm -fr/d' \ + -e '/tar cf/d' \ + "${S}/buildset" +} + +src_compile() { + ./buildset || die "unable to build icon sets." +} + +src_install() { + dodoc nuvoX_0.7/readme.txt + rm nuvoX_0.7/{readme,license}.txt + + insinto /usr/share/icons/${PN} + doins -r nuvoX_0.7/* +} |