diff options
Diffstat (limited to 'dev-vcs/subversion')
-rw-r--r-- | dev-vcs/subversion/files/subversion-1.6.3-hpux-dso.patch | 16 | ||||
-rw-r--r-- | dev-vcs/subversion/files/svnserve.initd2 | 26 |
2 files changed, 0 insertions, 42 deletions
diff --git a/dev-vcs/subversion/files/subversion-1.6.3-hpux-dso.patch b/dev-vcs/subversion/files/subversion-1.6.3-hpux-dso.patch deleted file mode 100644 index f9739bef3061..000000000000 --- a/dev-vcs/subversion/files/subversion-1.6.3-hpux-dso.patch +++ /dev/null @@ -1,16 +0,0 @@ ---- subversion/libsvn_ra/ra_loader.c.orig 2009-07-20 14:46:02 +0200 -+++ subversion/libsvn_ra/ra_loader.c 2009-07-20 14:50:02 +0200 -@@ -154,8 +154,13 @@ - const char *compat_funcname; - apr_status_t status; - -+#if defined(__hpux) && defined(__hppa) -+ libname = apr_psprintf(pool, "libsvn_ra_%s-%d.sl.0", -+ ra_name, SVN_VER_MAJOR); -+#else - libname = apr_psprintf(pool, "libsvn_ra_%s-%d.so.0", - ra_name, SVN_VER_MAJOR); -+#endif - funcname = apr_psprintf(pool, "svn_ra_%s__init", ra_name); - compat_funcname = apr_psprintf(pool, "svn_ra_%s_init", ra_name); - diff --git a/dev-vcs/subversion/files/svnserve.initd2 b/dev-vcs/subversion/files/svnserve.initd2 deleted file mode 100644 index 0e7956c316e9..000000000000 --- a/dev-vcs/subversion/files/svnserve.initd2 +++ /dev/null @@ -1,26 +0,0 @@ -#!/sbin/openrc-run -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License, v2 or later -# $Id$ - -depend() { - need net -} - -start() { - ebegin "Starting svnserve" - # Ensure that we run from a readable working dir, and that we do not - # lock filesystems when being run from such a location. - cd / - start-stop-daemon --start --quiet --background --make-pidfile \ - --pidfile /var/run/svnserve.pid --exec /usr/bin/svnserve \ - --user ${SVNSERVE_USER:-apache} --group ${SVNSERVE_GROUP:-apache} -- \ - --foreground --daemon ${SVNSERVE_OPTS:---root=/var/svn} - eend $? -} - -stop() { - ebegin "Stopping svnserve" - start-stop-daemon --stop --quiet --pidfile /var/run/svnserve.pid - eend $? -} |