diff options
author | dougb <dougb@FreeBSD.org> | 2011-01-14 15:42:11 +0800 |
---|---|---|
committer | dougb <dougb@FreeBSD.org> | 2011-01-14 15:42:11 +0800 |
commit | c5c62e08ddd2d4411971006be56f8a8849bc10df (patch) | |
tree | c12bdc13c7727ea0033918a5890680ff16bc3934 /security/libassuan | |
parent | c2692127a8464a62baadacbfd18659fba4ab242d (diff) | |
download | freebsd-ports-gnome-c5c62e08ddd2d4411971006be56f8a8849bc10df.tar.gz freebsd-ports-gnome-c5c62e08ddd2d4411971006be56f8a8849bc10df.tar.zst freebsd-ports-gnome-c5c62e08ddd2d4411971006be56f8a8849bc10df.zip |
Fix the shared library version number for libassuan to reflect what
the authors intended by adding:
USE_AUTOTOOLS= libtool
USE_GNOME= ltverhack
to security/libassuan/Makefile.
Update the libassuan shared library version number and/or bump
PORTREVISION in the dependent ports.
Requested by: ale
Feature safe: yes
Diffstat (limited to 'security/libassuan')
-rw-r--r-- | security/libassuan/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/security/libassuan/Makefile b/security/libassuan/Makefile index d184d6941ea7..c0a30c4f534d 100644 --- a/security/libassuan/Makefile +++ b/security/libassuan/Makefile @@ -7,6 +7,7 @@ PORTNAME= libassuan PORTVERSION= 2.0.1 +PORTREVISION= 1 CATEGORIES= security devel MASTER_SITES= ${MASTER_SITE_GNUPG} MASTER_SITE_SUBDIR=${PORTNAME} @@ -22,9 +23,14 @@ LIB_DEPENDS+= pth.20:${PORTSDIR}/devel/pth \ USE_BZIP2= yes GNU_CONFIGURE= yes USE_LDCONFIG= yes + +# Silly, but apparently the only way to get the proper shared lib version number +USE_AUTOTOOLS= libtool +USE_GNOME= ltverhack + INFO= assuan PLIST_FILES= bin/libassuan-config include/assuan.h lib/libassuan.la \ - lib/libassuan.so.1 lib/libassuan.so share/aclocal/libassuan.m4 + lib/libassuan.so.0 lib/libassuan.so share/aclocal/libassuan.m4 .include <bsd.port.pre.mk> |