summaryrefslogtreecommitdiff
path: root/community/plan9port
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/plan9port
parent380530d02a5449fdef97b63b394a6743c3de0092 (diff)
Wed Jul 17 00:58:51 PDT 2013
Diffstat (limited to 'community/plan9port')
-rw-r--r--community/plan9port/PKGBUILD68
-rw-r--r--community/plan9port/plan9.install21
-rw-r--r--community/plan9port/plan9.sh2
3 files changed, 0 insertions, 91 deletions
diff --git a/community/plan9port/PKGBUILD b/community/plan9port/PKGBUILD
deleted file mode 100644
index fd9157b4b..000000000
--- a/community/plan9port/PKGBUILD
+++ /dev/null
@@ -1,68 +0,0 @@
-# $Id: PKGBUILD 88636 2013-04-20 19:00:12Z arodseth $
-# Maintainer: Alexander Rødseth <rodseth@gmail.com>
-# Contributor: phrakture <aaronmgriffin--gmail--com>
-# Contributor: Fazlul Shahriar
-# Contributor: Chris Brannon <cmbrannon79@gmail.com>
-
-pkgname=plan9port
-pkgver=20130320
-pkgrel=1
-pkgdesc='Port of many programs from Plan 9 to Unix-like operating systems'
-arch=('x86_64' 'i686')
-url='http://swtch.com/plan9port/'
-license=('custom')
-depends=('xorg-server' 'libxt' 'libxext' 'sh' 'fuse')
-optdepends=('python2: for the codereview script')
-provides=('plan9')
-install='plan9.install'
-options=('!zipman')
-source=("http://swtch.com/$pkgname/$pkgname-$pkgver.tgz"
- 'plan9.sh')
-sha256sums=('49a5e6c97c76f0846c45791bda10d6b3ba5c4453855e401980e8e04f92e830fa'
- '0247c4446497359d305aaec069b07180fbf79ce4fa5191464cd9ebb8c7f0228d')
-
-package() {
- cd "$srcdir/plan9"
-
- # Package
- ./INSTALL -b
- install -Dm755 ../plan9.sh "$pkgdir/etc/profile.d/plan9.sh"
- mkdir -p "$pkgdir/opt" "$pkgdir/usr/share/doc/$pkgname"
- cp -r "$srcdir/plan9" "$pkgdir/opt/"
- cd "$pkgdir/opt/plan9"
- ./INSTALL -c -r "$pkgdir/opt/plan9"
- install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-
- # Clean up
- rm -rf .hg/
- rm -f .hgignore .hgtags
- find . -name '.cvsignore' -print0 |xargs -0 rm -f
- rm -f config install.log install.sum install.txt configure Makefile INSTALL \
- LICENSE
-
- # Fix hardcoded paths
- for f in `grep -H -r "$pkgdir/opt/plan9" | cut -d: -f1`; do
- echo -n "\t$f"
- [ -e "$f" ] && sed -i "s:$pkgdir/opt/plan9:/opt/plan9:" "$f" || true
- done
-
- # Fix python scripts
- find "$pkgdir" -name '*.py' -print0 |xargs -0 \
- sed -i -e 's,^#!/usr/bin/env python$,#!/usr/bin/python2,' \
- -e 's,^#!/usr/bin/python$,#!/usr/bin/python2,'
-
- # Package text files
- for i in CHANGES CONTRIBUTORS README TODO; do
- install -m644 $i "$pkgdir/usr/share/doc/$pkgname"
- rm -f $i
- done
-
- # Decompress the plan9 man pages
- for i in `find /opt/plan9/man -type f`; do
- if [ ${i##*.} = "gz" ]; then
- gunzip "$i"
- fi
- done
-}
-
-# vim:set ts=2 sw=2 et:
diff --git a/community/plan9port/plan9.install b/community/plan9port/plan9.install
deleted file mode 100644
index 5c76552f3..000000000
--- a/community/plan9port/plan9.install
+++ /dev/null
@@ -1,21 +0,0 @@
-post_install() {
- echo ""
- echo "==> In order to use Plan9 specific apps, run them"
- echo " as arguments to the '9' script, i.e. '9 date'"
- echo "==> Please log off or 'source /etc/profile.d/plan9.sh'"
- echo "==> Run '9 man 1 intro | less' to begin"
- source /etc/profile.d/plan9.sh
-}
-
-post_upgrade() {
- post_install
-}
-
-pre_upgrade() {
- post_remove
-}
-
-post_remove() {
- #we had to unpack them so they won't get removed....
- rm -rf /opt/plan9/man
-}
diff --git a/community/plan9port/plan9.sh b/community/plan9port/plan9.sh
deleted file mode 100644
index 84c3d7ef4..000000000
--- a/community/plan9port/plan9.sh
+++ /dev/null
@@ -1,2 +0,0 @@
-export PLAN9=/opt/plan9
-export PATH=$PATH:$PLAN9/bin