blob: b1986b2c494cbc8c116f323cdf0f4be292b9c5e8 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/gnome-base/libgnomeui/libgnomeui-2.12.0.ebuild,v 1.3 2006/01/22 02:24:19 tsunam Exp $
inherit eutils gnome2
DESCRIPTION="User Interface routines for Gnome"
HOMEPAGE="http://www.gnome.org/"
LICENSE="LGPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 sparc x86"
IUSE="doc jpeg static"
RDEPEND=">=gnome-base/libgnome-2
>=gnome-base/libgnomecanvas-2
>=gnome-base/libbonoboui-2
>=gnome-base/gconf-2
>=x11-libs/pango-1.1.2
>=x11-libs/gtk+-2.6
>=gnome-base/gnome-vfs-2.7.3
>=gnome-base/libglade-2
>=gnome-base/gnome-keyring-0.4
>=dev-libs/popt-1.5
jpeg? ( media-libs/jpeg )"
DEPEND="${RDEPEND}
>=dev-util/pkgconfig-0.9
doc? ( >=dev-util/gtk-doc-1 )"
PDEPEND="x11-themes/gnome-themes
x11-themes/gnome-icon-theme"
DOCS="AUTHORS ChangeLog NEWS README"
USE_DESTDIR="1"
pkg_setup() {
G2CONF="$(use_enable static) $(use_with jpeg libjpeg)"
}
src_unpack() {
unpack "${A}"
cd "${S}"
# cleanliness is ... (#68698)
epatch ${FILESDIR}/${PN}-2.8.0-ditch_ancient_pics.patch
# Remove unnecessary esound/audofile checks and implement the
# --without-jpeg switch
epatch ${FILESDIR}/${PN}-2.10.1-gentoo.patch
export WANT_AUTOMAKE=1.7
cp aclocal.m4 old_macros.m4
aclocal -I . || die "aclocal failed"
autoconf || die "autoconf failed"
automake || die "automake failed"
}
|