7dc406a7a1
COMMENT typos and surrounding whitespace fixes. A few Makefiles where not included as they contain Latin-1 characters that break the Phabricator workflow. Category N. CR: D307 Approved by: portmgr (bapt)
30 lines
620 B
Makefile
30 lines
620 B
Makefile
# Created by: Alain Kalker <A.C.P.M.Kalker@student.utwente.nl>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= slirp
|
|
PORTVERSION= 1.0.16
|
|
PORTEPOCH= 1
|
|
CATEGORIES= net
|
|
MASTER_SITES= SF
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= (C)SLIP/PPP emulator for users with shell accounts
|
|
|
|
BROKEN= Does not build
|
|
|
|
# serious LP64 issues
|
|
ONLY_FOR_ARCHS= i386
|
|
|
|
WRKSRC= ${WRKDIR}/${DISTNAME}/src
|
|
|
|
USES= perl5
|
|
USE_PERL5= build
|
|
GNU_CONFIGURE= yes
|
|
|
|
PLIST_FILES= bin/slirp man/man1/slirp.1.gz
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/slirp ${STAGEDIR}${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/slirp.man ${STAGEDIR}${PREFIX}/man/man1/slirp.1
|
|
|
|
.include <bsd.port.mk>
|