blob: 8fef417c30795aeecaff59f2ab147279d693c722 (
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/gnome-extra/gal/gal-0.24.ebuild,v 1.11 2004/02/11 01:30:05 vapier Exp $
inherit gnome.org libtool
DESCRIPTION="The Gnome Application Libraries"
HOMEPAGE="http://www.gnome.org/"
LICENSE="GPL-2 LGPL-2.1"
SLOT="0"
KEYWORDS="x86 ppc sparc alpha hppa ~amd64"
IUSE="nls doc"
RDEPEND=">=dev-libs/libxml-1.8.16
>=gnome-base/gnome-print-0.34
=gnome-base/libglade-0*
=x11-libs/gtk+-1.2*
<gnome-base/gnome-vfs-1.9.0
>=dev-libs/libunicode-0.4-r1
media-libs/gdk-pixbuf"
DEPEND="nls? ( sys-devel/gettext )
>=dev-util/intltool-0.11
dev-lang/perl
doc? ( dev-util/gtk-doc )
${RDEPEND}"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/${P}-sgml-1.patch
}
src_compile() {
elibtoolize
local myconf=""
use nls || myconf="--disable-nls"
if [ -n "`use doc`" ]; then
myconf="${myconf} --enable-gtk-doc"
else
myconf="${myconf} --disable-gtk-doc"
fi
./configure --host=${CHOST} \
--prefix=/usr \
--sysconfdir=/etc \
--localstatedir=/var/lib \
${myconf} || die
if use alpha; then
# This program doesn't link on alpha, at least with the
# variety of CFLAGS I tried. It isn't installed, so just fake
# out that it built correctly. (19 Aug 2003 agriffis)
touch -d 'next year' gal/e-text/e-completion-test
fi
make || die # Doesn't work with -j 4 (hallski)
}
src_install() {
make prefix=${D}/usr \
sysconfdir=${D}/etc \
localstatedir=${D}/var/lib \
install || die
# Add some type of backward compat...
local fullname="`eval basename \`readlink ${D}/usr/lib/libgal.so\``"
dosym ${fullname##*/} /usr/lib/libgal.so.$((`echo ${PV} | cut -d. -f2`-1))
# gal-0.23 provides libgal.so.21, and its compatible with 0.24
# so we add this symlink for more backwards compatibility - liquidx.
dosym ${fullname##*/} /usr/lib/libgal.so.21
dodoc AUTHORS COPYING ChangeLog NEWS README
}
pkg_postinst() {
einfo "If you upgraded gal, you must emerge gtkhtml again to prevent breakage."
}
|