blob: 67ab1a5c1934d3f8f36ca1237dd4bd7aa4d5c8f7 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-themes/gtk-engines-smooth/gtk-engines-smooth-0.5.8.ebuild,v 1.6 2005/06/09 13:07:24 swegener Exp $
inherit gtk-engines2
MY_P="gtk-smooth-engine-${PV}"
IUSE=""
DESCRIPTION="GTK+1 and GTK+2 Smooth Theme Engine"
HOMEPAGE="http://sourceforge.net/projects/smooth-engine/"
SRC_URI="mirror://sourceforge/smooth-engine/${MY_P}.tar.gz"
KEYWORDS="~x86 ~alpha ~ppc ~amd64 sparc"
LICENSE="GPL-2"
SLOT="2"
S=${WORKDIR}/${MY_P}
DEPEND="${DEPEND}
!x11-themes/gnome-themes
gtk? ( media-libs/gdk-pixbuf )"
src_compile() {
local myconf
[ -n "${HAS_GTK1}" ] \
&& myconf="${myconf} --enable-gtk-1" \
|| myconf="${myconf} --disable-gtk-1"
[ -n "${HAS_GTK2}" ] \
&& myconf="${myconf} --enable-gtk-2" \
|| myconf="${myconf} --disable-gtk-2"
gtk-engines2_src_compile ${myconf}
}
|