1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-23 00:43:28 +00:00

Update port to subversion-0.24.2.

Users upgrading from 0.23.0 or earlier should note that several
incompatible changes were made to the ra_svn protocol; client
and server machines using the ra_svn protocol all needed to be
upgraded at the same time.  ra_dav is not affected.

If the WITH_MOD_DAV_SVN Makefile variable is defined at port build
time, the experimental mod_authz_svn.so module for apache2 is
installed, but not enabled.

Stop install the old svn-design info documents; they're really only
good for historical interest.

Take maintainership.  [1]

Approved by:	rodrigc@attbi.com (former MAINTAINER) [1]
This commit is contained in:
Bruce A. Mah 2003-06-19 16:40:42 +00:00
parent 098af8d37e
commit 8c1e5ddc35
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=83328
16 changed files with 52 additions and 64 deletions

View File

@ -5,14 +5,13 @@
# $FreeBSD$
PORTNAME= subversion
PORTVERSION= 0.23.0
PORTREVISION= 2
PORTVERSION= 0.24.2
CATEGORIES= devel
MASTER_SITES= http://subversion.tigris.org/files/documents/15/4218/
MASTER_SITES= http://subversion.tigris.org/files/documents/15/4807/
MASTER_SITES+= ${MASTER_SITE_LOCAL}
MASTER_SITE_SUBDIR= bmah
MAINTAINER= rodrigc@attbi.com
MAINTAINER= bmah@freebsd.org
COMMENT= Version control system
LIB_DEPENDS= db4:${PORTSDIR}/databases/db4 \
@ -51,8 +50,8 @@ PKGDEINSTALL= NONEXISTENT
pre-extract:
.if !defined(WITH_MOD_DAV_SVN)
@${ECHO_MSG}
@${ECHO_MSG} "You can enable the mod_dav_svn module for Apache 2.X by defining"
@${ECHO_MSG} "WITH_MOD_DAV_SVN."
@${ECHO_MSG} "You can enable the mod_dav_svn module for Apache 2.X"
@${ECHO_MSG} "by defining WITH_MOD_DAV_SVN."
@${ECHO_MSG}
.endif
@ -69,7 +68,6 @@ pre-install:
.endif
post-install:
install-info ${PREFIX}/info/svn-design.info ${PREFIX}/info/dir
.if !defined(NOPORTDOCS)
cd ${WRKSRC}/doc/book; \
${MAKE} INSTALL_DIR=${DOCSDIR} \

View File

@ -1 +1 @@
MD5 (subversion-0.23.0.tar.gz) = 59661f2145976437b371a0ab3a555dbd
MD5 (subversion-0.24.2.tar.gz) = 535956794859aab9da34b78b6c783210

View File

@ -46,9 +46,12 @@ if ! mkdir ${tmpdir}; then
fi
for i in ${conffile}; do
awk '{if (!/^LoadModule dav_svn_module/ && !/^AddModule mod_dav_svn.c/) \
awk '{if (!/^LoadModule dav_svn_module/ &&
!/^AddModule mod_dav_svn.c/ &&\
!/^LoadModule authz_svn_module/ &&\
!/^AddModule mod_authz_svn.c/ ) \
print $0}' < ${confdir}/$i > ${tmpdir}/$i
echo Removing dav_svn_module from $i in config dir: ${confdir}
echo Removing dav_svn_module and authz_svn_module from $i in config dir: ${confdir}
cat ${tmpdir}/$i > ${confdir}/$i
done

View File

@ -4,6 +4,7 @@ bin/svndumpfilter
bin/svnlook
bin/svnserve
bin/svnversion
include/subversion-1/mod_dav_svn.h
include/subversion-1/svn-revision.txt
include/subversion-1/svn_auth.h
include/subversion-1/svn_base64.h
@ -37,12 +38,6 @@ include/subversion-1/svn_version.h
include/subversion-1/svn_wc.h
include/subversion-1/svn_xml.h
@dirrm include/subversion-1
@unexec install-info --delete %D/info/svn-design.info %D/info/dir
info/svn-design.info
info/svn-design.info-1
info/svn-design.info-2
info/svn-design.info-3
@exec install-info %D/info/svn-design.info %D/info/dir
lib/libsvn_client-1.a
lib/libsvn_client-1.la
lib/libsvn_client-1.so
@ -88,6 +83,7 @@ lib/libsvn_wc-1.la
lib/libsvn_wc-1.so
lib/libsvn_wc-1.so.0
%%MOD_DAV_SVN%%libexec/apache2/mod_dav_svn.so
%%MOD_DAV_SVN%%libexec/apache2/mod_authz_svn.so
%%MOD_DAV_SVN%%@exec %D/sbin/apxs -e -S LIBEXECDIR=%D/libexec/apache2 -a -n dav libexec/apache2/mod_dav.so
%%MOD_DAV_SVN%%@exec %D/sbin/apxs -e -S LIBEXECDIR=%D/libexec/apache2 -a -n dav_svn libexec/apache2/mod_dav_svn.so
%%PORTDOCS%%share/doc/subversion/book/images/ch02dia1.png

View File

@ -5,14 +5,13 @@
# $FreeBSD$
PORTNAME= subversion
PORTVERSION= 0.23.0
PORTREVISION= 2
PORTVERSION= 0.24.2
CATEGORIES= devel
MASTER_SITES= http://subversion.tigris.org/files/documents/15/4218/
MASTER_SITES= http://subversion.tigris.org/files/documents/15/4807/
MASTER_SITES+= ${MASTER_SITE_LOCAL}
MASTER_SITE_SUBDIR= bmah
MAINTAINER= rodrigc@attbi.com
MAINTAINER= bmah@freebsd.org
COMMENT= Version control system
LIB_DEPENDS= db4:${PORTSDIR}/databases/db4 \
@ -51,8 +50,8 @@ PKGDEINSTALL= NONEXISTENT
pre-extract:
.if !defined(WITH_MOD_DAV_SVN)
@${ECHO_MSG}
@${ECHO_MSG} "You can enable the mod_dav_svn module for Apache 2.X by defining"
@${ECHO_MSG} "WITH_MOD_DAV_SVN."
@${ECHO_MSG} "You can enable the mod_dav_svn module for Apache 2.X"
@${ECHO_MSG} "by defining WITH_MOD_DAV_SVN."
@${ECHO_MSG}
.endif
@ -69,7 +68,6 @@ pre-install:
.endif
post-install:
install-info ${PREFIX}/info/svn-design.info ${PREFIX}/info/dir
.if !defined(NOPORTDOCS)
cd ${WRKSRC}/doc/book; \
${MAKE} INSTALL_DIR=${DOCSDIR} \

View File

@ -1 +1 @@
MD5 (subversion-0.23.0.tar.gz) = 59661f2145976437b371a0ab3a555dbd
MD5 (subversion-0.24.2.tar.gz) = 535956794859aab9da34b78b6c783210

View File

@ -46,9 +46,12 @@ if ! mkdir ${tmpdir}; then
fi
for i in ${conffile}; do
awk '{if (!/^LoadModule dav_svn_module/ && !/^AddModule mod_dav_svn.c/) \
awk '{if (!/^LoadModule dav_svn_module/ &&
!/^AddModule mod_dav_svn.c/ &&\
!/^LoadModule authz_svn_module/ &&\
!/^AddModule mod_authz_svn.c/ ) \
print $0}' < ${confdir}/$i > ${tmpdir}/$i
echo Removing dav_svn_module from $i in config dir: ${confdir}
echo Removing dav_svn_module and authz_svn_module from $i in config dir: ${confdir}
cat ${tmpdir}/$i > ${confdir}/$i
done

View File

@ -4,6 +4,7 @@ bin/svndumpfilter
bin/svnlook
bin/svnserve
bin/svnversion
include/subversion-1/mod_dav_svn.h
include/subversion-1/svn-revision.txt
include/subversion-1/svn_auth.h
include/subversion-1/svn_base64.h
@ -37,12 +38,6 @@ include/subversion-1/svn_version.h
include/subversion-1/svn_wc.h
include/subversion-1/svn_xml.h
@dirrm include/subversion-1
@unexec install-info --delete %D/info/svn-design.info %D/info/dir
info/svn-design.info
info/svn-design.info-1
info/svn-design.info-2
info/svn-design.info-3
@exec install-info %D/info/svn-design.info %D/info/dir
lib/libsvn_client-1.a
lib/libsvn_client-1.la
lib/libsvn_client-1.so
@ -88,6 +83,7 @@ lib/libsvn_wc-1.la
lib/libsvn_wc-1.so
lib/libsvn_wc-1.so.0
%%MOD_DAV_SVN%%libexec/apache2/mod_dav_svn.so
%%MOD_DAV_SVN%%libexec/apache2/mod_authz_svn.so
%%MOD_DAV_SVN%%@exec %D/sbin/apxs -e -S LIBEXECDIR=%D/libexec/apache2 -a -n dav libexec/apache2/mod_dav.so
%%MOD_DAV_SVN%%@exec %D/sbin/apxs -e -S LIBEXECDIR=%D/libexec/apache2 -a -n dav_svn libexec/apache2/mod_dav_svn.so
%%PORTDOCS%%share/doc/subversion/book/images/ch02dia1.png

View File

@ -5,14 +5,13 @@
# $FreeBSD$
PORTNAME= subversion
PORTVERSION= 0.23.0
PORTREVISION= 2
PORTVERSION= 0.24.2
CATEGORIES= devel
MASTER_SITES= http://subversion.tigris.org/files/documents/15/4218/
MASTER_SITES= http://subversion.tigris.org/files/documents/15/4807/
MASTER_SITES+= ${MASTER_SITE_LOCAL}
MASTER_SITE_SUBDIR= bmah
MAINTAINER= rodrigc@attbi.com
MAINTAINER= bmah@freebsd.org
COMMENT= Version control system
LIB_DEPENDS= db4:${PORTSDIR}/databases/db4 \
@ -51,8 +50,8 @@ PKGDEINSTALL= NONEXISTENT
pre-extract:
.if !defined(WITH_MOD_DAV_SVN)
@${ECHO_MSG}
@${ECHO_MSG} "You can enable the mod_dav_svn module for Apache 2.X by defining"
@${ECHO_MSG} "WITH_MOD_DAV_SVN."
@${ECHO_MSG} "You can enable the mod_dav_svn module for Apache 2.X"
@${ECHO_MSG} "by defining WITH_MOD_DAV_SVN."
@${ECHO_MSG}
.endif
@ -69,7 +68,6 @@ pre-install:
.endif
post-install:
install-info ${PREFIX}/info/svn-design.info ${PREFIX}/info/dir
.if !defined(NOPORTDOCS)
cd ${WRKSRC}/doc/book; \
${MAKE} INSTALL_DIR=${DOCSDIR} \

View File

@ -1 +1 @@
MD5 (subversion-0.23.0.tar.gz) = 59661f2145976437b371a0ab3a555dbd
MD5 (subversion-0.24.2.tar.gz) = 535956794859aab9da34b78b6c783210

View File

@ -46,9 +46,12 @@ if ! mkdir ${tmpdir}; then
fi
for i in ${conffile}; do
awk '{if (!/^LoadModule dav_svn_module/ && !/^AddModule mod_dav_svn.c/) \
awk '{if (!/^LoadModule dav_svn_module/ &&
!/^AddModule mod_dav_svn.c/ &&\
!/^LoadModule authz_svn_module/ &&\
!/^AddModule mod_authz_svn.c/ ) \
print $0}' < ${confdir}/$i > ${tmpdir}/$i
echo Removing dav_svn_module from $i in config dir: ${confdir}
echo Removing dav_svn_module and authz_svn_module from $i in config dir: ${confdir}
cat ${tmpdir}/$i > ${confdir}/$i
done

View File

@ -4,6 +4,7 @@ bin/svndumpfilter
bin/svnlook
bin/svnserve
bin/svnversion
include/subversion-1/mod_dav_svn.h
include/subversion-1/svn-revision.txt
include/subversion-1/svn_auth.h
include/subversion-1/svn_base64.h
@ -37,12 +38,6 @@ include/subversion-1/svn_version.h
include/subversion-1/svn_wc.h
include/subversion-1/svn_xml.h
@dirrm include/subversion-1
@unexec install-info --delete %D/info/svn-design.info %D/info/dir
info/svn-design.info
info/svn-design.info-1
info/svn-design.info-2
info/svn-design.info-3
@exec install-info %D/info/svn-design.info %D/info/dir
lib/libsvn_client-1.a
lib/libsvn_client-1.la
lib/libsvn_client-1.so
@ -88,6 +83,7 @@ lib/libsvn_wc-1.la
lib/libsvn_wc-1.so
lib/libsvn_wc-1.so.0
%%MOD_DAV_SVN%%libexec/apache2/mod_dav_svn.so
%%MOD_DAV_SVN%%libexec/apache2/mod_authz_svn.so
%%MOD_DAV_SVN%%@exec %D/sbin/apxs -e -S LIBEXECDIR=%D/libexec/apache2 -a -n dav libexec/apache2/mod_dav.so
%%MOD_DAV_SVN%%@exec %D/sbin/apxs -e -S LIBEXECDIR=%D/libexec/apache2 -a -n dav_svn libexec/apache2/mod_dav_svn.so
%%PORTDOCS%%share/doc/subversion/book/images/ch02dia1.png

View File

@ -5,14 +5,13 @@
# $FreeBSD$
PORTNAME= subversion
PORTVERSION= 0.23.0
PORTREVISION= 2
PORTVERSION= 0.24.2
CATEGORIES= devel
MASTER_SITES= http://subversion.tigris.org/files/documents/15/4218/
MASTER_SITES= http://subversion.tigris.org/files/documents/15/4807/
MASTER_SITES+= ${MASTER_SITE_LOCAL}
MASTER_SITE_SUBDIR= bmah
MAINTAINER= rodrigc@attbi.com
MAINTAINER= bmah@freebsd.org
COMMENT= Version control system
LIB_DEPENDS= db4:${PORTSDIR}/databases/db4 \
@ -51,8 +50,8 @@ PKGDEINSTALL= NONEXISTENT
pre-extract:
.if !defined(WITH_MOD_DAV_SVN)
@${ECHO_MSG}
@${ECHO_MSG} "You can enable the mod_dav_svn module for Apache 2.X by defining"
@${ECHO_MSG} "WITH_MOD_DAV_SVN."
@${ECHO_MSG} "You can enable the mod_dav_svn module for Apache 2.X"
@${ECHO_MSG} "by defining WITH_MOD_DAV_SVN."
@${ECHO_MSG}
.endif
@ -69,7 +68,6 @@ pre-install:
.endif
post-install:
install-info ${PREFIX}/info/svn-design.info ${PREFIX}/info/dir
.if !defined(NOPORTDOCS)
cd ${WRKSRC}/doc/book; \
${MAKE} INSTALL_DIR=${DOCSDIR} \

View File

@ -1 +1 @@
MD5 (subversion-0.23.0.tar.gz) = 59661f2145976437b371a0ab3a555dbd
MD5 (subversion-0.24.2.tar.gz) = 535956794859aab9da34b78b6c783210

View File

@ -46,9 +46,12 @@ if ! mkdir ${tmpdir}; then
fi
for i in ${conffile}; do
awk '{if (!/^LoadModule dav_svn_module/ && !/^AddModule mod_dav_svn.c/) \
awk '{if (!/^LoadModule dav_svn_module/ &&
!/^AddModule mod_dav_svn.c/ &&\
!/^LoadModule authz_svn_module/ &&\
!/^AddModule mod_authz_svn.c/ ) \
print $0}' < ${confdir}/$i > ${tmpdir}/$i
echo Removing dav_svn_module from $i in config dir: ${confdir}
echo Removing dav_svn_module and authz_svn_module from $i in config dir: ${confdir}
cat ${tmpdir}/$i > ${confdir}/$i
done

View File

@ -4,6 +4,7 @@ bin/svndumpfilter
bin/svnlook
bin/svnserve
bin/svnversion
include/subversion-1/mod_dav_svn.h
include/subversion-1/svn-revision.txt
include/subversion-1/svn_auth.h
include/subversion-1/svn_base64.h
@ -37,12 +38,6 @@ include/subversion-1/svn_version.h
include/subversion-1/svn_wc.h
include/subversion-1/svn_xml.h
@dirrm include/subversion-1
@unexec install-info --delete %D/info/svn-design.info %D/info/dir
info/svn-design.info
info/svn-design.info-1
info/svn-design.info-2
info/svn-design.info-3
@exec install-info %D/info/svn-design.info %D/info/dir
lib/libsvn_client-1.a
lib/libsvn_client-1.la
lib/libsvn_client-1.so
@ -88,6 +83,7 @@ lib/libsvn_wc-1.la
lib/libsvn_wc-1.so
lib/libsvn_wc-1.so.0
%%MOD_DAV_SVN%%libexec/apache2/mod_dav_svn.so
%%MOD_DAV_SVN%%libexec/apache2/mod_authz_svn.so
%%MOD_DAV_SVN%%@exec %D/sbin/apxs -e -S LIBEXECDIR=%D/libexec/apache2 -a -n dav libexec/apache2/mod_dav.so
%%MOD_DAV_SVN%%@exec %D/sbin/apxs -e -S LIBEXECDIR=%D/libexec/apache2 -a -n dav_svn libexec/apache2/mod_dav_svn.so
%%PORTDOCS%%share/doc/subversion/book/images/ch02dia1.png