summaryrefslogtreecommitdiff
blob: ace68e818103117d52479d652e84e783972366c9 (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
# 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.8 2002/10/25 19:55:52 vapier Exp $

# The gtk-engines eclass is inheritd by all gtk-engines-* ebuilds.

inherit base

ECLASS=gtk-engines
INHERITED="$INHERITED $ECLASS"

DESCRIPTION="Based on the ${ECLASS} eclass"
HOMEPAGE="http://www.gnome.org/"
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

MY_PN="${PN}"
INSTALL_FONTS=0
ENGINE=${PN/gtk-engines-/}

case "${ENGINE}" in
	"cleanice" )
		[ "$SLOT" -eq "2" ] && MY_PN="gtk-engines-cleanice2" ;;
	"crux" )
		MY_PN="crux"
		newdepend '>=gnome-base/libgnomeui-2.0.1' \
			'>=gnome-base/libglade-2.0.0'
		DEPEND="${DEPEND} sys-devel/libtool"
		;;
	"eazel" )
		MY_PN="eazel-engine"
		newdepend media-libs/gdk-pixbuf
		# This one needs the capplet stuff from gnomecc-1.4.  Some
		# tests also need libglade, but it is a heavy dep, so dont
		# know if we should rather disabled the tests...
		[ "${SLOT}" -eq 1 ] && newdepend "=gnome-base/control-center-1.4*"
		;;
	"gtkstep" )
		LICENSE="LGPL-2" ;;
	"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
		;;
	"thinice" )
		[ "$SLOT" -eq "2" ] && MY_PN="gtk-thinice-engine" ;;
	"xenophilia" )
		MY_PN="xenophilia"
		INSTALL_FONTS=1
		LICENSE="LGPL-2"
		;;
	"xfce" )
		MY_PN="gtk-xfce-engine" ;;
esac

MY_P="${MY_PN}-${PV}"

if [ "X${ENGINE}" = "Xthinice" ] && [ "$SLOT" -eq "2" ]
then
	SRC_URI="http://thinice.sourceforge.net/${MY_P}.tar.gz"
	
elif [ "X${ENGINE}" = "Xxfce" ]
then
	SRC_URI="mirror://sourceforge/xfce/${MY_P}.tar.gz"
	
elif [ "X${ENGINE}" = "Xcrux" ]
then
	SRC_URI="mirror://gnome/2.0.1/sources/${MY_PN}/${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


gtk-engines_src_unpack() {
	unpack ${A}
	
	MY_DIR=`ls -t ${WORKDIR} | head -n 1`

	mv $MY_DIR $S
}

gtk-engines_src_compile() {
	econf || die "Configuration failed"
	
	if [ "X${MY_PN}" = "Xgtk-engines" ]
	then
		cd ${ENGINE}
	fi
	
	emake || die "Compilation failed"
}

gtk-engines_src_install() {
	if [ "X${MY_PN}" = "Xgtk-engines" ]
	then
		cd ${ENGINE}
	fi

	if [ "X${MY_PN}" = "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
	fi

	einstall \
		THEME_DIR=${D}/usr/share/themes \
		ENGINE_DIR=${D}/usr/lib/gtk/themes/engines || \
		die "Installation failed"
	
	for doc in AUTHORS BUGS ChangeLog CONFIGURATION COPYING CUSTOMIZATION \
		INSTALL 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 ""
	einfo "*************************************************************"
	einfo ""
	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"
	einfo ""
	einfo "*************************************************************"
	einfo ""
}
										
EXPORT_FUNCTIONS src_unpack src_compile src_install pkg_postinst pkg_postrm