diff options
Diffstat (limited to 'dev-dotnet/xsp/xsp-1.0.2.ebuild')
-rw-r--r-- | dev-dotnet/xsp/xsp-1.0.2.ebuild | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/dev-dotnet/xsp/xsp-1.0.2.ebuild b/dev-dotnet/xsp/xsp-1.0.2.ebuild new file mode 100644 index 000000000000..2efc16f99f98 --- /dev/null +++ b/dev-dotnet/xsp/xsp-1.0.2.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/xsp/xsp-1.0.2.ebuild,v 1.1 2004/09/22 20:27:14 latexer Exp $ + +inherit mono eutils + +DESCRIPTION="XSP ASP.NET host" +HOMEPAGE="http://www.go-mono.com/" +SRC_URI="http://www.go-mono.com/archive/${PV}/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86 ~ppc" + +IUSE="" + +DEPEND=">=dev-dotnet/mono-1.0.2" + +pkg_preinst() { + enewgroup aspnet + + # Give aspnet home dir of /tmp since it must create ~/.wapi + enewuser aspnet -1 /bin/false /tmp aspnet +} + +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 + exeinto /etc/init.d ; newexe ${FILESDIR}/xsp.initd xsp + insinto /etc/conf.d ; newins ${FILESDIR}/xsp.confd xsp + + keepdir /var/run/aspnet + + dodoc README ChangeLog AUTHORS INSTALL NEWS +} + +pkg_postinst() { + chown aspnet:aspnet /var/run/aspnet +} |