blob: 70ae7728afc4150845f8dda06e4d354f7ea6da0f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
# 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-0.13.ebuild,v 1.3 2004/06/29 14:39:24 vapier Exp $
inherit mono
DESCRIPTION="XSP ASP.NET host"
HOMEPAGE="http://www.go-mono.com/"
SRC_URI="http://www.go-mono.com/archive/beta1/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
DEPEND=">=dev-dotnet/mono-0.91"
src_install() {
enewgroup aspnet
# Give aspnet home dir of /tmp since it must create ~/.wapi
enewuser aspnet -1 /bin/false /tmp aspnet
einstall DESTDIR=${D} || 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
}
|