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.
|
|
|
# Copyright 1999-2011 Gentoo Foundation
|
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
# $Header: /var/cvsroot/gentoo-x86/mail-filter/policyd-weight/policyd-weight-0.1.15.1.ebuild,v 1.4 2011/12/21 09:04:03 phajdan.jr Exp $
|
|
|
|
|
|
|
|
EAPI=4
|
|
|
|
|
|
|
|
inherit eutils
|
|
|
|
|
|
|
|
DESCRIPTION="Weighted Policy daemon for Postfix"
|
|
|
|
HOMEPAGE="http://www.policyd-weight.org/"
|
|
|
|
SRC_URI="http://www.policyd-weight.org/releases/${P}.tar.gz"
|
|
|
|
|
|
|
|
LICENSE="GPL-2"
|
|
|
|
SLOT="0"
|
|
|
|
KEYWORDS="~alpha amd64 x86"
|
|
|
|
IUSE=""
|
|
|
|
|
|
|
|
DEPEND=""
|
|
|
|
RDEPEND="virtual/perl-Sys-Syslog
|
|
|
|
dev-perl/Net-DNS
|
|
|
|
>=mail-mta/postfix-2.1"
|
|
|
|
|
|
|
|
pkg_setup() {
|
|
|
|
enewgroup 'polw'
|
|
|
|
enewuser 'polw' -1 -1 -1 'polw'
|
|
|
|
}
|
|
|
|
|
|
|
|
src_compile() { :; }
|
|
|
|
|
|
|
|
src_install() {
|
|
|
|
exeinto /usr/lib/postfix
|
|
|
|
doexe policyd-weight
|
|
|
|
fowners root:wheel /usr/lib/postfix/policyd-weight
|
|
|
|
|
|
|
|
doman man/man5/*.5 man/man8/*.8
|
|
|
|
dodoc *.txt
|
|
|
|
|
|
|
|
sed -i -e "s:^ \$LOCKPATH.*: \$LOCKPATH = '/var/run/policyd-weight/'; # must be a directory (add:" policyd-weight.conf.sample || die
|
|
|
|
insinto /etc
|
|
|
|
newins policyd-weight.conf.sample policyd-weight.conf
|
|
|
|
|
|
|
|
newinitd "${FILESDIR}/${PN}.init.d" "${PN}"
|
|
|
|
|
|
|
|
dodir /var/run/policyd-weight
|
|
|
|
keepdir /var/run/policyd-weight
|
|
|
|
fowners polw:root /var/run/policyd-weight
|
|
|
|
fperms 700 /var/run/policyd-weight
|
|
|
|
}
|