mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
4cb8bc8378
stage of the port. PRO: you can examine / tweak it before installing 2. the symlink to the script is not stored as link in the package but it is created by pkg_add (see PLIST) PRO: you can build with PREFIX=foo and install with PREFIX=bar Submitted by: Karl Dietz <kd@frankfurt.netsurf.de>
56 lines
1.4 KiB
Makefile
56 lines
1.4 KiB
Makefile
# New ports collection makefile for: distributed.net-v2personalproxy
|
|
# Date created: 31 Oct 1999
|
|
# Whom: globalpanic@gmx.net
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= proxyper-freebsd3-elf-x86
|
|
PORTVERSION= 313
|
|
CATEGORIES= misc
|
|
MASTER_SITES= ftp://ftp.distributed.net/pub/dcti/proxyper-rc5des/ \
|
|
http://http.distributed.net/pub/dcti/proxyper-rc5des/
|
|
DISTNAME= proxyper${PORTVERSION}-freebsd-x86
|
|
|
|
MAINTAINER= dbaker@FreeBSD.org
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
ONLY_FOR_ARCHS= i386
|
|
|
|
.if ${OSVERSION} < 220000
|
|
BROKEN= "No version is built for your system."
|
|
.elif ${OSVERSION} < 300000
|
|
BROKEN= "No version is currently available for your system. Please try again later."
|
|
.endif
|
|
|
|
NO_BUILD= yes
|
|
|
|
BINDIR= ${PREFIX}/distributed.net/proxy/
|
|
LIBDIR= ${PREFIX}/etc/rc.d/
|
|
|
|
PROXYUID= nobody
|
|
PROXYGID= daemon
|
|
|
|
SHAREOWN= ${PROXYUID}
|
|
SHAREGRP= ${PROXYGID}
|
|
SHAREMODE= 644
|
|
|
|
do-build:
|
|
${SED} s#CHANGETHIS#${BINDIR}# < ${FILESDIR}/proxyper.sh > ${WRKSRC}/proxyper.sh
|
|
|
|
do-install:
|
|
if [ ! -d ${BINDIR} ]; then \
|
|
${MKDIR} ${BINDIR}; \
|
|
fi
|
|
${INSTALL_PROGRAM} ${WRKSRC}/proxyper ${BINDIR}
|
|
${INSTALL_SCRIPT} ${WRKSRC}/proxyper.sh ${BINDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/proxyper.ini ${BINDIR}
|
|
${INSTALL_MAN} ${WRKSRC}/ChangeLog.txt ${BINDIR}
|
|
${INSTALL_MAN} ${WRKSRC}/Readme.txt ${BINDIR}
|
|
${CHOWN} ${PROXYUID}:${PROXYGID} ${BINDIR}
|
|
${CHMOD} 755 ${BINDIR}
|
|
${LN} -sf ${BINDIR}proxyper.sh ${LIBDIR}proxyper.sh
|
|
|
|
.include <bsd.port.post.mk>
|