1998-02-13 17:39:02 +00:00
|
|
|
# New ports collection makefile for: proftpd
|
1998-06-14 15:56:50 +00:00
|
|
|
# Version required: 1.0.3pl1
|
1998-02-13 17:39:02 +00:00
|
|
|
# Date created: 26 January 1998
|
|
|
|
# Whom: Stephane Legrand
|
|
|
|
#
|
1998-07-02 11:06:28 +00:00
|
|
|
# $Id: Makefile,v 1.3 1998/06/14 15:56:40 steve Exp $
|
1998-02-13 17:39:02 +00:00
|
|
|
#
|
|
|
|
|
1998-06-14 15:56:50 +00:00
|
|
|
DISTNAME= proftpd-1.0.3pl1
|
|
|
|
PKGNAME= proftpd-1.0.3
|
1998-02-13 17:39:02 +00:00
|
|
|
CATEGORIES= net
|
|
|
|
MASTER_SITES= ftp://ftp.proftpd.org/distrib/
|
|
|
|
|
|
|
|
MAINTAINER= stephane@lituus.fr
|
|
|
|
|
|
|
|
MAN1= ftpwho.1 ftpcount.1
|
|
|
|
MAN8= proftpd.8 ftpshut.8
|
|
|
|
|
|
|
|
USE_GMAKE= yes
|
|
|
|
GNU_CONFIGURE= yes
|
|
|
|
|
|
|
|
#
|
1998-06-14 15:56:50 +00:00
|
|
|
# - "configure --prefix=..." doesn't seem to work :(
|
|
|
|
# do a "sed" to set prefix to $PREFIX
|
1998-02-13 17:39:02 +00:00
|
|
|
#
|
1998-06-14 15:56:50 +00:00
|
|
|
# - do a "sed" to set the config dir to ${PREFIX}/etc
|
1998-02-13 17:39:02 +00:00
|
|
|
#
|
|
|
|
|
1998-02-20 06:39:07 +00:00
|
|
|
post-configure:
|
|
|
|
${MV} ${WRKSRC}/Makefile ${WRKSRC}/Makefile.pre_sed
|
|
|
|
${SED} -e "s:^prefix=\/usr:prefix=${PREFIX}:" \
|
|
|
|
-e "s:^etcdir=\/etc:etcdir=${PREFIX}\/etc:" \
|
|
|
|
< ${WRKSRC}/Makefile.pre_sed > ${WRKSRC}/Makefile
|
1998-02-13 17:39:02 +00:00
|
|
|
|
1998-02-20 06:39:07 +00:00
|
|
|
${MV} ${WRKSRC}/config.h ${WRKSRC}/config.h.pre_sed
|
|
|
|
${SED} -e 's:\/etc\/proftpd\.conf:${PREFIX}\/etc\/proftpd.conf:' \
|
|
|
|
< ${WRKSRC}/config.h.pre_sed > ${WRKSRC}/config.h
|
1998-02-13 17:39:02 +00:00
|
|
|
|
1998-02-20 06:39:07 +00:00
|
|
|
@${MV} ${WRKSRC}/src/proftpd.8 ${WRKSRC}/src/proftpd.8.pre_sed
|
|
|
|
@${SED} -e 's:/etc:${PREFIX}/etc:' \
|
|
|
|
-e 's:/usr/sbin/proftpd:${PREFIX}/libexec/proftpd:' \
|
|
|
|
-e 's:/usr/sbin:${PREFIX}/sbin:' \
|
|
|
|
-e 's:/usr/bin:${PREFIX}/bin:' \
|
|
|
|
< ${WRKSRC}/src/proftpd.8.pre_sed > ${WRKSRC}/src/proftpd.8
|
1998-02-13 17:39:02 +00:00
|
|
|
|
1998-02-20 06:39:07 +00:00
|
|
|
@${MV} ${WRKSRC}/src/ftpshut.8 ${WRKSRC}/src/ftpshut.8.pre_sed
|
|
|
|
@${SED} -e 's:/usr/sbin:${PREFIX}/sbin:' \
|
|
|
|
-e 's:/etc:/var/run:' \
|
|
|
|
< ${WRKSRC}/src/ftpshut.8.pre_sed > ${WRKSRC}/src/ftpshut.8
|
|
|
|
|
|
|
|
@${MV} ${WRKSRC}/src/ftpwho.1 ${WRKSRC}/src/ftpwho.1.pre_sed
|
|
|
|
@${SED} -e 's:/usr/bin:${PREFIX}/bin:' \
|
|
|
|
< ${WRKSRC}/src/ftpwho.1.pre_sed > ${WRKSRC}/src/ftpwho.1
|
|
|
|
|
|
|
|
@${MV} ${WRKSRC}/src/ftpcount.1 ${WRKSRC}/src/ftpcount.1.pre_sed
|
|
|
|
@${SED} -e 's:/usr/bin:${PREFIX}/bin:' \
|
|
|
|
< ${WRKSRC}/src/ftpcount.1.pre_sed > ${WRKSRC}/src/ftpcount.1
|
1998-02-13 17:39:02 +00:00
|
|
|
|
|
|
|
post-install:
|
1998-02-20 06:39:07 +00:00
|
|
|
strip ${PREFIX}/bin/ftpcount \
|
|
|
|
${PREFIX}/bin/ftpwho \
|
|
|
|
${PREFIX}/libexec/proftpd \
|
1998-06-14 15:56:50 +00:00
|
|
|
${PREFIX}/sbin/ftpshut \
|
1998-02-13 17:39:02 +00:00
|
|
|
|
|
|
|
.include <bsd.port.mk>
|