diff options
author | sakamoto <sakamoto> | 1999-12-22 15:37:13 +0000 |
---|---|---|
committer | sakamoto <sakamoto> | 1999-12-22 15:37:13 +0000 |
commit | d1eff8f2e0582e646439eee15d2522c846343c56 (patch) | |
tree | 45c10c198853dd2b17b9e85e50743d7e3549d2b7 /x11/xcruise | |
parent | ec462cb2504f46e1b0ad0289dd81c02cb5cb42ec (diff) | |
download | pkgsrc-d1eff8f2e0582e646439eee15d2522c846343c56.tar.gz |
remove unneeded USE_X11BASE
use ${INSTALL_DATA_DIR} instead of ${MKDIR}
s|$()|${}|
Diffstat (limited to 'x11/xcruise')
-rw-r--r-- | x11/xcruise/Makefile | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/x11/xcruise/Makefile b/x11/xcruise/Makefile index 9e051ccf6a8..791c42cb8d5 100644 --- a/x11/xcruise/Makefile +++ b/x11/xcruise/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2 1999/12/03 14:15:39 minoura Exp $ +# $NetBSD: Makefile,v 1.3 1999/12/22 15:37:13 sakamoto Exp $ # DISTNAME= xcruise-0.22 @@ -6,15 +6,14 @@ CATEGORIES= x11 graphics MASTER_SITES= http://tanaka-www.cs.titech.ac.jp/%7Eeuske/prog/ MAINTAINER= minoura@netbsd.org -HOMEPAGE= http://tanaka-www.cs.titech.ac.jp/%7Eeuske/prog/ # in Japanese +HOMEPAGE= http://tanaka-www.cs.titech.ac.jp/%7Eeuske/prog/ # LICENSE= GPL -USE_X11BASE= yes USE_IMAKE= yes post-install: - $(MKDIR) $(PREFIX)/share/doc/xcruise - $(INSTALL_DATA) $(WRKSRC)/README $(PREFIX)/share/doc/xcruise + ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/xcruise + ${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/xcruise .include "../../mk/bsd.pkg.mk" |