summaryrefslogtreecommitdiff
path: root/community/pcb
diff options
context:
space:
mode:
authorParabola <dev@list.parabolagnulinux.org>2011-12-01 14:10:29 +0000
committerParabola <dev@list.parabolagnulinux.org>2011-12-01 14:10:29 +0000
commitbc0657f7159d0b01373ecb59afc426b98a172b1e (patch)
tree7fba1eb77eb1a2965fe5f3ed72cc77aa63d14f40 /community/pcb
parentfd115d7057eb8243df6edfaf1ed440d6f3e70692 (diff)
Thu Dec 1 14:10:27 UTC 2011
Diffstat (limited to 'community/pcb')
-rw-r--r--community/pcb/Changelog22
-rw-r--r--community/pcb/pcb.install37
2 files changed, 0 insertions, 59 deletions
diff --git a/community/pcb/Changelog b/community/pcb/Changelog
deleted file mode 100644
index c1580a1b9..000000000
--- a/community/pcb/Changelog
+++ /dev/null
@@ -1,22 +0,0 @@
-2010-09-30 Jared Casper <jaredcasper@gmail.com>
- * 20100929-1
- - Version bump
- - split build and package
- - Remove || return 1
- - Add -j1 to make install
- - Use changelog variable
-
-2009-11-04 Jared Casper <jaredcasper@gmail.com>
- * 20091103-1
- - Version bump
- - Added --enable-dbus to configure
-
-2008-11-28 Jared Casper <jaredcasper@gmail.com>
- * 20081128-1
- - Version bump
- - added ChangeLog
- - Fixed download URL
- - Fixed build when tk is not installed
- - Fixed info file handling handling
-
-
diff --git a/community/pcb/pcb.install b/community/pcb/pcb.install
deleted file mode 100644
index 62ce80440..000000000
--- a/community/pcb/pcb.install
+++ /dev/null
@@ -1,37 +0,0 @@
-infodir=/usr/share/info
-filelist=(pcb.info pcb.info-1 pcb.info-2)
-
-post_install() {
- if [ -x /usr/bin/update-mime-database ]; then
- echo Updating mime database...
- /usr/bin/update-mime-database /usr/share/mime
- fi
- if [ -x /usr/bin/update-desktop-database ]; then
- echo Updating desktop database..
- /usr/bin/update-desktop-database /usr/share/applications
- fi
- if [ -x /usr/bin/install-info ]; then
- echo Updating info directory...
- for file in ${filelist[@]}; do
- install-info $infodir/$file $infodir/dir 2> /dev/null
- done
- fi
- /usr/bin/gtk-update-icon-cache -f -t /usr/share/icons/hicolor
-}
-
-post_upgrade() {
- post_install $1
-}
-
-pre_remove() {
- if [ -x /usr/bin/install-info ]; then
- echo Updating info directory...
- for file in ${filelist[@]}; do
- install-info --delete $infodir/$file $infodir/dir 2> /dev/null
- done
- fi
-}
-
-post_remove() {
- /usr/bin/gtk-update-icon-cache -f -t /usr/share/icons/hicolor
-}