mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-24 00:45:52 +00:00
687334518e
Reported by: Bill "distfiles" Fenner
38 lines
911 B
Makefile
38 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>
|