# 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 $? }