+++ /dev/null
---- 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);
-
+++ /dev/null
-#!/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 $?
-}