blob: 2b23bed9dcc5baa38bec05258d67783767bf6c44 (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
inherit webapp eutils
MY_P=SiteBar-${PV}
DESCRIPTION="The Bookmark Server for Personal and Team Use"
HOMEPAGE="http://sitebar.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.bz2"
LICENSE="GPL-2"
KEYWORDS="amd64 ppc x86"
IUSE=""
DEPEND="virtual/httpd-php"
RDEPEND="${DEPEND}"
S="${WORKDIR}"/${MY_P}
src_install() {
webapp_src_preinst
dodoc readme.txt doc/history.txt doc/install.txt doc/troubleshooting.txt
cp -R . "${D}/${MY_HTDOCSDIR}"
rm -rf "${D}/${MY_HTDOCSDIR}/doc" "${D}/${MY_HTDOCSDIR}/readme.txt"
webapp_serverowned "${MY_HTDOCSDIR}/inc"
webapp_postinst_txt en "${FILESDIR}/postinstall-en.txt"
webapp_src_install
}
|