forked from Lainports/freebsd-ports
o devel/apr: defaults changed: WITH_BDB=yes [1] convert APR_UTIL_* flags to KNOBS flag names optionify and add IPV6, NDBM, LDAP, MYSQL, PGSQL o Remove devel/apr-svn and replace with devel/apr o devel/apr: defaults changed: WITH_BDB=yes [1] convert APR_UTIL_* flags to KNOBS flag names optionify and add IPV6, NDBM, LDAP, MYSQL, PGSQL (sqlite,orcale,freetds,odbc -- PATCHES welcome, MAINTAINER does not use) GMAKE is not needed, so remove it split ./configure args into apr and apr-util args, they do not accept all the same options standardize on naming apr and apu to match other oses and the C code. create APR_WRKDIR And APU_WRKDIR for simplicity delete pre-extract target bump PORTREVISION NOTE: port still breaks hier(7), need to fix o devel/kdesvn, devel/rapidsvn, devel/subcommander*, devel/subversion* devel/apr-svn -> devel/apr (subversion will pull in devel/apr) Notes: dev@apr.apache.org, trunk in svn is as of TODAY(2008/01/03) 2.0.x, ports infra needs to prep for [devel/apr-0,] devel/apr-1, devel/apr-2 Helpful for PRs: ports/117596, ports/83644, ports/96749, ports/110651, ports/118003, ports/128078 Fixes PRs: ports/126053 [1] Requeted by: many on ports@, many on #bsdports [1] Exp Run by : pav
150 lines
3.8 KiB
Text
150 lines
3.8 KiB
Text
# New ports collection makefile for: subversion
|
|
# Date created: 10 September 2001
|
|
# Whom: rooneg@electricjellyfish.net
|
|
#
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= subversion
|
|
PORTVERSION= 1.5.5
|
|
PORTREVISION?= 1
|
|
CATEGORIES+= devel
|
|
MASTER_SITES= http://subversion.tigris.org/downloads/:main \
|
|
http://svnbook.red-bean.com/en/1.5/:book
|
|
DISTFILES= ${PORTNAME}-${DISTVERSION}${EXTRACT_SUFX}:main
|
|
DIST_SUBDIR= subversion
|
|
EXTRACT_ONLY= ${PORTNAME}-${DISTVERSION}${EXTRACT_SUFX}
|
|
|
|
USE_BZIP2= yes
|
|
USE_AUTOTOOLS= libtool:15
|
|
CONFIGURE_ARGS= --with-ssl
|
|
WANT_PERL= yes
|
|
|
|
.if defined(SVN_BUILD_BINDINGS)
|
|
# Bindings ports should use the same, as main port
|
|
OPTIONSFILE= ${PORT_DBDIR}/${PORTNAME}/options
|
|
# Dirty hack: if OPTIONS is not defined, OPTIONSFILE will not be included
|
|
OPTIONS=
|
|
.endif
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
CONFIGURE_ARGS+= --without-swig
|
|
|
|
# Default is "on"
|
|
.if !defined(WITHOUT_NEON)
|
|
LIB_DEPENDS+= neon.28:${PORTSDIR}/www/neon28
|
|
CONFIGURE_ARGS+= --with-neon=${LOCALBASE}
|
|
PLIST_SUB+= NEON=""
|
|
.else
|
|
CONFIGURE_ARGS+= --without-neon
|
|
PLIST_SUB+= NEON="@comment "
|
|
.endif
|
|
|
|
.if defined(WITH_SASL)
|
|
LIB_DEPENDS+= sasl2.2:${PORTSDIR}/security/cyrus-sasl2
|
|
CONFIGURE_ARGS+= --with-sasl=${LOCALBASE}
|
|
PLIST_SUB+= SASL=""
|
|
.else
|
|
CONFIGURE_ARGS+= --without-sasl
|
|
PLIST_SUB+= SASL="@comment "
|
|
.endif
|
|
|
|
# Default us "on"
|
|
.if !defined(WITHOUT_BDB)
|
|
PLIST_SUB+= BDB=""
|
|
.else
|
|
CONFIGURE_ARGS+= --without-berkeley-db
|
|
PLIST_SUB+= BDB="@comment "
|
|
.endif
|
|
|
|
.if defined(WITH_MOD_DAV_SVN)
|
|
WITH_APACHE2_APR= yes
|
|
CONFIGURE_ARGS+= --with-apxs=${APXS}
|
|
PLIST_SUB+= MOD_DAV_SVN=""
|
|
SVNGROUP?= www
|
|
SVNUSER?= www
|
|
.else
|
|
PLIST_SUB+= MOD_DAV_SVN="@comment "
|
|
PKGDEINSTALL= NONEXISTENT
|
|
SVNGROUP?= svn
|
|
SVNUSER?= svn
|
|
.endif
|
|
|
|
.if defined(WITH_APACHE2_APR)
|
|
USE_APACHE= 2.0+
|
|
.include "${PORTSDIR}/Mk/bsd.apache.mk"
|
|
.if ${APACHE_VERSION} >= 21
|
|
APR_APU_DIR= ${LOCALBASE}/bin
|
|
APR_CONFIG= apr-1-config
|
|
APU_CONFIG= apu-1-config
|
|
.else
|
|
APR_APU_DIR= ${LOCALBASE}/lib/apache2
|
|
APR_CONFIG= apr-config
|
|
APU_CONFIG= apu-config
|
|
.endif
|
|
APR_PORT= ${APACHE_PORT}
|
|
.if !defined(WITHOUT_BDB)
|
|
DEPENDS_ARGS+= WITH_BERKELEYDB=db4
|
|
OPT_NAME= WITH_BERKELEYDB=(db4|db41|db42)
|
|
.endif
|
|
.else
|
|
APR_APU_DIR= ${LOCALBASE}/bin
|
|
APR_CONFIG= apr-1-config
|
|
APU_CONFIG= apu-1-config
|
|
LIB_DEPENDS+= apr-1.3:${PORTSDIR}/devel/apr
|
|
APR_PORT= devel/apr
|
|
.endif
|
|
CONFIGURE_ARGS+=--with-apr=${APR_APU_DIR}/${APR_CONFIG} \
|
|
--with-apr-util=${APR_APU_DIR}/${APU_CONFIG}
|
|
|
|
.if defined(WITH_SERF)
|
|
LIB_DEPENDS+= serf-0.0:${PORTSDIR}/www/serf
|
|
CONFIGURE_ARGS+= --with-serf=${LOCALBASE}
|
|
PLIST_SUB+= SERF=""
|
|
.else
|
|
PLIST_SUB+= SERF="@comment "
|
|
.endif
|
|
|
|
.if defined(SVN_BUILD_BINDINGS)
|
|
.if defined(WITH_FREEBSD_SUBVERSION)
|
|
LIB_DEPENDS+= svn_client-1:${PORTSDIR}/devel/subversion-freebsd
|
|
.else
|
|
LIB_DEPENDS+= svn_client-1:${PORTSDIR}/devel/subversion
|
|
.endif
|
|
EXTRA_PATCHES+= ${PATCHDIR}/bindings-patch-subversion--bindings--swig--perl--native--Makefile.PL.in
|
|
.endif
|
|
|
|
.if !defined(WITHOUT_NLS)
|
|
USE_GETTEXT= yes
|
|
PLIST_SUB+= WITHOUT_GETTEXT=""
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-nls
|
|
PLIST_SUB+= WITHOUT_GETTEXT="@comment "
|
|
.endif
|
|
|
|
.if ${ARCH} == "amd64" || ${ARCH} == "ia64"
|
|
CFLAGS+= -fpic -DPIC
|
|
.endif
|
|
|
|
.if defined(WITH_MAINTAINER_DEBUG)
|
|
CONFIGURE_ARGS+=--enable-maintainer-mode \
|
|
--enable-debug
|
|
CFLAGS+= -g
|
|
.endif
|
|
|
|
post-extract:
|
|
@${RM} -rf ${WRKSRC}/neon
|
|
@${RM} -rf ${WRKSRC}/apr
|
|
@${RM} -rf ${WRKSRC}/apr-util
|
|
|
|
post-patch:
|
|
.if ${PREFIX} != "/usr"
|
|
@${REINPLACE_CMD} "s#/etc/subversion#${ETCDIR}#g" ${WRKSRC}/subversion/libsvn_subr/config_file.c
|
|
@${REINPLACE_CMD} "s#/etc/subversion#${ETCDIR}#g" ${WRKSRC}/subversion/libsvn_subr/config_impl.h
|
|
.endif
|
|
@${REINPLACE_CMD} "s#^swig_pydir =.*#swig_pydir = ${PYTHON_SITELIBDIR}/libsvn#" ${WRKSRC}/Makefile.in
|
|
@${REINPLACE_CMD} "s#^swig_pydir_extra =.*#swig_pydir_extra = ${PYTHON_SITELIBDIR}/svn#" ${WRKSRC}/Makefile.in
|
|
@${REINPLACE_CMD} "s#^LIBTOOL =.*#LIBTOOL = ${LIBTOOL}#" ${WRKSRC}/Makefile.in
|
|
.if defined(SVN_BUILD_BINDINGS)
|
|
@${CP} ${FILESDIR}/build-outputs.mk ${WRKSRC}
|
|
.endif
|