blob: d599a18d5169f1366e5a7ec668a12988d280365a (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/gnome-extra/bug-buddy/bug-buddy-2.0.8.ebuild,v 1.15 2003/09/08 05:14:59 msterret Exp $
DESCRIPTION="Bug Report helper for Gnome"
SRC_URI="ftp://ftp.gnome.org/pub/GNOME/stable/sources/${PN}/${P}.tar.gz"
HOMEPAGE="http://www.gnome.org/"
SLOT="1"
KEYWORDS="x86 ppc sparc"
LICENSE="GPL-2"
IUSE="nls"
RDEPEND="virtual/glibc
>=gnome-base/gnome-vfs-1.0.2-r1
>=gnome-base/libglade-0.17-r1
>=media-libs/gdk-pixbuf-0.11.0-r1
dev-libs/libxml"
DEPEND="${RDEPEND}
nls? ( sys-devel/gettext )"
src_compile() {
./configure --host=${CHOST} \
--prefix=/usr \
--sysconfdir=/etc \
--localstatedir=/var/lib \
`use_enable nls` \
|| die
emake || die
}
src_install() {
make prefix=${D}/usr \
sysconfdir=${D}/etc \
localstatedir=${D}/var/lib \
install || die
dodoc AUTHORS COPYING* NEWS README* TODO
}
|