diff options
Diffstat (limited to 'x11')
-rw-r--r-- | x11/xautolock/Makefile | 17 |
1 files changed, 12 insertions, 5 deletions
diff --git a/x11/xautolock/Makefile b/x11/xautolock/Makefile index 0e004400b03..1d988bf594d 100644 --- a/x11/xautolock/Makefile +++ b/x11/xautolock/Makefile @@ -1,6 +1,4 @@ -# $NetBSD: Makefile,v 1.11 2001/02/17 17:06:59 wiz Exp $ -# FreeBSD Id: Makefile,v 1.2 1996/11/18 09:55:42 asami Exp -# +# $NetBSD: Makefile,v 1.12 2001/07/08 19:57:53 tron Exp $ DISTNAME= xautolock-pl15 PKGNAME= xautolock-1.15 @@ -8,13 +6,22 @@ CATEGORIES= x11 MASTER_SITES= ${MASTER_SITE_XCONTRIB:=applications/} EXTRACT_SUFX= .tgz -MAINTAINER= eblood@cs.unr.edu +MAINTAINER= tron@netbsd.org COMMENT= Activate xlock after a user defined time of inactivity -USE_IMAKE= yes +USE_IMAKE= YES +.include "../../mk/bsd.prefs.mk" + +.if (${OPSYS} == SunOS) +PLIST_SRC= ${WRKDIR}/PLIST + +post-install: + ${GREP} -v '^man/cat' ${PKGDIR}/PLIST >${PLIST_SRC} +.else post-install: cd ${WRKSRC}; \ ${INSTALL_MAN} xautolock.man ${X11PREFIX}/man/man1/xautolock.1 +.endif .include "../../mk/bsd.pkg.mk" |