diff options
author | roam <roam@FreeBSD.org> | 2005-02-09 00:28:45 +0800 |
---|---|---|
committer | roam <roam@FreeBSD.org> | 2005-02-09 00:28:45 +0800 |
commit | 72ed276ecd5abb024f02fa998491b5dafdf3af51 (patch) | |
tree | d0fb8da8533f512f2649b5b7bdea384d4866c10f | |
parent | dacca6589f570fa57134de2d0d6502c85f068e6f (diff) | |
download | freebsd-ports-gnome-72ed276ecd5abb024f02fa998491b5dafdf3af51.tar.gz freebsd-ports-gnome-72ed276ecd5abb024f02fa998491b5dafdf3af51.tar.zst freebsd-ports-gnome-72ed276ecd5abb024f02fa998491b5dafdf3af51.zip |
Fix the package build: archivers/unzip is actually a build dependency,
not just an extract one.
Reported by: gohan via kris
Pointy hat to: myself
-rw-r--r-- | games/scare/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/games/scare/Makefile b/games/scare/Makefile index 12ccce36d9d1..65a38027ef6b 100644 --- a/games/scare/Makefile +++ b/games/scare/Makefile @@ -16,13 +16,15 @@ COMMENT= ADRIFT-compatible interactive games interpreter USE_ZIP= yes +BUILD_DEPENDS= unzip:${PORTSDIR}/archivers/unzip + BINFILES= scare .if defined(WITH_XGLK) PKGNAMESUFFIX= -glk -BUILD_DEPENDS= ${X11BASE}/lib/libxglk.a:${PORTSDIR}/games/xglk -RUN_DEPENDS= ${BUILD_DEPENDS} +BUILD_DEPENDS+= ${X11BASE}/lib/libxglk.a:${PORTSDIR}/games/xglk +RUN_DEPENDS+= ${X11BASE}/lib/libxglk.a:${PORTSDIR}/games/xglk ALL_TARGET= all glkscare |