From: "Miroslav Šulc" <fordfrog@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] dev/fordfrog:master commit in: dev-db/pgfouine/
Date: Wed, 29 Jun 2011 16:26:08 +0000 (UTC) [thread overview]
Message-ID: <7f812b22fd60d3f91a00ef198cf2189202e72fc3.fordfrog@gentoo> (raw)
commit: 7f812b22fd60d3f91a00ef198cf2189202e72fc3
Author: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
AuthorDate: Wed Jun 29 16:26:00 2011 +0000
Commit: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
CommitDate: Wed Jun 29 16:26:00 2011 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=dev/fordfrog.git;a=commit;h=7f812b22
dev-db/pgfouine: added new ebuild
---
dev-db/pgfouine/ChangeLog | 11 ++++++++
dev-db/pgfouine/Manifest | 4 +++
dev-db/pgfouine/metadata.xml | 9 ++++++
dev-db/pgfouine/pgfouine-1.2.ebuild | 48 +++++++++++++++++++++++++++++++++++
4 files changed, 72 insertions(+), 0 deletions(-)
diff --git a/dev-db/pgfouine/ChangeLog b/dev-db/pgfouine/ChangeLog
new file mode 100644
index 0000000..0650c4a
--- /dev/null
+++ b/dev-db/pgfouine/ChangeLog
@@ -0,0 +1,11 @@
+# ChangeLog for dev-db/pgfouine
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# $Header: $
+
+*pgfouine-1.2 (29 Jun 2011)
+
+ 29 Jun 2011; Miroslav Šulc <fordfrog@gentoo.org> +pgfouine-1.2.ebuild,
+ +metadata.xml:
+ Added initial raw ebuild. It does not check whether all needed PHP modules
+ are enabled.
+
diff --git a/dev-db/pgfouine/Manifest b/dev-db/pgfouine/Manifest
new file mode 100644
index 0000000..fd37e1a
--- /dev/null
+++ b/dev-db/pgfouine/Manifest
@@ -0,0 +1,4 @@
+DIST pgfouine-1.2.tar.gz 793004 RMD160 126c8ac1d65e32e093db9f9b510f3d6a5a663237 SHA1 aca54b34d93a6b1faa2c55b382b9f0742fce081d SHA256 6c5b753d7c14744cd23021d327016040cd86e14d29c055babf556ee2160a17fd
+EBUILD pgfouine-1.2.ebuild 1120 RMD160 7dfdd787b84bf6075b5d3f8cd84fae992dc118d1 SHA1 cdf406cd3352dd73a9e93069651643220679e3b4 SHA256 8b0e2b9f27f3d03b09621b73a6fc38958c3ba54f000eaf95a1f35df65686a352
+MISC ChangeLog 329 RMD160 23f928ae92b4614ab6bab072c9126e9b9b7edf2a SHA1 479caf710dad7507f4c47b3fc912640532258a20 SHA256 b526fcd69846a0e7919801fc1d8954b54556ad2daa4cecbde12336f58110dbc4
+MISC metadata.xml 257 RMD160 743513e54bce621fb29181c8f2c9bc9521f83c12 SHA1 6e6259d3bca13f00ad4e47d103c78a856fcdec7a SHA256 ca5a181e2b7199de87f8012a08f0d58b12de37e4a4cd8e4659e0dad86f774892
diff --git a/dev-db/pgfouine/metadata.xml b/dev-db/pgfouine/metadata.xml
new file mode 100644
index 0000000..a959f6a
--- /dev/null
+++ b/dev-db/pgfouine/metadata.xml
@@ -0,0 +1,9 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+<herd>postgresql</herd>
+<maintainer>
+ <email>fordfrog@gentoo.org</email>
+ <name>Miroslav Šulc</name>
+</maintainer>
+</pkgmetadata>
diff --git a/dev-db/pgfouine/pgfouine-1.2.ebuild b/dev-db/pgfouine/pgfouine-1.2.ebuild
new file mode 100644
index 0000000..7c4f254
--- /dev/null
+++ b/dev-db/pgfouine/pgfouine-1.2.ebuild
@@ -0,0 +1,48 @@
+# Copyright 1999-2011 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/phoronix-test-suite/phoronix-test-suite-2.8.1-r1.ebuild,v 1.1 2011/02/01 21:50:49 cardoe Exp $
+
+EAPI=4
+
+inherit eutils
+
+DESCRIPTION="pgFouine is a PostgreSQL log analyzer used to generate detailed reports from a PostgreSQL log file"
+HOMEPAGE="http://pgfouine.projects.postgresql.org/"
+SRC_URI="http://pgfoundry.org/frs/download.php/2575/${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND=""
+
+# php 5.3 doesn't have pcre useflag anymore
+RDEPEND=">=dev-lang/php-4"
+
+src_prepare() {
+ find -name CVS -type d | xargs rm -fr
+}
+
+src_configure() {
+ :
+}
+
+src_compile() {
+ :
+}
+
+src_install() {
+ dodir /usr/share/${PN}
+ insinto /usr/share/${PN}
+ doins *.php
+ doins -r include
+
+ dodoc AUTHORS ChangeLog INSTALL README RELEASE THANKS pgfouine.spec
+
+ dosym /usr/share/${PN}/${PN}.php /usr/bin/${PN}
+ dosym /usr/share/${PN}/${PN}_vacuum.php /usr/bin/${PN}_vacuum
+
+ fperms 555 /usr/share/${PN}/${PN}.php
+ fperms 555 /usr/share/${PN}/${PN}_vacuum.php
+}
next reply other threads:[~2011-06-29 16:26 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-06-29 16:26 Miroslav Šulc [this message]
-- strict thread matches above, loose matches on Subject: below --
2011-06-30 9:25 [gentoo-commits] dev/fordfrog:master commit in: dev-db/pgfouine/ Miroslav Šulc
2011-10-22 21:09 Miroslav Šulc
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=7f812b22fd60d3f91a00ef198cf2189202e72fc3.fordfrog@gentoo \
--to=fordfrog@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox