mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
9a226e8e55
cc -I. -I. -DUSE_PPP -DUSE_MS_DNS -O2 -pipe -fno-strict-aliasing -c ./ppp/auth.c In file included from ./ppp/auth.c:56: ./ppp/pppd.h:107: error: conflicting types for 'output' ./ppp.p:13: error: previous declaration of 'output' was here *** Error code 1 Reported by: pkg-fallout (still since at least august 2013)
31 lines
622 B
Makefile
31 lines
622 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= A (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>
|