blob: da691cd4a42af77f78e3b08058b87eaeb7d9af1e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
# New ports collection makefile for: pop3proxy
# Date created: 11.05.04
# Whom: Martin Blapp
#
# $FreeBSD$
#
PORTNAME= pop3proxy
PORTVERSION= 1.2
PORTREVISION= 1
CATEGORIES= mail
MASTER_SITES= http://people.freebsd.org/~mbr/distfiles/
DISTNAME= ${PORTNAME}-${PORTVERSION}
EXTRACT_SUFX= .tgz
MAINTAINER= mbr@FreeBSD.org
COMMENT= POP3 Proxy Server derived from UP IMAP Proxy
GNU_CONFIGURE= YES
USE_AUTOTOOLS= autoconf213
USE_RC_SUBR= pop3proxyd
SAMPLE_EXT= sample
post-install:
if [ ! -f ${PREFIX}/etc/pop3proxyd.conf ]; then \
${INSTALL} -c ${WRKSRC}/pop3proxyd.conf ${PREFIX}/etc/pop3proxyd.conf ; \
fi
${INSTALL} -c ${WRKSRC}/pop3proxyd.conf ${PREFIX}/etc/pop3proxyd.conf.${SAMPLE_EXT} ;
@${CAT} ${PKGMESSAGE}
.include <bsd.port.mk>
|