freebsd-ports/devel/subversion16/Makefile
Ollivier Robert 5b4bcd5f55 After far too long a hiatus, update the freebsd subversion port to 0.13.2.
* distinfo: update checksum.

* pkg-plist:
  add a few new headers and account for the fact that the header files are
  now in include/subversion-1/ instead of include, and the libs are now
  named libsvn_foo-1 instead of just libsvn_foo.

* Makefile:
  point to new tarball.  use the new REINPLACE infrastructure instead of
  depending on perl.  explicitly look for berkeley db in the appropriate
  place because the configure script seems to have forgotten how to find
  it.  axe gratuitous comments in some of the targets so that they don't
  print out onto the screen during the build.

Depends on devel/apr instead of devel/apr-devel (which will disappear).

Submitted by:	Garrett Rooney <rooneg@electricjellyfish.net>
2002-07-15 18:06:17 +00:00

43 lines
1.1 KiB
Makefile

# New ports collection makefile for: subversion
# Date created: 10 September 2001
# Whom: rooneg@electricjellyfish.net
#
# $FreeBSD$
PORTNAME= subversion
PORTVERSION= r2376 # 0.13.2
CATEGORIES= devel
MASTER_SITES= http://subversion.tigris.org/files/documents/15/340/
MAINTAINER= rooneg@electricjellyfish.net
LIB_DEPENDS= db4:${PORTSDIR}/databases/db4 \
neon.21:${PORTSDIR}/www/neon \
expat.2:${PORTSDIR}/textproc/expat2 \
apr:${PORTSDIR}/devel/apr
RUN_DEPENDS= gdiff3:${PORTSDIR}/textproc/diffutils
BUILD_DEPENDS= gdiff3:${PORTSDIR}/textproc/diffutils
MAN1= svn.1
WRKSRC= ${WRKDIR}/subversion-${PORTVERSION}
GNU_CONFIGURE= yes
USE_REINPLACE= yes
CONFIGURE_ARGS= --with-ssl \
--with-neon=${LOCALBASE} \
--with-berkeley-db=${LOCALBASE}/include/db4:${LOCALBASE}/lib \
--with-apr=${LOCALBASE} \
--with-apr-util=${LOCALBASE}
post-extract:
@${REINPLACE_CMD} 's/ldb/ldb4/g' ${WRKSRC}/configure
@${RM} -r ${WRKSRC}/neon
@${RM} -r ${WRKSRC}/apr
@${RM} -r ${WRKSRC}/apr-util
post-configure:
@${REINPLACE_CMD} 's/install-swig-py-lib//g' ${WRKSRC}/Makefile
@${REINPLACE_CMD} 's/swig-py-lib//g' ${WRKSRC}/Makefile
.include <bsd.port.mk>