blob: e306c10fb7c5bcf6034bdde41ad0c03104ea73a4 (
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
|
# Copyright 1999-2000 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/eclass/gtk-engines.eclass,v 1.15 2003/01/08 07:33:12 spider Exp $
# The gtk-engines eclass is inheritd by all gtk-engines-* ebuilds.
ECLASS=gtk-engines
INHERITED="$INHERITED $ECLASS"
[ -n "$DEBUG" ] && einfo "Entering gtk-engines.eclass"
[ -z "$DESCRIPTION" ] && DESCRIPTION="Based on the gtk-engines eclass"
[ -z "$HOMEPAGE" ] && HOMEPAGE="http://www.gnome.org/"
[ -z "$LICENSE" ] && LICENSE="GPL-2"
KEYWORDS="x86 ppc alpha"
newdepend /c virtual/x11
case "${SLOT}" in
"1" )
newdepend '=x11-libs/gtk+-1.2*' ;;
"2" )
newdepend '>=x11-libs/gtk+-2' ;;
* )
newdepend x11-libs/gtk+ ;;
esac
[ -n "$DEBUG" ] && einfo "SLOT is ${SLOT}"
MY_PN="${PN}"
INSTALL_FONTS=0
ENGINE=${PN/gtk-engines-/}
[ -n "$DEBUG" ] && einfo "ENGINE is ${ENGINE}"
case "${ENGINE}" in
"cleanice" )
[ "$SLOT" -eq "2" ] && MY_PN="gtk-engines-cleanice2" ;;
"crux" )
MY_PN="crux" ;;
"eazel" )
MY_PN="eazel-engine" ;;
"flat" )
[ "$SLOT" -eq "2" ] && MY_PN="gtk-flat-theme-2.0" ;;
"geramik" )
MY_PN="3952-Geramik" ;;
"lighthouseblue" )
MY_PN="lighthouseblue" ;;
"metal" | "notif" | "pixbuf" | "pixmap" | "raleigh" | "redmond95" )
MY_PN="gtk-engines"
if [ "$SLOT" -eq "2" ]
then
newdepend media-libs/gdk-pixbuf
DEPEND="${DEPEND} >=dev-util/pkgconfig-0.12.0"
# Do _NOT_ strip symbols in the build! Need both lines for Portage
# 1.8.9+
DEBUG="yes"
RESTRICT="nostrip"
# force debug information
CFLAGS="${CFLAGS} -g"
CXXFLAGS="${CXXFLAGS} -g"
else
newdepend '>=media-libs/imlib-1.8'
fi
;;
"mist" )
MY_PN="GTK-mist-engine" ;;
"thinice" )
[ "$SLOT" -eq "2" ] && MY_PN="gtk-thinice-engine" ;;
"xenophilia" )
MY_PN="xenophilia"
INSTALL_FONTS=1
;;
"xfce" )
MY_PN="gtk-xfce-engine" ;;
esac
MY_P="${MY_PN}-${PV}"
[ -n "$DEBUG" ] && einfo "MY_P is ${MY_P}"
if [ "X${ENGINE}" = "Xthinice" ] && [ "$SLOT" -eq "2" ]
then
SRC_URI="http://thinice.sourceforge.net/${MY_P}.tar.gz"
elif [ "X${ENGINE}" = "Xmist" ]
then
SRC_URI="http://ftp.gnome.org/pub/GNOME/teams/art.gnome.org/themes/gtk2/${MY_P}.tar.gz"
elif [ "X${ENGINE}" = "Xflat" ] && [ "$SLOT" -eq "2" ]
then
SRC_URI="http://download.freshmeat.net/themes/gtk2flat/gtk2flat-default.tar.gz"
elif [ "X${ENGINE}" = "Xgeramik" ]
then
SRC_URI="http://www.kde-look.org/content/files/${MY_P}.tar.gz"
elif [ "X${ENGINE}" = "Xxfce" ]
then
SRC_URI="mirror://sourceforge/xfce/${MY_P}.tar.gz"
elif [ "X${ENGINE}" = "Xlighthouseblue" ]
then
SRC_URI="mirror://sourceforge/lighthouseblue/${MY_P}.tar.gz"
elif [ "X${ENGINE}" = "Xcrux" ]
then
PVP=($(echo " $PV " | sed 's:[-\._]: :g'))
SRC_URI="mirror://gnome/sources/${MY_PN}/${PVP[0]}.${PVP[1]}/${MY_P}.tar.bz2"
elif [ "X${MY_PN}" = "Xgtk-engines" ] && [ "$SLOT" -eq "2" ]
then
SRC_URI="mirror://gnome/2.0.1/sources/${MY_PN}/${MY_P}.tar.bz2"
else
SRC_PATH=`echo ${MY_PN} | awk '{print substr($0,1,1);}'`
SRC_PATH="${SRC_PATH}/${MY_PN}/${MY_PN}_${PV}.orig.tar.gz"
SRC_URI="http://ftp.debian.org/debian/pool/main/$SRC_PATH"
fi
[ -n "$DEBUG" ] && einfo "SRC_URI is ${SRC_URI}"
gtk-engines_src_unpack() {
unpack ${A}
MY_DIR=`ls -t ${WORKDIR} | head -n 1`
mv $MY_DIR $S
}
gtk-engines_src_compile() {
econf || die "./configure failed"
[ "X${MY_PN}" = "Xgtk-engines" ] && cd ${ENGINE}
emake || die "Compilation failed"
}
gtk-engines_src_install() {
[ "X${MY_PN}" = "Xgtk-engines" ] && cd ${ENGINE}
# Some corrections to misc files
if [ "X${ENGINE}" = "Xxenophilia" ]
then
dodir /usr/X11R6/lib/X11/fonts/misc
mv fonts/Makefile fonts/Makefile.orig
sed -e 's:/usr:${D}/usr:' \
-e 's:local:misc:' \
-e '7,8d' \
fonts/Makefile.orig > fonts/Makefile || die
rm fonts/Makefile.orig
elif [ "X${ENGINE}" = "Xgeramik" ]
then
mv theme/gtk-2.0/gtkrc-2.0 theme/gtk-2.0/gtkrc-2.0.old
sed -e '9,10d' \
theme/gtk-2.0/gtkrc-2.0.old > theme/gtk-2.0/gtkrc-2.0
rm theme/gtk-2.0/gtkrc-2.0.old
fi
einstall \
THEME_DIR=${D}/usr/share/themes \
ENGINE_DIR=${D}/usr/lib/gtk/themes/engines \
|| die "Installation failed"
# Remove unwanted stuff, since some engines include GTK-1 and GTK-2
# support.
if [ "X${ENGINE}" = "Xmist" ]
then
if [ "$SLOT" -eq "2" ]
then
rm -rf ${D}/usr/lib/gtk ${D}/usr/share/themes/Mist/gtk
else
rm -rf ${D}/usr/lib/gtk-2.0 ${D}/usr/share/themes/Mist/gtk-2.0
fi
rm -rf ${D}/usr/share/themes/Mist/metacity-1
elif [ "X${ENGINE}" = "Xgeramik" ]
then
if [ "$SLOT" -eq "2" ]
then
mv ${D}/usr/share/themes/Geramik/gtk/*png \
${D}/usr/share/themes/Geramik/gtk-2.0
mv ${D}/usr/share/themes/Geramik/gtk-2.0/gtkrc-2.0 \
${D}/usr/share/themes/Geramik/gtk-2.0/gtkrc
rm -rf ${D}/usr/lib/gtk ${D}/usr/share/themes/Geramik/gtk
else
rm -rf ${D}/usr/lib/gtk-2.0 ${D}/usr/share/themes/Geramik/gtk-2.0
fi
fi
for doc in AUTHORS BUGS ChangeLog CONFIGURATION COPYING CUSTOMIZATION \
NEWS README THANKS TODO
do
[ -s $doc ] && dodoc $doc
done
}
gtk-engines_pkg_postinst() {
if [ "$INSTALL_FONTS" -ne 0 ]
then
echo ">>> Updating X fonts..."
mkfontdir /usr/X11R6/lib/X11/fonts/misc
xset fp rehash || fonts_notice
fi
}
gtk-engines_pkg_postrm() {
if [ "$INSTALL_FONTS" -ne 0 ]
then
echo ">>> Updating X fonts..."
mkfontdir /usr/X11R6/lib/X11/fonts/misc
xset fp rehash || fonts_notice
fi
}
fonts_notice() {
einfo "We can't reset the font path at the moment. You might want"
einfo "to run the following command manually:"
einfo ""
einfo " xset fp rehash"
}
EXPORT_FUNCTIONS src_unpack src_compile src_install pkg_postinst pkg_postrm
|