blob: a712a096682df77cac37485a238f2c82643e07b1 (
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
44
45
46
47
48
49
50
51
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-db/couchdb/couchdb-0.9.0.ebuild,v 1.1 2009/04/01 11:08:07 caleb Exp $
inherit eutils distutils
DESCRIPTION="Apache CouchDB is a distributed, fault-tolerant and schema-free document-oriented database."
HOMEPAGE="http://couchdb.apache.org/"
SRC_URI="mirror://apache/couchdb/${PV}/apache-${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~x86 ~amd64"
IUSE=""
RESTRICT="test mirror" #72375
RDEPEND="dev-libs/icu
dev-lang/erlang
>=dev-libs/openssl-0.9.8j
>=net-misc/curl-7.18.2
dev-lang/spidermonkey"
DEPEND="${RDEPEND}"
S="${WORKDIR}/apache-${P}"
pkg_setup() {
enewgroup couchdb
enewuser couchdb -1 /bin/bash /var/lib/couchdb couchdb
}
src_compile() {
./bootstrap
econf --with-erlang=/usr/lib/erlang/usr/include --prefix=/usr \
--localstatedir=/var || die "configure failed"
emake || die "make failed"
}
src_install() {
emake DESTDIR="${D}" install || die "install failed"
insinto /var/run/couchdb
fowners couchdb:couchdb \
/var/run/couchdb \
/var/lib/couchdb \
/var/log/couchdb
newinitd "${FILESDIR}/couchdb.init-0.9" couchdb || die
newconfd "${FILESDIR}/couchdb.conf-0.9" couchdb || die
}
|