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.
36 lines
961 B
36 lines
961 B
# Copyright 1999-2020 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
DESCRIPTION="Simple daemon to control email relay based on successful POP or IMAP logins"
|
|
HOMEPAGE="http://popbsmtp.sourceforge.net"
|
|
SRC_URI="mirror://sourceforge/popbsmtp/${P}.tar.gz"
|
|
|
|
LICENSE="|| ( GPL-2 BSD Artistic )"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 x86"
|
|
|
|
RDEPEND="dev-lang/perl[berkdb]
|
|
dev-perl/Net-Netmask
|
|
dev-perl/TimeDate"
|
|
|
|
src_prepare() {
|
|
default
|
|
|
|
# enable syslog
|
|
sed -i \
|
|
-e "/^=cut #============================= syslog ===========================START=$/d" \
|
|
-e "/^=cut #============================= syslog =============================END=$/d" \
|
|
"${S}"/pop-before-smtp-conf.pl \
|
|
|| die "sed pop-before-smtp-conf.pl failed"
|
|
}
|
|
|
|
src_install() {
|
|
dosbin pop-before-smtp
|
|
dodoc README ChangeLog TODO contrib/README.QUICKSTART
|
|
insinto /etc
|
|
doins pop-before-smtp-conf.pl
|
|
newinitd "${FILESDIR}/pop-before-smtp.init" pop-before.smtp
|
|
}
|