diff options
author | knu <knu@FreeBSD.org> | 2001-08-16 04:33:16 +0800 |
---|---|---|
committer | knu <knu@FreeBSD.org> | 2001-08-16 04:33:16 +0800 |
commit | 58124457c3a6dd7117d6d4f3f81c0205ff4c0695 (patch) | |
tree | 2bac886c1008a0d4900a2204268e6fef08c43c02 /net/librsync | |
parent | 01f54590915661a5f168e052c9c17d8b4ee4e09d (diff) | |
download | freebsd-ports-gnome-58124457c3a6dd7117d6d4f3f81c0205ff4c0695.tar.gz freebsd-ports-gnome-58124457c3a6dd7117d6d4f3f81c0205ff4c0695.tar.zst freebsd-ports-gnome-58124457c3a6dd7117d6d4f3f81c0205ff4c0695.zip |
Conditionalize bzip2 dependencies.
Diffstat (limited to 'net/librsync')
-rw-r--r-- | net/librsync/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/net/librsync/Makefile b/net/librsync/Makefile index 584c355742fc..df1d4b106d01 100644 --- a/net/librsync/Makefile +++ b/net/librsync/Makefile @@ -14,8 +14,10 @@ MASTER_SITE_SUBDIR= rproxy MAINTAINER= ijliao@FreeBSD.org -LIB_DEPENDS= popt.0:${PORTSDIR}/devel/popt \ - bz2.1:${PORTSDIR}/archivers/bzip2 +LIB_DEPENDS= popt.0:${PORTSDIR}/devel/popt +.if !exists(/usr/bin/bzip2) +LIB_DEPENDS+= bz2.1:${PORTSDIR}/archivers/bzip2 +.endif USE_LIBTOOL= yes GNU_CONFIGURE= yes |