diff options
Diffstat (limited to 'x11-themes/gentoo-artwork')
-rw-r--r-- | x11-themes/gentoo-artwork/ChangeLog | 11 | ||||
-rw-r--r-- | x11-themes/gentoo-artwork/files/digest-gentoo-artwork-0.2 | 2 | ||||
-rw-r--r-- | x11-themes/gentoo-artwork/gentoo-artwork-0.1.ebuild | 4 | ||||
-rw-r--r-- | x11-themes/gentoo-artwork/gentoo-artwork-0.2.ebuild | 52 |
4 files changed, 66 insertions, 3 deletions
diff --git a/x11-themes/gentoo-artwork/ChangeLog b/x11-themes/gentoo-artwork/ChangeLog index 5bd9e1ad9e87..1afbf8afc34a 100644 --- a/x11-themes/gentoo-artwork/ChangeLog +++ b/x11-themes/gentoo-artwork/ChangeLog @@ -1,9 +1,18 @@ # ChangeLog for x11-themes/gentoo-artwork # Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-themes/gentoo-artwork/ChangeLog,v 1.2 2003/02/12 09:46:07 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-themes/gentoo-artwork/ChangeLog,v 1.3 2003/04/05 14:57:18 tad Exp $ + +*gentoo-artwork-0.2 (06 Apr 2003) + + 06 Apr 2003; Troy Dack <tad@gentoo.org> gentoo-artwork-0.1.ebuild, + gentoo-artwork-0.2.ebuild: Version bump, inclusion of Gentoo icons + from website, noia icons removed. *gentoo-artwork-0.1 (01 Feb 2003) + 18 Feb 2003; Troy Dack <tad@gentoo.org> gentoo-arwork-0.1.ebuild : + SRC_URI updated. + 01 Feb 2003; Troy Dack <tad@gentoo.org> gentoo-artwork-0.1.ebuild, Changelog, digest-gentoo-artwork-0.1 : Initial ebuild. See /usr/share/pixmaps/gentoo/CREDITS for contributor details. diff --git a/x11-themes/gentoo-artwork/files/digest-gentoo-artwork-0.2 b/x11-themes/gentoo-artwork/files/digest-gentoo-artwork-0.2 new file mode 100644 index 000000000000..bf9bb4121574 --- /dev/null +++ b/x11-themes/gentoo-artwork/files/digest-gentoo-artwork-0.2 @@ -0,0 +1,2 @@ +MD5 47983085ccd7d5ee19e7b39e1f3f8160 /gentoo-artwork-0.2.ebuild 1236 +MD5 e906f23950e80a4e6f8757a9c6aa3a79 gentoo-artwork-0.2.tar.bz2 8169186 diff --git a/x11-themes/gentoo-artwork/gentoo-artwork-0.1.ebuild b/x11-themes/gentoo-artwork/gentoo-artwork-0.1.ebuild index 6cc022913cb5..212230eb71ef 100644 --- a/x11-themes/gentoo-artwork/gentoo-artwork-0.1.ebuild +++ b/x11-themes/gentoo-artwork/gentoo-artwork-0.1.ebuild @@ -1,12 +1,12 @@ # 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.1.ebuild,v 1.2 2003/02/13 17:37:39 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-themes/gentoo-artwork/gentoo-artwork-0.1.ebuild,v 1.3 2003/04/05 14:57:18 tad Exp $ S=${WORKDIR}/${P} DESCRIPTION="A collection of miscellaneous Gentoo Linux logos and artwork" -SRC_URI="http://gentoo.tkdack.com/downloads/gentoo/gentoo-artwork-${PV}.tar.bz2" +SRC_URI="mirrors://gentoo/gentoo-artwork-${PV}.tar.bz2" HOMEPAGE="http://www.gentoo.org/index-graphics.html" diff --git a/x11-themes/gentoo-artwork/gentoo-artwork-0.2.ebuild b/x11-themes/gentoo-artwork/gentoo-artwork-0.2.ebuild new file mode 100644 index 000000000000..57027b6108f4 --- /dev/null +++ b/x11-themes/gentoo-artwork/gentoo-artwork-0.2.ebuild @@ -0,0 +1,52 @@ +# 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.2.ebuild,v 1.1 2003/04/05 14:57:18 tad Exp $ + +S=${WORKDIR}/${P} + +DESCRIPTION="A collection of miscellaneous Gentoo Linux logos and artwork" + +SRC_URI="mirrors://gentoo/gentoo-artwork-${PV}.tar.bz2" + +HOMEPAGE="http://www.gentoo.org/index-graphics.html" + +KEYWORDS="~x86 ~ppc ~sparc" + +LICENSE="GPL-2" + +SLOT="0" + +IUSE="kde" + +DEPEND="" + +RDEPEND="kde? ( >=x11-libs/qt-3.0.5 + >=kde-base/kdebase-3.0.2 )" + +src_install () { + + # pixmaps + dodir /usr/share/pixmaps/gentoo/{800x600,1024x768,1280x1024} + + for DIR in ${S}/pixmaps/{800x600,1024x768,1280x1024}; do + insinto /usr/share/pixmaps/gentoo/$(basename $DIR); + doins $DIR/*.png; + doins $DIR/*.jpg; + done + + use kde && ( + # a Gentoo colour scheme for KDE + insinto ${KDEDIR}/share/apps/kdisplay/color-schemes + doins ${S}/misc/Gentoo.kcsrc + ) + + # 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 +} |