diff options
author | lioux <lioux@FreeBSD.org> | 2002-05-19 18:38:17 +0000 |
---|---|---|
committer | lioux <lioux@FreeBSD.org> | 2002-05-19 18:38:17 +0000 |
commit | 12aa6c74a8e1147b889f7a09f11aec08eb04a74c (patch) | |
tree | a67d317b8857cbaf5776ce554d0b6a96664a88e5 /multimedia/ogle | |
parent | 53b7fe1bc4b5ec06bb30a92e47d5a1c323aff640 (diff) | |
download | FreeBSD-ports-12aa6c74a8e1147b889f7a09f11aec08eb04a74c.zip FreeBSD-ports-12aa6c74a8e1147b889f7a09f11aec08eb04a74c.tar.gz |
Improve previous patch: USE_SUBMAKE so that LIBA52_DEP_LIBS is dynamically defined
across make targets; notably from depends to configure
Diffstat (limited to 'multimedia/ogle')
-rw-r--r-- | multimedia/ogle/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/multimedia/ogle/Makefile b/multimedia/ogle/Makefile index 9912beb..6fd51a8 100644 --- a/multimedia/ogle/Makefile +++ b/multimedia/ogle/Makefile @@ -18,6 +18,7 @@ LIB_DEPENDS= a52.0:${PORTSDIR}/audio/liba52 \ jpeg.9:${PORTSDIR}/graphics/jpeg \ xml2.5:${PORTSDIR}/textproc/libxml2 +USE_SUBMAKE= yes USE_XLIB= yes USE_GMAKE= yes USE_LIBTOOL= yes @@ -62,7 +63,7 @@ post-install: .if exists(${LOCALBASE}/lib/liba52.la) LIBA52_DEP_LIBS!= ${GREP} dependency_libs ${LOCALBASE}/lib/liba52.la | ${CUT} -d \' -f 2 .else -LIBA52_DEP_LIBS= -L${LOCALBASE}/lib -ldjbfft -lm +LIBA52_DEP_LIBS= .endif .if ${ARCH} == "i386" |