diff options
author | Pav Lucistnik <pav@FreeBSD.org> | 2004-05-06 19:35:34 +0000 |
---|---|---|
committer | Pav Lucistnik <pav@FreeBSD.org> | 2004-05-06 19:35:34 +0000 |
commit | f3c2544206a5b27f1a40c33c37e86ec3cf8f9054 (patch) | |
tree | e5ac63dacf3364e5c1033bb7da0368d2691e9abf | |
parent | Oops. Forgot the language categories. (diff) |
- Fix a braino from marcuscom's rev 1.31 of this file
When WITH_XVID is defined (throught autodetection), packing list is broken
because %%XVID%% substitution is not defined.
Reported by: clement
For record, the reason to disable xvid is:
We need xvid 1.0.0beta3 at least to build the xvid plug-in.
Notes
Notes:
svn path=/head/; revision=108576
-rw-r--r-- | multimedia/gstreamer-plugins/Makefile | 6 | ||||
-rw-r--r-- | multimedia/gstreamer-plugins80/Makefile | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/multimedia/gstreamer-plugins/Makefile b/multimedia/gstreamer-plugins/Makefile index ed3c29928557..2b7606b156e3 100644 --- a/multimedia/gstreamer-plugins/Makefile +++ b/multimedia/gstreamer-plugins/Makefile @@ -792,14 +792,14 @@ PLIST_SUB+= XINE="" .endif # xvid -.ifndef(WITH_XVID) +#.ifndef(WITH_XVID) CONFIGURE_ARGS+= --disable-xvid PLIST_SUB+= XVID="@comment " -.undef WITH_XVID +#.undef WITH_XVID #.else #LIB_DEPENDS+= xvidcore.2:${PORTSDIR}/multimedia/xvid #PLIST_SUB+= XVID="" -.endif +#.endif pre-everything:: .ifndef(WITH_AALIB) diff --git a/multimedia/gstreamer-plugins80/Makefile b/multimedia/gstreamer-plugins80/Makefile index ed3c29928557..2b7606b156e3 100644 --- a/multimedia/gstreamer-plugins80/Makefile +++ b/multimedia/gstreamer-plugins80/Makefile @@ -792,14 +792,14 @@ PLIST_SUB+= XINE="" .endif # xvid -.ifndef(WITH_XVID) +#.ifndef(WITH_XVID) CONFIGURE_ARGS+= --disable-xvid PLIST_SUB+= XVID="@comment " -.undef WITH_XVID +#.undef WITH_XVID #.else #LIB_DEPENDS+= xvidcore.2:${PORTSDIR}/multimedia/xvid #PLIST_SUB+= XVID="" -.endif +#.endif pre-everything:: .ifndef(WITH_AALIB) |