diff options
Diffstat (limited to 'net/bounce/Makefile')
-rw-r--r-- | net/bounce/Makefile | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/net/bounce/Makefile b/net/bounce/Makefile new file mode 100644 index 000000000000..1cf3b71fdf91 --- /dev/null +++ b/net/bounce/Makefile @@ -0,0 +1,31 @@ +# ex:ts=8 +# Ports collection makefile for: bounce +# Version required: 1.0 +# Date created: Mon Dec 23, 1998 +# Whom: David O'Brien (obrien@NUXI.com) +# +# $Id: Makefile,v 1.2 1997/01/25 18:08:40 obrien Exp $ +# + +DISTNAME= bounce +PKGNAME= bounce-1.0 +CATEGORIES= net security +MASTER_SITES= http://www.eleves.ens.fr:8080/home/espel/ \ + http://www.freebsd.org/~obrien/Distfiles/ +DISTFILES= ${DISTNAME}.c + +MAINTAINER= obrien@FreeBSD.org + +NO_WRKSUBDIR= yes + +do-extract: + @${MKDIR} ${WRKDIR} + @${CP} ${DISTDIR}/${DISTFILES} ${WRKDIR} + +do-build: + (cd ${WRKSRC} && ${CC} ${CFLAGS} -o ${DISTNAME} ${DISTNAME}.c) + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/${DISTNAME} ${PREFIX}/libexec + +.include <bsd.port.mk> |