summaryrefslogtreecommitdiff
path: root/community/gsql
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-07-17 00:58:52 -0700
committerroot <root@rshg054.dnsready.net>2013-07-17 00:58:52 -0700
commitdee9f17b595ea903a982d31d1124b302bb17e2ff (patch)
tree295fdab78e28e1952fbc13ce824d57c88ede4e3b /community/gsql
parent380530d02a5449fdef97b63b394a6743c3de0092 (diff)
Wed Jul 17 00:58:51 PDT 2013
Diffstat (limited to 'community/gsql')
-rw-r--r--community/gsql/PKGBUILD37
-rw-r--r--community/gsql/gsql.install24
2 files changed, 0 insertions, 61 deletions
diff --git a/community/gsql/PKGBUILD b/community/gsql/PKGBUILD
deleted file mode 100644
index a4d3f5c39..000000000
--- a/community/gsql/PKGBUILD
+++ /dev/null
@@ -1,37 +0,0 @@
-# $Id: PKGBUILD 88439 2013-04-17 16:49:53Z bgyorgy $
-# Contributor: Michael Kanis <mkanis@gmx.de>
-
-pkgname=gsql
-pkgver=0.2.2
-pkgrel=6
-pkgdesc="Integrated database development tool for GNOME"
-url="http://gsql.org/"
-license=('GPL')
-arch=('i686' 'x86_64')
-depends=('gtk2>=2.12' 'gtksourceview2' 'libglade' 'gconf'
- 'desktop-file-utils' 'libnotify' 'hicolor-icon-theme')
-makedepends=('vte' 'libmariadbclient' 'postgresql-libs' 'libssh')
-optdepends=('libmariadbclient: MySQL engine'
- 'libssh: SSH tunneling plugin'
- 'postgresql-libs: PostgreSQL engine'
- 'vte: Terminal session plugin')
-install=gsql.install
-options=(!libtool !emptydirs)
-source=(http://gsql.googlecode.com/files/${pkgname}-${pkgver}.tar.bz2)
-md5sums=('8f3322a75390584729e84a8570e08bea')
-
-build() {
- cd "$srcdir/$pkgname-$pkgver"
- sed -i 's/notify_notification_new (subj, message, NULL, NULL);/notify_notification_new (subj, message, NULL);/' libgsql/notify.c
- LDFLAGS="$LDFLAGS `pkg-config --libs gthread-2.0`" ./configure --prefix=/usr --sysconfdir=/etc \
- --disable-static --without-gnome
- make
-}
-
-package() {
- cd "$srcdir/$pkgname-$pkgver"
- make GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 DESTDIR="$pkgdir" install
- install -d "${pkgdir}/usr/share/gconf/schemas"
- gconf-merge-schema "${pkgdir}/usr/share/gconf/schemas/${pkgname}.schemas" "${pkgdir}"/etc/gconf/schemas/*.schemas
- rm -f "${pkgdir}"/etc/gconf/schemas/*.schemas
-}
diff --git a/community/gsql/gsql.install b/community/gsql/gsql.install
deleted file mode 100644
index e069ea8fc..000000000
--- a/community/gsql/gsql.install
+++ /dev/null
@@ -1,24 +0,0 @@
-pkgname=gsql
-
-post_install() {
- usr/sbin/gconfpkg --install ${pkgname}
- gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
- update-desktop-database -q
-}
-
-pre_upgrade() {
- pre_remove $1
-}
-
-post_upgrade() {
- post_install $1
-}
-
-pre_remove() {
- usr/sbin/gconfpkg --uninstall ${pkgname}
-}
-
-post_remove() {
- update-desktop-database -q
- gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-}