blob: 78583d8a111904aa257d8a2d568217c230756f17 (
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
|
# 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.1.ebuild,v 1.15 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 ~sparc ~x86"
IUSE="no-htdocs"
DEPEND=""
S=${WORKDIR}/${PF}
src_install() {
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/htdocs /var/www/localhost
eend $?
}
|