blob: 440710888b6e87f7c2195f0257a3024aa4370964 (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/glade/glade-1.1.3.ebuild,v 1.1 2002/11/17 08:37:11 leonardop Exp $
IUSE="nls gnome"
S=${WORKDIR}/${P}
DESCRIPTION="Glade is a GUI Builder. This release is for GTK+ 2 and GNOME 2."
SRC_URI="mirror://gnome/sources/glade/1.1/${P}.tar.bz2"
HOMEPAGE="http://glade.gnome.org/"
SLOT="1"
LICENSE="GPL-2"
KEYWORDS="~x86 ~ppc ~sparc ~sparc64"
DEPEND="=x11-libs/gtk+-2*
=dev-libs/libxml2-2.4*
gnome? ( >=gnome-base/libgnomeui-2.0.0
>=gnome-base/libgnomecanvas-2.0.0
>=gnome-base/libbonoboui-2.0.0
>=gnome-base/libgnomeprint-1.114.0
>=gnome-base/libgnomeprintui-1.114.0 )"
RDEPEND="${DEPEND}
nls? ( sys-devel/gettext
>=dev-util/intltool-0.11 )
>=app-text/scrollkeeper-0.2"
src_compile() {
local myconf=""
use gnome || myconf="--disable-gnome"
use nls || myconf="${myconf} --disable-nls"
[ -n "$DEBUG" ] && myconf="$myconf --enable-debug"
econf \
--disable-gnome-db \
${myconf} || die "./configure failed"
emake || die "Compilation failed"
}
src_install() {
einstall || die "Installation failed"
dodoc AUTHORS COPYING* FAQ NEWS README* TODO
}
|