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.
30 lines
643 B
30 lines
643 B
# Copyright 1999-2014 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Id$
|
|
|
|
EAPI="2"
|
|
|
|
inherit autotools eutils
|
|
|
|
DESCRIPTION="SRS (Sender Rewriting Scheme) wrapper for the courier MTA"
|
|
HOMEPAGE="http://couriersrs.com/"
|
|
SRC_URI="http://couriersrs.com/download/${P}.tar.gz"
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 ~x86"
|
|
IUSE=""
|
|
DEPEND="dev-libs/popt
|
|
mail-filter/libsrs2"
|
|
RDEPEND="${DEPEND}"
|
|
|
|
src_prepare() {
|
|
rm m4/*.m4
|
|
epatch "${FILESDIR}/${P}-automake-fixes.diff"
|
|
AT_M4DIR="m4" eautoreconf
|
|
}
|
|
|
|
src_install() {
|
|
emake DESTDIR="${D}" install || die "emake install failed"
|
|
dodoc AUTHORS NEWS ChangeLog
|
|
}
|