diff options
author | Troy Dack <tad@gentoo.org> | 2003-09-12 14:00:46 +0000 |
---|---|---|
committer | Troy Dack <tad@gentoo.org> | 2003-09-12 14:00:46 +0000 |
commit | 46917a0ac741c91a22896f9e3a598c8deb83ed1f (patch) | |
tree | d9a1ff7bca4724d34d8416e2ec94e3e271b460de /x11-themes | |
parent | Version Bump. Closes Bugs: #1194 #1285 #22222 #23948 #24711. (diff) | |
download | historical-46917a0ac741c91a22896f9e3a598c8deb83ed1f.tar.gz historical-46917a0ac741c91a22896f9e3a598c8deb83ed1f.tar.bz2 historical-46917a0ac741c91a22896f9e3a598c8deb83ed1f.zip |
Version Bump. Closes Bugs: #1194 #1285 #22222 #23948 #24711.
Diffstat (limited to 'x11-themes')
-rw-r--r-- | x11-themes/gentoo-artwork/Manifest | 4 | ||||
-rw-r--r-- | x11-themes/gentoo-artwork/files/digest-gentoo-artwork-0.3 | 2 | ||||
-rw-r--r-- | x11-themes/gentoo-artwork/gentoo-artwork-0.3.ebuild | 54 |
3 files changed, 58 insertions, 2 deletions
diff --git a/x11-themes/gentoo-artwork/Manifest b/x11-themes/gentoo-artwork/Manifest index 74e55ba12e0f..b106f60b3b78 100644 --- a/x11-themes/gentoo-artwork/Manifest +++ b/x11-themes/gentoo-artwork/Manifest @@ -1,6 +1,6 @@ MD5 4b8cc520183456276b096f539101b988 gentoo-artwork-0.1.ebuild 1454 -MD5 18fcf1afa0ab2896c4a72d4c5ccb9b26 gentoo-artwork-0.3.ebuild 1566 -MD5 4eb9ed13826359f22aa509b43e18d942 ChangeLog 967 +MD5 1a73fc744d3ec3f78c557d8461609771 gentoo-artwork-0.3.ebuild 1552 +MD5 7a61bacc33ffce9aa3806c986e588dc2 ChangeLog 967 MD5 531e0af9f10bbaadd404e7839a878e67 gentoo-artwork-0.2.ebuild 1200 MD5 b8c5bfac0a2e79768a670d0c7fd1de00 files/digest-gentoo-artwork-0.1 73 MD5 3c6661a5370f908cb34e79ddb98b658b files/digest-gentoo-artwork-0.2 141 diff --git a/x11-themes/gentoo-artwork/files/digest-gentoo-artwork-0.3 b/x11-themes/gentoo-artwork/files/digest-gentoo-artwork-0.3 new file mode 100644 index 000000000000..d056ba82db13 --- /dev/null +++ b/x11-themes/gentoo-artwork/files/digest-gentoo-artwork-0.3 @@ -0,0 +1,2 @@ +MD5 b767350c867c2b06d6897d9b99892068 gentoo-artwork-0.2.tar.bz2 8169652 +MD5 ca71fa5257bc0bccaf020245111f8086 gentoo-artwork-0.3.tar.bz2 24870943 diff --git a/x11-themes/gentoo-artwork/gentoo-artwork-0.3.ebuild b/x11-themes/gentoo-artwork/gentoo-artwork-0.3.ebuild new file mode 100644 index 000000000000..9986dc6ddf8d --- /dev/null +++ b/x11-themes/gentoo-artwork/gentoo-artwork-0.3.ebuild @@ -0,0 +1,54 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# $Header: /var/cvsroot/gentoo-x86/x11-themes/gentoo-artwork/gentoo-artwork-0.3.ebuild,v 1.1 2003/09/12 14:00:31 tad Exp $ + +DESCRIPTION="A collection of miscellaneous Gentoo Linux logos and artwork" +SRC_URI="mirror://gentoo/gentoo-artwork-0.2.tar.bz2 mirror://gentoo/gentoo-artwork-0.3.tar.bz2" +HOMEPAGE="http://www.gentoo.org/index-graphics.html" + +KEYWORDS="x86 ppc ~sparc" +LICENSE="GPL-2" +SLOT="0" +IUSE="kde" + +DEPEND="" + +src_unpack() { + unpack gentoo-artwork-0.2.tar.bz2 + # rename unpacked dir so that updated files get overwritten + mv ${WORKDIR}/gentoo-artwork-0.2 ${WORKDIR}/gentoo-artwork-0.3 + # remove misspelled files + rm ${S}/icons/gentoo/{32x32,48x48,64x64}/slypheed.png + unpack gentoo-artwork-0.3.tar.bz2 +} + +src_install() { + dodoc ${S}/pixmaps/CREDITS + + # pixmaps + dodir /usr/share/pixmaps/gentoo/{800x600,1024x768,1280x1024,1600x1200} + + for DIR in ${S}/pixmaps/{800x600,1024x768,1280x1024,1600x1200}; do + insinto /usr/share/pixmaps/gentoo/$(basename $DIR); + doins $DIR/*.png; + doins $DIR/*.jpg; + done + + if [ `use kde` ] ; then + # a Gentoo colour scheme for KDE + insinto ${KDEDIR}/share/apps/kdisplay/color-schemes + doins ${S}/misc/Gentoo.kcsrc + fi + + # Gentoo icons + dodir /usr/share/icons/gentoo + cp -pR ${S}/icons/gentoo/* ${D}/usr/share/icons/gentoo/ + + # grub splash images: + dodir /usr/share/grub/splashimages + + insinto /usr/share/grub/splashimages + doins ${S}/grub/*.xpm.gz + + dodoc ${S}/pixmaps/CREDITS +} |