From 9c1b2a5e25bf7a5bf6a612c4a71c4a27b53d9a76 Mon Sep 17 00:00:00 2001 From: Sam James Date: Wed, 20 Jul 2022 01:48:41 +0000 Subject: www-servers/xsp: drop 9999 Signed-off-by: Sam James --- www-servers/xsp/xsp-9999.ebuild | 60 ----------------------------------------- 1 file changed, 60 deletions(-) delete mode 100644 www-servers/xsp/xsp-9999.ebuild diff --git a/www-servers/xsp/xsp-9999.ebuild b/www-servers/xsp/xsp-9999.ebuild deleted file mode 100644 index 83c04f2..0000000 --- a/www-servers/xsp/xsp-9999.ebuild +++ /dev/null @@ -1,60 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="6" - -USE_DOTNET="net35 net40 net45" -PATCHDIR="${FILESDIR}/2.2/" - -inherit eutils dotnet user git-r3 autotools - -DESCRIPTION="XSP is a small web server that can host ASP.NET pages" -HOMEPAGE="https://www.mono-project.com/ASP.NET" - -EGIT_REPO_URI="git://github.com/mono/${PN}.git" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="" -IUSE="doc test" - -RDEPEND="dev-db/sqlite:3" -DEPEND="${RDEPEND}" - -src_prepare() { - # epatch "${FILESDIR}/aclocal-fix.patch" - - if [ -z "$LIBTOOL" ]; then - LIBTOOL=`which glibtool 2>/dev/null` - if [ ! -x "$LIBTOOL" ]; then - LIBTOOL=`which libtool` - fi - fi - eaclocal -I build/m4/shamrock -I build/m4/shave $ACLOCAL_FLAGS - if test -z "$NO_LIBTOOLIZE"; then - ${LIBTOOL}ize --force --copy - fi - eapply_user - eautoconf - - myeconfargs=("--enable-maintainer-mode") - use test && myeconfargs+=("--with_unit_tests") - use doc || myeconfargs+=("--disable-docs") - eautomake --gnu --add-missing --force --copy #nowarn -} - -pkg_preinst() { - enewgroup aspnet - enewuser aspnet -1 -1 /tmp aspnet -} - -src_install() { - emake DESTDIR="${D}" install - - newinitd "${PATCHDIR}"/xsp.initd xsp - newinitd "${PATCHDIR}"/mod-mono-server-r1.initd mod-mono-server - newconfd "${PATCHDIR}"/xsp.confd xsp - newconfd "${PATCHDIR}"/mod-mono-server.confd mod-mono-server - - keepdir /var/run/aspnet -} -- cgit v1.2.3-65-gdbad