diff options
author | agc <agc> | 2003-06-04 08:50:12 +0000 |
---|---|---|
committer | agc <agc> | 2003-06-04 08:50:12 +0000 |
commit | f47d4e20719a39020e615a6675e0150f4e9a128f (patch) | |
tree | ab24561d6d6e833cdbd718ab3009822584241294 /misc/9menu/Makefile | |
parent | 3aa18005876a93dc91aaedf4758f9e5b6e439a63 (diff) | |
download | pkgsrc-f47d4e20719a39020e615a6675e0150f4e9a128f.tar.gz |
Update to version 1.6 of 9menu.
The main differences to the package itself seem to be in its packaging.
Main changes to the package:
Correct the comment.
Make this much more portable to other pkgsrc platforms
Generalise for X11 locations other than /usr/X11R6.
Use a do-install target in the package Makefile
Let pkgsrc do any manual page manipulation
Diffstat (limited to 'misc/9menu/Makefile')
-rw-r--r-- | misc/9menu/Makefile | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/misc/9menu/Makefile b/misc/9menu/Makefile index 780b86b0251..34e15b04ba9 100644 --- a/misc/9menu/Makefile +++ b/misc/9menu/Makefile @@ -1,21 +1,22 @@ -# $NetBSD: Makefile,v 1.7 2003/06/02 01:18:19 jschauma Exp $ +# $NetBSD: Makefile,v 1.8 2003/06/04 08:50:12 agc Exp $ # FreeBSD Id: Makefile,v 1.4 1997/09/08 12:23:55 tg Exp # -DISTNAME= 9menu-1.5 -WRKSRC= ${WRKDIR} +DISTNAME= 9menu-1.6 CATEGORIES= plan9 misc MASTER_SITES= ftp://ftp.freefriends.org/arnold/Source/ EXTRACT_SUFX= .shar.gz MAINTAINER= tech-pkg@netbsd.org -COMMENT= Simple menu patterened after plan9 +COMMENT= Simple menu patterned after the plan9 user interface -.include "../../mk/bsd.prefs.mk" -.if (${OPSYS} == "NetBSD") -MANCOMPRESSED= yes -.endif +MAKEFILE= Makefile.noimake +ALL_TARGET= 9menu USE_X11= yes +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/9menu ${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/9menu.1 ${PREFIX}/man/man1 + .include "../../mk/bsd.pkg.mk" |