diff options
-rw-r--r-- | multimedia/recordmydesktop/Makefile | 24 |
1 files changed, 17 insertions, 7 deletions
diff --git a/multimedia/recordmydesktop/Makefile b/multimedia/recordmydesktop/Makefile index e805a5001904..d4f3184fad1d 100644 --- a/multimedia/recordmydesktop/Makefile +++ b/multimedia/recordmydesktop/Makefile @@ -6,18 +6,28 @@ PORTREVISION= 8 CATEGORIES= multimedia MASTER_SITES= SF -MAINTAINER= ports@FreeBSD.org +MAINTAINER= danfe@FreeBSD.org COMMENT= Record desktop sessions to an Ogg-Theora-Vorbis file -LIB_DEPENDS= libtheora.so:multimedia/libtheora \ - libjack.so:audio/jack +LICENSE= GPLv2+ -GNU_CONFIGURE= yes -CONFIGURE_ARGS+= --enable-oss=yes \ - --enable-jack=yes +LIB_DEPENDS= libtheora.so:multimedia/libtheora USES= xorg -USE_XORG= ice sm x11 xext xorgproto xfixes xdamage +USE_XORG= ice sm x11 xdamage xext xfixes +GNU_CONFIGURE= yes +CONFIGURE_ARGS= --enable-oss=yes + PLIST_FILES= bin/recordmydesktop man/man1/recordmydesktop.1.gz +PORTDOCS= ChangeLog + +OPTIONS_DEFINE= DOCS JACK + +JACK_LIB_DEPENDS= libjack.so:audio/jack +JACK_CONFIGURE_OFF= --enable-jack=no + +post-install-DOCS-on: + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR} .include <bsd.port.mk> |