blob: 69c9259a3556e1f7ff310e08434859a705eec49b (
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
|
# Contributor: <alexandre.becoulet@free.fr>
# Contributor: <netbug@ftp.uk.linux.org>
# Contributor: Fluke <fluke.l at gmail.com>
pkgname=netkit-telnet-ssl
_debver=0.17.41+really0.17
_debrel=5
epoch=1
pkgver=${_debver//+/.}.r${_debrel}
pkgrel=1
pkgdesc="Telnet client and server with TLS support (Debian Netkit version)"
arch=('i686' 'x86_64')
depends=('glibc' 'openssl' 'ncurses')
makedepends=('cmake' 'git')
license=('BSD')
url="http://www.hcs.harvard.edu/~dholland/computers/netkit.html"
source=(git+https://salsa.debian.org/debian/$pkgname.git#tag=debian/${_debver}-${_debrel}
netkit-telnet-ssl.arch.patch
netkit-telnet-ssl.sysusers
netkit-telnet-ssl.tmpfiles
netkit-telnetd{,-ssl}.socket
netkit-telnetd{,-ssl}@.service)
sha256sums=('26c545a1575971627f1ec79bd64855b3464c62b77870af0e977320c86173e506'
'f0db9be559e90d7711fb73109b20497325e03917a8e2f85780f95a17c28bdc9c'
'be6cc69383e1326a9aa49d36bfda856d049f16512655ea83b991910800d540ba'
'202fbfc51e6f6b92246853342a7ef47a731d64d012c8a8a026f9e9b154b9ade5'
'25a9cd6c6fd3dd50a20038c05d755c519be1081e42bcb148f71e7a8f182e91a2'
'a9a14476c43d65a57d50eec7e7d773ff1031cf1c13c12e84a9de5eaa14279434'
'6e45cfed7968af48b59f172523934db421964e58fdb624872a831160e2848284'
'b4220954373f5431b127509b4344dad32d5c692871c536106507fa8b052ef40a')
prepare() {
cd $pkgname
for patch in $(grep '^[^#]' debian/patches/series); do
echo "=> Applying $patch"
patch -Np1 < debian/patches/"$patch"
done
echo "=> Applying additional patches"
patch -Np1 < ../netkit-telnet-ssl.arch.patch
}
build() {
cd $pkgname
cmake . -DCMAKE_INSTALL_PREFIX=/usr
cmake --build .
}
package() {
cd $pkgname
DESTDIR="$pkgdir" cmake --install .
# Fix paths
mkdir -p "$pkgdir"/usr/lib
mv "$pkgdir"/usr/{bin,lib}/telnetlogin
mv "$pkgdir"/usr/{sbin,bin}/in.telnetd
rmdir "$pkgdir"/usr/sbin
# Add -ssl suffix
mv "$pkgdir"/usr/bin/{in.telnetd,in.telnetd-ssl}
mv "$pkgdir"/usr/share/man/man8/{in.telnetd,in.telnetd-ssl}.8
# Add distro configs
install -D -m 644 "$srcdir"/netkit-telnet-ssl.sysusers \
"$pkgdir"/usr/lib/sysusers.d/netkit-telnet-ssl.conf
install -D -m 644 "$srcdir"/netkit-telnet-ssl.tmpfiles \
"$pkgdir"/usr/lib/tmpfiles.d/netkit-telnet-ssl.conf
for unit in netkit-telnetd{,-ssl}{.socket,@.service}; do
install -D -m 644 "$srcdir"/"$unit" \
"$pkgdir"/usr/lib/systemd/system/"$unit"
done
install -D -m 644 /dev/stdin \
"$pkgdir"/etc/telnetd-ssl/README <<EOF
For the Telnet server, both the TLS certificate and private key (i.e.
fullchain.pem + privkey.pem) must be concatenated to a single file and
installed to:
/etc/telnetd-ssl/telnetd.pem
This file must be readable by the '_telnetd' user.
EOF
}
# cleanbuild: required
# vim: ts=2:sw=2:et:
|