blob: 34a3345ffe6da6e037b7a9eef446447413b0cd0f (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-office/glabels/glabels-2.0.3.ebuild,v 1.5 2005/08/13 23:31:03 hansmi Exp $
inherit eutils gnome2
DESCRIPTION="Program for creating labels and business cards"
HOMEPAGE="http://glabels.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="GPL-2 FDL-1.1 LGPL-2"
SLOT="0"
KEYWORDS="amd64 ppc sparc x86"
IUSE="static"
RDEPEND=">=dev-libs/glib-2.2
>=x11-libs/gtk+-2.0.5
>=gnome-base/libgnome-2.0.1
>=gnome-base/libgnomeui-2.0.1
>=gnome-base/libbonobo-2
>=gnome-base/libbonoboui-2
>=dev-libs/libxml2-2.4.23
>=gnome-base/libgnomeprint-2.2
>=gnome-base/libgnomeprintui-2.2
>=gnome-base/libgnomecanvas-2.0.1
>=gnome-base/libglade-2.0.1"
DEPEND="${RDEPEND}
dev-util/pkgconfig
app-text/scrollkeeper
>=dev-util/intltool-0.21"
DOCS="AUTHORS ChangeLog NEWS README TODO"
pkg_setup() {
G2CONF="--disable-update-mimedb --disable-update-desktopdb \
$(use_enable static)"
}
src_unpack() {
unpack ${A}
cd ${S}
# Avoid sandbox violation. See bug #60545.
epatch ${FILESDIR}/${P}-update_dbs_switch.patch
aclocal || die "aclocal failed"
autoconf || die "autoconf failed"
automake || die "automake failed"
libtoolize --copy --force
}
|