# variable to the IP address of that remote computer.
SANE_SERVER=""
+SVN_SERVER="no"
+
# Define this if you want to use a remote CUPS print server
#CUPS_SERVER="server.mydomain.com"
#!/bin/bash
-SVN_USER=svn
-
-hvconfig_pre()
-{
- groupadd -f ${SVN_USER}
- hv_useradd -c SvnServer -d /dev/null -g ${SVN_USER} -s /bin/false ${SVN_USER}
-}
-
-hvbuild()
+hvbuild_post()
{
- ${HVMAKE}
-
# Build perl bindings (needed by git-svn)
${HVMAKE} swig-pl
-
- ${HVMAKE} install
${HVMAKE} install-swig-pl
}
-
-hvbuild_post()
-{
- # Creating repositories directory
- mkdir -p /srv/svn
- chown ${SVN_USER}:${SVN_USER} /srv/svn
-}
ipkg -m noac ${SQUIRRELMAIL}
ipkg ${FETCHMAIL} "--with-ssl"
- # Subversion server (client was already installed in stage2)
- ipkg ${SUBVERSION}
+ if [ x"${SVN_SERVER}" == xyes ]; then
+ # Subversion server (client was already installed in stage3)
+ ipkg ${SUBVERSION}
+ fi
fi
ipkg ${LIBGSF}
--- /dev/null
+#!/bin/bash
+
+SVN_USER=svn
+
+hvconfig_pre()
+{
+ groupadd -f ${SVN_USER}
+ hv_useradd -c SvnServer -d /dev/null -g ${SVN_USER} -s /bin/false ${SVN_USER}
+}
+
+hvbuild_post()
+{
+ # Build perl bindings (needed by git-svn)
+ ${HVMAKE} swig-pl
+ ${HVMAKE} install-swig-pl
+}
+
+hvbuild_post()
+{
+ # Creating repositories directory
+ mkdir -p /srv/svn
+ chown ${SVN_USER}:${SVN_USER} /srv/svn
+}