summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Faulhammer <fauli@gentoo.org>2009-08-18 06:21:44 +0000
committerChristian Faulhammer <fauli@gentoo.org>2009-08-18 06:21:44 +0000
commite0e4f016cd5f787ca332020a492f6408b90992dd (patch)
treea58b14ca26027675546efdd9d7ddbc17dd65fc24 /dev-db/pgaccess
parentcorrect HOMEPAGE for bug 280745 and quote variables (diff)
downloadgentoo-2-e0e4f016cd5f787ca332020a492f6408b90992dd.tar.gz
gentoo-2-e0e4f016cd5f787ca332020a492f6408b90992dd.tar.bz2
gentoo-2-e0e4f016cd5f787ca332020a492f6408b90992dd.zip
clean up
(Portage version: 2.1.6.13/cvs/Linux i686)
Diffstat (limited to 'dev-db/pgaccess')
-rw-r--r--dev-db/pgaccess/ChangeLog6
-rw-r--r--dev-db/pgaccess/files/pgaccess-0.98.8.patch37
-rw-r--r--dev-db/pgaccess/pgaccess-0.98.8.ebuild32
3 files changed, 5 insertions, 70 deletions
diff --git a/dev-db/pgaccess/ChangeLog b/dev-db/pgaccess/ChangeLog
index 187e9f92608e..c349921d3bef 100644
--- a/dev-db/pgaccess/ChangeLog
+++ b/dev-db/pgaccess/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for dev-db/pgaccess
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/pgaccess/ChangeLog,v 1.17 2009/08/18 06:19:09 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/pgaccess/ChangeLog,v 1.18 2009/08/18 06:21:44 fauli Exp $
+
+ 18 Aug 2009; Christian Faulhammer <fauli@gentoo.org>
+ -pgaccess-0.98.8.ebuild, -files/pgaccess-0.98.8.patch:
+ clean up
18 Aug 2009; Christian Faulhammer <fauli@gentoo.org>
pgaccess-0.98.8.ebuild, pgaccess-0.99.0.20040219.ebuild,
diff --git a/dev-db/pgaccess/files/pgaccess-0.98.8.patch b/dev-db/pgaccess/files/pgaccess-0.98.8.patch
deleted file mode 100644
index f3ebcedebd3d..000000000000
--- a/dev-db/pgaccess/files/pgaccess-0.98.8.patch
+++ /dev/null
@@ -1,37 +0,0 @@
-diff -rc pgaccess-0.98.8/Makefile pgaccess-0.98.8.new/Makefile
-*** pgaccess-0.98.8/Makefile Wed Aug 28 18:11:22 2002
---- pgaccess-0.98.8.new/Makefile Tue Feb 25 08:52:15 2003
-***************
-*** 7,21 ****
- #
- #-------------------------------------------------------------------------
-
-! bindir = /usr/bin/X11
-! libdir = /usr/lib/pgaccess
-! wish = /usr/bin/wish
-
- pgaccess:
- chmod a+x pgaccess.tcl
-! mkdir $(libdir)
- cp -R * $(libdir)
-! ln -s $(libdir)/pgaccess.tcl $(bindir)/pgaccess
-
- all: pgaccess
-
---- 7,22 ----
- #
- #-------------------------------------------------------------------------
-
-! bindir := $(prefix)/usr/bin/X11
-! libdir := $(prefix)/usr/lib/pgaccess
-! wish := `which wish`
-
- pgaccess:
- chmod a+x pgaccess.tcl
-! [ -d $(libdir) ] || mkdir -p $(libdir)
- cp -R * $(libdir)
-! [ -d $(bindir) ] || mkdir -p $(bindir)
-! cd $(bindir) && ln -s ../../lib/pgaccess/pgaccess.tcl $(bindir)/pgaccess
-
- all: pgaccess
-
diff --git a/dev-db/pgaccess/pgaccess-0.98.8.ebuild b/dev-db/pgaccess/pgaccess-0.98.8.ebuild
deleted file mode 100644
index 0ca33d323039..000000000000
--- a/dev-db/pgaccess/pgaccess-0.98.8.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/pgaccess/pgaccess-0.98.8.ebuild,v 1.15 2009/08/18 06:19:09 fauli Exp $
-
-DESCRIPTION="a database frontend for postgresql"
-HOMEPAGE="http://sourceforge.net/projects/pgaccess/"
-SRC_URI="http://www.pgaccess.org/download/${P}.tar.gz"
-LICENSE="POSTGRESQL"
-
-SLOT="0"
-KEYWORDS="x86 amd64 ~ppc"
-IUSE=""
-
-# Build-time dependencies
-DEPEND=">=dev-lang/tcl-8.3.4
- >=dev-lang/tk-8.3.4
- >=virtual/postgresql-server-7.3"
-
-src_compile() {
- cd ${S}
- patch -p1 < ${FILESDIR}/${P}.patch || die
-}
-
-src_install() {
- make prefix=${D} install || die
-}
-
-pkg_postinst() {
- einfo "When running the program, if you encount the error "
- einfo "\"Error: Shared library file: '/usr/lib/libpgtcl.so' does not exist.\","
- einfo "you need to emerge postgresql with USE='tcltk' again"
-}