summaryrefslogtreecommitdiff
blob: 7c486613e6dfebbd775d8073101b207ad186e145 (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-2005 Gentoo Foundation
# 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.19 2005/01/08 23:37:03 slarti 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/libc
	>=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
}