Skip to content

Commit

Permalink
dev-db/phppgadmin: readd to the tree
Browse files Browse the repository at this point in the history
Package-Manager: Portage-2.3.99, Repoman-2.3.23
Signed-off-by: Alfredo Tupone <[email protected]>
  • Loading branch information
atupone committed Jul 20, 2020
1 parent 642f1bc commit 39559f1
Show file tree
Hide file tree
Showing 4 changed files with 54 additions and 0 deletions.
1 change: 1 addition & 0 deletions dev-db/phppgadmin/Manifest
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
DIST phpPgAdmin-5.6.0.tar.bz2 880640 BLAKE2B a49fb97c26c35323b567f06002cc6da9f3efacb4be99633e6ad4d6a53015e557ef3c98a4bf9c4dedf525b86354816e744f6159bad7db6f52fe2c03223f0be9a1 SHA512 afe4c99322bb24bf1895afb20dd87dcad1fc7d887b9271d9dd6b56779a7b5c8aa7293cdc7fa560a62a830adbf5453914a4783a1265915b24594779c0beeaecda
4 changes: 4 additions & 0 deletions dev-db/phppgadmin/files/postinstall-en.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Make sure you edit ${MY_INSTALLDIR}/conf/config.inc.php

To use the reports database, you have to manually execute
psql -f ${MY_INSTALLDIR}/sql/reports-pgsql.sql
11 changes: 11 additions & 0 deletions dev-db/phppgadmin/metadata.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>[email protected]</email>
<name>Tupone Alfredo</name>
</maintainer>
<upstream>
<remote-id type="sourceforge">phppgadmin</remote-id>
</upstream>
</pkgmetadata>
38 changes: 38 additions & 0 deletions dev-db/phppgadmin/phppgadmin-5.6.0.ebuild
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=7

inherit webapp

MY_P="phpPgAdmin-${PV}"

DESCRIPTION="Web-based administration for Postgres database in php"
HOMEPAGE="http://phppgadmin.sourceforge.net/"
SRC_URI="https://github.com/${PN}/${PN}/releases/download/REL_$(ver_rs 1- -)/${MY_P}.tar.bz2"

LICENSE="GPL-2"
KEYWORDS="~amd64"
IUSE=""

RDEPEND="dev-lang/php[postgres,session]"

S="${WORKDIR}/${MY_P}"

src_install() {
webapp_src_preinst

local doc
local docs="CREDITS DEVELOPERS FAQ HISTORY INSTALL TODO TRANSLATORS"
dodoc ${docs}
mv conf/config.inc.php-dist conf/config.inc.php

cp -r * "${D}"${MY_HTDOCSDIR}
for doc in ${docs} INSTALL LICENSE; do
rm -f "${D}"${MY_HTDOCSDIR}/${doc}
done

webapp_configfile ${MY_HTDOCSDIR}/conf/config.inc.php
webapp_postinst_txt en "${FILESDIR}"/postinstall-en.txt
webapp_src_install
}

0 comments on commit 39559f1

Please sign in to comment.