diff options
author | miwi <miwi@FreeBSD.org> | 2016-01-09 17:09:44 +0800 |
---|---|---|
committer | miwi <miwi@FreeBSD.org> | 2016-01-09 17:09:44 +0800 |
commit | 0e97114d07564a0a1b67ca85c6aa546771a2fcf2 (patch) | |
tree | 191318611cd33c3318135ae3210004ba25a1265a /audio/opusfile/Makefile | |
parent | 557afc4ff4d9b4d24b12786da7088d3fd91d7aaf (diff) | |
download | freebsd-ports-gnome-0e97114d07564a0a1b67ca85c6aa546771a2fcf2.tar.gz freebsd-ports-gnome-0e97114d07564a0a1b67ca85c6aa546771a2fcf2.tar.zst freebsd-ports-gnome-0e97114d07564a0a1b67ca85c6aa546771a2fcf2.zip |
- Update to 0.7
PR: 206013
Submitted by: maintainer
Diffstat (limited to 'audio/opusfile/Makefile')
-rw-r--r-- | audio/opusfile/Makefile | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/audio/opusfile/Makefile b/audio/opusfile/Makefile index b1cf05c320d3..c309c116f629 100644 --- a/audio/opusfile/Makefile +++ b/audio/opusfile/Makefile @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= opusfile -PORTVERSION= 0.6 -PORTREVISION= 1 +PORTVERSION= 0.7 CATEGORIES= audio MASTER_SITES= http://downloads.xiph.org/releases/opus/ \ MOZILLA/opus @@ -31,14 +30,15 @@ OPTIONS_DEFAULT= # empty DOXYGEN_CONFIGURE_ENABLE= doc DOXYGEN_BUILD_DEPENDS= doxygen:${PORTSDIR}/devel/doxygen +CONFIGURE_ARGS+= --disable-examples INSTALL_TARGET= install-strip post-patch: - @${REINPLACE_CMD} -e 's| @openssl@||' \ - ${WRKSRC}/opusfile.pc.in ${WRKSRC}/opusurl.pc.in - @${REINPLACE_CMD} -e '/libopusurl_la_SOURCES/s/http.c/& src\/ftime.c/' \ - -e '/dist_doc_DATA/s/COPYING//' \ - ${WRKSRC}/Makefile.am + @${GREP} -l '@openssl@' ${WRKSRC}/opusurl.pc.in | \ + ${XARGS} ${REINPLACE_CMD} -e 's| @openssl@||' + @${GREP} -L 'src/ftime.c' ${WRKSRC}/Makefile.am | \ + ${XARGS} ${REINPLACE_CMD} -e '/dist_doc_DATA/s/COPYING//' \ + -e '/libopusurl_la_SOURCES/s|= \(src/http\.c\)|= src/ftime.c \1|' @${CP} ${FILESDIR}/ftime.c ${WRKSRC}/src/ post-install-DOXYGEN-on: |