diff options
Diffstat (limited to 'net-mail/fastforward/fastforward-0.51-r1.ebuild')
-rw-r--r-- | net-mail/fastforward/fastforward-0.51-r1.ebuild | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/net-mail/fastforward/fastforward-0.51-r1.ebuild b/net-mail/fastforward/fastforward-0.51-r1.ebuild new file mode 100644 index 000000000000..bc6396c9132d --- /dev/null +++ b/net-mail/fastforward/fastforward-0.51-r1.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +inherit eutils fixheadtails + +DESCRIPTION="handle qmail forwarding according to a cdb database" +HOMEPAGE="http://cr.yp.to/fastforward.html" +SRC_URI="http://cr.yp.to/software/${P}.tar.gz" + +LICENSE="public-domain" +SLOT="0" +KEYWORDS="x86 sparc ~ppc" +IUSE="" + +DEPEND="sys-apps/groff" + +src_unpack() { + unpack ${A} + cd "${S}" + epatch "${FILESDIR}/${PV}-errno.patch" + ht_fix_file Makefile + + echo "gcc ${CFLAGS}" > conf-cc + echo "gcc" > conf-ld +} + +src_compile() { + emake it || die +} + +# make check is actually an install-check target, see bug #283177 +src_test() { :; } + +src_install() { + dodoc ALIASES BLURB CHANGES FILES INSTALL README SYSDEPS TARGETS + dodoc THANKS TODO VERSION + doman *.1 + + insopts -o root -g qmail -m 755 + insinto /var/qmail/bin + doins fastforward newaliases newinclude printforward printmaillist \ + setforward setmaillist +} |