blob: 37fca1205ced6aa8d8a78ec0ebf6593d7255f348 (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/refbase/refbase-0.9.5.ebuild,v 1.1 2009/08/01 10:59:29 a3li Exp $
inherit depend.apache depend.php webapp
DESCRIPTION="Web-based solution for managing scientific literature, references and citations"
HOMEPAGE="http://www.refbase.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
KEYWORDS="~x86 ~amd64"
IUSE=""
DEPEND="app-admin/webapp-config
app-text/bibutils"
RDEPEND="${DEPEND}"
need_apache
need_php
pkg_setup() {
require_php_with_use mysql pcre session
webapp_pkg_setup
}
src_install () {
webapp_src_preinst
DOCS="AUTHORS BUGS ChangeLog NEWS README TODO UPDATE"
dodoc ${DOCS}
# Don't install docs to webroot
rm -f ${DOCS} COPYING INSTALL
cp -R * "${D}"${MY_HTDOCSDIR}
webapp_configfile ${MY_HTDOCSDIR}/initialize
webapp_postinst_txt en "${FILESDIR}"/postinstall-en.txt
webapp_src_install
}
|