diff options
author | Pacho Ramos <pacho@gentoo.org> | 2010-10-07 20:05:16 +0000 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2010-10-07 20:05:16 +0000 |
commit | fc373d03a40f10c081bf5d48f985f65b302194c6 (patch) | |
tree | 32273857ff1754532acd20640ab6b579d63767bf /dev-dotnet | |
parent | ppc64 stable wrt #324077 (diff) | |
download | gentoo-2-fc373d03a40f10c081bf5d48f985f65b302194c6.tar.gz gentoo-2-fc373d03a40f10c081bf5d48f985f65b302194c6.tar.bz2 gentoo-2-fc373d03a40f10c081bf5d48f985f65b302194c6.zip |
Remove old.
(Portage version: 2.1.8.3/cvs/Linux x86_64)
Diffstat (limited to 'dev-dotnet')
26 files changed, 15 insertions, 1104 deletions
diff --git a/dev-dotnet/xsp/ChangeLog b/dev-dotnet/xsp/ChangeLog index a21ef5e5da65..f73477f2c630 100644 --- a/dev-dotnet/xsp/ChangeLog +++ b/dev-dotnet/xsp/ChangeLog @@ -1,6 +1,20 @@ # ChangeLog for dev-dotnet/xsp # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/xsp/ChangeLog,v 1.85 2010/09/23 22:14:31 hwoarang Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/xsp/ChangeLog,v 1.86 2010/10/07 20:05:15 pacho Exp $ + + 07 Oct 2010; Pacho Ramos <pacho@gentoo.org> + -files/1.2.1/mod-mono-server.confd, -xsp-2.0.ebuild, -xsp-2.4.2.ebuild, + -files/1.2.1/mod-mono-server.initd, -xsp-2.0.9999.ebuild, + -xsp-2.4.9999.ebuild, -files/1.2.1/xsp.confd, -xsp-2.6.4.ebuild, + -files/1.2.1/xsp.initd, -files/1.2.4/mod-mono-server.confd, + -files/1.2.4/mod-mono-server.initd, -files/1.2.4/xsp.confd, + -files/1.2.4/xsp.initd, -files/1.2.6/mod-mono-server.confd, + -files/1.2.6/mod-mono-server.initd, -files/1.2.6/xsp.confd, + -files/1.2.6/xsp.initd, -files/2.0/mod-mono-server.confd, + -files/2.0/mod-mono-server.initd, -files/2.0/xsp.confd, + -files/2.0/xsp.initd, -files/2.2/configure-fix.patch, -xsp-1.2.1.ebuild, + -xsp-1.2.4.ebuild, -xsp-1.2.6.ebuild: + Remove old. 23 Sep 2010; Markos Chandras <hwoarang@gentoo.org> xsp-2.6.5.ebuild: Stable on amd64 wrt bug #336851 diff --git a/dev-dotnet/xsp/files/1.2.1/mod-mono-server.confd b/dev-dotnet/xsp/files/1.2.1/mod-mono-server.confd deleted file mode 100644 index 222b6e7221de..000000000000 --- a/dev-dotnet/xsp/files/1.2.1/mod-mono-server.confd +++ /dev/null @@ -1,34 +0,0 @@ -# Config file for /etc/init.d/mod-mono-server -# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/xsp/files/1.2.1/mod-mono-server.confd,v 1.1 2006/11/25 00:13:59 jurek Exp $ - -# Configuration directives for mod-mono-server.exe. For more information on -# these variables, see the man page for xsp(1). - -# This is the document root; trailing slash is not necessary -#MonoServerRootDir="/usr/lib/xsp/test" - -# Directory to search for files with an `.webapp' extension. -#MonoApplicationsConfigDir="/usr/lib/xsp/test" - -# Comma separated list of directories (in the form virtual:real) for all -# applications managed by the server. For example: -# /app1:/var/www/localhost/htdocs/app1,/app2:/var/www/localhost/htdocs/app2 -MonoApplications="/mono:/usr/lib/xsp/test" - -# The communication channel used between mod-mono-server and mod_mono. -# unix - A unix socket -# tcp - A TCP connection -MonoServerChannel="unix" - -# When the comm. channel is "unix", the local filename used by the socket. -UnixSocketFileName="/tmp/mod_mono_server" - -# When the comm. channel is "tcp", IP address for the server to listen on. -#MonoServerAddress=127.0.0.1 - -# When the comm. channel is "tcp", port for the server to listen on. -#MonoServerPort=8080 - -# If you want to host .NET 2.0 applications you have to set this to 2. -# Otherwise, leave it unchaged -MonoServerVersion=1 diff --git a/dev-dotnet/xsp/files/1.2.1/mod-mono-server.initd b/dev-dotnet/xsp/files/1.2.1/mod-mono-server.initd deleted file mode 100644 index 65d1595fdaab..000000000000 --- a/dev-dotnet/xsp/files/1.2.1/mod-mono-server.initd +++ /dev/null @@ -1,81 +0,0 @@ -#!/sbin/runscript -# Copyright 1999-2006 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/xsp/files/1.2.1/mod-mono-server.initd,v 1.1 2006/11/25 00:13:59 jurek Exp $ - -depend() { - use net - after dotnet -} - -start() { - [ -z "$MonoServerRootDir" ] && \ - MonoServerRootDir="/usr/lib/xsp/test" - [ -z "$MonoApplications" ] && \ - MonoApplications="/mono:/usr/lib/xsp/test,/:." - [ -z "$UnixSocketFileName" ] && \ - UnixSocketFileName="/tmp/mod_mono_server" - [ -z "$MonoServerAddress" ] && \ - MonoServerAddress=127.0.0.1 - [ -z "$MonoServerPort" ] && \ - MonoServerPort=8080 - [ -z "$MonoServerVersion" ] && \ - MonoServerVersion=1 - - MONO_SERVER_OPTS="--root ${MonoServerRootDir} \ ---applications ${MonoApplications} --nonstop" - - [ -n "$MonoApplicationsConfigDir" ] && \ - MONO_SERVER_OPTS="${MONO_SERVER_OPTS} \ ---appconfigdir ${MonoApplicationsConfigDir}" - - case "$MonoServerChannel" in - "tcp" ) - MONO_SERVER_OPTS="${MONO_SERVER_OPTS} \ ---address ${MonoServerAddress} --port ${MonoServerPort}" - ;; - - "unix" ) - [ -f "$UnixSocketFileName" ] && rm -f $UnixSocketFileName - MONO_SERVER_OPTS="${MONO_SERVER_OPTS} \ ---filename ${UnixSocketFileName}" - ;; - - * ) - eerror "Please set a valid value for MonoServerChannel" - return 1 - ;; - esac - - if [ ${MonoServerVersion} -eq 1 ]; then - modmonoserverpath=1.0/mod-mono-server.exe - elif [ ${MonoServerVersion} -eq 2 ]; then - modmonoserverpath=2.0/mod-mono-server2.exe - else - eerror "MonoServerVersion was not properly set. Check your /etc/conf.d/xsp" - return 1 - fi - - export MONO_SHARED_DIR=/tmp - - ebegin "Starting mod-mono-server" - - start-stop-daemon --quiet --start \ - --background \ - --make-pidfile \ - --pidfile /var/run/aspnet/mod-mono-server.pid \ - --chuid aspnet \ - --exec /usr/bin/mono /usr/lib/mono/${modmonoserverpath} \ - -- $MONO_SERVER_OPTS - - eend $? -} - -stop() { - ebegin "Stopping mod-mono-server" - - start-stop-daemon -o --quiet --stop \ - --pidfile /var/run/aspnet/mod-mono-server.pid - - eend $? -} diff --git a/dev-dotnet/xsp/files/1.2.1/xsp.confd b/dev-dotnet/xsp/files/1.2.1/xsp.confd deleted file mode 100644 index e49177bcde59..000000000000 --- a/dev-dotnet/xsp/files/1.2.1/xsp.confd +++ /dev/null @@ -1,12 +0,0 @@ -# Config file for /etc/init.d/xsp -# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/xsp/files/1.2.1/xsp.confd,v 1.1 2006/11/25 00:13:59 jurek Exp $ - -# This is the document root; trailing slash is not necessary -MonoServerRoot=/usr/lib/xsp/test - -# Port for the server to run on -MonoServerPort=8000 - -# If you want to host .NET 2.0 applications you have to set this to 2. -# Otherwise, leave it unchanged -MonoServerVersion=1 diff --git a/dev-dotnet/xsp/files/1.2.1/xsp.initd b/dev-dotnet/xsp/files/1.2.1/xsp.initd deleted file mode 100644 index 94f48a1ea46f..000000000000 --- a/dev-dotnet/xsp/files/1.2.1/xsp.initd +++ /dev/null @@ -1,38 +0,0 @@ -#!/sbin/runscript -# Copyright 1999-2006 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/xsp/files/1.2.1/xsp.initd,v 1.1 2006/11/25 00:13:59 jurek Exp $ - -depend() { - need net - after dotnet -} - -start() { - ebegin "Starting xsp" - - if [ ${MonoServerVersion} -eq 1 ]; then - xsppath=1.0/xsp.exe - elif [ ${MonoServerVersion} -eq 2 ]; then - xsppath=2.0/xsp2.exe - else - eerror "MonoServerVersion was not properly set. Check your config file" - return 1 - fi - - start-stop-daemon --quiet --start \ - --background \ - --make-pidfile \ - --pidfile /var/run/aspnet/xsp.pid \ - --chuid aspnet \ - --exec /usr/bin/mono /usr/lib/mono/${xsppath} -- --root ${MonoServerRoot} --port ${MonoServerPort} --nonstop - eend $? -} - -stop() { - ebegin "Stopping xsp" - start-stop-daemon -o --quiet --stop \ - --pidfile /var/run/aspnet/xsp.pid - eend $? -} - diff --git a/dev-dotnet/xsp/files/1.2.4/mod-mono-server.confd b/dev-dotnet/xsp/files/1.2.4/mod-mono-server.confd deleted file mode 100644 index 37598d78fdb9..000000000000 --- a/dev-dotnet/xsp/files/1.2.4/mod-mono-server.confd +++ /dev/null @@ -1,34 +0,0 @@ -# Config file for /etc/init.d/mod-mono-server -# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/xsp/files/1.2.4/mod-mono-server.confd,v 1.1 2007/05/17 18:18:53 jurek Exp $ - -# Configuration directives for mod-mono-server.exe. For more information on -# these variables, see the man page for xsp(1). - -# This is the document root; trailing slash is not necessary -#MonoServerRootDir="/usr/lib/xsp/test" - -# Directory to search for files with an `.webapp' extension. -#MonoApplicationsConfigDir="/usr/lib/xsp/test" - -# Comma separated list of directories (in the form virtual:real) for all -# applications managed by the server. For example: -# /app1:/var/www/localhost/htdocs/app1,/app2:/var/www/localhost/htdocs/app2 -MonoApplications="/mono:/usr/lib/xsp/test" - -# The communication channel used between mod-mono-server and mod_mono. -# unix - A unix socket -# tcp - A TCP connection -MonoServerChannel="unix" - -# When the comm. channel is "unix", the local filename used by the socket. -UnixSocketFileName="/tmp/mod_mono_server" - -# When the comm. channel is "tcp", IP address for the server to listen on. -#MonoServerAddress=127.0.0.1 - -# When the comm. channel is "tcp", port for the server to listen on. -#MonoServerPort=8080 - -# If you want to host .NET 2.0 applications you have to set this to 2. -# Otherwise, leave it unchaged -MonoServerVersion=1 diff --git a/dev-dotnet/xsp/files/1.2.4/mod-mono-server.initd b/dev-dotnet/xsp/files/1.2.4/mod-mono-server.initd deleted file mode 100644 index 5bd6bf5e8cbc..000000000000 --- a/dev-dotnet/xsp/files/1.2.4/mod-mono-server.initd +++ /dev/null @@ -1,81 +0,0 @@ -#!/sbin/runscript -# Copyright 1999-2007 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/xsp/files/1.2.4/mod-mono-server.initd,v 1.1 2007/05/17 18:18:53 jurek Exp $ - -depend() { - use net - after dotnet -} - -start() { - [ -z "$MonoServerRootDir" ] && \ - MonoServerRootDir="/usr/lib/xsp/test" - [ -z "$MonoApplications" ] && \ - MonoApplications="/mono:/usr/lib/xsp/test,/:." - [ -z "$UnixSocketFileName" ] && \ - UnixSocketFileName="/tmp/mod_mono_server" - [ -z "$MonoServerAddress" ] && \ - MonoServerAddress=127.0.0.1 - [ -z "$MonoServerPort" ] && \ - MonoServerPort=8080 - [ -z "$MonoServerVersion" ] && \ - MonoServerVersion=1 - - MONO_SERVER_OPTS="--root ${MonoServerRootDir} \ ---applications ${MonoApplications} --nonstop" - - [ -n "$MonoApplicationsConfigDir" ] && \ - MONO_SERVER_OPTS="${MONO_SERVER_OPTS} \ ---appconfigdir ${MonoApplicationsConfigDir}" - - case "$MonoServerChannel" in - "tcp" ) - MONO_SERVER_OPTS="${MONO_SERVER_OPTS} \ ---address ${MonoServerAddress} --port ${MonoServerPort}" - ;; - - "unix" ) - [ -f "$UnixSocketFileName" ] && rm -f $UnixSocketFileName - MONO_SERVER_OPTS="${MONO_SERVER_OPTS} \ ---filename ${UnixSocketFileName}" - ;; - - * ) - eerror "Please set a valid value for MonoServerChannel" - return 1 - ;; - esac - - if [ ${MonoServerVersion} -eq 1 ]; then - modmonoserverpath=1.0/mod-mono-server.exe - elif [ ${MonoServerVersion} -eq 2 ]; then - modmonoserverpath=2.0/mod-mono-server2.exe - else - eerror "MonoServerVersion was not properly set. Check your /etc/conf.d/xsp" - return 1 - fi - - export MONO_SHARED_DIR=/tmp - - ebegin "Starting mod-mono-server" - - start-stop-daemon --quiet --start \ - --background \ - --make-pidfile \ - --pidfile /var/run/aspnet/mod-mono-server.pid \ - --chuid aspnet \ - --exec /usr/bin/mono /usr/lib/mono/${modmonoserverpath} \ - -- $MONO_SERVER_OPTS - - eend $? -} - -stop() { - ebegin "Stopping mod-mono-server" - - start-stop-daemon -o --quiet --stop \ - --pidfile /var/run/aspnet/mod-mono-server.pid - - eend $? -} diff --git a/dev-dotnet/xsp/files/1.2.4/xsp.confd b/dev-dotnet/xsp/files/1.2.4/xsp.confd deleted file mode 100644 index 8f724ad99c32..000000000000 --- a/dev-dotnet/xsp/files/1.2.4/xsp.confd +++ /dev/null @@ -1,12 +0,0 @@ -# Config file for /etc/init.d/xsp -# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/xsp/files/1.2.4/xsp.confd,v 1.1 2007/05/17 18:18:53 jurek Exp $ - -# This is the document root; trailing slash is not necessary -MonoServerRoot=/usr/lib/xsp/test - -# Port for the server to run on -MonoServerPort=8000 - -# If you want to host .NET 2.0 applications you have to set this to 2. -# Otherwise, leave it unchanged -MonoServerVersion=1 diff --git a/dev-dotnet/xsp/files/1.2.4/xsp.initd b/dev-dotnet/xsp/files/1.2.4/xsp.initd deleted file mode 100644 index d3e104d19381..000000000000 --- a/dev-dotnet/xsp/files/1.2.4/xsp.initd +++ /dev/null @@ -1,38 +0,0 @@ -#!/sbin/runscript -# Copyright 1999-2007 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/xsp/files/1.2.4/xsp.initd,v 1.1 2007/05/17 18:18:53 jurek Exp $ - -depend() { - need net - after dotnet -} - -start() { - ebegin "Starting xsp" - - if [ ${MonoServerVersion} -eq 1 ]; then - xsppath=1.0/xsp.exe - elif [ ${MonoServerVersion} -eq 2 ]; then - xsppath=2.0/xsp2.exe - else - eerror "MonoServerVersion was not properly set. Check your config file" - return 1 - fi - - start-stop-daemon --quiet --start \ - --background \ - --make-pidfile \ - --pidfile /var/run/aspnet/xsp.pid \ - --chuid aspnet \ - --exec /usr/bin/mono /usr/lib/mono/${xsppath} -- --root ${MonoServerRoot} --port ${MonoServerPort} --nonstop - eend $? -} - -stop() { - ebegin "Stopping xsp" - start-stop-daemon -o --quiet --stop \ - --pidfile /var/run/aspnet/xsp.pid - eend $? -} - diff --git a/dev-dotnet/xsp/files/1.2.6/mod-mono-server.confd b/dev-dotnet/xsp/files/1.2.6/mod-mono-server.confd deleted file mode 100644 index 65c9d0c8caad..000000000000 --- a/dev-dotnet/xsp/files/1.2.6/mod-mono-server.confd +++ /dev/null @@ -1,34 +0,0 @@ -# Config file for /etc/init.d/mod-mono-server -# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/xsp/files/1.2.6/mod-mono-server.confd,v 1.1 2007/12/14 20:10:31 jurek Exp $ - -# Configuration directives for mod-mono-server.exe. For more information on -# these variables, see the man page for xsp(1). - -# This is the document root; trailing slash is not necessary -#MonoServerRootDir="/usr/lib/xsp/test" - -# Directory to search for files with an `.webapp' extension. -#MonoApplicationsConfigDir="/usr/lib/xsp/test" - -# Comma separated list of directories (in the form virtual:real) for all -# applications managed by the server. For example: -# /app1:/var/www/localhost/htdocs/app1,/app2:/var/www/localhost/htdocs/app2 -MonoApplications="/mono:/usr/lib/xsp/test" - -# The communication channel used between mod-mono-server and mod_mono. -# unix - A unix socket -# tcp - A TCP connection -MonoServerChannel="unix" - -# When the comm. channel is "unix", the local filename used by the socket. -UnixSocketFileName="/tmp/mod_mono_server" - -# When the comm. channel is "tcp", IP address for the server to listen on. -#MonoServerAddress=127.0.0.1 - -# When the comm. channel is "tcp", port for the server to listen on. -#MonoServerPort=8080 - -# If you want to host .NET 2.0 applications you have to set this to 2. -# Otherwise, leave it unchaged -MonoServerVersion=1 diff --git a/dev-dotnet/xsp/files/1.2.6/mod-mono-server.initd b/dev-dotnet/xsp/files/1.2.6/mod-mono-server.initd deleted file mode 100644 index 03128a345e86..000000000000 --- a/dev-dotnet/xsp/files/1.2.6/mod-mono-server.initd +++ /dev/null @@ -1,81 +0,0 @@ -#!/sbin/runscript -# Copyright 1999-2007 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/xsp/files/1.2.6/mod-mono-server.initd,v 1.1 2007/12/14 20:10:31 jurek Exp $ - -depend() { - use net - after dotnet -} - -start() { - [ -z "$MonoServerRootDir" ] && \ - MonoServerRootDir="/usr/lib/xsp/test" - [ -z "$MonoApplications" ] && \ - MonoApplications="/mono:/usr/lib/xsp/test,/:." - [ -z "$UnixSocketFileName" ] && \ - UnixSocketFileName="/tmp/mod_mono_server" - [ -z "$MonoServerAddress" ] && \ - MonoServerAddress=127.0.0.1 - [ -z "$MonoServerPort" ] && \ - MonoServerPort=8080 - [ -z "$MonoServerVersion" ] && \ - MonoServerVersion=1 - - MONO_SERVER_OPTS="--root ${MonoServerRootDir} \ ---applications ${MonoApplications} --nonstop" - - [ -n "$MonoApplicationsConfigDir" ] && \ - MONO_SERVER_OPTS="${MONO_SERVER_OPTS} \ ---appconfigdir ${MonoApplicationsConfigDir}" - - case "$MonoServerChannel" in - "tcp" ) - MONO_SERVER_OPTS="${MONO_SERVER_OPTS} \ ---address ${MonoServerAddress} --port ${MonoServerPort}" - ;; - - "unix" ) - [ -f "$UnixSocketFileName" ] && rm -f $UnixSocketFileName - MONO_SERVER_OPTS="${MONO_SERVER_OPTS} \ ---filename ${UnixSocketFileName}" - ;; - - * ) - eerror "Please set a valid value for MonoServerChannel" - return 1 - ;; - esac - - if [ ${MonoServerVersion} -eq 1 ]; then - modmonoserverpath=1.0/mod-mono-server.exe - elif [ ${MonoServerVersion} -eq 2 ]; then - modmonoserverpath=2.0/mod-mono-server2.exe - else - eerror "MonoServerVersion was not properly set. Check your /etc/conf.d/xsp" - return 1 - fi - - export MONO_SHARED_DIR=/tmp - - ebegin "Starting mod-mono-server" - - start-stop-daemon --quiet --start \ - --background \ - --make-pidfile \ - --pidfile /var/run/aspnet/mod-mono-server.pid \ - --chuid aspnet \ - --exec /usr/bin/mono /usr/lib/mono/${modmonoserverpath} \ - -- $MONO_SERVER_OPTS - - eend $? -} - -stop() { - ebegin "Stopping mod-mono-server" - - start-stop-daemon -o --quiet --stop \ - --pidfile /var/run/aspnet/mod-mono-server.pid - - eend $? -} diff --git a/dev-dotnet/xsp/files/1.2.6/xsp.confd b/dev-dotnet/xsp/files/1.2.6/xsp.confd deleted file mode 100644 index 46784d13b71c..000000000000 --- a/dev-dotnet/xsp/files/1.2.6/xsp.confd +++ /dev/null @@ -1,12 +0,0 @@ -# Config file for /etc/init.d/xsp -# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/xsp/files/1.2.6/xsp.confd,v 1.1 2007/12/14 20:10:31 jurek Exp $ - -# This is the document root; trailing slash is not necessary -MonoServerRoot=/usr/lib/xsp/test - -# Port for the server to run on -MonoServerPort=8000 - -# If you want to host .NET 2.0 applications you have to set this to 2. -# Otherwise, leave it unchanged -MonoServerVersion=1 diff --git a/dev-dotnet/xsp/files/1.2.6/xsp.initd b/dev-dotnet/xsp/files/1.2.6/xsp.initd deleted file mode 100644 index a2a4d27e1cd1..000000000000 --- a/dev-dotnet/xsp/files/1.2.6/xsp.initd +++ /dev/null @@ -1,38 +0,0 @@ -#!/sbin/runscript -# Copyright 1999-2007 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/xsp/files/1.2.6/xsp.initd,v 1.1 2007/12/14 20:10:31 jurek Exp $ - -depend() { - need net - after dotnet -} - -start() { - ebegin "Starting xsp" - - if [ ${MonoServerVersion} -eq 1 ]; then - xsppath=1.0/xsp.exe - elif [ ${MonoServerVersion} -eq 2 ]; then - xsppath=2.0/xsp2.exe - else - eerror "MonoServerVersion was not properly set. Check your config file" - return 1 - fi - - start-stop-daemon --quiet --start \ - --background \ - --make-pidfile \ - --pidfile /var/run/aspnet/xsp.pid \ - --chuid aspnet \ - --exec /usr/bin/mono /usr/lib/mono/${xsppath} -- --root ${MonoServerRoot} --port ${MonoServerPort} --nonstop - eend $? -} - -stop() { - ebegin "Stopping xsp" - start-stop-daemon -o --quiet --stop \ - --pidfile /var/run/aspnet/xsp.pid - eend $? -} - diff --git a/dev-dotnet/xsp/files/2.0/mod-mono-server.confd b/dev-dotnet/xsp/files/2.0/mod-mono-server.confd deleted file mode 100644 index 8b6972a87ff7..000000000000 --- a/dev-dotnet/xsp/files/2.0/mod-mono-server.confd +++ /dev/null @@ -1,34 +0,0 @@ -# Config file for /etc/init.d/mod-mono-server -# $Id: mod-mono-server.confd,v 1.1 2008/11/23 20:12:16 loki_val Exp $ - -# Configuration directives for mod-mono-server.exe. For more information on -# these variables, see the man page for xsp(1). - -# This is the document root; trailing slash is not necessary -#MonoServerRootDir="/usr/lib/xsp/test" - -# Directory to search for files with an `.webapp' extension. -#MonoApplicationsConfigDir="/usr/lib/xsp/test" - -# Comma separated list of directories (in the form virtual:real) for all -# applications managed by the server. For example: -# /app1:/var/www/localhost/htdocs/app1,/app2:/var/www/localhost/htdocs/app2 -MonoApplications="/mono:/usr/lib/xsp/test" - -# The communication channel used between mod-mono-server and mod_mono. -# unix - A unix socket -# tcp - A TCP connection -MonoServerChannel="unix" - -# When the comm. channel is "unix", the local filename used by the socket. -UnixSocketFileName="/tmp/mod_mono_server" - -# When the comm. channel is "tcp", IP address for the server to listen on. -#MonoServerAddress=127.0.0.1 - -# When the comm. channel is "tcp", port for the server to listen on. -#MonoServerPort=8080 - -# If you want to host .NET 2.0 applications you have to set this to 2. -# Otherwise, leave it unchaged -MonoServerVersion=1 diff --git a/dev-dotnet/xsp/files/2.0/mod-mono-server.initd b/dev-dotnet/xsp/files/2.0/mod-mono-server.initd deleted file mode 100644 index 25948c0ca17d..000000000000 --- a/dev-dotnet/xsp/files/2.0/mod-mono-server.initd +++ /dev/null @@ -1,81 +0,0 @@ -#!/sbin/runscript -# Copyright 1999-2007 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id: mod-mono-server.initd,v 1.1 2008/11/23 20:12:16 loki_val Exp $ - -depend() { - use net - after dotnet -} - -start() { - [ -z "$MonoServerRootDir" ] && \ - MonoServerRootDir="/usr/lib/xsp/test" - [ -z "$MonoApplications" ] && \ - MonoApplications="/mono:/usr/lib/xsp/test,/:." - [ -z "$UnixSocketFileName" ] && \ - UnixSocketFileName="/tmp/mod_mono_server" - [ -z "$MonoServerAddress" ] && \ - MonoServerAddress=127.0.0.1 - [ -z "$MonoServerPort" ] && \ - MonoServerPort=8080 - [ -z "$MonoServerVersion" ] && \ - MonoServerVersion=1 - - MONO_SERVER_OPTS="--root ${MonoServerRootDir} \ ---applications ${MonoApplications} --nonstop" - - [ -n "$MonoApplicationsConfigDir" ] && \ - MONO_SERVER_OPTS="${MONO_SERVER_OPTS} \ ---appconfigdir ${MonoApplicationsConfigDir}" - - case "$MonoServerChannel" in - "tcp" ) - MONO_SERVER_OPTS="${MONO_SERVER_OPTS} \ ---address ${MonoServerAddress} --port ${MonoServerPort}" - ;; - - "unix" ) - [ -f "$UnixSocketFileName" ] && rm -f $UnixSocketFileName - MONO_SERVER_OPTS="${MONO_SERVER_OPTS} \ ---filename ${UnixSocketFileName}" - ;; - - * ) - eerror "Please set a valid value for MonoServerChannel" - return 1 - ;; - esac - - if [ ${MonoServerVersion} -eq 1 ]; then - modmonoserverpath=1.0/mod-mono-server.exe - elif [ ${MonoServerVersion} -eq 2 ]; then - modmonoserverpath=2.0/mod-mono-server2.exe - else - eerror "MonoServerVersion was not properly set. Check your /etc/conf.d/xsp" - return 1 - fi - - export MONO_SHARED_DIR=/tmp - - ebegin "Starting mod-mono-server" - - start-stop-daemon --quiet --start \ - --background \ - --make-pidfile \ - --pidfile /var/run/aspnet/mod-mono-server.pid \ - --chuid aspnet \ - --exec /usr/bin/mono /usr/lib/mono/${modmonoserverpath} \ - -- $MONO_SERVER_OPTS - - eend $? -} - -stop() { - ebegin "Stopping mod-mono-server" - - start-stop-daemon -o --quiet --stop \ - --pidfile /var/run/aspnet/mod-mono-server.pid - - eend $? -} diff --git a/dev-dotnet/xsp/files/2.0/xsp.confd b/dev-dotnet/xsp/files/2.0/xsp.confd deleted file mode 100644 index 3385ec395099..000000000000 --- a/dev-dotnet/xsp/files/2.0/xsp.confd +++ /dev/null @@ -1,12 +0,0 @@ -# Config file for /etc/init.d/xsp -# $Id: xsp.confd,v 1.1 2008/11/23 20:12:16 loki_val Exp $ - -# This is the document root; trailing slash is not necessary -MonoServerRoot=/usr/lib/xsp/test - -# Port for the server to run on -MonoServerPort=8000 - -# If you want to host .NET 2.0 applications you have to set this to 2. -# Otherwise, leave it unchanged -MonoServerVersion=1 diff --git a/dev-dotnet/xsp/files/2.0/xsp.initd b/dev-dotnet/xsp/files/2.0/xsp.initd deleted file mode 100644 index 06b8db7eaf8d..000000000000 --- a/dev-dotnet/xsp/files/2.0/xsp.initd +++ /dev/null @@ -1,38 +0,0 @@ -#!/sbin/runscript -# Copyright 1999-2007 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id: xsp.initd,v 1.1 2008/11/23 20:12:16 loki_val Exp $ - -depend() { - need net - after dotnet -} - -start() { - ebegin "Starting xsp" - - if [ ${MonoServerVersion} -eq 1 ]; then - xsppath=1.0/xsp.exe - elif [ ${MonoServerVersion} -eq 2 ]; then - xsppath=2.0/xsp2.exe - else - eerror "MonoServerVersion was not properly set. Check your config file" - return 1 - fi - - start-stop-daemon --quiet --start \ - --background \ - --make-pidfile \ - --pidfile /var/run/aspnet/xsp.pid \ - --chuid aspnet \ - --exec /usr/bin/mono /usr/lib/mono/${xsppath} -- --root ${MonoServerRoot} --port ${MonoServerPort} --nonstop - eend $? -} - -stop() { - ebegin "Stopping xsp" - start-stop-daemon -o --quiet --stop \ - --pidfile /var/run/aspnet/xsp.pid - eend $? -} - diff --git a/dev-dotnet/xsp/files/2.2/configure-fix.patch b/dev-dotnet/xsp/files/2.2/configure-fix.patch deleted file mode 100644 index 46be173ddeea..000000000000 --- a/dev-dotnet/xsp/files/2.2/configure-fix.patch +++ /dev/null @@ -1,30 +0,0 @@ -diff -NrU5 xsp-2.2.orig/configure.in xsp-2.2/configure.in ---- xsp-2.2.orig/configure.in 2009-01-18 00:13:11.000000000 +0100 -+++ xsp-2.2/configure.in 2009-01-18 00:14:53.000000000 +0100 -@@ -15,24 +15,22 @@ - # - # --enable-tracing - # - AC_MSG_CHECKING([if tracing is requested]) - AC_ARG_ENABLE([tracing], -- AC_HELP_STRING([--enable-tracing],[enable producing XSP tracing messages]), -- [enable_tracing=$withval], -- [enable_tracing=no]) -+ [AC_HELP_STRING([--enable-tracing],[enable producing XSP tracing messages])] ) - - if test "x$enable_tracing" != "xno" ; then - AC_MSG_RESULT([yes]) - WEBTRACING="-define:WEBTRACE -define:TRACE" - else - AC_MSG_RESULT([no]) - WEBTRACING="" - fi - - AC_ARG_WITH([runtime], -- AC_HELP_STRING([--with-runtime],[use the specified runtime when xsp is installed]), -+ [AC_HELP_STRING([--with-runtime],[use the specified runtime when xsp is installed])], - [RUNTIME=$withval]) - - AC_PATH_PROG(CSC, csc, no) - AC_PATH_PROG(MCS, mcs, no) - AC_PATH_PROG(GMCS, gmcs, no) diff --git a/dev-dotnet/xsp/xsp-1.2.1.ebuild b/dev-dotnet/xsp/xsp-1.2.1.ebuild deleted file mode 100644 index ac79e6271bef..000000000000 --- a/dev-dotnet/xsp/xsp-1.2.1.ebuild +++ /dev/null @@ -1,59 +0,0 @@ -# Copyright 1999-2008 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/xsp/xsp-1.2.1.ebuild,v 1.7 2008/11/27 18:45:20 ssuominen Exp $ - -inherit mono autotools eutils - -DESCRIPTION="XSP ASP.NET host" -HOMEPAGE="http://www.go-mono.com/" -SRC_URI="http://www.go-mono.com/sources/${PN}/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ppc x86" -IUSE="" - -RDEPEND=">=dev-lang/mono-${PV}" -DEPEND="${RDEPEND} - dev-util/pkgconfig" - -pkg_preinst() { - enewgroup aspnet - - # Give aspnet home dir of /tmp since it must create ~/.wapi - enewuser aspnet -1 -1 /tmp aspnet -} - -src_unpack() { - unpack ${A} - cd "${S}" - sed -i -e "s:mkinstalldirs) \$(data:mkinstalldirs) \$(DESTDIR)\$(data:" \ - -e "s:gif \$(data:gif \$(DESTDIR)\$(data:" \ - "${S}"/test/2.0/treeview/Makefile.am - eautoreconf -} - -src_compile() { - econf || die "./configure failed!" - emake || { - echo - eerror "If xsp fails to build, try unmerging and re-emerging it." - die "make failed" - } -} - -src_install() { - make DESTDIR="${D}" install || die - newinitd "${FILESDIR}"/${PV}/xsp.initd xsp - newinitd "${FILESDIR}"/${PV}/mod-mono-server.initd mod-mono-server - newconfd "${FILESDIR}"/${PV}/xsp.confd xsp - newconfd "${FILESDIR}"/${PV}/mod-mono-server.confd mod-mono-server - - keepdir /var/run/aspnet - - dodoc README ChangeLog AUTHORS INSTALL NEWS -} - -pkg_postinst() { - chown aspnet:aspnet /var/run/aspnet -} diff --git a/dev-dotnet/xsp/xsp-1.2.4.ebuild b/dev-dotnet/xsp/xsp-1.2.4.ebuild deleted file mode 100644 index d4005ec13023..000000000000 --- a/dev-dotnet/xsp/xsp-1.2.4.ebuild +++ /dev/null @@ -1,59 +0,0 @@ -# Copyright 1999-2008 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/xsp/xsp-1.2.4.ebuild,v 1.5 2008/11/27 18:45:20 ssuominen Exp $ - -inherit mono autotools eutils - -DESCRIPTION="XSP ASP.NET host" -HOMEPAGE="http://www.go-mono.com/" -SRC_URI="http://www.go-mono.com/sources/${PN}/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ppc x86" -IUSE="" - -RDEPEND=">=dev-lang/mono-${PV}" -DEPEND="${RDEPEND} - dev-util/pkgconfig" - -pkg_preinst() { - enewgroup aspnet - - # Give aspnet home dir of /tmp since it must create ~/.wapi - enewuser aspnet -1 -1 /tmp aspnet -} - -src_unpack() { - unpack ${A} - cd "${S}" - sed -i -e "s:mkinstalldirs) \$(data:mkinstalldirs) \$(DESTDIR)\$(data:" \ - -e "s:gif \$(data:gif \$(DESTDIR)\$(data:" \ - "${S}"/test/2.0/treeview/Makefile.am - eautoreconf -} - -src_compile() { - econf || die "./configure failed!" - emake || { - echo - eerror "If xsp fails to build, try unmerging and re-emerging it." - die "make failed" - } -} - -src_install() { - make DESTDIR="${D}" install || die - newinitd "${FILESDIR}"/${PV}/xsp.initd xsp - newinitd "${FILESDIR}"/${PV}/mod-mono-server.initd mod-mono-server - newconfd "${FILESDIR}"/${PV}/xsp.confd xsp - newconfd "${FILESDIR}"/${PV}/mod-mono-server.confd mod-mono-server - - keepdir /var/run/aspnet - - dodoc README ChangeLog AUTHORS INSTALL NEWS -} - -pkg_postinst() { - chown aspnet:aspnet /var/run/aspnet -} diff --git a/dev-dotnet/xsp/xsp-1.2.6.ebuild b/dev-dotnet/xsp/xsp-1.2.6.ebuild deleted file mode 100644 index af09ca7d957a..000000000000 --- a/dev-dotnet/xsp/xsp-1.2.6.ebuild +++ /dev/null @@ -1,70 +0,0 @@ -# Copyright 1999-2008 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/xsp/xsp-1.2.6.ebuild,v 1.3 2008/03/02 07:51:55 compnerd Exp $ - -inherit mono multilib autotools eutils - -DESCRIPTION="XSP ASP.NET host" -HOMEPAGE="http://www.go-mono.com/" -SRC_URI="http://www.go-mono.com/sources/${PN}/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~ppc ~x86" - -IUSE="" - -RDEPEND=">=dev-lang/mono-${PV} - =dev-db/sqlite-3*" -DEPEND="${RDEPEND} - >=dev-util/pkgconfig-0.20" - -pkg_preinst() { - enewgroup aspnet - - # Give aspnet home dir of /tmp since it must create ~/.wapi - enewuser aspnet -1 -1 /tmp aspnet -} - -src_unpack() { - unpack ${A} - cd "${S}" - - sed -i -e "s:mkinstalldirs) \$(data:mkinstalldirs) \$(DESTDIR)\$(data:" \ - -e "s:gif \$(data:gif \$(DESTDIR)\$(data:" \ - "${S}"/test/2.0/treeview/Makefile.am - eautoreconf -} - -src_compile() { - econf || die "./configure failed!" - emake -j1 || { - echo - eerror "If xsp fails to build, try unmerging and re-emerging it." - die "make failed" - } -} - -src_install() { - make DESTDIR="${D}" install || die - - sed -i -e "s#/usr/lib/#/usr/$(get_libdir)/#" \ - "${D}"/usr/bin/xsp{,2} \ - "${D}"/usr/bin/mod-mono-server{,2} \ - "${D}"/usr/bin/asp-state{,2} \ - "${D}"/usr/bin/dbsessmgr{,2} \ - || die - - newinitd "${FILESDIR}"/${PV}/xsp.initd xsp - newinitd "${FILESDIR}"/${PV}/mod-mono-server.initd mod-mono-server - newconfd "${FILESDIR}"/${PV}/xsp.confd xsp - newconfd "${FILESDIR}"/${PV}/mod-mono-server.confd mod-mono-server - - keepdir /var/run/aspnet - - dodoc README ChangeLog AUTHORS INSTALL NEWS -} - -pkg_postinst() { - chown aspnet:aspnet /var/run/aspnet -} diff --git a/dev-dotnet/xsp/xsp-2.0.9999.ebuild b/dev-dotnet/xsp/xsp-2.0.9999.ebuild deleted file mode 100644 index 68f3c3d4a0b1..000000000000 --- a/dev-dotnet/xsp/xsp-2.0.9999.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/xsp/xsp-2.0.9999.ebuild,v 1.2 2009/06/09 21:17:16 loki_val Exp $ - -EAPI=2 - -inherit go-mono mono autotools - -PATCHDIR="${FILESDIR}/2.2/" - -DESCRIPTION="XSP is a small web server that can host ASP.NET pages" -HOMEPAGE="http://www.go-mono.com/" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="" - -IUSE="" - -RDEPEND="dev-db/sqlite:3" -DEPEND="${RDEPEND}" - -MAKEOPTS="${MAKEOPTS} -j1" - -pkg_preinst() { - enewgroup aspnet - # Give aspnet home dir of /tmp since it must create ~/.wapi - enewuser aspnet -1 -1 /tmp aspnet -} - -src_install() { - mv_command="cp -ar" go-mono_src_install - newinitd "${PATCHDIR}"/xsp.initd xsp || die - newinitd "${PATCHDIR}"/mod-mono-server.initd mod-mono-server || die - newconfd "${PATCHDIR}"/xsp.confd xsp || die - newconfd "${PATCHDIR}"/mod-mono-server.confd mod-mono-server || die - - keepdir /var/run/aspnet -} - -pkg_postinst() { - chown aspnet:aspnet /var/run/aspnet -} diff --git a/dev-dotnet/xsp/xsp-2.0.ebuild b/dev-dotnet/xsp/xsp-2.0.ebuild deleted file mode 100644 index 7918a46a95a0..000000000000 --- a/dev-dotnet/xsp/xsp-2.0.ebuild +++ /dev/null @@ -1,53 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/xsp/xsp-2.0.ebuild,v 1.5 2009/04/04 14:14:37 maekke Exp $ - -inherit mono multilib eutils - -DESCRIPTION="XSP ASP.NET host" -HOMEPAGE="http://www.go-mono.com/" -SRC_URI="http://www.go-mono.com/sources/${PN}/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ppc x86" - -IUSE="" - -RDEPEND=">=dev-lang/mono-${PV} - =dev-db/sqlite-3*" -DEPEND="${RDEPEND} - >=dev-util/pkgconfig-0.20" - -pkg_preinst() { - enewgroup aspnet - - # Give aspnet home dir of /tmp since it must create ~/.wapi - enewuser aspnet -1 -1 /tmp aspnet -} - -src_compile() { - econf || die "./configure failed!" - emake -j1 || { - echo - eerror "If xsp fails to build, try unmerging and re-emerging it." - die "make failed" - } -} - -src_install() { - make DESTDIR="${D}" install || die - - newinitd "${FILESDIR}"/${PV}/xsp.initd xsp || die - newinitd "${FILESDIR}"/${PV}/mod-mono-server.initd mod-mono-server || die - newconfd "${FILESDIR}"/${PV}/xsp.confd xsp || die - newconfd "${FILESDIR}"/${PV}/mod-mono-server.confd mod-mono-server || die - - keepdir /var/run/aspnet - - dodoc README ChangeLog AUTHORS INSTALL NEWS -} - -pkg_postinst() { - chown aspnet:aspnet /var/run/aspnet -} diff --git a/dev-dotnet/xsp/xsp-2.4.2.ebuild b/dev-dotnet/xsp/xsp-2.4.2.ebuild deleted file mode 100644 index 97064a2c86fd..000000000000 --- a/dev-dotnet/xsp/xsp-2.4.2.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/xsp/xsp-2.4.2.ebuild,v 1.3 2009/09/27 16:54:03 nixnut Exp $ - -EAPI=2 - -inherit go-mono mono autotools - -PATCHDIR="${FILESDIR}/2.2/" - -DESCRIPTION="XSP is a small web server that can host ASP.NET pages" -HOMEPAGE="http://www.go-mono.com/" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64 ppc x86" - -IUSE="" - -RDEPEND="dev-db/sqlite:3" -DEPEND="${RDEPEND}" - -MAKEOPTS="${MAKEOPTS} -j1" - -pkg_preinst() { - enewgroup aspnet - # Give aspnet home dir of /tmp since it must create ~/.wapi - enewuser aspnet -1 -1 /tmp aspnet -} - -src_install() { - mv_command="cp -ar" go-mono_src_install - newinitd "${PATCHDIR}"/xsp.initd xsp || die - newinitd "${PATCHDIR}"/mod-mono-server.initd mod-mono-server || die - newconfd "${PATCHDIR}"/xsp.confd xsp || die - newconfd "${PATCHDIR}"/mod-mono-server.confd mod-mono-server || die - - keepdir /var/run/aspnet -} - -pkg_postinst() { - chown aspnet:aspnet /var/run/aspnet -} diff --git a/dev-dotnet/xsp/xsp-2.4.9999.ebuild b/dev-dotnet/xsp/xsp-2.4.9999.ebuild deleted file mode 100644 index 56601b8aca68..000000000000 --- a/dev-dotnet/xsp/xsp-2.4.9999.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/xsp/xsp-2.4.9999.ebuild,v 1.4 2009/06/09 21:17:16 loki_val Exp $ - -EAPI=2 - -inherit go-mono mono autotools - -PATCHDIR="${FILESDIR}/2.2/" - -DESCRIPTION="XSP is a small web server that can host ASP.NET pages" -HOMEPAGE="http://www.go-mono.com/" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="" - -IUSE="" - -RDEPEND="dev-db/sqlite:3" -DEPEND="${RDEPEND}" - -MAKEOPTS="${MAKEOPTS} -j1" - -pkg_preinst() { - enewgroup aspnet - # Give aspnet home dir of /tmp since it must create ~/.wapi - enewuser aspnet -1 -1 /tmp aspnet -} - -src_install() { - mv_command="cp -ar" go-mono_src_install - newinitd "${PATCHDIR}"/xsp.initd xsp || die - newinitd "${PATCHDIR}"/mod-mono-server.initd mod-mono-server || die - newconfd "${PATCHDIR}"/xsp.confd xsp || die - newconfd "${PATCHDIR}"/mod-mono-server.confd mod-mono-server || die - - keepdir /var/run/aspnet -} - -pkg_postinst() { - chown aspnet:aspnet /var/run/aspnet -} diff --git a/dev-dotnet/xsp/xsp-2.6.4.ebuild b/dev-dotnet/xsp/xsp-2.6.4.ebuild deleted file mode 100644 index 8e885845c69f..000000000000 --- a/dev-dotnet/xsp/xsp-2.6.4.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 1999-2010 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/xsp/xsp-2.6.4.ebuild,v 1.3 2010/07/12 17:44:02 fauli Exp $ - -EAPI=2 - -inherit go-mono mono - -PATCHDIR="${FILESDIR}/2.2/" - -DESCRIPTION="XSP is a small web server that can host ASP.NET pages" -HOMEPAGE="http://www.go-mono.com/" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64 ~ppc x86" - -IUSE="" - -RDEPEND="dev-db/sqlite:3" -DEPEND="${RDEPEND}" - -MAKEOPTS="${MAKEOPTS} -j1" - -pkg_preinst() { - enewgroup aspnet - # Give aspnet home dir of /tmp since it must create ~/.wapi - enewuser aspnet -1 -1 /tmp aspnet -} - -src_install() { - mv_command="cp -ar" go-mono_src_install - newinitd "${PATCHDIR}"/xsp.initd xsp || die - newinitd "${PATCHDIR}"/mod-mono-server.initd mod-mono-server || die - newconfd "${PATCHDIR}"/xsp.confd xsp || die - newconfd "${PATCHDIR}"/mod-mono-server.confd mod-mono-server || die - - keepdir /var/run/aspnet -} - -pkg_postinst() { - chown aspnet:aspnet /var/run/aspnet -} |