diff options
author | obrien <obrien@FreeBSD.org> | 1997-02-17 05:01:18 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 1997-02-17 05:01:18 +0000 |
commit | ce6fa4f143d726225067d253d7306c91df73abba (patch) | |
tree | edc235c14c7b28e3adbfff1f2d504cc4d5b5b653 /benchmarks/xengine | |
parent | 4ee29727b3490f236014480a8fcd40499fd49f45 (diff) | |
download | FreeBSD-ports-ce6fa4f143d726225067d253d7306c91df73abba.zip FreeBSD-ports-ce6fa4f143d726225067d253d7306c91df73abba.tar.gz |
* no $Id$
* PKGNAME needs a version number
* DISTNAME useless
* use INSTALL_* macros.
* "mkdir -p" --> ${MKDIR}
* changed "BTW" to something non-native english speakers may understand.
Diffstat (limited to 'benchmarks/xengine')
-rw-r--r-- | benchmarks/xengine/Makefile | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/benchmarks/xengine/Makefile b/benchmarks/xengine/Makefile index 2fe351b..37610c3 100644 --- a/benchmarks/xengine/Makefile +++ b/benchmarks/xengine/Makefile @@ -2,9 +2,11 @@ # Version required: pl1 # Date created: 17 January 1997 # Whom: FURUSAWA,Kazuhisa <furusawa@com.cs.osakafu-u.ac.jp> +# +# $Id$ +# -DISTNAME= xengine-pl1 -PKGNAME= xengine +PKGNAME= xengine-1.0.1 CATEGORIES= benchmarks x11 MASTER_SITES= ftp://ftp.lab.kdd.co.jp/Usenet/comp.sources.x/volume09/xengine/ DISTFILES= part01.z patch1.z @@ -14,7 +16,7 @@ MAINTAINER= furusawa@com.cs.osakafu-u.ac.jp BUILD_DEPENDS= gunshar:${PORTSDIR}/archivers/gshar+gunshar DIST_SUBDIR= xengine -WRKSRC= $(WRKDIR) +NO_WRKSUBDIR= yes USE_IMAKE= yes EXTRACT_CMD= zcat @@ -27,9 +29,12 @@ pre-patch: post-install: .if !defined(NOPORTDOCS) - @mkdir -p $(PREFIX)/share/doc/xengine - @install -c $(WRKSRC)/README $(PREFIX)/share/doc/xengine + @${MKDIR} ${PREFIX}/share/doc/xengine + @${INSTALL_MAN} ${WRKSRC}/README ${PREFIX}/share/doc/xengine .endif - @${ECHO} "BTW: 1067 RPMs with P100, Winner 2000PRO/X, resol: 1152x900" + @${ECHO} "" + @${ECHO} "Example value:" + @${ECHO} " 1067 RPMs with P100, Winner 2000PRO/X, resolution: 1152x900" + @${ECHO} "" .include <bsd.port.mk> |