diff options
author | Pawel Pekala <pawel@FreeBSD.org> | 2012-06-07 22:44:21 +0000 |
---|---|---|
committer | Pawel Pekala <pawel@FreeBSD.org> | 2012-06-07 22:44:21 +0000 |
commit | 2fa62596744270745d9d0540f5bbd839f6b78d23 (patch) | |
tree | b7e5a1ec8ce92178c23aff878c9671b8c96b7b89 /multimedia | |
parent | e496938a05b08a6dc0a4f3562f7615a574354e2e (diff) |
Notes
Diffstat (limited to 'multimedia')
-rw-r--r-- | multimedia/lives/Makefile | 21 | ||||
-rw-r--r-- | multimedia/smtube/Makefile | 4 |
2 files changed, 14 insertions, 11 deletions
diff --git a/multimedia/lives/Makefile b/multimedia/lives/Makefile index 26e508bec339..3a0a401fcc96 100644 --- a/multimedia/lives/Makefile +++ b/multimedia/lives/Makefile @@ -41,9 +41,6 @@ RUN_DEPENDS= mpg123:${PORTSDIR}/audio/mpg123 \ x264:${PORTSDIR}/multimedia/x264 \ xmms:${PORTSDIR}/multimedia/xmms -OPTIONS= DOXYGEN "Build Doxygen documentation" off \ - FREI0R "Enable frei0r support" off - WRKSRC= ${WRKDIR}/${DISTNAME:L} USE_BZIP2= yes @@ -71,16 +68,20 @@ DOC_FILES= AUTHORS BUGS ChangeLog FEATURES GETTING.STARTED README \ PORT_VERBS= lives LiVES _encoder.py midistart midistop smogrify sendOSC +OPTIONS_DEFINE= DOXYGEN FREI0R +DOXYGEN_DESC= Build Doxygen documentation +FREI0R_DESC= Enable frei0r support + .include <bsd.port.options.mk> -.if !defined(NOPORTDOCS) && defined(WITH_DOXYGEN) +.if ${PORT_OPTIONS:MDOCS} && ${PORT_OPTIONS:MDOXYGEN} BUILD_DEPENDS+= ${LOCALBASE}/bin/doxygen:${PORTSDIR}/devel/doxygen PORTDOCS= html .else CONFIGURE_ARGS+=--disable-doxygen .endif -.if defined(WITH_FREI0R) +.if ${PORT_OPTIONS:MFREI0R} BUILD_DEPENDS+= ${LOCALBASE}/include/frei0r.h:${PORTSDIR}/graphics/frei0r RUN_DEPENDS+= ${LOCALBASE}/include/frei0r.h:${PORTSDIR}/graphics/frei0r PLIST_SUB+= FREI0R="" @@ -89,12 +90,12 @@ CONFIGURE_ENV+= ac_cv_header_frei0r_h=no PLIST_SUB+= FREI0R="@comment " .endif -.if defined(WITHOUT_NLS) -CONFIGURE_ARGS+=--disable-nls -PLIST_SUB+= NLS="@comment " -.else +.if ${PORT_OPTIONS:MNLS} USE_GETTEXT= yes PLIST_SUB+= NLS="" +.else +CONFIGURE_ARGS+=--disable-nls +PLIST_SUB+= NLS="@comment " .endif post-patch: @@ -129,7 +130,7 @@ pre-build: ${MAKEFILE} update-po post-install: -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} @${MKDIR} ${DOCSDIR} .for file in ${DOC_FILES} ${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR} diff --git a/multimedia/smtube/Makefile b/multimedia/smtube/Makefile index 9a7e186caa0a..4df737e50007 100644 --- a/multimedia/smtube/Makefile +++ b/multimedia/smtube/Makefile @@ -21,6 +21,8 @@ USE_QT4= linguist_build moc_build qmake_build rcc_build uic_build \ corelib gui network xml INSTALLS_ICONS= yes +.include <bsd.port.options.mk> + post-patch: @${REINPLACE_CMD} -e 's|qmake|${QMAKE}|g' \ -e 's|lrelease|${QT_PREFIX}/bin/lrelease-qt4|g' \ @@ -28,7 +30,7 @@ post-patch: -e 's|$$(PREFIX)/share/smtube|${DATADIR}|g' \ ${WRKSRC}/Makefile -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} @${REINPLACE_CMD} -e 's|$$(PREFIX)/share/doc/smtube|${DOCSDIR}|' \ ${WRKSRC}/Makefile PORTDOCS= * |