You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/net-mail/gnubiff/gnubiff-2.2.15-r2.ebuild

52 lines
1.1 KiB

# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
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 nls password"
RDEPEND="
>=x11-libs/gtk+-3:3
>=gnome-base/libglade-2.3
dev-libs/popt
password? ( dev-libs/openssl )
fam? ( virtual/fam )
x11-proto/xproto
x11-libs/libX11
x11-libs/pango
x11-libs/gdk-pixbuf
"
DEPEND="${RDEPEND}
virtual/pkgconfig
"
DOCS="AUTHORS ChangeLog NEWS README THANKS TODO"
src_prepare() {
epatch \
"${FILESDIR}"/${P}-fix-nls.patch \
"${FILESDIR}"/${P}-gold.patch \
"${FILESDIR}"/${P}-underlink.patch
eautoreconf
}
src_configure() {
# note: --disable-gnome is to avoid deprecated gnome-panel-2.x
econf \
--disable-gnome \
$(use_enable debug) \
$(use_enable nls) \
$(use_enable fam) \
$(use_with password) \
$(use_with password password-string ${RANDOM}${RANDOM}${RANDOM}${RANDOM})
}