Mercurial > hg > portage
changeset 68:f7bbde77ac6e
remove pgadmin3 now that a newer version is in portage
author | Dirk Olmes <dirk.olmes@googlemail.com> |
---|---|
date | Thu, 08 Jan 2009 10:11:11 +0100 |
parents | b31e97231708 |
children | 8896b8887eda |
files | dev-db/pgadmin3/Manifest dev-db/pgadmin3/pgadmin3-1.6.3.ebuild |
diffstat | 2 files changed, 0 insertions(+), 67 deletions(-) [+] |
line wrap: on
line diff
--- a/dev-db/pgadmin3/Manifest Thu Jan 08 10:07:25 2009 +0100 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,2 +0,0 @@ -DIST pgadmin3-1.6.3.tar.gz 8353446 RMD160 2e30091a694042f06c28811b63863e06759bcc48 SHA1 3c56fbbec37a6d4ef5def0c1c0f775b177d4805d SHA256 e84614ab3ed3b455f88e0dce4e3880caf7cf535ed999e97d825af429f25f294b -EBUILD pgadmin3-1.6.3.ebuild 1500 RMD160 7f6745a96e8370d51913a988d26f6440391aa801 SHA1 b25740a48c86506cb1481d5c03b16a4e2be6665f SHA256 b519b527d3ec927d9f975c45fc08cdc91f288bfc136937202a1bfc57cb42dc44
--- a/dev-db/pgadmin3/pgadmin3-1.6.3.ebuild Thu Jan 08 10:07:25 2009 +0100 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,65 +0,0 @@ -# Copyright 1999-2006 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# - -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}" - patch -p0 < ${FILESDIR}/patch.p0 - # 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} \ - --with-wx-version=2.8 \ - || 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" -}