mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-26 00:55:14 +00:00
31 lines
690 B
Makefile
31 lines
690 B
Makefile
# Created by: Andrew Pantyukhin <infofarmer@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= ts
|
|
PORTVERSION= 0.7.3
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= http://vicerveza.homeunix.net/~viric/soft/ts/ CENKES
|
|
|
|
MAINTAINER= demon@FreeBSD.org
|
|
COMMENT= Serial task spooler
|
|
|
|
USE_GMAKE= yes
|
|
PLIST_FILES= bin/ts
|
|
PORTDOCS= OBJECTIVES PROTOCOL README TRICKS
|
|
MAN1= ts.1
|
|
|
|
NO_STAGE= yes
|
|
post-patch:
|
|
${REINPLACE_CMD} -e '/^GLIBCFLAGS/d;/^CFLAGS/d'\
|
|
${WRKSRC}/Makefile
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/ts ${PREFIX}/bin/
|
|
${INSTALL_MAN} ${WRKSRC}/ts.1 ${MAN1PREFIX}/man/man1/
|
|
.ifndef NOPORTDOCS
|
|
${INSTALL} -d ${DOCSDIR}/
|
|
cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${DOCSDIR}/
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|