mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-25 00:51:21 +00:00
9f8b4bcde3
- Add LIBS="${LIBS}" to MAKE_ENV and CONFIGURE_ENV. - Add an option helper for LIBS. - Adjust all ports that already use LIBS. Also remove references to PTHREAD_CFLAGS and PTHREAD_LIBS while here. - Some ports did not support having a LIBS environment variable and required additional patches. Somewhat simplified a linker command line looks like: ${CC} ${src_LDFLAGS} ${LDFLAGS} ${src_LIBS} ${LIBS} where src_LDFLAGS and src_LIBS are controlled by upstream and LDFLAGS and LIBS can be controlled by us. If possible -L and -l flags need to be added to LIBS to make sure they appear after any -L and -l flags set by upstream. Many ports currently add -L${LOCALBASE}/lib to LDFLAGS but this may appear too early on the command line causing installed libraries to be linked in instead of freshly built ones. Additional changes: benchmarks/netio: Replace WITH_IPV6 with an IPV6 option. comms/gnokii: Replace some patches with USES=pathfix. Also remove -fPIC. graphics/gimageview: USES=libtool and install desktop file in DESKTOPDIR. graphics/visionworkbench: Remove FreeBSD 7 support. multimedia/libmovtar: New LIB_DEPENDS syntax. multimedia/opencinematools: Use standard do-build. net/siproxd: USES=libtool:keepla (port actually needs .la files for plugins) net-mgmt/nagios: Remove -fPIC. net-mgmt/nagios4: Remove -fPIC. print/cups-base: Only add -lssp_nonshared on i386 and OSVERSION < 1000036. security/p11-kit: Replace PTHREAD_LIBS in CONFIGURE_ENV with ac_cv_func_pthread_mutexattr_init=no in CONFIGURE_ARGS. This skips a test in configure that falsely detects pthread_mutexattr_init in our libc. sysutils/dar: Fix iconv detection. x11/rxvt-unicode: Remove -lstdc++ and patch configure to remove a FreeBSD hack and use $CXX as linker as on other platforms. PR: 190592 Exp-run by: antoine Approved by: portmgr (antoine)
204 lines
5.0 KiB
Makefile
204 lines
5.0 KiB
Makefile
# Created by: Garrett Rooney <rooneg@electricjellyfish.net>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= apr
|
|
PORTVERSION= ${APR_VERSION}.${APU_VERSION}
|
|
PORTREVISION= 1
|
|
CATEGORIES= devel
|
|
MASTER_SITES= ${MASTER_SITE_APACHE}
|
|
MASTER_SITE_SUBDIR= apr
|
|
DISTFILES= apr-${APR_VERSION}.tar.gz apr-util-${APU_VERSION}.tar.gz
|
|
|
|
MAINTAINER= apache@FreeBSD.org
|
|
COMMENT= Apache Portability Library
|
|
|
|
LIB_DEPENDS= libexpat.so:${PORTSDIR}/textproc/expat2
|
|
|
|
OPTIONS_SUB= yes
|
|
OPTIONS_GROUP= APR APU
|
|
OPTIONS_GROUP_APR= THREADS IPV6 DEVRANDOM
|
|
OPTIONS_GROUP_APU= BDB GDBM LDAP MYSQL NDBM PGSQL SQLITE FREETDS
|
|
OPTIONS_RADIO= CRYPTO
|
|
OPTIONS_RADIO_CRYPTO= SSL NSS
|
|
OPTIONS_DEFAULT= THREADS IPV6 DEVRANDOM BDB GDBM SSL
|
|
|
|
DEVRANDOM_DESC= Use /dev/random or compatible
|
|
NDBM_DESC= NDBM support
|
|
SSL_DESC= OpenSSL crypto driver
|
|
NSS_DESC= NSS crypto driver
|
|
|
|
APR_VERSION= 1.5.1
|
|
APU_VERSION= 1.5.3
|
|
|
|
USES= iconv pathfix libtool:keepla
|
|
USE_LDCONFIG= yes
|
|
GNU_CONFIGURE= yes
|
|
|
|
NO_WRKSUBDIR= yes
|
|
APR_WRKDIR= ${WRKDIR}/apr-${APR_VERSION}
|
|
APU_WRKDIR= ${WRKDIR}/apr-util-${APU_VERSION}
|
|
|
|
PLIST_SUB+= SHLIB_APR_MAJOR="${SHLIB_APR_MAJOR}" SHLIB_APU_MAJOR="${SHLIB_APU_MAJOR}"
|
|
SHLIB_APR_MAJOR= ${APR_VERSION:C/^1/0/}
|
|
SHLIB_APU_MAJOR= ${APU_VERSION:C/^1/0/}
|
|
|
|
APR_CONF_ARGS= --with-installbuilddir=${DATADIR}/build-1 \
|
|
--enable-posix-shm
|
|
APU_CONF_ARGS= --with-apr=${APR_WRKDIR} \
|
|
--with-expat=${LOCALBASE} \
|
|
--with-iconv=${ICONV_PREFIX}
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
########## APR Options
|
|
.if ${PORT_OPTIONS:MTHREADS}
|
|
APR_CONF_ARGS+= --enable-threads
|
|
.else
|
|
APR_CONF_ARGS+= --disable-threads
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MIPV6}
|
|
APR_CONF_ARGS+= --enable-ipv6
|
|
.else
|
|
APR_CONF_ARGS+= --disable-ipv6
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MDEVRANDOM}
|
|
APR_CONF_ARGS+= --with-devrandom
|
|
.else
|
|
APR_CONF_ARGS+= --without-devrandom
|
|
.endif
|
|
|
|
######### APR-Util Options
|
|
.if ${PORT_OPTIONS:MGDBM}
|
|
APU_EXTRAS= yes
|
|
LIB_DEPENDS+= libgdbm.so:${PORTSDIR}/databases/gdbm
|
|
APU_CONF_ARGS+= --with-gdbm=${LOCALBASE}
|
|
.else
|
|
APU_CONF_ARGS+= --without-gdbm
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MBDB}
|
|
APU_EXTRAS= yes
|
|
USE_BDB= 48+
|
|
APU_CONF_ARGS+= --with-berkeley-db=${BDB_INCLUDE_DIR}:${BDB_LIB_DIR}
|
|
.else
|
|
APU_CONF_ARGS+= --without-berkeley-db
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MNDBM}
|
|
APU_EXTRAS= yes
|
|
APU_CONF_ARGS+= --with-ndbm=/usr
|
|
.else
|
|
APU_CONF_ARGS+= --without-ndbm
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MLDAP}
|
|
APU_EXTRAS= yes
|
|
USE_OPENLDAP= yes
|
|
APU_CONF_ARGS+= --with-ldap-include=${LOCALBASE}/include \
|
|
--with-ldap-lib=${LOCALBASE}/lib --with-ldap=ldap
|
|
.else
|
|
APU_CONF_ARGS+= --without-ldap
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MFREETDS}
|
|
APU_EXTRAS= yes
|
|
APU_CONF_ARGS+= --with-freetds=${LOCALBASE}
|
|
LIB_DEPENDS+= libsybdb.so:${PORTSDIR}/databases/freetds
|
|
.else
|
|
APU_CONF_ARGS+= --without-freetds
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MMYSQL}
|
|
APU_EXTRAS= yes
|
|
USE_MYSQL= yes
|
|
APU_CONF_ARGS+= --with-mysql=${LOCALBASE}
|
|
CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/mysql -DHAVE_MYSQL_H
|
|
LIBS+= -L${LOCALBASE}/lib/mysql
|
|
.else
|
|
APU_CONF_ARGS+= --without-mysql
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MPGSQL}
|
|
APU_EXTRAS= yes
|
|
USE_PGSQL= yes
|
|
APU_CONF_ARGS+= --with-pgsql=${LOCALBASE}
|
|
CONFIGURE_ENV+= ac_cv_path_PGSQL_CONFIG=""
|
|
.else
|
|
APU_CONF_ARGS+= --without-pgsql
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MSQLITE}
|
|
APU_EXTRAS= yes
|
|
USE_SQLITE= yes
|
|
APU_CONF_ARGS+= --with-sqlite3=${LOCALBASE}
|
|
.else
|
|
APU_CONF_ARGS+= --without-sqlite3
|
|
.endif
|
|
|
|
# crypto (apache24)
|
|
.if ${PORT_OPTIONS:MSSL} || ${PORT_OPTIONS:MNSS}
|
|
APU_CONF_ARGS+= --with-crypto
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MSSL}
|
|
APU_EXTRAS= yes
|
|
USE_OPENSSL= yes
|
|
CPPFLAGS+= -I${OPENSSLINC}
|
|
LDFLAGS+= -L${OPENSSLLIB}
|
|
APU_CONF_ARGS+= --with-openssl=${OPENSSLBASE}
|
|
.else
|
|
APU_CONF_ARGS+= --without-openssl
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MNSS}
|
|
APU_EXTRAS= yes
|
|
LIB_DEPENDS+= libnss3.so:${PORTSDIR}/security/nss
|
|
CPPFLAGS+= -I${LOCALBASE}/include/nss
|
|
LDFLAGS+= -L${LOCALBASE}/lib/nss
|
|
APU_CONF_ARGS+= --with-nss=${LOCALBASE}
|
|
.endif
|
|
|
|
CONFIGURE_ENV+= CC="${CC}" CFLAGS="${CFLAGS}" CPPFLAGS="${CPPFLAGS}"
|
|
|
|
.if defined(APU_EXTRAS)
|
|
PLIST_SUB+= APU_EXTRAS=""
|
|
.else
|
|
PLIST_SUB+= APU_EXTRAS="@comment "
|
|
.endif
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's/OSVERSION/${OSVERSION}/g' \
|
|
${APR_WRKDIR}/configure
|
|
@${REINPLACE_CMD} -e '/recursive:/s/$$/ .MAKE/' \
|
|
${APR_WRKDIR}/build/apr_rules.mk.in
|
|
# Fix pthread: Please do not remove, else apr-1-config returns wrong values
|
|
@${REINPLACE_CMD} -e 's/-lpthread/-pthread/g' \
|
|
${APR_WRKDIR}/configure
|
|
|
|
do-configure:
|
|
@(cd ${APR_WRKDIR} && \
|
|
${SETENV} ${CONFIGURE_ENV} ./configure ${CONFIGURE_ARGS} ${APR_CONF_ARGS})
|
|
@(cd ${APU_WRKDIR} && \
|
|
${SETENV} ${CONFIGURE_ENV} ./configure ${CONFIGURE_ARGS} ${APU_CONF_ARGS})
|
|
|
|
do-build:
|
|
@(cd ${APR_WRKDIR} && ${SETENV} ${MAKE_ENV} ${MAKE} ${_MAKE_JOBS})
|
|
@(cd ${APU_WRKDIR} && ${SETENV} ${MAKE_ENV} ${MAKE} ${_MAKE_JOBS})
|
|
|
|
do-install:
|
|
@(cd ${APR_WRKDIR} && ${SETENV} ${MAKE_ENV} ${MAKE} ${INSTALL_TARGET} ${MAKE_ARGS})
|
|
@(cd ${APU_WRKDIR} && ${SETENV} ${MAKE_ENV} ${MAKE} ${INSTALL_TARGET} ${MAKE_ARGS})
|
|
|
|
post-install:
|
|
@${FIND} ${STAGEDIR}${PREFIX}/lib/ -name \*.so | ${XARGS} ${STRIP_CMD}
|
|
|
|
test: build
|
|
-@(cd ${APR_WRKDIR} && ${SETENV} ${MAKE_ENV} ${MAKE} test)
|
|
-@(cd ${APU_WRKDIR} && ${SETENV} ${MAKE_ENV} ${MAKE} test)
|
|
|
|
#regression-test: test
|
|
|
|
.include <bsd.port.mk>
|