blob: 1cb0c4cd81767d8392aeca16756a4a9ddfa8a262 (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/media-gfx/gthumb/gthumb-1.102.ebuild,v 1.1 2002/07/16 19:56:15 stroke Exp $
# Do _NOT_ strip symbols in the build! Need both lines for Portage 1.8.9+
DEBUG="yes"
RESTRICT="nostrip"
# force debug information
CFLAGS="${CFLAGS} -g"
CXXFLAGS="${CXXFLAGS} -g"
S=${WORKDIR}/${P}
SLOT="0"
DESCRIPTION="gthumb is an Image Viewer and Browser for Gnome."
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
HOMEPAGE="http://gthumb.sourceforge.net/"
LICENSE="GPL-2"
KEYWORDS="x86"
RDEPEND=">=dev-libs/glib-2.0.4
>=x11-libs/gtk+-2.0.5
>=dev-libs/libxml2-2.4.22
>=gnome-base/libgnome-2.0.0
>=gnome-base/libgnomeui-2.0.0
>=gnome-base/libgnomecanvas-2.0.0
>=gnome-base/gnome-vfs-2.0.0
>=gnome-base/libglade-2.0.0
>=gnome-base/libgnomeprint-1.115.0
>=gnome-base/libgnomeprintui-1.115.0
>=gnome-base/bonobo-activation-1.0.0
>=gnome-base/libbonobo-2.0.0
>=gnome-base/libbonoboui-2.0.0
>=media-libs/libpng-1.2.4"
DEPEND=">=dev-util/pkgconfig-0.12.0
${RDEPEND}"
src_compile() {
./configure \
--prefix=/usr \
--mandir=/usr/share/man \
--infodir=/usr/share/info \
--sysconfdir=/etc \
--localstatedir=/var/lib || die
emake || die
}
src_install () {
make prefix=${D}/usr \
mandir=${D}/usr/share/man \
infodir=${D}/usr/share/info \
sysconfdir=${D}/etc \
localstatedir=${D}/var/lib \
install || die
dodoc AUTHORS COPYING ChangeLog NEWS README TODO
doman ${S}/doc/gthumb.1
}
|