diff options
author | edwin <edwin@FreeBSD.org> | 2005-12-20 19:52:39 +0800 |
---|---|---|
committer | edwin <edwin@FreeBSD.org> | 2005-12-20 19:52:39 +0800 |
commit | 605f4b2565f3904c169a81596691a32e039401cb (patch) | |
tree | ddeb1b0b417547d2b6d5e43b25930f6ae4378097 /games | |
parent | 335ddc847323abcdf349b12aa9e6b765404b4b3b (diff) | |
download | freebsd-ports-gnome-605f4b2565f3904c169a81596691a32e039401cb.tar.gz freebsd-ports-gnome-605f4b2565f3904c169a81596691a32e039401cb.tar.zst freebsd-ports-gnome-605f4b2565f3904c169a81596691a32e039401cb.zip |
[MAINTAINER UPDATE] games/stratagus broken dependency fix
Two dependencies are improperly listed as BUILD_DEPENDS
rather than LIB_DEPENDS. I noticed this when I attempted
to install it via 'pkg_add -r stratagus' and lua was not
fetched.
PR: ports/90677
Submitted by: Travis Poppe <tlp@liquidx.org>
Diffstat (limited to 'games')
-rw-r--r-- | games/stratagus/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/games/stratagus/Makefile b/games/stratagus/Makefile index 48702f8ab59f..3c1110bd4ccc 100644 --- a/games/stratagus/Makefile +++ b/games/stratagus/Makefile @@ -7,7 +7,7 @@ PORTNAME= stratagus PORTVERSION= 2.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= games MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} @@ -16,8 +16,8 @@ DISTNAME= ${PORTNAME}-${PORTVERSION}-src MAINTAINER= tlp@liquidx.org COMMENT= Free cross-platform real-time strategy gaming engine -BUILD_DEPENDS= ${LOCALBASE}/lib/libpng.a:${PORTSDIR}/graphics/png \ - ${LOCALBASE}/lib/liblua.a:${PORTSDIR}/lang/lua +LIB_DEPENDS= png.5:${PORTSDIR}/graphics/png \ + lua.5:${PORTSDIR}/lang/lua USE_SDL= yes USE_XLIB= yes |