public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] proj/betagarden:master commit in: dev-db/mongodb/
@ 2011-04-12  8:57 Benedikt Boehm
  0 siblings, 0 replies; 3+ messages in thread
From: Benedikt Boehm @ 2011-04-12  8:57 UTC (permalink / raw
  To: gentoo-commits

commit:     813104d7ea3512c9369d39be4f6a1be4153c149c
Author:     Benedikt Böhm <bb <AT> xnull <DOT> de>
AuthorDate: Tue Apr 12 08:57:36 2011 +0000
Commit:     Benedikt Boehm <hollow <AT> gentoo <DOT> org>
CommitDate: Tue Apr 12 08:57:36 2011 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/betagarden.git;a=commit;h=813104d7

make USE=static-libs default

---
 dev-db/mongodb/mongodb-1.8.1.ebuild |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-db/mongodb/mongodb-1.8.1.ebuild b/dev-db/mongodb/mongodb-1.8.1.ebuild
index e0b20dd..dc1987a 100644
--- a/dev-db/mongodb/mongodb-1.8.1.ebuild
+++ b/dev-db/mongodb/mongodb-1.8.1.ebuild
@@ -16,7 +16,7 @@ SRC_URI="http://downloads.mongodb.org/src/${MY_P}.tar.gz"
 LICENSE="AGPL-3 Apache-2.0"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
-IUSE="static-libs v8"
+IUSE="+static-libs v8"
 
 RDEPEND="!v8? ( >=dev-lang/spidermonkey-1.9 )
 	v8? ( dev-lang/v8 )
@@ -85,4 +85,4 @@ pkg_postinst() {
 		ewarn "Make sure you run 'mongod --upgrade' before using this version."
 	fi
 	elog "Journaling is now enabled by default, see /etc/conf.d/${PN}.conf"
-}
\ No newline at end of file
+}



^ permalink raw reply related	[flat|nested] 3+ messages in thread
* [gentoo-commits] proj/betagarden:master commit in: dev-db/mongodb/
@ 2011-03-17 11:05 Benedikt Boehm
  0 siblings, 0 replies; 3+ messages in thread
From: Benedikt Boehm @ 2011-03-17 11:05 UTC (permalink / raw
  To: gentoo-commits

commit:     94969d356ef18ca92afa6df3056fb32f126ade49
Author:     Benedikt Böhm <bb <AT> xnull <DOT> de>
AuthorDate: Thu Mar 17 11:03:14 2011 +0000
Commit:     Benedikt Boehm <hollow <AT> gentoo <DOT> org>
CommitDate: Thu Mar 17 11:03:14 2011 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/betagarden.git;a=commit;h=94969d35

dev-db/mongodb: version bump to 1.8.0

---
 dev-db/mongodb/mongodb-1.8.0.ebuild |   61 +++++++++++++++++++++++++++++++++++
 1 files changed, 61 insertions(+), 0 deletions(-)

diff --git a/dev-db/mongodb/mongodb-1.8.0.ebuild b/dev-db/mongodb/mongodb-1.8.0.ebuild
new file mode 100644
index 0000000..3849f20
--- /dev/null
+++ b/dev-db/mongodb/mongodb-1.8.0.ebuild
@@ -0,0 +1,61 @@
+# Copyright 1999-2010 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI="2"
+
+SCONS_MIN_VERSION="1.2.0"
+MY_P="${PN}-src-r${PV/_rc/-rc}"
+
+inherit eutils scons-utils versionator
+
+DESCRIPTION="A high-performance, open source, schema-free document-oriented database"
+HOMEPAGE="http://www.mongodb.org"
+SRC_URI="http://downloads.mongodb.org/src/${MY_P}.tar.gz"
+
+LICENSE="AGPL-3 Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="
+	dev-lang/spidermonkey[unicode]
+	dev-libs/boost
+	dev-libs/libpcre
+	net-libs/libpcap
+"
+
+DEPEND="${RDEPEND}
+	sys-libs/readline
+	sys-libs/ncurses
+"
+
+S="${WORKDIR}/${MY_P}"
+
+pkg_setup() {
+	enewgroup mongodb
+	enewuser mongodb -1 -1 /var/lib/${PN} mongodb
+}
+
+src_compile() {
+	escons all || die "Compile failed"
+}
+
+src_install() {
+	escons --full --nostrip install --prefix="${D}"/usr || die "Install failed"
+
+	for x in /var/{lib,log,run}/${PN}; do
+		dodir "${x}" || die "Install failed"
+		fowners mongodb:mongodb "${x}"
+	done
+
+	doman debian/mongo*.1 || die "Install failed"
+	dodoc README docs/building.md
+
+	newinitd "${FILESDIR}/${PN}.initd" ${PN} || die "Install failed"
+	newconfd "${FILESDIR}/${PN}.confd" ${PN} || die "Install failed"
+}
+
+src_test() {
+	escons smoke --smokedbprefix='testdir' test || die "Tests failed"
+}



^ permalink raw reply related	[flat|nested] 3+ messages in thread
* [gentoo-commits] proj/betagarden:master commit in: dev-db/mongodb/
@ 2011-03-09 10:09 Benedikt Boehm
  0 siblings, 0 replies; 3+ messages in thread
From: Benedikt Boehm @ 2011-03-09 10:09 UTC (permalink / raw
  To: gentoo-commits

commit:     dc7e0850307f113015a48cc31c127c7d76c84e61
Author:     Benedikt Böhm <bb <AT> xnull <DOT> de>
AuthorDate: Wed Mar  9 10:08:52 2011 +0000
Commit:     Benedikt Boehm <hollow <AT> gentoo <DOT> org>
CommitDate: Wed Mar  9 10:08:52 2011 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/betagarden.git;a=commit;h=dc7e0850

bump dev-db/mongodb to 1.8.0-rc1

---
 dev-db/mongodb/mongodb-1.8.0_rc1.ebuild |   65 +++++++++++++++++++++++++++++++
 1 files changed, 65 insertions(+), 0 deletions(-)

diff --git a/dev-db/mongodb/mongodb-1.8.0_rc1.ebuild b/dev-db/mongodb/mongodb-1.8.0_rc1.ebuild
new file mode 100644
index 0000000..25f1299
--- /dev/null
+++ b/dev-db/mongodb/mongodb-1.8.0_rc1.ebuild
@@ -0,0 +1,65 @@
+# Copyright 1999-2010 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI="2"
+
+SCONS_MIN_VERSION="1.2.0-r1"
+MY_P="${PN}-src-r${PV/_rc/-rc}"
+
+inherit eutils scons-utils versionator
+
+DESCRIPTION="A high-performance, open source, schema-free document-oriented database"
+HOMEPAGE="http://www.mongodb.org"
+SRC_URI="http://downloads.mongodb.org/src/${MY_P}.tar.gz"
+
+LICENSE="AGPL-3 Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="
+	dev-lang/spidermonkey[unicode]
+	dev-libs/boost
+	dev-libs/libpcre
+	net-libs/libpcap
+"
+
+DEPEND="${RDEPEND}
+	sys-libs/readline
+	sys-libs/ncurses
+"
+
+S="${WORKDIR}/${MY_P}"
+
+pkg_setup() {
+	enewgroup mongodb
+	enewuser mongodb -1 -1 /var/lib/${PN} mongodb
+}
+
+#src_prepare() {
+#	epatch "${FILESDIR}/${PN}-1.6.3-fix-scons.patch"
+#}
+
+src_compile() {
+	escons all || die "Compile failed"
+}
+
+src_install() {
+	escons --full --nostrip install --prefix="${D}"/usr || die "Install failed"
+
+	for x in /var/{lib,log,run}/${PN}; do
+		dodir "${x}" || die "Install failed"
+		fowners mongodb:mongodb "${x}"
+	done
+
+	doman debian/mongo*.1 || die "Install failed"
+	dodoc README docs/building.md
+
+	newinitd "${FILESDIR}/${PN}.initd" ${PN} || die "Install failed"
+	newconfd "${FILESDIR}/${PN}.confd" ${PN} || die "Install failed"
+}
+
+src_test() {
+	escons smoke --smokedbprefix='testdir' test || die "Tests failed"
+}



^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2011-04-12  8:57 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-04-12  8:57 [gentoo-commits] proj/betagarden:master commit in: dev-db/mongodb/ Benedikt Boehm
  -- strict thread matches above, loose matches on Subject: below --
2011-03-17 11:05 Benedikt Boehm
2011-03-09 10:09 Benedikt Boehm

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox