mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-04 01:48:54 +00:00
6f6fbe4bdf
- Fix all ports that add {CPP,LD}FLAGS to *_ENV to modify flags instead PR: 157936 Submitted by: myself Exp-runs by: pav Approved by: pav
31 lines
755 B
Makefile
31 lines
755 B
Makefile
# New ports collection makefile for: tss
|
|
# Date created: 25 October 2006
|
|
# Whom: Peter Ankerstal <peter@pean.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= tss
|
|
PORTVERSION= 0.8.2
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= http://www.pulia.nu/tss/src/
|
|
|
|
MAINTAINER= peter@pean.org
|
|
COMMENT= Terminal ScreenSaver that allows you to lock you terminal
|
|
|
|
post-patch:
|
|
@ ${REINPLACE_CMD} -e "s|/etc/tss|${PREFIX}/etc/tss|" ${WRKSRC}/src/main.c
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} -m 4755 ${WRKSRC}/tss ${PREFIX}/bin
|
|
${MKDIR} ${PREFIX}/etc/tss
|
|
${INSTALL_DATA} ${WRKSRC}/tss_art/* ${PREFIX}/etc/tss
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${DOCSDIR}
|
|
.for f in ART_CREDITS COPYING Changelog INSTALL README
|
|
${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR}
|
|
.endfor
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|