diff options
author | tron <tron@pkgsrc.org> | 2001-07-08 19:57:53 +0000 |
---|---|---|
committer | tron <tron@pkgsrc.org> | 2001-07-08 19:57:53 +0000 |
commit | f17d31d822615cec099696f80bc3b5ce14261843 (patch) | |
tree | c99cf5e31b355781f4e26c1b05f6a20f3b404f27 /x11 | |
parent | 73af0447cfbac6091486f6e24309210ed7a4b107 (diff) | |
download | pkgsrc-f17d31d822615cec099696f80bc3b5ce14261843.tar.gz |
Fix package list problem under Solaris.
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" |