summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--dev-db/pgadmin3/Manifest2
-rw-r--r--dev-db/pgadmin3/files/digest-pgadmin3-1.8.03
-rw-r--r--dev-db/pgadmin3/pgadmin3-1.8.0.ebuild65
3 files changed, 0 insertions, 70 deletions
diff --git a/dev-db/pgadmin3/Manifest b/dev-db/pgadmin3/Manifest
deleted file mode 100644
index 2bd8050..0000000
--- a/dev-db/pgadmin3/Manifest
+++ /dev/null
@@ -1,2 +0,0 @@
-DIST pgadmin3-1.8.0.tar.gz 7913989 RMD160 aef947be994789e600da1cf2f7ca9ac3eea6bd5b SHA1 5513c5b2ab42ff8771f0e00e0298db609409cda8 SHA256 1e707f942de4fd01bcac7c0fd0407a10d6cba25b82762552e96cea5864fae617
-EBUILD pgadmin3-1.8.0.ebuild 1545 RMD160 c8ee16a4aab803a1bca393342b3679b35ba2e197 SHA1 0befdc340c920c44887c16463f4b71423888d9e6 SHA256 ba174b5304bdae1dbf8e5705868140aeafc96b2174148d829e0a6fe9d6afbf6b
diff --git a/dev-db/pgadmin3/files/digest-pgadmin3-1.8.0 b/dev-db/pgadmin3/files/digest-pgadmin3-1.8.0
deleted file mode 100644
index 4ba9164..0000000
--- a/dev-db/pgadmin3/files/digest-pgadmin3-1.8.0
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 fdcf7b211971790db4f5f5c5081a63f8 pgadmin3-1.8.0.tar.gz 7913989
-RMD160 aef947be994789e600da1cf2f7ca9ac3eea6bd5b pgadmin3-1.8.0.tar.gz 7913989
-SHA256 1e707f942de4fd01bcac7c0fd0407a10d6cba25b82762552e96cea5864fae617 pgadmin3-1.8.0.tar.gz 7913989
diff --git a/dev-db/pgadmin3/pgadmin3-1.8.0.ebuild b/dev-db/pgadmin3/pgadmin3-1.8.0.ebuild
deleted file mode 100644
index db4db9e..0000000
--- a/dev-db/pgadmin3/pgadmin3-1.8.0.ebuild
+++ /dev/null
@@ -1,65 +0,0 @@
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvs/lportage/dev-db/pgadmin3/pgadmin3-1.8.0.ebuild,v 1.1 2008-03-12 10:03:43 randomdan Exp $
-
-inherit wxwidgets eutils autotools
-
-KEYWORDS="alpha amd64 ppc sparc x86"
-
-DESCRIPTION="wxWidgets GUI for PostgreSQL."
-HOMEPAGE="http://www.pgadmin.org/"
-SRC_URI="mirror://postgresql/pgadmin3/release/v${PV}/src/${P}.tar.gz"
-LICENSE="Artistic"
-SLOT="0"
-IUSE="debug"
-
-DEPEND="=x11-libs/wxGTK-2.8*
- >=dev-db/libpq-7.4
- >=dev-libs/libxml2-2.5
- >=dev-libs/libxslt-1.1"
-RDEPEND="${DEPEND}"
-
-pkg_setup() {
- export WX_GTK_VER=2.8
- export WX_HOME=/usr
- need-wxwidgets unicode
-}
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
-
- # --debug=yes/no for wx_config is only needed if wxGTK debug and
- # release versions are installed aside. Which is not possible
- # on Gentoo at the moment.
- sed -i \
- -e 's/--debug=[yesno]* //g' \
- acinclude.m4 || die "sed failed"
- eautoreconf
-}
-
-src_compile() {
- cd "${S}"
-
- # pgadmin3 inserts WX_HOME before the WX_CONFIG path below, so we have to strip "/usr" from it
- econf \
- --with-wx-config=${WX_CONFIG/\/usr} \
- $(use_enable debug) \
- || die "econf failed"
- emake || die "emake failed"
-}
-
-src_install() {
- cd "${S}"
-
- einstall || die "einstall failed"
-
- insinto /usr/share/pixmaps
- newins "${S}/src/include/images/elephant48.xpm" pgadmin3.xpm
-
- insinto /usr/share/pgadmin3
- newins "${S}/src/include/images/elephant48.xpm" pgadmin3.xpm
-
- insinto /usr/share/applications
- doins "${S}/pkg/pgadmin3.desktop"
-}