blob: b3bd4b6cad3427041b6b0d1c36d6a6aa90ec34a9 (
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-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/www-apps/owncloud/owncloud-1.1.ebuild,v 1.1 2010/12/08 17:27:51 alexxy Exp $
inherit webapp eutils depend.php
MY_PV=${PV:0:3}.0
DESCRIPTION="Web-based storage application where all your data is under your own control"
HOMEPAGE="http://owncloud.org"
SRC_URI="http://owncloud.org/releases/${P}.tar.bz2"
LICENSE="GPL-3"
KEYWORDS="~amd64 ~x86"
IUSE=""
need_httpd_cgi
need_php_httpd
S="${WORKDIR}/${P/_/-}"
pkg_setup() {
flags="json xmlwriter zip"
webapp_pkg_setup
has_php
require_php_with_use ${flags}
}
src_install() {
cd owncloud
webapp_src_preinst
local docs="README docs/*"
dodoc ${docs}
rm -f ${docs}
insinto "${MY_HTDOCSDIR}"
doins -r .
dodir "${MY_HTDOCSDIR}"/data
webapp_serverowned "${MY_HTDOCSDIR}"/data
webapp_serverowned "${MY_HTDOCSDIR}"/config
webapp_src_install
}
|