freebsd-ports/devel/pwlib/Makefile
Tijl Coosemans 60945f0277 Replace USES=libtool:oldver with USES=libtool or USES=libtool:keepla in
the 32 ports that still use it.  Bump PORTREVISION on their dependent
ports except the ones that depend on these:

audio/libogg
audio/libvorbis
devel/pcre
ftp/curl
graphics/jpeg
graphics/libart_lgpl
graphics/tiff
textproc/expat2
textproc/libxslt

In these cases the same trick as in the recent gettext update is used.
The ports install a symlink with the old library version.  When enough
of their dependent ports have had regular updates the remaining ones can
get a PORTREVISION bump and the links can be removed.

Also remove the devel/pcre dependency from USE_GNOME=glib20.  It causes
over 2200 packages to depend on devel/pcre while less than 200 actually
link with it.  The glib20 package still depends on devel/pcre so this
should not make a difference for ports with USE_GNOME=glib20.  Also,
libdata/pkgconfig/glib-2.0.pc lists pcre as a private library so
USE_GNOME=glib20 should not propagate it.

PR:		195724
Exp-run by:	antoine
Approved by:	portmgr (antoine)
2014-12-08 16:48:38 +00:00

110 lines
2.9 KiB
Makefile

# Created by: Roger Hardiman <roger@FreeBSD.org>
# $FreeBSD$
PORTNAME= pwlib
PORTVERSION= 1.12.0
PORTREVISION= 10
PORTEPOCH= 1
CATEGORIES= devel
MASTER_SITES= SF/openh323/${PORTNAME}/${PORTVERSION}
DISTNAME= ptlib-v${PORTVERSION:S/./_/g}-src
DIST_SUBDIR= openh323
MAINTAINER= ports@FreeBSD.org
COMMENT= Cross platform C++ library, used by OpenH323
LIB_DEPENDS= libexpat.so:${PORTSDIR}/textproc/expat2
CONFLICTS= ptlib-2.*
WRKSRC= ${WRKDIR}/ptlib_v${PORTVERSION:S/./_/g}
USES= bison gmake
USE_GCC= any
USE_AUTOTOOLS= autoconf
WANT_GNOME= yes
WANT_SDL= yes
USE_OPENSSL= yes
USE_LDCONFIG= yes
MAKE_JOBS_UNSAFE= yes
OPTIONS_DEFINE= SDL PLUGINS LDAP ESOUND V4L
OPTIONS_DEFAULT= PLUGINS LDAP
OPTIONS_SUB= yes
LDAP_DESC= OpenLDAP support
BROKEN_armv6= Does not install on arm: mtree
CFLAGS+= -O1
MAKE_ENV= STDCCFLAGS+="-I${LOCALBASE}"
CPPFLAGS+= -O1 -I${WRKSRC}/include -I${LOCALBASE}/include
LDFLAGS+= -L${LOCALBASE}/lib
CONFIGURE_ENV+= ATOMICITY_H="<ext/atomicity.h>"
SDL_USE= SDL=sdl
SDL_CONFIGURE_ENV= SDLLIBDIR="${LOCALBASE}/lib"
SDL_MAKE_ENV= SDLLIBDIR="${LOCALBASE}/lib"
SDL_CONFIGURE_ENABLE= sdl
PLUGINS_CONFIGURE_ENABLE= plugins
LDAP_CONFIGURE_ENABLE= openldap
LDAP_USE= OPENLDAP=yes
LDAP_CONFIGURE_ENV= OPENLDAPLIBDIR="${LOCALBASE}/lib"
LDAP_MAKE_ENV= OPENLDAPLIBDIR="${LOCALBASE}/lib"
ESOUND_USE= GNOME=esound
ESOUND_CONFIGURE_ENABLE= esd
V4L_CONFIGURE_ENABLE= v4l
V4L_BUILD_DEPENDS= ${LOCALBASE}/include/linux/videodev.h:${PORTSDIR}/multimedia/v4l_compat
#explicity build OSS
CONFIGURE_ARGS+= --enable-oss
#disable OBDC support... it doesn't compile and nothing _seems_ to
#actually use it. If you do have something that requires this please
#send patches!
CONFIGURE_ARGS+= --disable-odbc
# ONLY FOR THE BRAVE!
# If someone owns a firewire(4) video device and wants to use it for
# video-conferencing purposes, please download the files:
# libraw1394.shar.gz, libavc1394.shar.gz and libdc1394.shar.gz from
# ftp://ftp.frm2.tum.de/pub/jpulz/FreeBSD/ports/
# Extract the files in ${PORTSDIR}/devel and uncomment the following lines.
#
##enable libavc1394
#.if defined(WITH_AVC1394)
#LIB_DEPENDS+= avc1394.2:${PORTSDIR}/devel/libavc1394 \
# dv.4:${PORTSDIR}/multimedia/libdv
#CONFIGURE_ARGS+= --enable-avc
#PLIST_SUB+= AVC1394=""
#.else
CONFIGURE_ARGS+= --disable-avc
PLIST_SUB+= AVC1394="@comment "
#.endif
#
##enable libdc1394
#.if defined(WITH_DC1394)
#LIB_DEPENDS+= dc1394_control.13:${PORTSDIR}/devel/libdc1394
#CONFIGURE_ARGS+= --enable-dc
#PLIST_SUB+= DC1394=""
#.else
CONFIGURE_ARGS+= --disable-dc
PLIST_SUB+= DC1394="@comment "
#.endif
.include <bsd.port.pre.mk>
.if (${ARCH} == "amd64") || (${ARCH} == "ia64") || (${ARCH} == "powerpc") || (${ARCH} == "sparc64")
CFLAGS+= -fPIC
.endif
.if (${ARCH} == "amd64") || (${ARCH} == "i386") || (${ARCH} == "ia64") || (${ARCH} == "powerpc") || (${ARCH} == "sparc64")
PLIST_SUB+= BSDVIDEO=""
.else
PLIST_SUB+= BSDVIDEO="@comment "
.endif
.include <bsd.port.post.mk>