blob: 829cffa15c494e942c4849445ef4a64594869b3a (
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
|
#!/bin/sh
# Slackware build script for Bochs
#
# Author: Huon (peterdirichlet.freesoftware@gmail.com)
#
# Licensing Terms: The same as Bochs (GNU LGPL)
# See the file COPYING for details about it
PRGNAM=bochs
VERSION=2.3.6
ARCH=${ARCH:-i486}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
CWD=$(pwd)
TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$PRGNAM
OUTPUT=${OUTPUT:-/tmp}
if [ "$ARCH" = "i486" ]; then
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
elif [ "$ARCH" = "i686" ]; then
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
elif [ "$ARCH" = "x86_64" ]; then
SLKCFLAGS="-O2 -fPIC"
fi
set -e
rm -rf $PKG
mkdir -p $TMP $PKG $OUTPUT
cd $TMP
rm -rf $PRGNAM-$VERSION
tar xvf $CWD/$PRGNAM-$VERSION.tar.gz
cd $PRGNAM-$VERSION
chown -R root:root .
chmod -R a-s,u+rw,go+r-w .
CFLAGS="$SLKCFLAGS" \
CXXFLAGS="$SLKCFLAGS" \
./configure \
--prefix=/usr \
--localstatedir=/var \
--sysconfdir=/etc \
--mandir=/usr/man \
--with-all-libs \
--enable-cpp \
--enable-ldtl-install \
--enable-ne2000 \
--enable-pci \
--enable-pcidev \
--enable-usb \
--enable-pnic \
--enable-4meg-images \
--enable-pae \
--enable-readline \
--enable-vbe \
--enable-fpu \
--enable-vme \
--enable-mmx \
--enable-3dnow \
--enable-cpu-level=6 \
--enable-sse=4 \
--enable-icache \
--enable-show-ips \
--enable-sb16=linux \
--enable-gdb-stub \
--enable-x86-debugger \
--enable-disasm \
--enable-plugins \
--enable-xpm \
--enable-compressed-hd \
--build=$ARCH-slackware-linux
make \
docdir=/usr/doc/$PRGNAM-$VERSION
make \
docdir=/usr/doc/$PRGNAM-$VERSION \
DESTDIR=$PKG \
install
find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
# Man pages are already compressed
# Most docs are already installed (and to the correct location)
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
cp -a PARAM_TREE.txt README-plugins README-wxWindows README.rfb TESTFORM.txt \
$PKG/usr/doc/$PRGNAM-$VERSION
mkdir $PKG/install
cat $CWD/slack-desc > $PKG/install/slack-desc
cd $PKG
/sbin/makepkg -l y -c n -p $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.tgz
|