blob: 83c04f27924c1b9133ed3c10af1643b5cff25efa (
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
# 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
}
|