mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-19 03:52:17 +00:00
38c6aa8300
- Add LICENSE_FILE Approved by: portmgr blanket
36 lines
755 B
Makefile
36 lines
755 B
Makefile
# Created by: trasz
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= gloox
|
|
PORTVERSION= 1.0.10
|
|
PORTREVISION= 4
|
|
CATEGORIES= net-im
|
|
MASTER_SITES= http://camaya.net/download/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Jabber/XMPP client library
|
|
|
|
LICENSE= GPLv3
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
LIB_DEPENDS= libidn.so:${PORTSDIR}/dns/libidn \
|
|
libgnutls.so:${PORTSDIR}/security/gnutls
|
|
|
|
USES= libtool pathfix pkgconfig tar:bzip2
|
|
GNU_CONFIGURE= yes
|
|
INSTALL_TARGET= install-strip
|
|
USE_LDCONFIG= yes
|
|
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e \
|
|
's| -ansi|| ; \
|
|
s| -lgcrypt||' ${WRKSRC}/configure
|
|
@${FIND} ${WRKSRC} -name "Makefile.in" | ${XARGS} ${REINPLACE_CMD} -e \
|
|
's| -pedantic|| ; \
|
|
s| -pipe||'
|
|
|
|
.include <bsd.port.mk>
|