blob: 0b52526a9d5aa042a7342723dd7cbdf679815792 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-www/gentoo-webroot-default/gentoo-webroot-default-0.2.ebuild,v 1.14 2006/07/15 00:25:04 chtekk Exp $
DESCRIPTION="This is the default Gentoo WebServer content"
HOMEPAGE="http://www.gentoo.org/"
SRC_URI="mirror://gentoo/${PF}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 mips ppc ppc64 s390 sh sparc x86 ~x86-fbsd"
IUSE="no-htdocs"
DEPEND=""
S=${WORKDIR}/${PF}
src_install() {
keepdir /var/www/localhost
if useq no-htdocs; then
insinto /usr/share/doc/${PF}/webroot/
else
insinto /var/www/localhost/
fi
doins -r webroot/htdocs
doins -r webroot/icons
doins -r webroot/cgi-bin
dodoc AUTHORS README TODO
}
pkg_postinst() {
if useq no-htdocs; then
einfo "Default webroot not installed into /var/www/localhost."
einfo "Execute \"emerge --config =${CATEGORY}/${PF}\""
einfo "to install it there."
fi
}
pkg_config() {
ebegin "Installing webroot to /var/www/localhost"
cp -r /usr/share/doc/${PF}/webroot/* /var/www/localhost/
eend $?
}
|