mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
b88d4fa6e7
PR: ports/69868 Submitted by: maintainer
89 lines
2.4 KiB
Makefile
89 lines
2.4 KiB
Makefile
# New ports collection makefile for: popular pppd pppoe client
|
|
# Date created: 22 Mar 2001
|
|
# Whom: Mario Sergio Fujikawa Ferreira <liouxFreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= rp-pppoe
|
|
PORTVERSION= 3.5
|
|
PORTREVISION= 1
|
|
CATEGORIES= net
|
|
MASTER_SITES= http://www.roaringpenguin.com/penguin/pppoe/
|
|
|
|
MAINTAINER= matthias.andree@gmx.de
|
|
COMMENT= "The popular Roaring Penguin's PPPoE software"
|
|
|
|
USE_REINPLACE= yes
|
|
GNU_CONFIGURE= yes
|
|
PATCH_WRKSRC= ${WRKSRC}/src
|
|
CONFIGURE_WRKSRC= ${WRKSRC}/src
|
|
BUILD_WRKSRC= ${WRKSRC}/src
|
|
|
|
MAN5= pppoe.conf.5
|
|
MAN8= adsl-connect.8 adsl-setup.8 adsl-start.8 adsl-status.8 \
|
|
adsl-stop.8 pppoe-relay.8 pppoe-server.8 pppoe.8
|
|
|
|
CONFIG_FILES= firewall-masq firewall-standalone pap-secrets \
|
|
pppoe-server-options pppoe.conf
|
|
DOC_FILES= CHANGES HOW-TO-CONNECT KERNEL-MODE-PPPOE LICENSE \
|
|
PROBLEMS
|
|
SCRIPT_FILES= adsl-connect adsl-init adsl-setup adsl-start \
|
|
adsl-status adsl-stop
|
|
.ifndef (NOPORTDOCS)
|
|
PORTDOCS= *
|
|
.endif
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e "s!/etc/ppp!${PREFIX}/etc/ppp!g" ${WRKSRC}/man/*
|
|
@${REINPLACE_CMD} -e 's!/etc/ppp!$$(prefix)/etc/ppp!g' \
|
|
${WRKSRC}/src/Makefile.in
|
|
.for file in adsl-connect adsl-init adsl-setup adsl-start
|
|
@${REINPLACE_CMD} -e 's!/etc/+ppp!$${prefix}/etc/ppp!g' \
|
|
${WRKSRC}/scripts/${file}.in
|
|
.endfor
|
|
@${REINPLACE_CMD} -e 's!pty!tty!g' ${WRKSRC}/scripts/adsl-connect.in
|
|
@${REINPLACE_CMD} -e 's!/var/lock/subsys/adsl!/var/tmp/rp_pppoe_adsl!g' \
|
|
${WRKSRC}/scripts/adsl-init.in
|
|
.for f in adsl-status adsl-stop.in
|
|
@${REINPLACE_CMD} -e "s!/etc/ppp!${PREFIX}/etc/ppp!g" \
|
|
${WRKSRC}/scripts/${f}
|
|
.endfor
|
|
|
|
do-install:
|
|
# Binaries
|
|
.for f in pppoe pppoe-server pppoe-relay
|
|
@${INSTALL_PROGRAM} ${BUILD_WRKSRC}/${f} ${PREFIX}/sbin
|
|
.endfor
|
|
# Configurations
|
|
@${MKDIR} ${PREFIX}/etc/ppp
|
|
.for f in ${CONFIG_FILES}
|
|
@${INSTALL_DATA} ${WRKSRC}/configs/${f} \
|
|
${PREFIX}/etc/ppp/${f}.sample
|
|
.endfor
|
|
# Manual pages
|
|
@${MKDIR} ${MAN5PREFIX}/man/man5
|
|
.for f in ${MAN5}
|
|
@${INSTALL_MAN} ${WRKSRC}/man/${f} ${MAN5PREFIX}/man/man5
|
|
.endfor
|
|
@${MKDIR} ${MAN8PREFIX}/man/man8
|
|
.for f in ${MAN8}
|
|
@${INSTALL_MAN} ${WRKSRC}/man/${f} ${MAN8PREFIX}/man/man8
|
|
.endfor
|
|
# Scripts
|
|
.for f in ${SCRIPT_FILES}
|
|
@${INSTALL_SCRIPT} ${WRKSRC}/scripts/${f} ${PREFIX}/sbin
|
|
.endfor
|
|
# Startup scripts
|
|
.for f in 04pppoe-relay.sh.sample 04pppoe-server.sh.sample
|
|
@${INSTALL_SCRIPT} ${FILESDIR}/${f} ${PREFIX}/etc/rc.d/
|
|
.endfor
|
|
|
|
# Documentation
|
|
.ifndef (NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
@${INSTALL_DATA} ${WRKSRC}/doc/* ${DOCSDIR}
|
|
.endif /* NOPORTDOCS */
|
|
|
|
.include <bsd.port.mk>
|