summaryrefslogtreecommitdiff
path: root/community/gerbv
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/gerbv
parent380530d02a5449fdef97b63b394a6743c3de0092 (diff)
Wed Jul 17 00:58:51 PDT 2013
Diffstat (limited to 'community/gerbv')
-rw-r--r--community/gerbv/ChangeLog31
-rw-r--r--community/gerbv/PKGBUILD32
-rw-r--r--community/gerbv/gerbv.install21
3 files changed, 0 insertions, 84 deletions
diff --git a/community/gerbv/ChangeLog b/community/gerbv/ChangeLog
deleted file mode 100644
index 3653de9c5..000000000
--- a/community/gerbv/ChangeLog
+++ /dev/null
@@ -1,31 +0,0 @@
-2011-12-31 Kyle Keen <keenerd@gmail.com>
- * 2.6.0-1
- - Version bump
-
-2010-12-31 Stefan Husmann <stefan-husmann@t-online.de>
- * 2.4.0-2
- - Move to [community]
-
-2010-02-26 Jared Casper <jaredcasper@gmail.com>
- * 2.4.0-1
- - Version bump
-
-2009-07-11 Jared Casper <jaredcasper@gmail.com>
- * 2.3.0-1
- - Version bump
-
-2009-01-23 Jared Casper <jaredcasper@gmail.com>
- * 2.2.0-1
- - Version bump
-
-2008-09-28 Jared Casper <jaredcasper@gmail.com>
- * 2.1.0-1
- - Version bump
- - Added icon cache update
- - Added icon cache and desktop update to post_update
-
-2008-06-13 Jared Casper <jaredcasper@gmail.com>
-
- * 2.0.1-1
- - Version bump
- - Added ChangeLog
diff --git a/community/gerbv/PKGBUILD b/community/gerbv/PKGBUILD
deleted file mode 100644
index f18a19b5a..000000000
--- a/community/gerbv/PKGBUILD
+++ /dev/null
@@ -1,32 +0,0 @@
-# $Id: PKGBUILD 61469 2012-01-01 00:58:06Z kkeen $
-# Maintainer: Kyle Keen <keenerd@gmail.com>
-# Contributor: Jared Casper <jaredcasper@gmail.com>
-# Contributor: Stefan Husmann <stefan-husmann@t-online.de>
-
-pkgname=gerbv
-pkgver=2.6.0
-pkgrel=1
-pkgdesc="An open source Gerber file (RS-274X only) viewer"
-url="http://gerbv.gpleda.org/"
-license=('GPL')
-arch=('i686' 'x86_64')
-depends=('gtk2' 'shared-mime-info' 'hicolor-icon-theme')
-optdepends=('gdk-pixbuf: export of images' 'cairo: for better graphics')
-install=$pkgname.install
-source=("http://downloads.sourceforge.net/gerbv/$pkgname-$pkgver.tar.gz")
-md5sums=('44a37dd202bc60fab54cbc298a477572')
-
-build ()
-{
- cd "$srcdir/$pkgname-$pkgver"
- ./configure --prefix=/usr \
- --disable-update-desktop-database
- make
-}
-
-package()
-{
- cd "$srcdir/$pkgname-$pkgver"
- make DESTDIR="$pkgdir" install
-}
-
diff --git a/community/gerbv/gerbv.install b/community/gerbv/gerbv.install
deleted file mode 100644
index 8cfe0686c..000000000
--- a/community/gerbv/gerbv.install
+++ /dev/null
@@ -1,21 +0,0 @@
-post_install() {
-if [ -x /usr/bin/gtk-update-icon-cache ]; then
- echo Updating icon cache...
- /usr/bin/gtk-update-icon-cache -f -t /usr/share/icons/hicolor
-fi
-if [ -x /usr/bin/update-desktop-database ]; then
- echo Updating desktop database..
- /usr/bin/update-desktop-database /usr/share/applications
-fi
-}
-
-post_upgrade() {
-if [ -x /usr/bin/gtk-update-icon-cache ]; then
- echo Updating icon cache...
- /usr/bin/gtk-update-icon-cache -f -t /usr/share/icons/hicolor
-fi
-if [ -x /usr/bin/update-desktop-database ]; then
- echo Updating desktop database..
- /usr/bin/update-desktop-database /usr/share/applications
-fi
-}