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/mail-mta/qpsmtpd/qpsmtpd-0.81.ebuild

86 lines
2.3 KiB

# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/mail-mta/qpsmtpd/qpsmtpd-0.81.ebuild,v 1.3 2012/06/01 02:32:55 zmedico Exp $
EAPI=2
inherit eutils user
DESCRIPTION="qpsmtpd is a flexible smtpd daemon written in Perl"
HOMEPAGE="http://smtpd.develooper.com"
SRC_URI="http://smtpd.develooper.com/files/${P}.tar.gz"
LICENSE="as-is"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="postfix async ipv6 syslog"
RDEPEND=">=dev-lang/perl-5.8.0
dev-perl/Net-DNS
virtual/perl-MIME-Base64
dev-perl/MailTools
async? ( dev-perl/IPC-Shareable
dev-perl/Socket6
dev-perl/Danga-Socket
dev-perl/ParaDNS
)
ipv6? ( dev-perl/IO-Socket-INET6 )
syslog? ( virtual/perl-Sys-Syslog )
virtual/inetd"
pkg_setup() {
enewgroup smtpd
local additional_groups
if use postfix; then
additional_groups="${additional_groups},postdrop"
fi
enewuser smtpd -1 -1 /var/spool/qpsmtpd smtpd${additional_groups}
}
src_prepare() {
epatch "${FILESDIR}"/${PN}-0.40-badhelo_disconnect.patch
epatch "${FILESDIR}"/${PN}-0.40-badrcptto_allowrelay.patch
epatch "${FILESDIR}"/${PN}-0.40-clamd_conf.patch
}
src_compile() {
perl Makefile.PL PREFIX=/usr || die "Running Makefile.PL failed"
emake || die "make failed"
}
src_install() {
emake install DESTDIR="${D}" || die "emake install failed"
insinto /etc/xinetd.d
newins "${FILESDIR}"/qpsmtpd.xinetd qpsmtpd
dodir /usr/share/qpsmtpd
cp -Rf plugins "${D}"/usr/share/qpsmtpd/
diropts -m 0755 -o smtpd -g smtpd
dodir /var/spool/qpsmtpd
keepdir /var/spool/qpsmtpd
dodir /etc/qpsmtpd
insinto /etc/qpsmtpd
doins config.sample/*
echo "/usr/share/qpsmtpd/plugins" > "${D}"/etc/qpsmtpd/plugin_dirs
echo "/var/spool/qpsmtpd" > "${D}"/etc/qpsmtpd/spool_dir
if use syslog; then
echo "logging/syslog loglevel LOGINFO priority LOG_NOTICE" > "${D}"/etc/qpsmtpd/logging
else
diropts -m 0755 -o smtpd -g smtpd
dodir /var/log/qpsmtpd
keepdir /var/log/qpsmtpd
echo "logging/file loglevel LOGINFO /var/log/qpsmtpd/%Y-%m-%d" > "${D}"/etc/qpsmtpd/logging
fi
newenvd "${FILESDIR}"/qpsmtpd.envd 99qpsmtpd
newconfd "${FILESDIR}"/qpsmtpd.confd qpsmtpd || die "Installing conf.d file"
newinitd "${FILESDIR}"/qpsmtpd.initd qpsmtpd || die "Installing init.d file"
dodoc CREDITS Changes README README.plugins STATUS
}