summaryrefslogtreecommitdiff
path: root/community/php-mongo
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-08-11 01:21:34 -0700
committerroot <root@rshg054.dnsready.net>2013-08-11 01:21:34 -0700
commit18a41d682d6e91e0d28fce23eb75292f477bd620 (patch)
treebce8f660d7d0b6541cadbc49bf1bac2434e4c0c6 /community/php-mongo
parent0ade1da67addf154d93c6a6399b0a3d5a18a3336 (diff)
Sun Aug 11 01:21:31 PDT 2013
Diffstat (limited to 'community/php-mongo')
-rw-r--r--community/php-mongo/PKGBUILD30
-rw-r--r--community/php-mongo/mongo.ini28
2 files changed, 0 insertions, 58 deletions
diff --git a/community/php-mongo/PKGBUILD b/community/php-mongo/PKGBUILD
deleted file mode 100644
index 7dffb0ade..000000000
--- a/community/php-mongo/PKGBUILD
+++ /dev/null
@@ -1,30 +0,0 @@
-# Maintainer: BlackEagle < ike DOT devolder AT gmail DOT com >
-# Contributor: Jarek Sedlacek <jareksedlacek@gmail.com>
-
-pkgname=php-mongo
-pkgver=1.4.2
-pkgrel=1
-pkgdesc="Officially supported PHP driver for MongoDB"
-arch=("i686" "x86_64")
-url="http://www.mongodb.org/display/DOCS/PHP+Language+Center"
-license=("APACHE")
-depends=("php")
-backup=("etc/php/conf.d/mongo.ini")
-source=(
- "http://pecl.php.net/get/mongo-$pkgver.tgz"
- "mongo.ini"
-)
-
-build() {
- cd mongo-$pkgver
- phpize
- ./configure --prefix=/usr --enable-mongo
-}
-
-package() {
- cd mongo-$pkgver
- make INSTALL_ROOT="$pkgdir" install
- install -Dm644 "$srcdir/mongo.ini" "$pkgdir/etc/php/conf.d/mongo.ini"
-}
-sha256sums=('ecbf8621c418c35abb0d5e9719432a2f315db2559023861105635bae5bfbd120'
- 'c89685eee842d5c3a85149a5bb8e310e62bf1a17f94183bb66401593ab2b191b')
diff --git a/community/php-mongo/mongo.ini b/community/php-mongo/mongo.ini
deleted file mode 100644
index e9e8dbac1..000000000
--- a/community/php-mongo/mongo.ini
+++ /dev/null
@@ -1,28 +0,0 @@
-; Tell PHP to load the Mongo Extension on startup
-extension=mongo.so
-
-[mongo]
-; If the driver should reconnect to mongo
-mongo.auto_reconnect = False
-
-; Whether to allow persistent connections
-mongo.allow_persistent = On
-
-; Maximum number of persistent connections (-1 means unlimited)
-mongo.max_persistent = -1
-
-; Maximum number of links (persistent and non-persistent, -1 means unlimited)
-mongo.max_connections = -1
-
-; Default host for mongo connection
-mongo.default_host = localhost
-
-; Default port for mongo database
-mongo.default_port = 27017
-
-; When saving files to the database, size of chunks to split them into
-mongo.chunk_size = 262400
-
-; Specify an alternate character to $ to use for special db functions ($set, $push, $exists, etc.)
-mongo.cmd = "$"
-