diff options
author | Tijl Coosemans <tijl@FreeBSD.org> | 2015-08-02 15:03:19 +0000 |
---|---|---|
committer | Tijl Coosemans <tijl@FreeBSD.org> | 2015-08-02 15:03:19 +0000 |
commit | a374acb969cb764eb7e6369821b9d87b96493782 (patch) | |
tree | ea36e7f5c3df09ecf07eacd3dfa1065817e07c56 /net | |
parent | Update gnumeric to 1.12.23. (diff) |
By default libtool replaces -export-symbols <file> with -retain-symbols-file
<file> on ELF systems, but this doesn't really do what -export-symbols is
meant to do. On GNU ELF systems it converts <file> to a simple version
script first and then uses -version-script instead of -retain-symbols-file.
Let USES=libtool patch libtool scripts to do this on all systems with GNU
ld(1).
Bump PORTREVISION on all ports where the build log contains -export-symbols.
audio/calf: This port builds a module that now exports only one function,
but it also builds a number of executables that link to this module and
expect to see other functions. Because it's already a bit dodgy to link to
a module (libtool warns about this) let the module continue to export only
one function and instead build an ordinary library from the same source that
the executables can link to. Fix a number of other issues in the same
Makefile.am and clean up the port Makefile.
japanese/scim-honoka: Tries to hide all symbols that start with an
underscore, but because this library is written in C++ all symbols start
with _Z so it ends up hiding everything. Just don't hide anything at all
like the textproc/scim configure script does.
multimedia/schroedinger: Apply an upstream patch.
textproc/scim-input-pad: Same as japanese/scim-honoka.
PR: 201922
Approved by: portmgr (antoine)
Exp-run by: antoine
Notes
Notes:
svn path=/head/; revision=393429
Diffstat (limited to 'net')
-rw-r--r-- | net/avahi-app/Makefile | 2 | ||||
-rw-r--r-- | net/courier-authlib-ldap/Makefile | 2 | ||||
-rw-r--r-- | net/libgnetwork/Makefile | 2 | ||||
-rw-r--r-- | net/libnss-mysql/Makefile | 2 | ||||
-rw-r--r-- | net/liboauth/Makefile | 2 | ||||
-rw-r--r-- | net/librouteros/Makefile | 2 | ||||
-rw-r--r-- | net/mpich2/Makefile | 2 | ||||
-rw-r--r-- | net/ndpi/Makefile | 1 |
8 files changed, 8 insertions, 7 deletions
diff --git a/net/avahi-app/Makefile b/net/avahi-app/Makefile index 355a67301dde..f7f270207957 100644 --- a/net/avahi-app/Makefile +++ b/net/avahi-app/Makefile @@ -3,7 +3,7 @@ PORTNAME= avahi PORTVERSION= 0.6.31 -PORTREVISION?= 4 +PORTREVISION?= 5 CATEGORIES?= net dns MASTER_SITES= http://www.avahi.org/download/ PKGNAMESUFFIX?= -app diff --git a/net/courier-authlib-ldap/Makefile b/net/courier-authlib-ldap/Makefile index 989261c60d3c..3bce294e5334 100644 --- a/net/courier-authlib-ldap/Makefile +++ b/net/courier-authlib-ldap/Makefile @@ -1,7 +1,7 @@ # Created by: Yarema <yds@CoolRat.org> # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 PKGNAMESUFFIX= -ldap COMMENT= LDAP support for the Courier authentication library diff --git a/net/libgnetwork/Makefile b/net/libgnetwork/Makefile index 86bd63400057..789ddeba7e9f 100644 --- a/net/libgnetwork/Makefile +++ b/net/libgnetwork/Makefile @@ -3,7 +3,7 @@ PORTNAME= libgnetwork PORTVERSION= 0.0.9 -PORTREVISION= 10 +PORTREVISION= 11 CATEGORIES= net gnome MASTER_SITES= GNOME DIST_SUBDIR= gnome2 diff --git a/net/libnss-mysql/Makefile b/net/libnss-mysql/Makefile index e1d0f897e490..672b4ce25729 100644 --- a/net/libnss-mysql/Makefile +++ b/net/libnss-mysql/Makefile @@ -3,7 +3,7 @@ PORTNAME= libnss-mysql PORTVERSION= 1.5 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= net MASTER_SITES= SF diff --git a/net/liboauth/Makefile b/net/liboauth/Makefile index f9dc60eead9b..78bfeade5258 100644 --- a/net/liboauth/Makefile +++ b/net/liboauth/Makefile @@ -2,7 +2,7 @@ PORTNAME= liboauth PORTVERSION= 1.0.3 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net MASTER_SITES= SF/${PORTNAME} diff --git a/net/librouteros/Makefile b/net/librouteros/Makefile index f37f542cfbee..ba1808f23f28 100644 --- a/net/librouteros/Makefile +++ b/net/librouteros/Makefile @@ -3,7 +3,7 @@ PORTNAME= librouteros PORTVERSION= 1.1.2 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= net MASTER_SITES= http://verplant.org/librouteros/files/ diff --git a/net/mpich2/Makefile b/net/mpich2/Makefile index 827eea49c237..1a1c804a4272 100644 --- a/net/mpich2/Makefile +++ b/net/mpich2/Makefile @@ -3,7 +3,7 @@ PORTNAME= mpich2 DISTVERSION= 1.5 -PORTREVISION= 2 +PORTREVISION= 3 PORTEPOCH= 5 CATEGORIES= net java parallel MASTER_SITES= http://www.mcs.anl.gov/research/projects/mpich2/downloads/tarballs/${DISTVERSION}/ diff --git a/net/ndpi/Makefile b/net/ndpi/Makefile index 4b41c857395b..e9c5a7c17b39 100644 --- a/net/ndpi/Makefile +++ b/net/ndpi/Makefile @@ -3,6 +3,7 @@ PORTNAME= ndpi PORTVERSION= 1.6 +PORTREVISION= 1 CATEGORIES= net MASTER_SITES= SF/ntop/nDPI DISTNAME= nDPI-${PORTVERSION} |