diff options
author | Kurt Jaeger <pi@FreeBSD.org> | 2017-04-24 17:20:32 +0000 |
---|---|---|
committer | Kurt Jaeger <pi@FreeBSD.org> | 2017-04-24 17:20:32 +0000 |
commit | 749bcd3cbf6e0dcc9a7941846925aa848aa561ea (patch) | |
tree | 1919591410e5445fb1ae3f5fc8077141d2941b1d /mail/libsrs2 | |
parent | 937678c9fb4cf949ecfbe6e73a378b1991c02954 (diff) |
mail/libsrs2: fix linking error...
- ... by disabling separate build of libsrs2.a
PR: 217688
Reported by: ler
Submitted by: tijl
Notes
Notes:
svn path=/head/; revision=439335
Diffstat (limited to 'mail/libsrs2')
-rw-r--r-- | mail/libsrs2/Makefile | 22 |
1 files changed, 13 insertions, 9 deletions
diff --git a/mail/libsrs2/Makefile b/mail/libsrs2/Makefile index 416a099cf46b..4ff8d48f789a 100644 --- a/mail/libsrs2/Makefile +++ b/mail/libsrs2/Makefile @@ -1,20 +1,24 @@ # Created by: snowchyld # $FreeBSD$ -PORTNAME= libsrs2 -PORTVERSION= 1.0.18 -PORTREVISION= 3 -CATEGORIES= mail -MASTER_SITES= http://www.libsrs2.org/srs/ +PORTNAME= libsrs2 +PORTVERSION= 1.0.18 +PORTREVISION= 4 +CATEGORIES= mail +MASTER_SITES= http://www.libsrs2.org/srs/ -MAINTAINER= pi@FreeBSD.org -COMMENT= Sender Rewriting Scheme 2 C Implementation +MAINTAINER= pi@FreeBSD.org +COMMENT= Sender Rewriting Scheme 2 C Implementation -CONFLICTS= p5-Mail-SRS* +CONFLICTS= p5-Mail-SRS* USES= libtool USE_LDCONFIG= yes -GNU_CONFIGURE= yes +GNU_CONFIGURE= yes + +post-patch: + ${REINPLACE_CMD} '/^lib_LIBRARIES/s/libsrs2.a//' \ + ${WRKSRC}/libsrs2/Makefile.in post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libsrs2.so.0.0.0 |