summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Alfredsen <loki_val@gentoo.org>2008-11-19 22:57:41 +0000
committerPeter Alfredsen <loki_val@gentoo.org>2008-11-19 22:57:41 +0000
commit4b54f4ce3ea4ba062595c08c0c176a0ea4055d5d (patch)
treed47d377545cd1abb6ea7e7b6bd84832014d9706b /dev-dotnet/xsp/xsp-1.2.5.ebuild
parentAdding xsp to mono-2 mask (diff)
downloadgentoo-2-4b54f4ce3ea4ba062595c08c0c176a0ea4055d5d.tar.gz
gentoo-2-4b54f4ce3ea4ba062595c08c0c176a0ea4055d5d.tar.bz2
gentoo-2-4b54f4ce3ea4ba062595c08c0c176a0ea4055d5d.zip
Bump for mono-2, remove crufty slag.
(Portage version: 2.2_rc14/cvs/Linux 2.6.28-rc4 x86_64)
Diffstat (limited to 'dev-dotnet/xsp/xsp-1.2.5.ebuild')
-rw-r--r--dev-dotnet/xsp/xsp-1.2.5.ebuild67
1 files changed, 0 insertions, 67 deletions
diff --git a/dev-dotnet/xsp/xsp-1.2.5.ebuild b/dev-dotnet/xsp/xsp-1.2.5.ebuild
deleted file mode 100644
index 73d06fd511d6..000000000000
--- a/dev-dotnet/xsp/xsp-1.2.5.ebuild
+++ /dev/null
@@ -1,67 +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.5.ebuild,v 1.2 2008/05/30 22:51:22 jurek 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=""
-
-DEPEND=">=dev-lang/mono-${PV}
- 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 -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
-}