b2fd75e438
* kill devel/libtool and move to devel/libtool13, upgrading to 1.3.5 * upgrade repo-copied devel/libtool14 to 1.4.3 * break out libltdl into its own separate port * move to version-numbered binaries/scripts (ie: there is *no* 'libtool' any more -- USE_LIBTOOL and USE_LIBTOOL_VER are your friends) Approved by: portmgr (kris) - for the bsd.port.mk hooks Tested by: bento 4-exp builds (repeatedly)
64 lines
1.6 KiB
Makefile
64 lines
1.6 KiB
Makefile
# New ports collection makefile for: apr
|
|
# Date created: 19 February 2002
|
|
# Whom: Garrett Rooney <rooneg@electricjellyfish.net>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= apr
|
|
PORTVERSION= 0.9.3
|
|
CATEGORIES= devel
|
|
MASTER_SITES= http://www.apache.org/dist/apr/
|
|
DISTFILES= apr-${PORTVERSION}.tar.gz apr-util-${PORTVERSION}.tar.gz
|
|
|
|
MAINTAINER= rodrigc@attbi.com
|
|
COMMENT= The Apache Group's Portability Library
|
|
|
|
LIB_DEPENDS+= expat.4:${PORTSDIR}/textproc/expat2 \
|
|
iconv.3:${PORTSDIR}/converters/libiconv
|
|
|
|
WANT_AUTOCONF_VER= 253
|
|
|
|
USE_PERL5= yes
|
|
USE_GMAKE= yes
|
|
USE_LIBTOOL_VER= 14
|
|
LIBTOOLFILES= # none
|
|
INSTALLS_SHLIB= yes
|
|
|
|
WRKSRC= ${WRKDIR}
|
|
|
|
APR_CONF_ENV= ${CONFIGURE_ENV} \
|
|
CONFIG_SHELL=/bin/sh
|
|
|
|
APR_UTIL_CONF_ENV=${CONFIGURE_ENV} \
|
|
CONFIG_SHELL=/bin/sh \
|
|
CPPFLAGS="-I${PREFIX}/include" \
|
|
LDFLAGS="-L${PREFIX}/lib"
|
|
|
|
APR_UTIL_CONF_ARGS= --with-apr=../apr-${PORTVERSION} \
|
|
--with-expat=${PREFIX} \
|
|
--with-iconv=${PREFIX}
|
|
|
|
pre-configure:
|
|
cd ${WRKDIR}/apr-${PORTVERSION}; ${SETENV} ${SCRIPTS_ENV} ./buildconf
|
|
cd ${WRKDIR}/apr-util-${PORTVERSION}; \
|
|
${SETENV} ${SCRIPTS_ENV} ./buildconf \
|
|
--with-apr=../apr-${PORTVERSION}
|
|
|
|
do-configure:
|
|
cd ${WRKDIR}/apr-${PORTVERSION}; \
|
|
${SETENV} ${APR_CONF_ENV} ./configure ${CONFIGURE_ARGS}
|
|
cd ${WRKDIR}/apr-util-${PORTVERSION}; \
|
|
${SETENV} ${APR_UTIL_CONF_ENV} \
|
|
./configure ${CONFIGURE_ARGS} ${APR_UTIL_CONF_ARGS}
|
|
|
|
do-build:
|
|
cd ${WRKDIR}/apr-${PORTVERSION}; ${SETENV} ${MAKE_ENV} make
|
|
cd ${WRKDIR}/apr-util-${PORTVERSION}; ${SETENV} ${MAKE_ENV} make
|
|
|
|
do-install:
|
|
cd ${WRKDIR}/apr-${PORTVERSION}; ${SETENV} ${MAKE_ENV} make install
|
|
cd ${WRKDIR}/apr-util-${PORTVERSION}; ${SETENV} ${MAKE_ENV} make install
|
|
|
|
.include <bsd.port.mk>
|