blob: 2abd1653e0e350bc543a7406f95e53d26c00458e (
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-2005 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.1 2005/04/24 06:54:47 hollow 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 ~sparc ~x86"
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 \"ebuild /var/db/pkg/net-www/${PF}/${PF}.ebuild config\""
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 $?
}
|