diff options
author | Mike Frysinger <vapier@gentoo.org> | 2002-11-30 22:27:20 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2002-11-30 22:27:20 +0000 |
commit | c0c2031e7ab23f81ed4cf7c7cbecef3847c0e583 (patch) | |
tree | 3be2e794a62edf0c41a6abced89daaa5a061766a /x11-themes/psi-themes | |
parent | Changed einstall||die to einstall (diff) | |
download | gentoo-2-c0c2031e7ab23f81ed4cf7c7cbecef3847c0e583.tar.gz gentoo-2-c0c2031e7ab23f81ed4cf7c7cbecef3847c0e583.tar.bz2 gentoo-2-c0c2031e7ab23f81ed4cf7c7cbecef3847c0e583.zip |
cleanup
Diffstat (limited to 'x11-themes/psi-themes')
-rw-r--r-- | x11-themes/psi-themes/psi-themes-0.8.7.ebuild | 37 |
1 files changed, 11 insertions, 26 deletions
diff --git a/x11-themes/psi-themes/psi-themes-0.8.7.ebuild b/x11-themes/psi-themes/psi-themes-0.8.7.ebuild index 5e1c34c2d9db..bead934ad912 100644 --- a/x11-themes/psi-themes/psi-themes-0.8.7.ebuild +++ b/x11-themes/psi-themes/psi-themes-0.8.7.ebuild @@ -1,18 +1,16 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-themes/psi-themes/psi-themes-0.8.7.ebuild,v 1.1 2002/11/03 15:15:28 verwilst Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-themes/psi-themes/psi-themes-0.8.7.ebuild,v 1.2 2002/11/30 22:27:20 vapier Exp $ -S=${WORKDIR}/${P} SRC_URI="http://psi.sourceforge.net/files/common/iconsets/beos/beos.zip -http://psi.sourceforge.net/files/common/iconsets/cosmic/cosmic.zip -http://psi.sourceforge.net/files/common/iconsets/gabber/gabber.zip -http://psi.sourceforge.net/files/common/iconsets/icq2/icq2.zip -http://psi.sourceforge.net/files/common/iconsets/licq/licq.zip -http://psi.sourceforge.net/files/common/iconsets/mike/mike.zip -http://psi.sourceforge.net/files/common/iconsets/smiley/smiley.zip" - + http://psi.sourceforge.net/files/common/iconsets/cosmic/cosmic.zip + http://psi.sourceforge.net/files/common/iconsets/gabber/gabber.zip + http://psi.sourceforge.net/files/common/iconsets/icq2/icq2.zip + http://psi.sourceforge.net/files/common/iconsets/licq/licq.zip + http://psi.sourceforge.net/files/common/iconsets/mike/mike.zip + http://psi.sourceforge.net/files/common/iconsets/smiley/smiley.zip" DESCRIPTION="Iconsets for Psi, a QT 3.x Jabber Client" -HOMEPAGE="http://psi.affinix.com" +HOMEPAGE="http://psi.affinix.com/" SLOT="0" LICENSE="GPL-2" @@ -21,22 +19,9 @@ KEYWORDS="x86 ppc" DEPEND=">=net-im/psi-0.8.7 app-arch/unzip" -SETS="beos cosmic gabber icq2 licq mike smiley" - -src_unpack() { - -for x in ${SETS}; do - cp ${DISTDIR}/${x}.zip ${WORKDIR} - unzip ${WORKDIR}/${x}.zip -done - -} +S=${WORKDIR} src_install() { - - mkdir -p ${D}/usr/share/psi/iconsets - - for x in ${SETS}; do - cp -r ${WORKDIR}/${x} ${D}/usr/share/psi/iconsets/ - done + dodir /usr/share/psi/iconsets + mv * ${D}/usr/share/psi/iconsets/ } |