blob: 9986dc6ddf8d6324b33645f0cd02a9087b4c12f0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
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
}
|