mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-14 03:10:47 +00:00
4877c5ead2
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
42 lines
1.1 KiB
Makefile
42 lines
1.1 KiB
Makefile
# New ports collection makefile for: rapidsvn
|
|
# Date created: Jan 1, 2005
|
|
# Whom: kuriyama@FreeBSD.org
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= rapidsvn
|
|
PORTVERSION= 0.9.6
|
|
CATEGORIES= devel
|
|
MASTER_SITES= http://www.rapidsvn.org/download/release/${PORTVERSION}/
|
|
|
|
MAINTAINER= kuriyama@FreeBSD.org
|
|
COMMENT= Cross-platform GUI front-end for the Subversion revision system
|
|
|
|
BUILD_DEPENDS= neon-config:${PORTSDIR}/www/neon28 \
|
|
svn:${PORTSDIR}/devel/subversion \
|
|
xsltproc:${PORTSDIR}/textproc/libxslt \
|
|
${LOCALBASE}/share/xsl/docbook/VERSION:${PORTSDIR}/textproc/docbook-xsl
|
|
|
|
USE_WX= 2.6
|
|
WX_CONF_ARGS= absolute
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_AUTOTOOLS= autoconf:262 libtool:15 automake:19
|
|
CONFIGURE_TARGET=
|
|
CONFIGURE_ARGS= --with-apr-config=apr-1-config \
|
|
--with-apu-config=apu-1-config \
|
|
--with-neon-config=neon-config \
|
|
--with-xsltproc=xsltproc \
|
|
--with-docbook-xsl-manpages=${LOCALBASE}/share/xsl/docbook/manpages/docbook.xsl \
|
|
--program-prefix="" \
|
|
--with-manpage=yes
|
|
|
|
USE_LDCONFIG= yes
|
|
MAN1= rapidsvn.1
|
|
|
|
post-install:
|
|
${INSTALL_DATA} ${WRKSRC}/doc/manpage/rapidsvn.1 ${MAN1PREFIX}/man/man1/
|
|
|
|
.include <bsd.port.mk>
|