freebsd-ports/sysutils/open/Makefile
Max Khon 687334518e Try to fix MASTER_SITES.
Reported by:	Bill "distfiles" Fenner
2004-02-21 23:41:43 +00:00

37 lines
911 B
Makefile

# New ports collection makefile for: open
# Date created: 10 Feb 2004
# Whom: Max Khon <fjoe@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= open
PORTVERSION= 1.4
CATEGORIES= sysutils
MASTER_SITES= ftp://ftp.hs-niederrhein.de/pub/linux/src/ \
ftp://ftp.uni-bremen.de/pub/mirrors/sunsite/utils/console/ \
${MASTER_SITE_LOCAL:S^$^fjoe/^}
MAINTAINER= fjoe@FreeBSD.org
COMMENT= Open opens a new vt and runs a command on it
ALL_TARGET= open
MAN1= open.1
PLIST_FILES= bin/open
OPTIONS= SETUID "Install setuid open binary" off
PKGMESSAGE= ${WRKDIR}/pkg-message
.include <bsd.port.pre.mk>
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/open ${PREFIX}/bin
${INSTALL_MAN} ${WRKSRC}/open.1 ${PREFIX}/man/man1
.if defined(WITH_SETUID)
${CHMOD} u+s ${PREFIX}/bin/open
.else
@${SED} -e 's|%%PREFIX%%|${PREFIX}|g' \
${FILESDIR}/pkg-message.in > ${PKGMESSAGE}
@${CAT} ${PKGMESSAGE}
.endif
.include <bsd.port.post.mk>