3f651573ad
Begin autotools sanitization sequence by requiring ports to explicitly specify which version of {libtool,autoconf,automake} they need, erasing the concept of a "system default". For ports-in-waiting: USE_LIBTOOL=YES -> USE_LIBTOOL_VER=13 USE_AUTOCONF=YES -> USE_AUTOCONF_VER=213 USE_AUTOMAKE=YES -> USE_AUTOMAKE_VER=14 Ports attempting to use the old style system after June 1st 2004 will be sorely disappointed.
27 lines
591 B
Makefile
27 lines
591 B
Makefile
# ex:ts=8
|
|
# Ports collection makefile for: libosip2
|
|
# Date created: Nov 7, 2003
|
|
# Whom: ijliao
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= libosip2
|
|
PORTVERSION= 2.0.6
|
|
CATEGORIES= net
|
|
MASTER_SITES= http://osip.atosc.org/download/osip/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= A low layer of SIP implementation
|
|
|
|
USE_GNOME= gnometarget lthack
|
|
USE_REINPLACE= yes
|
|
USE_LIBTOOL_VER=13
|
|
LIBTOOLFLAGS= --disable-ltlibs --release-ignore
|
|
CONFIGURE_ARGS= --disable-debug --disable-trace
|
|
INSTALLS_SHLIB= yes
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e "s|-pthread|${PTHREAD_LIBS}|g" ${WRKSRC}/configure
|
|
|
|
.include <bsd.port.mk>
|