diff options
author | Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org> | 2003-03-26 18:21:52 +0000 |
---|---|---|
committer | Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org> | 2003-03-26 18:21:52 +0000 |
commit | b833e5e0c93a2960a8b10aa14caca5471fe13b8d (patch) | |
tree | d9aca9d56729f390db550d6af50af3c904632527 /audio | |
parent | 57cbd869ac6cd9dd94f577feb829b5d72a05dd4b (diff) | |
download | ports-b833e5e0c93a2960a8b10aa14caca5471fe13b8d.tar.gz ports-b833e5e0c93a2960a8b10aa14caca5471fe13b8d.zip |
o Allow bento cluster to build packages by not depending on
packaging-restricted djbfft
o Rely on existence (or not) of PACKAGE_BUILDING for that [1]
Suggested by: David Taylor <davidt@yadt.co.uk> [1]
Notes
Notes:
svn path=/head/; revision=77494
Diffstat (limited to 'audio')
-rw-r--r-- | audio/liba52-devel/Makefile | 2 | ||||
-rw-r--r-- | audio/liba52/Makefile | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/audio/liba52-devel/Makefile b/audio/liba52-devel/Makefile index 11329a03e5d6..d36a9234a5e0 100644 --- a/audio/liba52-devel/Makefile +++ b/audio/liba52-devel/Makefile @@ -21,7 +21,7 @@ CONFIGURE_ARGS= --disable-oss --enable-shared USE_LIBTOOL= yes INSTALLS_SHLIB= yes -.ifndef(WITHOUT_DJBFFT) +.if !defined(WITHOUT_DJBFFT) && !defined(PACKAGE_BUILDING) BUILD_DEPENDS+= ${LOCALBASE}/lib/libdjbfft.a:${PORTSDIR}/math/djbfft RUN_DEPENDS+= ${LOCALBASE}/lib/libdjbfft.a:${PORTSDIR}/math/djbfft diff --git a/audio/liba52/Makefile b/audio/liba52/Makefile index 11329a03e5d6..d36a9234a5e0 100644 --- a/audio/liba52/Makefile +++ b/audio/liba52/Makefile @@ -21,7 +21,7 @@ CONFIGURE_ARGS= --disable-oss --enable-shared USE_LIBTOOL= yes INSTALLS_SHLIB= yes -.ifndef(WITHOUT_DJBFFT) +.if !defined(WITHOUT_DJBFFT) && !defined(PACKAGE_BUILDING) BUILD_DEPENDS+= ${LOCALBASE}/lib/libdjbfft.a:${PORTSDIR}/math/djbfft RUN_DEPENDS+= ${LOCALBASE}/lib/libdjbfft.a:${PORTSDIR}/math/djbfft |