blob: e4953e7f7de63b183493afddc1ebffabfc520958 (
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
|
#!/bin/bash
#
# got it from ftp://ftp.slackware.com/pub/slackware/slackware-10.2/patches/source/fetchmail/fetchmail.SlackBuild
# small changes by rhatto
#
# Set initial variables:
CWD="`pwd`"
if [ -f "/etc/slackbuildrc" ]; then
source /etc/slackbuildrc
fi
if [ -f "~/.slackbuildrc" ]; then
source ~/.slackbuildrc
fi
PACKAGE="fetchmail"
VERSION=${VERSION:=6.3.4}
ARCH=${ARCH:=i486}
BUILD=${BUILD:=1rha}
TMP=${TMP:=/tmp}
SRC_DIR=${SRC:=$CWD}
RTOOL="wget"
PACKAGE_EXT="bz2"
SRC="$PACKAGE-$VERSION.tar.$PACKAGE_EXT"
URL="http://download.berlios.de/fetchmail/$SRC"
if [ "$PACKAGE_EXT" == "bz2" ]; then
tarflag="j"
else
tarflag="z"
fi
if [ "$RTOOL" == "wget" ] && [ ! -f "$SRC_DIR/$SRC" ]; then
wget "$URL" -O "$SRC_DIR/$SRC"
fi
PKG=$TMP/package-fetchmail
LIBDIR="/usr/lib"
if [ "$ARCH" = "i386" ]; then
SLKCFLAGS="-O2 -march=i386 -mcpu=i686"
elif [ "$ARCH" = "i486" ]; then
SLKCFLAGS="-O2 -march=i486 -mcpu=i686"
elif [ "$ARCH" = "s390" ]; then
SLKCFLAGS="-O2"
elif [ "$ARCH" = "x86_64" ]; then
SLKCFLAGS="-O2 -fPIC"
LIBDIR="/usr/lib64"
fi
rm -rf $PKG
mkdir -p $PKG
cd $TMP
rm -rf fetchmail-$VERSION
tar xvf$tarflag $SRC_DIR/$SRC
cd fetchmail-$VERSION
# this is the sloppiest source tarball ever
chown -R root.root .
find . -perm 664 -exec chmod 644 {} \;
find . -perm 600 -exec chmod 644 {} \;
find . -perm 444 -exec chmod 644 {} \;
find . -perm 400 -exec chmod 644 {} \;
find . -perm 440 -exec chmod 644 {} \;
find . -perm 777 -exec chmod 755 {} \;
find . -perm 775 -exec chmod 755 {} \;
find . -perm 511 -exec chmod 755 {} \;
find . -perm 711 -exec chmod 755 {} \;
find . -perm 555 -exec chmod 755 {} \;
CFLAGS="$SLKCFLAGS" \
./configure \
--prefix=/usr \
--enable-nls \
--with-ssl \
--program-prefix="" \
--program-suffix="" \
$ARCH-slackware-linux
make || exit 32
make install DESTDIR=$PKG
( cd $PKG
find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
)
chown -R root.bin $PKG/usr/bin
( cd $PKG/usr/man/man1
rm fetchmailconf.1
gzip -9 *
ln -sf fetchmail.1.gz fetchmailconf.1.gz
)
mkdir -p $PKG/usr/doc/fetchmail-$VERSION
cp -a \
ABOUT-NLS COPYING FAQ FEATURES INSTALL NEWS NOTES README README.NTLM README.SSL TODO \
*.html contrib *.lsm \
$PKG/usr/doc/fetchmail-$VERSION
rm -rf $PKG/usr/doc/fetchmail-$VERSION/RCS \
$PKG/usr/doc/fetchmail-$VERSION/contrib/RCS \
$PKG/usr/doc/fetchmail-$VERSION/fetchmail-man.html
mkdir -p $PKG/install
cat $CWD/slack-desc > $PKG/install/slack-desc
cd $PKG
makepkg -l y -c n $TMP/fetchmail-$VERSION-$ARCH-$BUILD.tgz
|