summaryrefslogtreecommitdiffstats
path: root/development/nchexedit/nchexedit.SlackBuild
blob: 4af50b5820b527a253c59860bfb437945ea45d61 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
#!/bin/bash

# Slackware build script for nchexedit

# Written by B. Watson (yalhcru@gmail.com)

# Licensed under the WTFPL. See http://www.wtfpl.net/txt/copying/ for details.

# There's already a 'hexedit' on SBo (a completely different program).
# This one's full name is "[N] Curses Hexedit" so I'm packaging it
# as nchexedit.

# We're using most of Debian's patches, the _5 in VERSION is their
# patchlevel.

cd $(dirname $0) ; CWD=$(pwd)

PRGNAM=nchexedit
VERSION=${VERSION:-0.9.7_5}
BUILD=${BUILD:-2}
TAG=${TAG:-_SBo}
PKGTYPE=${PKGTYPE:-tgz}

SRCNAM=hexedit
SRCVER="$( echo $VERSION | cut -d_ -f1 )"
DEBNAME="ncurses-$SRCNAM"
DEBVER="$( echo $VERSION | cut -d_ -f2 )"

if [ -z "$ARCH" ]; then
  case "$( uname -m )" in
    i?86) ARCH=i586 ;;
    arm*) ARCH=arm ;;
       *) ARCH=$( uname -m ) ;;
  esac
fi

# If the variable PRINT_PACKAGE_NAME is set, then this script will report what
# the name of the created package would be, and then exit. This information
# could be useful to other scripts.
if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then
  echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE"
  exit 0
fi

TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$PRGNAM
OUTPUT=${OUTPUT:-/tmp}

if [ "$ARCH" = "i586" ]; then
  SLKCFLAGS="-O2 -march=i586 -mtune=i686"
  LIBDIRSUFFIX=""
elif [ "$ARCH" = "i686" ]; then
  SLKCFLAGS="-O2 -march=i686 -mtune=i686"
  LIBDIRSUFFIX=""
elif [ "$ARCH" = "x86_64" ]; then
  SLKCFLAGS="-O2 -fPIC"
  LIBDIRSUFFIX="64"
else
  SLKCFLAGS="-O2"
  LIBDIRSUFFIX=""
fi

set -e

rm -rf $PKG
mkdir -p $TMP $PKG $OUTPUT
cd $TMP
rm -rf $SRCNAM-$SRCVER
tar xvf $CWD/$SRCNAM-$SRCVER.tar.gz
cd $SRCNAM-$SRCVER

# Include most of Debian's patches. They rename the binary to 'hexeditor'
# so we leave out the patches related to that, and a couple others that
# are unnecessary. The ones we apply are bugfixes, a couple of which are
# crucial (search command didn't work on 64-bit, buffer overruns, segfault
# if the terminal's too small), and the rest are valid but nitpicky.
tar xvf $CWD/${DEBNAME}_${SRCVER}+orig-${DEBVER}.debian.tar.xz
rm -f debian/patches/fix_hexedit_references.patch \
      debian/patches/hexedit_lsm.patch \
      debian/patches/hurd_path_max.patch \
      debian/patches/info_dir_section.patch \
      debian/patches/rename_binaries.patch \
      debian/patches/autoconf_2.69.patch \
      debian/patches/fix_its_typo.patch

chown -R root:root .
find -L .  -perm /111 -a \! -perm 755 -a -exec chmod 755 {} \+ -o \
        \! -perm /111 -a \! -perm 644 -a -exec chmod 644 {} \+

# Apply the patches we didn't rm.
for i in $( cat debian/patches/series ); do
  P=debian/patches/$i
  [ -e $P ] && patch -p1 < $P
done

# Reworked version of Debian patch.
patch -p1 < $CWD/fix_its_typo.patch

# --program-prefix doesn't change the contents of the man page
sed -i \
  -e 's/hexedit/nchexedit/g' \
  -e 's/Hexedit/NCHexedit/g' \
  -e 's/HEXEDIT/NCHEXEDIT/g' \
  -e '/utexas\.edu/s#{http[^}]*}#{http://www.rogoyski.com/adam/programs/hexedit/}#' \
  docs/$SRCNAM.1

# ...nor the info file.
sed -i \
  -e 's/hexedit/nchexedit/g' \
  -e '/utexas\.edu/s#{http[^}]*}#{http://www.rogoyski.com/adam/programs/hexedit/}#' \
  docs/$SRCNAM.texinfo

CFLAGS="$SLKCFLAGS" \
CXXFLAGS="$SLKCFLAGS" \
./configure \
  --program-prefix=nc \
  --prefix=/usr \
  --libdir=/usr/lib${LIBDIRSUFFIX} \
  --sysconfdir=/etc \
  --localstatedir=/var \
  --mandir=/usr/man \
  --build=$ARCH-slackware-linux

make
make install-strip DESTDIR=$PKG
gzip -9 $PKG/usr/man/man1/$PRGNAM.1

# info file fails to install with --program-prefix, do it manually.
rm -f $PKG/usr/info/*
gzip -9c docs/$PRGNAM.info > $PKG/usr/info/$PRGNAM.info.gz

mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
cp -a AUTHORS COPYING ChangeLog NEWS README $PKG/usr/doc/$PRGNAM-$VERSION
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild

mkdir -p $PKG/install
cat $CWD/slack-desc > $PKG/install/slack-desc
cat $CWD/doinst.sh > $PKG/install/doinst.sh

cd $PKG
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE