blob: f0ea2f65a30e3e7660e3f31920edede4c3aa5f04 (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-themes/gtk-engines/gtk-engines-2.2.0.ebuild,v 1.11 2003/10/18 22:54:00 brad_mssw Exp $
inherit gtk-engines2 gnuconfig
GTK1_VER="0.12"
GTK2_VER="${PV}"
PVP=($(echo " $PV " | sed 's:[-\._]: :g'))
DESCRIPTION="GTK+1 and GTK+2 Theme Engines from GNOME including Pixmap, Metal, Raleigh, Redmond95, Raleigh and Notif"
HOMEPAGE=""
SRC_URI="mirror://gnome/sources/${PN}/${GTK1_VER}/${PN}-${GTK1_VER}.tar.gz
mirror://gnome/sources/${PN}/${PVP[0]}.${PVP[1]}/${PN}-${GTK2_VER}.tar.gz"
KEYWORDS="x86 ppc ~sparc alpha amd64"
LICENSE="GPL-2"
IUSE=""
SLOT="0"
#PROVIDE="x11-themes/gtk-engines-metal
# x11-themes/gtk-engines-notif
# x11-themes/gtk-engines-pixmap
# x11-themes/gtk-engines-pixbuf
# x11-themes/gtk-engines-raleigh
# x11-themes/gtk-engines-redmond95"
[ -n "${HAS_GTK1}" ] && newdepend ">=media-libs/imlib-1.8"
GTK1_S=${WORKDIR}/${PN}-${GTK1_VER}
GTK2_S=${WORKDIR}/${PN}-${GTK2_VER}
src_unpack() {
unpack ${A}
if use alpha || use amd64; then
gnuconfig_update || die 'gnuconfig_update failed'
( cd $GTK1_S && libtoolize --force ) || die 'libtoolize1 failed'
( cd $GTK2_S && libtoolize --force ) || die 'libtoolize2 failed'
fi
}
|