diff options
Diffstat (limited to 'net-mail/gnubiff/gnubiff-2.2.15.ebuild')
-rw-r--r-- | net-mail/gnubiff/gnubiff-2.2.15.ebuild | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/net-mail/gnubiff/gnubiff-2.2.15.ebuild b/net-mail/gnubiff/gnubiff-2.2.15.ebuild new file mode 100644 index 000000000000..642e4b78346e --- /dev/null +++ b/net-mail/gnubiff/gnubiff-2.2.15.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-mail/gnubiff/gnubiff-2.2.15.ebuild,v 1.1 2012/03/05 14:02:31 eras Exp $ + +EAPI=4 +inherit autotools eutils + +DESCRIPTION="A mail notification program" +HOMEPAGE="http://gnubiff.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="debug fam gnome nls password" + +RDEPEND=">=x11-libs/gtk+-3:3 + >=gnome-base/libglade-2.3 + dev-libs/popt + password? ( dev-libs/openssl ) + fam? ( virtual/fam ) + gnome? ( >=gnome-base/gnome-panel-3.0 ) + x11-proto/xproto + x11-libs/libX11 + x11-libs/pango + x11-libs/gdk-pixbuf" +DEPEND="${RDEPEND} + dev-util/pkgconfig" + +DOCS="AUTHORS ChangeLog NEWS README THANKS TODO" + +src_prepare() { + epatch \ + "${FILESDIR}"/${P}-fix-nls.patch \ + "${FILESDIR}"/${P}-gold.patch + eautoreconf +} + +src_configure() { + # note: --disable-gnome is to avoid deprecated gnome-panel-2.x + econf \ + $(use_enable debug) \ + $(use_enable gnome) \ + $(use_enable nls) \ + $(use_enable fam) \ + $(use_with password) \ + $(use_with password password-string ${RANDOM}${RANDOM}${RANDOM}${RANDOM}) +} |