diff options
author | roberto <roberto@FreeBSD.org> | 2002-07-16 02:06:17 +0800 |
---|---|---|
committer | roberto <roberto@FreeBSD.org> | 2002-07-16 02:06:17 +0800 |
commit | 1d0590f3023591d31c7710b799874c64c1674f25 (patch) | |
tree | 4ef980accf7172ab4da5eec67cf77c616b26a61e /devel/subversion-freebsd/Makefile | |
parent | b9eb8f794d3682755525f5fd9f05ed1bae00b944 (diff) | |
download | freebsd-ports-gnome-1d0590f3023591d31c7710b799874c64c1674f25.tar.gz freebsd-ports-gnome-1d0590f3023591d31c7710b799874c64c1674f25.tar.zst freebsd-ports-gnome-1d0590f3023591d31c7710b799874c64c1674f25.zip |
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>
Diffstat (limited to 'devel/subversion-freebsd/Makefile')
-rw-r--r-- | devel/subversion-freebsd/Makefile | 18 |
1 files changed, 8 insertions, 10 deletions
diff --git a/devel/subversion-freebsd/Makefile b/devel/subversion-freebsd/Makefile index 5ce054e8c62f..0cb992131d18 100644 --- a/devel/subversion-freebsd/Makefile +++ b/devel/subversion-freebsd/Makefile @@ -5,16 +5,16 @@ # $FreeBSD$ PORTNAME= subversion -PORTVERSION= r1868 # 0.12.0 +PORTVERSION= r2376 # 0.13.2 CATEGORIES= devel -MASTER_SITES= http://subversion.tigris.org/files/documents/15/196/ +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-devel + apr:${PORTSDIR}/devel/apr RUN_DEPENDS= gdiff3:${PORTSDIR}/textproc/diffutils BUILD_DEPENDS= gdiff3:${PORTSDIR}/textproc/diffutils @@ -22,24 +22,22 @@ 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: - # work around libdb4's name. - @${PERL} -pi -e 's/ldb/ldb4/g' ${WRKSRC}/configure + @${REINPLACE_CMD} 's/ldb/ldb4/g' ${WRKSRC}/configure - # axe the neon, apr, and apr-util subdirs to keep svn's build process - # from using them, since we're providing our own. @${RM} -r ${WRKSRC}/neon @${RM} -r ${WRKSRC}/apr @${RM} -r ${WRKSRC}/apr-util post-configure: - # make sure we don't install the swig stuff, even if it was found - @${PERL} -pi -e 's/install-swig-py-lib//g' ${WRKSRC}/Makefile - @${PERL} -pi -e 's/swig-py-lib//g' ${WRKSRC}/Makefile + @${REINPLACE_CMD} 's/install-swig-py-lib//g' ${WRKSRC}/Makefile + @${REINPLACE_CMD} 's/swig-py-lib//g' ${WRKSRC}/Makefile .include <bsd.port.mk> |