Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 301196
Collapse All | Expand All

(-)gnubiff-2.2.11.ebuild (-11 / +11 lines)
Lines 1-18 Link Here
1
# Copyright 1999-2009 Gentoo Foundation
1
# Copyright 1999-2010 Gentoo Foundation
2
# Distributed under the terms of the GNU General Public License v2
2
# Distributed under the terms of the GNU General Public License v2
3
# $Header: /var/cvsroot/gentoo-x86/net-mail/gnubiff/gnubiff-2.2.11.ebuild,v 1.1 2009/05/22 20:18:30 dertobi123 Exp $
3
# $Header: $
4
4
5
inherit base eutils
5
EAPI=3
6
6
7
DESCRIPTION="A mail notification program"
7
DESCRIPTION="A mail notification program"
8
HOMEPAGE="http://gnubiff.sourceforge.net/"
8
HOMEPAGE="http://gnubiff.sourceforge.net/"
9
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
9
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
10
LICENSE="GPL-2"
10
11
LICENSE="GPL-3"
11
SLOT="0"
12
SLOT="0"
12
KEYWORDS="~alpha ~amd64 ~ia64 ~x86"
13
KEYWORDS="~alpha ~amd64 ~ia64 ~x86"
13
IUSE="debug fam gnome nls password"
14
IUSE="debug fam gnome nls password"
14
15
15
RDEPEND=">=x11-libs/gtk+-2.4
16
RDEPEND=">=x11-libs/gtk+-2.6
16
	>=gnome-base/libglade-2.3
17
	>=gnome-base/libglade-2.3
17
	dev-libs/popt
18
	dev-libs/popt
18
	gnome? (
19
	gnome? (
Lines 24-41 Link Here
24
DEPEND="${RDEPEND}
25
DEPEND="${RDEPEND}
25
	dev-util/pkgconfig"
26
	dev-util/pkgconfig"
26
27
27
src_compile() {
28
src_configure() {
28
	econf $(use_enable debug) \
29
	econf \
30
		$(use_enable debug) \
29
		$(use_enable gnome) \
31
		$(use_enable gnome) \
30
		$(use_enable nls) \
32
		$(use_enable nls) \
31
		$(use_enable fam) \
33
		$(use_enable fam) \
32
		$(use_with password) \
34
		$(use_with password) \
33
		$(use_with password password-string ${RANDOM}${RANDOM}${RANDOM}${RANDOM}) \
35
		$(use_with password password-string ${RANDOM}${RANDOM}${RANDOM}${RANDOM})
34
		${myconf} || die "econf failed"
35
	emake || die "emake failed"
36
}
36
}
37
37
38
src_install() {
38
src_install() {
39
	make DESTDIR="${D}" install || die "make install failed"
39
	emake DESTDIR="${D}" install || die "emake install failed"
40
	dodoc AUTHORS ChangeLog NEWS README THANKS TODO
40
	dodoc AUTHORS ChangeLog NEWS README THANKS TODO
41
}
41
}

Return to bug 301196