diff options
Diffstat (limited to 'multimedia/gstreamer-plugins80/Makefile')
-rw-r--r-- | multimedia/gstreamer-plugins80/Makefile | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/multimedia/gstreamer-plugins80/Makefile b/multimedia/gstreamer-plugins80/Makefile index 4a4b9ea23..92634e37c 100644 --- a/multimedia/gstreamer-plugins80/Makefile +++ b/multimedia/gstreamer-plugins80/Makefile @@ -142,6 +142,11 @@ WITH_LAME=yes WITH_GNOMEVFS=yes .endif +# Hermes +.if exists (${LOCALBASE}/lib/libHermes.a) +WITH_HERMES=yes +.endif + # gsm .if exists(${LOCALBASE}/lib/libgsm.a) WITH_GSM=yes @@ -317,6 +322,15 @@ LIB_DEPENDS+= gnomevfs-2.0:${PORTSDIR}/devel/gnomevfs2 PLIST_SUB+= GNOMEVFS="" .endif +# Hermes +.ifndef(WITH_HERMES) +CONFIGURE_ARGS+= --disable-hermes +PLIST_SUB+= HERMES="@comment " +.else +LIB_DEPENDS+= Hermes.1:${PORTSDIR}/graphics/Hermes +PLIST_SUB+= HERMES="" +.endif + # gsm .ifndef(WITH_GSM) CONFIGURE_ARGS+= --disable-gsm @@ -575,6 +589,10 @@ pre-everything:: @${ECHO_MSG} '===>' @${ECHO_MSG} '===> Define WITH_GNOMEVFS to enable gnomevfs Network plugin' .endif +.ifndef(WITH_HERMES) + @${ECHO_MSG} '===>' + @${ECHO_MSG} '===> Define WITH_HERMES to enable Hermes colorspace plugin' +.endif .ifndef(WITH_HTTP) @${ECHO_MSG} '===>' @${ECHO_MSG} '===> Define WITH_HTTP to enable http Network plugin' |