mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-22 00:35:15 +00:00
3ab1b8443e
- Bump PORTREVISION on all ports that depend on security/gnutls and adjust all ports that depend on security/gnutls3 - Update mail/anubis to version 4.2 which supports gnutls 3.x - Update mail/libvmime to a development snapshot (recommended by upstream developers) PR: 191274 Exp-run by: antoine Approved by: portmgr (antoine)
37 lines
858 B
Makefile
37 lines
858 B
Makefile
# Created by: Andrew Pantyukhin <infofarmer@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= librelp
|
|
PORTVERSION= 1.2.7
|
|
PORTREVISION= 1
|
|
CATEGORIES= devel
|
|
MASTER_SITES= http://download.rsyslog.com/librelp/
|
|
|
|
MAINTAINER= brd@FreeBSD.org
|
|
COMMENT= Reliable event logging protocol library
|
|
|
|
LIB_DEPENDS= libgnutls.so:${PORTSDIR}/security/gnutls
|
|
|
|
USES= libtool pathfix pkgconfig
|
|
USE_AUTOTOOLS= automake aclocal
|
|
USE_LDCONFIG= yes
|
|
|
|
PLIST_FILES= include/${PORTNAME}.h \
|
|
lib/${PORTNAME}.a \
|
|
lib/${PORTNAME}.so lib/${PORTNAME}.so.0 \
|
|
lib/${PORTNAME}.so.0.1.0 \
|
|
libdata/pkgconfig/relp.pc
|
|
|
|
PORT_VERBS= relp
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e '/CFLAGS/s| -g||g' \
|
|
${WRKSRC}/configure
|
|
@${REINPLACE_CMD} -e 's|libdir)/pkgconfig|prefix)/libdata/pkgconfig|' \
|
|
${WRKSRC}/Makefile.am
|
|
|
|
post-install:
|
|
${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/librelp.so.0.1.0
|
|
|
|
.include <bsd.port.mk>
|