diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2002-08-30 08:06:26 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2002-08-30 08:06:26 +0000 |
commit | 7adf011e0206b004f827b193708279669a932ee3 (patch) | |
tree | 8a445bcef0b8e2f480bf7db042e6613c16a9855d /x11-themes/ikons | |
parent | re-added wmakerconf to here (diff) | |
download | historical-7adf011e0206b004f827b193708279669a932ee3.tar.gz historical-7adf011e0206b004f827b193708279669a932ee3.tar.bz2 historical-7adf011e0206b004f827b193708279669a932ee3.zip |
moved x11-misc/ikons to x11-themes/ikons
Diffstat (limited to 'x11-themes/ikons')
-rw-r--r-- | x11-themes/ikons/ChangeLog | 17 | ||||
-rw-r--r-- | x11-themes/ikons/files/digest-ikons-0.5.8 | 1 | ||||
-rw-r--r-- | x11-themes/ikons/ikons-0.5.8.ebuild | 31 |
3 files changed, 49 insertions, 0 deletions
diff --git a/x11-themes/ikons/ChangeLog b/x11-themes/ikons/ChangeLog new file mode 100644 index 000000000000..4a39c24af97d --- /dev/null +++ b/x11-themes/ikons/ChangeLog @@ -0,0 +1,17 @@ +# ChangeLog for x11-themes/ikons +# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL +# $Header: /var/cvsroot/gentoo-x86/x11-themes/ikons/ChangeLog,v 1.1 2002/08/30 08:06:26 seemant Exp $ + +*ikons-0.5.7 (1 Feb 2002) + + 30 Aug 2002; Seemant Kulleen <seemant@gentoo.org> * : + + Moved to x11-themes + + 1 Feb 2002; G.Bevin <gbevin@gentoo.org> ChangeLog : + + Added initial ChangeLog which should be updated whenever the package is + updated in any way. This changelog is targetted to users. This means that the + comments should well explained and written in clean English. The details about + writing correct changelogs are explained in the skel.ChangeLog file which you + can find in the root directory of the portage repository. diff --git a/x11-themes/ikons/files/digest-ikons-0.5.8 b/x11-themes/ikons/files/digest-ikons-0.5.8 new file mode 100644 index 000000000000..c6c400f0b95f --- /dev/null +++ b/x11-themes/ikons/files/digest-ikons-0.5.8 @@ -0,0 +1 @@ +MD5 a16c0af380869e7d1a34dbaa32bdee4c 602-iKons_058_devel.tar.gz 743088 diff --git a/x11-themes/ikons/ikons-0.5.8.ebuild b/x11-themes/ikons/ikons-0.5.8.ebuild new file mode 100644 index 000000000000..868c6db5ac17 --- /dev/null +++ b/x11-themes/ikons/ikons-0.5.8.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-themes/ikons/ikons-0.5.8.ebuild,v 1.1 2002/08/30 08:06:26 seemant Exp $ + +S="${WORKDIR}/iKons_058" +DESCRIPTION="iKons iconset for KDE 2.x" +SRC_URI="http://www.kde-look.org/content/files/602-iKons_058_devel.tar.gz" +HOMEPAGE="http://users.skynet.be/bk369046/icon.htm" +KEYWORDS="x86 sparc sparc64" +SLOT="0" +LICENSE="as-is" + +src_compile() { + + return 1 +} + +src_install(){ + + cd ${S} + if [ -d ${KDE2DIR} ] ; then + mkdir -p ${D}/${KDE2DIR}/share/icons/ + cp -rf ${S} ${D}/${KDE2DIR}/share/icons/iKons_058 + fi + + if [ -d ${KDE3DIR} ] ; then + mkdir -p ${D}/${KDE3DIR}/share/icons/ + cp -rf ${S} ${D}/${KDE3DIR}/share/icons/iKons_058 + fi + +} |