diff options
author | Rong-En Fan <rafan@FreeBSD.org> | 2006-07-15 17:14:45 +0000 |
---|---|---|
committer | Rong-En Fan <rafan@FreeBSD.org> | 2006-07-15 17:14:45 +0000 |
commit | b5be3c084ed3aa2cdd35a0e75f47cc882a842890 (patch) | |
tree | 42fbf0f96e8f5b71619e4834e051d9be788f413d /net/netselect/Makefile | |
parent | 35d4715fc9d5c1fc9fb685fd78b9bba4b175a32e (diff) | |
download | ports-b5be3c084ed3aa2cdd35a0e75f47cc882a842890.tar.gz ports-b5be3c084ed3aa2cdd35a0e75f47cc882a842890.zip |
Notes
Diffstat (limited to 'net/netselect/Makefile')
-rw-r--r-- | net/netselect/Makefile | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/net/netselect/Makefile b/net/netselect/Makefile new file mode 100644 index 000000000000..7df0c9be64f4 --- /dev/null +++ b/net/netselect/Makefile @@ -0,0 +1,38 @@ +# New ports collection makefile for: netselect +# Date created: 15 July 2006 +# Whom: Timothy Redaelli <drizzt@gufi.org> +# +# $FreeBSD$ +# + +PORTNAME= netselect +PORTVERSION= 0.3 +CATEGORIES= net +MASTER_SITES= ${MASTER_SITE_GENTOO} \ + http://www.worldvisions.ca/~apenwarr/netselect/ +MASTER_SITE_SUBDIR= distfiles + +MAINTAINER= drizzt@gufi.org +COMMENT= Ultrafast implementation of ping + +PLIST_FILES= bin/${PORTNAME} + +WRKSRC= ${WRKDIR}/${PORTNAME} + +OPTIONS= SUID "Install with the sticky bit (mode 4110)" off + +.include <bsd.port.pre.mk> + +.if defined(WITH_SUID) +BINMODE= 4110 +.else +BINMODE= 0100 +.endif + +do-build: + ${CC} ${CFLAGS} -o ${WRKSRC}/${PORTNAME} ${WRKSRC}/${PORTNAME}.c + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin + +.include <bsd.port.post.mk> |