blob: 28aa270c86057ceafbea6cb1e080d13d4cdfdcf7 (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/gnome-extra/gal/gal-1.99.2.ebuild,v 1.2 2003/03/14 16:49:03 liquidx Exp $
IUSE="doc"
inherit libtool
S="${WORKDIR}/${P}"
DESCRIPTION="The Gnome Application Libraries"
# also appears in gnome.org, but their latest is only 1.99.1 - 13 Mar 03
SRC_URI="ftp://ftp.ximian.com/pub/ximian-evolution-beta/source/${P}.tar.gz"
HOMEPAGE="http://www.gnome.org/"
LICENSE="GPL-2 LGPL-2.1"
SLOT="2"
KEYWORDS="~x86"
RDEPEND=">=gnome-base/libgnomeprint-2.2.0
>=gnome-base/libgnomeprintui-2.2.1
>=gnome-base/libglade-2.0
>=gnome-base/libgnomeui-2.0
>=gnome-base/libgnomecanvas-2.0
>=dev-libs/libxml2-2.0"
DEPEND="sys-devel/gettext
doc? ( dev-util/gtk-doc )
${RDEPEND}"
src_compile() {
elibtoolize
local myconf=""
if [ -n "`use doc`" ]; then
myconf="${myconf} --enable-gtk-doc"
else
myconf="${myconf} --disable-gtk-doc"
fi
econf ${myconf} || die
make || die # parallel make doesn't work
}
src_install() {
make DESTDIR=${D} install || die
dodoc AUTHORS COPYING ChangeLog NEWS README
}
|