diff options
author | Satoshi Asami <asami@FreeBSD.org> | 1995-08-21 09:52:09 +0000 |
---|---|---|
committer | Satoshi Asami <asami@FreeBSD.org> | 1995-08-21 09:52:09 +0000 |
commit | fe8a9a098fd97489bb40db68b9d1e39de2d3d89b (patch) | |
tree | 6bc9969cc30e57a6fa52ebed70d4c3ac65959bff /games/xpacman | |
parent | 0bacdbcb792f6db0c3f80ec2861091af452a053c (diff) | |
download | ports-fe8a9a098fd97489bb40db68b9d1e39de2d3d89b.tar.gz ports-fe8a9a098fd97489bb40db68b9d1e39de2d3d89b.zip |
Reorder variables. People, please look at the sample Makefile near the
end of the porting section in the Handbook!
Notes
Notes:
svn path=/head/; revision=2095
Diffstat (limited to 'games/xpacman')
-rw-r--r-- | games/xpacman/Makefile | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/games/xpacman/Makefile b/games/xpacman/Makefile index c1ea1c57c73c..a5a3722c49ab 100644 --- a/games/xpacman/Makefile +++ b/games/xpacman/Makefile @@ -3,21 +3,22 @@ # Date created: 19 Aug 1995 # Whom: joerg # -# $Id$ +# $Id: Makefile,v 1.1.1.1 1995/08/19 20:42:45 joerg Exp $ # DISTNAME= pacman10 -EXTRACT_SUFX= .zip PKGNAME= xpacman-1.0 CATEGORIES+= games MASTER_SITES= ftp://ftp.nvg.unit.no/pub/pacman/ +EXTRACT_SUFX= .zip + MAINTAINER= joerg@FreeBSD.org -NO_WRKSUBDIR= Does not unpack into subdir. EXEC_DEPENDS= unzip:${PORTSDIR}/archivers/unzip + +NO_WRKSUBDIR= Does not unpack into subdir. EXTRACT_CMD= unzip EXTRACT_BEFORE_ARGS= -x - USE_IMAKE= yes .include <bsd.port.mk> |