diff options
-rw-r--r-- | system/plan9port/plan9port.SlackBuild | 6 | ||||
-rw-r--r-- | system/plan9port/plan9port.info | 6 | ||||
-rw-r--r-- | system/plan9port/profile.d/plan9port.csh | 4 | ||||
-rw-r--r-- | system/plan9port/profile.d/plan9port.sh | 4 |
4 files changed, 10 insertions, 10 deletions
diff --git a/system/plan9port/plan9port.SlackBuild b/system/plan9port/plan9port.SlackBuild index 91c9b38545..9cbfdcf4ec 100644 --- a/system/plan9port/plan9port.SlackBuild +++ b/system/plan9port/plan9port.SlackBuild @@ -2,7 +2,7 @@ # Slackware build script for plan9port -# Copyright (c) 2008, Antonio Hernández Blas <hba.nihilismus@gmail.com> +# Copyright (c) 2008-2010, Antonio Hernández Blas <hba.nihilismus@gmail.com> # All rights reserved. # # Redistribution and use in source and binary forms, with or without @@ -22,7 +22,7 @@ # SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. PRGNAM=plan9port -VERSION=20091211 +VERSION=20100825 ARCH=${ARCH:-i586} # There's no use of cflags. BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -37,7 +37,7 @@ set -e rm -rf $PKG mkdir -p $TMP $PKG/opt $OUTPUT cd $TMP -tar xvf $CWD/$PRGNAM-$VERSION.tgz 2>/dev/null || true # 4 harmless errors +tar xvf $CWD/$PRGNAM-$VERSION.tgz cd plan9 chown -R root:root . find . \ diff --git a/system/plan9port/plan9port.info b/system/plan9port/plan9port.info index 51e8ff767e..b41bb31ae4 100644 --- a/system/plan9port/plan9port.info +++ b/system/plan9port/plan9port.info @@ -1,8 +1,8 @@ PRGNAM="plan9port" -VERSION="20091211" +VERSION="20100825" HOMEPAGE="http://swtch.com/plan9port/" -DOWNLOAD="http://swtch.com/plan9port/plan9port-20091211.tgz" -MD5SUM="d70df9e863d226cbdcb76037accd41db" +DOWNLOAD="http://swtch.com/plan9port/plan9port-20100825.tgz" +MD5SUM="2d175db3726901f8f221e7e9b29b0f62" DOWNLOAD_x86_64="" MD5SUM_x86_64="" MAINTAINER="Antonio Hernández Blas" diff --git a/system/plan9port/profile.d/plan9port.csh b/system/plan9port/profile.d/plan9port.csh index f7ea8e2a33..0119f3e35d 100644 --- a/system/plan9port/profile.d/plan9port.csh +++ b/system/plan9port/profile.d/plan9port.csh @@ -1,4 +1,4 @@ #!/bin/csh setenv PLAN9 /opt/plan9 -setenv MANPATH ${MANPATH}:/opt/plan9/man -setenv PATH ${PATH}:/opt/plan9/bin +setenv MANPATH ${MANPATH}:$PLAN9/man +setenv PATH ${PATH}:$PLAN9/bin diff --git a/system/plan9port/profile.d/plan9port.sh b/system/plan9port/profile.d/plan9port.sh index 3596bafcc1..40ad4d01f2 100644 --- a/system/plan9port/profile.d/plan9port.sh +++ b/system/plan9port/profile.d/plan9port.sh @@ -1,4 +1,4 @@ #!/bin/sh export PLAN9=/opt/plan9 -export MANPATH="$MANPATH:/opt/plan9/man" -export PATH="$PATH:/opt/plan9/bin" +export MANPATH="$MANPATH:$PLAN9/man" +export PATH="$PATH:$PLAN9/bin" |