diff options
author | asami <asami@FreeBSD.org> | 1995-08-21 09:52:09 +0000 |
---|---|---|
committer | asami <asami@FreeBSD.org> | 1995-08-21 09:52:09 +0000 |
commit | 9b7f6af4b48d575044962db4c8a30fd7c3f09cfa (patch) | |
tree | 803b67e5bd28a6b98ca252daae61a5fd68e3ce52 /games | |
parent | bff042bb6a4f4c00793325ff751ddcea0b6e1ff6 (diff) | |
download | FreeBSD-ports-9b7f6af4b48d575044962db4c8a30fd7c3f09cfa.zip FreeBSD-ports-9b7f6af4b48d575044962db4c8a30fd7c3f09cfa.tar.gz |
Reorder variables. People, please look at the sample Makefile near the
end of the porting section in the Handbook!
Diffstat (limited to 'games')
-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 c1ea1c5..a5a3722 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> |