diff options
author | miwi <miwi@FreeBSD.org> | 2009-11-21 05:13:03 +0800 |
---|---|---|
committer | miwi <miwi@FreeBSD.org> | 2009-11-21 05:13:03 +0800 |
commit | 20e70dd74b5be37b51d8e85ccb77c9b94374f597 (patch) | |
tree | bf06e306d4f99a450a66483211187f1b60872e79 | |
parent | 22fdb9d1a6cc641e8174e5476daafc8ac7d8aa2a (diff) | |
download | freebsd-ports-gnome-20e70dd74b5be37b51d8e85ccb77c9b94374f597.tar.gz freebsd-ports-gnome-20e70dd74b5be37b51d8e85ccb77c9b94374f597.tar.zst freebsd-ports-gnome-20e70dd74b5be37b51d8e85ccb77c9b94374f597.zip |
* Fix incorrect DT_SONAME in opal3 library
* Fix IGNORE typo
* Bump PORTREVISION
PR: 140688
Submitted by: "Alexander V. Chernikov" <melifaro@ipfw.ru> (maintainer)
-rw-r--r-- | net/opal3/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/net/opal3/Makefile b/net/opal3/Makefile index d5ff98f5207f..a6af2f95bf09 100644 --- a/net/opal3/Makefile +++ b/net/opal3/Makefile @@ -7,7 +7,7 @@ PORTNAME= opal3 PORTVERSION= 3.6.6 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= net MASTER_SITES= SF/opalvoip/v3.6%20Lalande/Stable%205 DISTNAME= opal-${PORTVERSION} @@ -68,7 +68,7 @@ PLIST_SUB+= PORTVERSION=${PORTVERSION} \ .if defined(WITH_ZRTP) .if !defined(SAFE_ZRTP) -IGNORE= Please build devel/libzrtpcpp WITHOUT ports SSL and re-run build with SAFE_ZRTP set +IGNORE= please build devel/libzrtpcpp WITHOUT ports SSL and re-run build with SAFE_ZRTP set .endif LIB_DEPENDS+= zrtpcpp.0:${PORTSDIR}/devel/libzrtpcpp CONFIGURE_ARGS+= --enable-zrtp @@ -266,4 +266,7 @@ post-patch: @${REINPLACE_CMD} -e 's/^\(all:\).*/\1 optdepend opt/' ${WRKSRC}/Makefile.in .endif +post-configure: + @${REINPLACE_CMD} -e 's?\$$(LIB_FILENAME_SHARED_PAT)?libopal-${PORTVERSION:C/.[0-9]+$//g}'.so.'${PORTVERSION:C/^[0-9]+.[0-9]+.//}?' ${WRKSRC}/opal_defs.mak + .include <bsd.port.post.mk> |