blob: abb49a87e124b00ff8a847164ca294e17e323943 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/www-apps/online-bookmarks/online-bookmarks-0.6.4b.ebuild,v 1.1 2006/02/21 22:28:51 rl03 Exp $
inherit webapp
S=${WORKDIR}/${PN}
DESCRIPTION="A Bookmark management system to store your Bookmarks, Favorites and Links right in the WWW where they actually belong"
HOMEPAGE="http://www.frech.ch/online-bookmarks/index.php"
SRC_URI="http://www.frech.ch/online-bookmarks/download/${P}.tar.gz"
LICENSE="GPL-2"
KEYWORDS="~x86 ~ppc"
IUSE="mysql"
RDEPEND=">=virtual/httpd-php-4.3.0
mysql? ( dev-db/mysql )
dev-php/PEAR-Auth
dev-php/PEAR-DB
"
src_compile() {
einfo "Nothing to compile"
}
src_install() {
webapp_src_preinst
dodoc CHANGES README
cp -R * "${D}/${MY_HTDOCSDIR}"
webapp_configfile "${MY_HTDOCSDIR}/config/config.php"
webapp_configfile "${MY_HTDOCSDIR}/config/connect.php"
webapp_postinst_txt en ${FILESDIR}/postinstall-en.txt
webapp_src_install
}
|