summaryrefslogtreecommitdiff
path: root/community/pcb
diff options
context:
space:
mode:
authorNicolas Reynolds <fauno@kiwwwi.com.ar>2011-12-01 11:10:31 -0300
committerNicolas Reynolds <fauno@kiwwwi.com.ar>2011-12-01 11:10:31 -0300
commitf5ed25b75901e05f9933b548c8bbdda654608c32 (patch)
tree37db6969ba4d61e110bab354ab6dc0db64f0a633 /community/pcb
parent1200fd46a32625f2ac4b035653cb49c22cce6426 (diff)
parentbc0657f7159d0b01373ecb59afc426b98a172b1e (diff)
Merge branch 'master' of ssh://vparabola/home/parabola/abslibre-pre-mips64el
Conflicts: community/dangerdeep/PKGBUILD community/lsb-release/PKGBUILD community/perl-gtk2-mozembed/PKGBUILD extra/camsource/PKGBUILD extra/gsf-sharp/PKGBUILD extra/muine/PKGBUILD extra/ocfs2-tools/PKGBUILD extra/telepathy-kde-accounts-kcm-plugins/PKGBUILD
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
-}