diff options
author | Patrick J Volkerding <volkerdi@slackware.com> | 2009-08-26 10:00:38 -0500 |
---|---|---|
committer | Eric Hameleers <alien@slackware.com> | 2018-05-31 22:41:17 +0200 |
commit | 5a12e7c134274dba706667107d10d231517d3e05 (patch) | |
tree | 55718d5acb710fde798d9f38d0bbaf594ed4b296 /source/ap/mc | |
download | current-5a12e7c134274dba706667107d10d231517d3e05.tar.gz |
Slackware 13.0slackware-13.0
Wed Aug 26 10:00:38 CDT 2009
Slackware 13.0 x86_64 is released as stable! Thanks to everyone who
helped make this release possible -- see the RELEASE_NOTES for the
credits. The ISOs are off to the replicator. This time it will be a
6 CD-ROM 32-bit set and a dual-sided 32-bit/64-bit x86/x86_64 DVD.
We're taking pre-orders now at store.slackware.com. Please consider
picking up a copy to help support the project. Once again, thanks to
the entire Slackware community for all the help testing and fixing
things and offering suggestions during this development cycle.
As always, have fun and enjoy! -P.
Diffstat (limited to 'source/ap/mc')
-rwxr-xr-x | source/ap/mc/mc.SlackBuild | 108 | ||||
-rwxr-xr-x | source/ap/mc/profile.d/mc-wrapper.csh | 20 | ||||
-rwxr-xr-x | source/ap/mc/profile.d/mc-wrapper.sh | 14 | ||||
-rwxr-xr-x | source/ap/mc/profile.d/mc.csh | 1 | ||||
-rwxr-xr-x | source/ap/mc/profile.d/mc.sh | 1 | ||||
-rw-r--r-- | source/ap/mc/slack-desc | 19 |
6 files changed, 163 insertions, 0 deletions
diff --git a/source/ap/mc/mc.SlackBuild b/source/ap/mc/mc.SlackBuild new file mode 100755 index 00000000..8beae8b4 --- /dev/null +++ b/source/ap/mc/mc.SlackBuild @@ -0,0 +1,108 @@ +#!/bin/sh + +# Copyright 2008, 2009 Patrick J. Volkerding, Sebeka, MN, USA +# All rights reserved. +# +# Redistribution and use of this script, with or without modification, is +# permitted provided that the following conditions are met: +# +# 1. Redistributions of this script must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# +# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED +# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO +# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; +# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, +# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR +# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF +# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + +VERSION=20090714_git +ARCH=${ARCH:-x86_64} +BUILD=${BUILD:-1} + +NUMJOBS=${NUMJOBS:-" -j7 "} + +if [ "$ARCH" = "i486" ]; then + SLKCFLAGS="-O2 -march=i486 -mtune=i686" +elif [ "$ARCH" = "s390" ]; then + SLKCFLAGS="-O2" +elif [ "$ARCH" = "x86_64" ]; then + SLKCFLAGS="-O2 -fPIC" +fi + +CWD=$(pwd) +TMP=${TMP:-/tmp} +PKG=$TMP/package-mc +rm -rf $PKG +mkdir -p $TMP $PKG/usr + +cd $TMP +rm -rf mc-$VERSION +tar xvf $CWD/mc-$VERSION.tar.xz || exit 1 +cd mc-$VERSION || exit 1 +chown -R root:root . +find . \ + \( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \ + -exec chmod 755 {} \; -o \ + \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ + -exec chmod 644 {} \; + +./autogen.sh + +CFLAGS="$SLKCFLAGS" \ +./configure \ + --prefix=/usr \ + --sysconfdir=/etc \ + --mandir=/usr/man \ + --localstatedir=/var \ + --docdir=/usr/doc/mc-$VERSION \ + --enable-extcharset \ + --enable-netcode \ + --enable-background \ + --enable-charset \ + --with-gpm-mouse \ + --with-ext2undel \ + --with-x=yes \ + --with-vfs \ + --with-samba \ + --with-configdir=/etc/samba \ + --with-codepagedir=/etc/codepages \ + --build=$ARCH-slackware-linux + +make $NUMJOBS || make || exit 1 +make DESTDIR=$PKG install || exit 1 + +find $PKG | xargs file | grep -e "executable" -e "shared object" \ + | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null + +mkdir -p $PKG/usr/share/mc/bin +cp -a $CWD/profile.d/mc-wrapper.* $PKG/usr/share/mc/bin +chown root:root $PKG/usr/share/mc/bin/* +chmod 755 $PKG/usr/share/mc/bin/* +mkdir -p $PKG/etc/profile.d +cp -a $CWD/profile.d/mc.* $PKG/etc/profile.d +chown root:root $PKG/etc/profile.d/* +chmod 755 $PKG/etc/profile.d/* + +( cd $PKG/usr/man + find . -type f -exec gzip -9 {} \; + for i in $(find . -type l) ; do ln -s $(readlink $i).gz $i.gz ; rm $i ; done +) + +mkdir -p $PKG/usr/doc/mc-$VERSION +cp -a \ + AUTHORS doc/COPYING* doc/FAQ doc/HACKING doc/INSTALL doc/MAINTAINERS doc/NEWS doc/README* doc/TODO \ + $PKG/usr/doc/mc-$VERSION + +mkdir -p $PKG/install +cat $CWD/slack-desc > $PKG/install/slack-desc + +# Build package: +cd $PKG +/sbin/makepkg -l y -c n $TMP/mc-$VERSION-$ARCH-$BUILD.txz + diff --git a/source/ap/mc/profile.d/mc-wrapper.csh b/source/ap/mc/profile.d/mc-wrapper.csh new file mode 100755 index 00000000..7b4c383d --- /dev/null +++ b/source/ap/mc/profile.d/mc-wrapper.csh @@ -0,0 +1,20 @@ +set MC_USER="`id | sed 's/[^(]*(//;s/).*//'`" + +if ($?TMPDIR) then + setenv MC_PWD_FILE $TMPDIR/mc-$MC_USER/mc.pwd.$$ +else + setenv MC_PWD_FILE /tmp/mc-$MC_USER/mc.pwd.$$ +endif + +/usr/bin/mc -P "$MC_PWD_FILE" $* + +if (-r "$MC_PWD_FILE") then + setenv MC_PWD "`cat '$MC_PWD_FILE'`" + if ( -d "$MC_PWD" ) then + cd "$MC_PWD" + endif + unsetenv MC_PWD +endif + +rm -f "$MC_PWD_FILE" +unsetenv MC_PWD_FILE diff --git a/source/ap/mc/profile.d/mc-wrapper.sh b/source/ap/mc/profile.d/mc-wrapper.sh new file mode 100755 index 00000000..36db1574 --- /dev/null +++ b/source/ap/mc/profile.d/mc-wrapper.sh @@ -0,0 +1,14 @@ +MC_USER=`id | sed 's/[^(]*(//;s/).*//'` +MC_PWD_FILE="${TMPDIR-/tmp}/mc-$MC_USER/mc.pwd.$$" +/usr/bin/mc -P "$MC_PWD_FILE" "$@" + +if test -r "$MC_PWD_FILE"; then + MC_PWD="`cat "$MC_PWD_FILE"`" + if test -n "$MC_PWD" && test -d "$MC_PWD"; then + cd "$MC_PWD" + fi + unset MC_PWD +fi + +rm -f "$MC_PWD_FILE" +unset MC_PWD_FILE diff --git a/source/ap/mc/profile.d/mc.csh b/source/ap/mc/profile.d/mc.csh new file mode 100755 index 00000000..5a614bb2 --- /dev/null +++ b/source/ap/mc/profile.d/mc.csh @@ -0,0 +1 @@ +alias mc 'source /usr/share/mc/bin/mc-wrapper.csh' diff --git a/source/ap/mc/profile.d/mc.sh b/source/ap/mc/profile.d/mc.sh new file mode 100755 index 00000000..8198ab45 --- /dev/null +++ b/source/ap/mc/profile.d/mc.sh @@ -0,0 +1 @@ +alias mc='. /usr/share/mc/bin/mc-wrapper.sh' diff --git a/source/ap/mc/slack-desc b/source/ap/mc/slack-desc new file mode 100644 index 00000000..be6ca439 --- /dev/null +++ b/source/ap/mc/slack-desc @@ -0,0 +1,19 @@ +# HOW TO EDIT THIS FILE: +# The "handy ruler" below makes it easier to edit a package description. Line +# up the first '|' above the ':' following the base package name, and the '|' +# on the right side marks the last column you can put a character in. You must +# make exactly 11 lines for the formatting to be correct. It's also +# customary to leave one space after the ':'. + + |-----handy-ruler------------------------------------------------------| +mc: mc (Midnight Commander file manager) +mc: +mc: The Midnight Commander is a Norton Commander clone, a program that +mc: manipulates and manages files and directories. Useful, fast, and has +mc: color displays on the Linux console. Mouse support is provided +mc: through the gpm mouse server. This is a lightweight compilation of +mc: mc for use on the text console or in an xterm. +mc: +mc: mc was written by Miguel de Icaza and Mauricio Plaza. +mc: +mc: |