blob: 4415d2a5edd0f4f2b3d43c263afaa6ceea80bdff (
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-extra/libgsf/libgsf-1.14.2.ebuild,v 1.6 2006/12/05 21:41:42 corsair Exp $
inherit eutils gnome2
DESCRIPTION="The GNOME Structured File Library"
HOMEPAGE="http://www.gnome.org/"
LICENSE="GPL-2 LGPL-2.1"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ppc ppc64 ~sh sparc x86 ~x86-fbsd"
IUSE="bzip2 doc gnome python static"
RDEPEND=">=dev-libs/libxml2-2.4.16
>=dev-libs/glib-2.6
sys-libs/zlib
gnome? ( media-gfx/imagemagick
>=gnome-base/gconf-2
>=gnome-base/libbonobo-2
>=gnome-base/gnome-vfs-2.2 )
bzip2? ( app-arch/bzip2 )
python? ( dev-lang/python )"
DEPEND="${RDEPEND}
dev-util/pkgconfig
>=dev-util/intltool-0.29
doc? ( >=dev-util/gtk-doc-1 )"
G2CONF="${G2CONF} \
$(use_with bzip2 bz2) \
$(use_with gnome) \
$(use_with python) \
$(use_enable static)"
src_install() {
gnome2_src_install
preserve_old_lib /usr/$(get_libdir)/libgsf-1.so.1
preserve_old_lib /usr/$(get_libdir)/libgsf-gnome-1.so.1
preserve_old_lib /usr/$(get_libdir)/libgsf-1.so.113
preserve_old_lib /usr/$(get_libdir)/libgsf-gnome-1.so.113
}
pkg_postinst() {
gnome2_pkg_postinst
preserve_old_lib_notify /usr/$(get_libdir)/libgsf-1.so.1
preserve_old_lib_notify /usr/$(get_libdir)/libgsf-gnome-1.so.1
preserve_old_lib_notify /usr/$(get_libdir)/libgsf-1.so.113
preserve_old_lib_notify /usr/$(get_libdir)/libgsf-gnome-1.so.113
}
DOCS="AUTHORS BUGS ChangeLog HACKING NEWS README TODO"
|