diff options
Diffstat (limited to 'audio/yell/Makefile')
-rw-r--r-- | audio/yell/Makefile | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/audio/yell/Makefile b/audio/yell/Makefile new file mode 100644 index 000000000000..0a78b454c080 --- /dev/null +++ b/audio/yell/Makefile @@ -0,0 +1,39 @@ +# New ports collection makefile for: yell +# Date created: 10 August 2004 +# Whom: Emanuel Haupt <ehaupt@critical.ch> +# +# $FreeBSD$ +# + +PORTNAME= yell +PORTVERSION= 1.0 +CATEGORIES= audio +MASTER_SITES= http://www.critical.ch/yell/ + +MAINTAINER= ehaupt@critical.ch +COMMENT= A command line speaker bell using machine/speaker.h + +PLIST_FILES= bin/yell + +pre-everything:: +.if !defined(WITH_SUID) + @${ECHO_CMD} "" + @${ECHO_CMD} "You can define WITH_SUID if you want yell to be installed with" + @${ECHO_CMD} "the sticky bit (mode 4110)" + @${ECHO_CMD} "" +.endif + +do-build: + ${CC} ${WRKSRC}/yell.c ${CFLAGS} -o ${WRKSRC}/${PORTNAME} + +do-install: +.if defined(WITH_SUID) + ${INSTALL_PROGRAM} -m 4110 ${WRKSRC}/${PORTNAME} ${PREFIX}/bin +.else + ${INSTALL_PROGRAM} -m 0100 ${WRKSRC}/${PORTNAME} ${PREFIX}/bin +.endif + +post-install: + @${CAT} ${PKGMESSAGE} + +.include <bsd.port.mk> |