mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
6e7b3ce4b7
PR: 6884 Submitted by: maintainer
67 lines
1.9 KiB
Makefile
67 lines
1.9 KiB
Makefile
# New ports collection makefile for: proftpd
|
|
# Version required: 1.0.3pl1
|
|
# Date created: 26 January 1998
|
|
# Whom: Stephane Legrand
|
|
#
|
|
# $Id: Makefile,v 1.2 1998/02/20 06:39:07 obrien Exp $
|
|
#
|
|
|
|
DISTNAME= proftpd-1.0.3pl1
|
|
PKGNAME= proftpd-1.0.3
|
|
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
|
|
CONFIGURE_ENV= CFLAGS="${CFLAGS}"
|
|
|
|
#
|
|
# - "configure --prefix=..." doesn't seem to work :(
|
|
# do a "sed" to set prefix to $PREFIX
|
|
#
|
|
# - do a "sed" to set the config dir to ${PREFIX}/etc
|
|
#
|
|
|
|
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
|
|
|
|
${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
|
|
|
|
@${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
|
|
|
|
@${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
|
|
|
|
post-install:
|
|
strip ${PREFIX}/bin/ftpcount \
|
|
${PREFIX}/bin/ftpwho \
|
|
${PREFIX}/libexec/proftpd \
|
|
${PREFIX}/sbin/ftpshut \
|
|
|
|
.include <bsd.port.mk>
|