diff options
author | knu <knu@FreeBSD.org> | 2001-08-15 20:33:16 +0000 |
---|---|---|
committer | knu <knu@FreeBSD.org> | 2001-08-15 20:33:16 +0000 |
commit | 58124457c3a6dd7117d6d4f3f81c0205ff4c0695 (patch) | |
tree | 2bac886c1008a0d4900a2204268e6fef08c43c02 /games/asc | |
parent | 01f54590915661a5f168e052c9c17d8b4ee4e09d (diff) | |
download | FreeBSD-ports-58124457c3a6dd7117d6d4f3f81c0205ff4c0695.zip FreeBSD-ports-58124457c3a6dd7117d6d4f3f81c0205ff4c0695.tar.gz |
Conditionalize bzip2 dependencies.
Diffstat (limited to 'games/asc')
-rw-r--r-- | games/asc/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/games/asc/Makefile b/games/asc/Makefile index 40d16fa..953dd6c 100644 --- a/games/asc/Makefile +++ b/games/asc/Makefile @@ -16,8 +16,10 @@ MAINTAINER= sobomax@FreeBSD.org LIB_DEPENDS= SDL-1.1.3:${PORTSDIR}/devel/sdl12 \ SDL_image.10:${PORTSDIR}/graphics/sdl_image \ - bz2.1:${PORTSDIR}/archivers/bzip2 \ gnugetopt.1:${PORTSDIR}/devel/libgnugetopt +.if !exists(/usr/bin/bzip2) +LIB_DEPENDS+= bz2.1:${PORTSDIR}/archivers/bzip2 +.endif WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}-beta |