diff options
author | Paul de Vrieze <pauldv@gentoo.org> | 2003-06-19 17:58:45 +0000 |
---|---|---|
committer | Paul de Vrieze <pauldv@gentoo.org> | 2003-06-19 17:58:45 +0000 |
commit | 904a78b0e54c4946036198c3700c05e804df2237 (patch) | |
tree | 4b7b7da7a4a079d96eb3937b880bc012155f6a1d /dev-util | |
parent | Marked stable for alpha (diff) | |
download | historical-904a78b0e54c4946036198c3700c05e804df2237.tar.gz historical-904a78b0e54c4946036198c3700c05e804df2237.tar.bz2 historical-904a78b0e54c4946036198c3700c05e804df2237.zip |
Add some comments to the subversion ebuild concerning rebuilding sthe database
Diffstat (limited to 'dev-util')
-rw-r--r-- | dev-util/subversion/ChangeLog | 7 | ||||
-rw-r--r-- | dev-util/subversion/Manifest | 4 | ||||
-rw-r--r-- | dev-util/subversion/subversion-0.24.1.ebuild | 14 |
3 files changed, 18 insertions, 7 deletions
diff --git a/dev-util/subversion/ChangeLog b/dev-util/subversion/ChangeLog index 0fbe51481542..983197e71b00 100644 --- a/dev-util/subversion/ChangeLog +++ b/dev-util/subversion/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-util/subversion # Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/subversion/ChangeLog,v 1.21 2003/06/18 19:21:17 pauldv Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/subversion/ChangeLog,v 1.22 2003/06/19 17:58:37 pauldv Exp $ + + 19 Jun 2003; Paul de Vrieze <pauldv@gentoo.org> subversion-0.24.1.ebuild: + Add a comment concerning rebuilding the repository with an upgrade of the db + version, bug #22144 courtessy of Markus Luisser + <e9427574@student.tuwien.ac.at> *subversion-0.24.1 (18 Jun 2003) diff --git a/dev-util/subversion/Manifest b/dev-util/subversion/Manifest index b5560b1c0531..f60b63e004c2 100644 --- a/dev-util/subversion/Manifest +++ b/dev-util/subversion/Manifest @@ -1,6 +1,6 @@ MD5 a343df53435bdcfc3a4c85f3e9912102 subversion-0.10_pre1.ebuild 8054 -MD5 97a6dc1acdb82915516a39b5820f720e ChangeLog 3325 -MD5 8907307497da5206ff560e146ee0744e subversion-0.24.1.ebuild 6875 +MD5 23c20e221b9524de1db5cf8012c0138e ChangeLog 3565 +MD5 c450629e36d7acf1b4ec4a8276e14e50 subversion-0.24.1.ebuild 7173 MD5 d88c10d1a71e1912fb8f47491e3ae05b subversion-0.21.0-r1.ebuild 5784 MD5 7a45c9dae1829ed6fa2b22ead64c4eab subversion-0.21.0.ebuild 6494 MD5 61e052a1c91f8ba072d291fb658cae9e subversion-0.22.2.ebuild 6852 diff --git a/dev-util/subversion/subversion-0.24.1.ebuild b/dev-util/subversion/subversion-0.24.1.ebuild index 9d641ddaf235..98c0367e0cf9 100644 --- a/dev-util/subversion/subversion-0.24.1.ebuild +++ b/dev-util/subversion/subversion-0.24.1.ebuild @@ -1,11 +1,12 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/subversion/subversion-0.24.1.ebuild,v 1.1 2003/06/18 19:21:18 pauldv Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/subversion/subversion-0.24.1.ebuild,v 1.2 2003/06/19 17:58:37 pauldv Exp $ inherit libtool +DB_VERSION="4.0.14" DESCRIPTION="A compelling replacement for CVS" -SRC_URI="http://www.sleepycat.com/update/snapshot/db-4.0.14.tar.gz +SRC_URI="http://www.sleepycat.com/update/snapshot/db-${DB_VERSION}.tar.gz http://subversion.tigris.org/files/documents/15/4761/${P}.tar.gz" HOMEPAGE="http://subversion.tigris.org/" @@ -14,7 +15,7 @@ LICENSE="Apache-1.1" KEYWORDS="~x86 ~ppc" IUSE="ssl apache2 berkdb python" -S_DB="${WORKDIR}/db-4.0.14/build_unix" +S_DB="${WORKDIR}/db-${DB_VERSION}/build_unix" DEPEND="python? ( >=dev-lang/python-2.0 ) >=sys-apps/diffutils-2.7.7 @@ -47,7 +48,7 @@ src_unpack() { cd ${WORKDIR} unpack ${P}.tar.gz use berkdb && ( has_version =db-4* || ( - unpack db-4.0.14.tar.gz + unpack db-${DB_VERSION}.tar.gz ) ) cd ${S} elibtoolize ${S} @@ -193,6 +194,11 @@ pkg_postinst() { einfo "" fi einfo "A repository needs to be created using the ebuild ${PN} config command" + if has_version =sys-libs/db-4*; then + einfo "If you upgraded from an older version of berkely db and experience" + einfo "problems with your repository then run the following command:" + einfo " su apache -c \"db4_recover -h /path/to/repos\"" + fi if use apache; then einfo "To allow web access a htpasswd file needs to be created using the" einfo "following command:" |