summaryrefslogtreecommitdiff
path: root/packaging
diff options
context:
space:
mode:
authorTomas Chvatal <scarabeus@gentoo.org>2010-03-09 23:19:39 +0100
committerTomas Chvatal <scarabeus@gentoo.org>2010-03-09 23:19:39 +0100
commitfcfd681c52b4b6a5a9c26f2ab2c017b44a7e2492 (patch)
tree21dedd87856f174f2639dbbec89ecff183136d9a /packaging
parent446ee442f34bb9f8e6f52d29e3985c9025fbffd7 (diff)
Add switch for enabling physfs build.
Diffstat (limited to 'packaging')
-rw-r--r--packaging/gentoo/tuxanci-9999.ebuild6
1 files changed, 4 insertions, 2 deletions
diff --git a/packaging/gentoo/tuxanci-9999.ebuild b/packaging/gentoo/tuxanci-9999.ebuild
index e5bc3fd..5af5965 100644
--- a/packaging/gentoo/tuxanci-9999.ebuild
+++ b/packaging/gentoo/tuxanci-9999.ebuild
@@ -21,7 +21,7 @@ fi
LICENSE="GPL-2"
SLOT="0"
-IUSE="debug dedicated +ipv6 nls opengl +sound"
+IUSE="debug dedicated +ipv6 nls opengl physfs +sound"
# >=x11-libs/cairo-1.8.8[X,svg]
RDEPEND="
@@ -34,7 +34,8 @@ RDEPEND="
>=media-libs/sdl-mixer-1.2.11[vorbis]
)
)
- >=dev-libs/libzip-0.9"
+ physfs? ( >=dev-games/physfs-2.0.0[zip] )
+ !physfs? ( >=dev-libs/libzip-0.9 )"
DEPEND="${RDEPEND}
dev-util/pkgconfig
nls? ( sys-devel/gettext )"
@@ -45,6 +46,7 @@ src_configure() {
$(cmake-utils_use_build dedicated SERVER)
$(cmake-utils_use_with nls)
$(cmake-utils_use_with opengl)
+ $(cmake-utils_use_with physfs)
$(cmake-utils_use_enable ipv6)
$(cmake-utils_use_enable debug)
)