pkgsrc/devel/subversion-base/Makefile
epg 4116838de6 Update to Version 1.0.1.
(12 March 2004, from /branches/1.0.x)
http://svn.collab.net/repos/svn/tags/1.0.1

 IMPORTANT: cvs2svn is no longer included in py-subversion.  I will
 soon be adding a new cvs2svn package.

 User-visible changes:
 * allow anonymous access checking in mod_authz_svn
 * fixed: mod_authz_svn now works with SVNParentPath (issue #1588)
 * fixed: potential segfault in mod_dav_svn.
 * fixed: improper BDB cursor shutdown in libsvn_fs, which can wedge repos.
 * fixed: allow checkout of repository with space in path. (issue #1694)
 * fixed: make 'svn propget URL' work correctly over svn://. (issue #1752)
 * fixed: failed 'svn merge URL' when URL contains user@host. (issue #1759)
 * fixed: invalid REPORT response when updating a deleted wc. (issue #1721)
 * fixed: allow deletes below copied wc dirs.
 * fixed: merge --dry-run bug on added-files with props. (issue #1738)
 * fixed: svnlook no longer requires write access to '.'
 * fixed: ensure 'svn blame' fails on files marked as binary. (issue #1733)
 * fixed: make failed direct-URL commits clean up their fs txns. (issue #1726)
 * fixed: obscure bugs in time/date string formatting. (issue #1692)
 * fixed: svn export doesn't export svn:externals. (issue #1750)
 * fixed: svn import doesn't handle EOL or keyword translation. (issue #1756)
 * fixed: svn status -v shows unwanted status of externals (issue #1741)
 * fixed: allow revert of schedule-replace file that has no props (issue #1775)
 * fixed: svnserve segfault on invalid --listen-host argument.
 * fixed: switch bug which caused wrong URL to be left in wc.
 * detect invalid UTF8 filenames when native locale is UTF8.
 * improve presentation of directory property conflicts.
 * improve presentation of errors from svnadmin & svnlook.
 * clarify output of 'svnadmin help deltify'.
 * augment copyright notice to --version output.
 * more book updates.

 Developer-visible changes:
 * remove obsolete auth provider examples.
 * prevent potential ra_dav commit race-condition.
 * fix svn_io_dir_walk 'dot-first' ordering required by 'svnadmin hotcopy'.
 * fix error leaks in dav_svn_convert_err()
 * upgrade win32 innosettup tools and redhat RPMs.
 * fix compile warning:  compressed streams on LP64 architecture.
 * use cpio to generate tarballs instead of GNU tar.
 * tweaks to dist.sh.
 * fix bindings on win32.
 * fix perl bindings build on OS X.
 * fix perl bindings:  bug which rejects string revnums.
2004-03-29 18:08:33 +00:00

51 lines
1.8 KiB
Makefile

# $NetBSD: Makefile,v 1.13 2004/03/29 18:08:33 epg Exp $
PKGNAME= subversion-base-${SVNVER}
COMMENT= Version control system, base programs and libraries
PLIST_SUBST+= INSTALL_INFO=${INSTALL_INFO}
.include "../subversion/Makefile.common"
CONFIGURE_ARGS+= --without-apache
CONFIGURE_ARGS+= --without-apxs
# XXX Timestamps are broken in 1.0.1 tar file; should go away in 1.0.2.
post-build:
${TOUCH} ${WRKSRC}/doc/programmer/design/svn-design.info
post-patch:
${SED} -e 's|@BUILDLINK_PREFIX.db4@|${BUILDLINK_PREFIX.db4}|g' \
< ${WRKSRC}/tools/backup/hot-backup.py.in \
> ${WRKSRC}/tools/backup/hot-backup.py.in.new
${MV} ${WRKSRC}/tools/backup/hot-backup.py.in.new \
${WRKSRC}/tools/backup/hot-backup.py.in
${SED} -e 's|@PREFIX@|${PREFIX}|g' \
< ${WRKSRC}/contrib/cgi/tweak-log.cgi \
> ${WRKSRC}/contrib/cgi/tweak-log.cgi.new
${MV} ${WRKSRC}/contrib/cgi/tweak-log.cgi.new \
${WRKSRC}/contrib/cgi/tweak-log.cgi
post-install:
${INSTALL_DATA_DIR} ${SVNDOC}
${INSTALL_DATA} ${WRKSRC}/INSTALL ${SVNDOC}
${INSTALL_DATA_DIR} ${SVNEXAMPLES}/backup
${INSTALL_DATA_DIR} ${SVNEXAMPLES}/cgi
${INSTALL_DATA_DIR} ${SVNEXAMPLES}/hook-scripts
${INSTALL_DATA} ${WRKSRC}/tools/backup/hot-backup.py \
${SVNEXAMPLES}/backup
${INSTALL_DATA} ${WRKSRC}/contrib/cgi/tweak-log.cgi ${SVNEXAMPLES}/cgi
${INSTALL_DATA} ${WRKSRC}/tools/hook-scripts/commit-email.pl \
${SVNEXAMPLES}/hook-scripts
${INSTALL_DATA} ${WRKSRC}/tools/hook-scripts/propchange-email.pl \
${SVNEXAMPLES}/hook-scripts
${INSTALL_DATA} ${WRKSRC}/tools/hook-scripts/svnperms* \
${SVNEXAMPLES}/hook-scripts
BUILDLINK_DEPENDS.apr+= apr>=0.9.5
BUILDLINK_DEPENDS.neon+= neon>=0.24.1
.include "../../databases/db4/buildlink3.mk"
.include "../../devel/apr/buildlink3.mk"
.include "../../www/neon/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"