mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-02-12 11:21:50 +01:00
120 lines
4.3 KiB
Plaintext
120 lines
4.3 KiB
Plaintext
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=openssh
|
|
pkgver=6.3_p1
|
|
_myver=${pkgver%_*}${pkgver#*_}
|
|
pkgrel=0
|
|
pkgdesc="Port of OpenBSD's free SSH release"
|
|
url="http://www.openssh.org/portable.html"
|
|
arch="all"
|
|
license="as-is"
|
|
depends="openssh-client"
|
|
makedepends="openssl-dev zlib-dev"
|
|
subpackages="$pkgname-doc $pkgname-client"
|
|
source="ftp://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/$pkgname-$_myver.tar.gz
|
|
openssh6.2-dynwindows.diff
|
|
openssh-peaktput.diff
|
|
openssh-hmac-accel.diff
|
|
sshd.initd
|
|
sshd.confd
|
|
"
|
|
# HPN patches are from: http://www.psc.edu/index.php/hpn-ssh
|
|
|
|
_builddir="$srcdir"/$pkgname-$_myver
|
|
prepare() {
|
|
cd "$_builddir"
|
|
for i in $source; do
|
|
case "$i" in
|
|
*.diff.gz)
|
|
msg "Applying $i"
|
|
gunzip -c "$srcdir"/"${i##*/}" | patch -p1 -N || return 1
|
|
;;
|
|
*.diff)
|
|
msg "Applying $i"
|
|
patch -p1 -N -i "$srcdir"/${i##*/} || return 1
|
|
;;
|
|
esac
|
|
done
|
|
sed -i -e '/_PATH_XAUTH/s:/usr/X11R6/bin/xauth:/usr/bin/xauth:' \
|
|
pathnames.h || return 1
|
|
|
|
}
|
|
|
|
build () {
|
|
cd "$_builddir"
|
|
./configure \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc/ssh \
|
|
--datadir=/usr/share/openssh \
|
|
--libexecdir=/usr/lib/ssh \
|
|
--mandir=/usr/share/man \
|
|
--with-mantype=man \
|
|
--with-ldflags="${LDFLAGS}" \
|
|
--disable-strip \
|
|
--disable-lastlog \
|
|
--with-privsep-path=/var/empty \
|
|
--with-privsep-user=sshd \
|
|
--with-md5-passwords \
|
|
--with-ssl-engine \
|
|
--without-tcp-wrappers \
|
|
--without-pam \
|
|
|| return 1
|
|
make || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
make DESTDIR="$pkgdir" install || return 1
|
|
mkdir -p "$pkgdir"/var/empty
|
|
install -D -m755 "$srcdir"/sshd.initd \
|
|
"$pkgdir"/etc/init.d/sshd || return 1
|
|
install -D -m644 "$srcdir"/sshd.confd \
|
|
"$pkgdir"/etc/conf.d/sshd || return 1
|
|
install -Dm644 "$_builddir"/contrib/ssh-copy-id.1 \
|
|
"$pkgdir"/usr/share/man/man1/ssh-copy-id.1 || return 1
|
|
sed -i 's/#UseDNS yes/UseDNS no/' "$pkgdir"/etc/ssh/sshd_config
|
|
}
|
|
|
|
client() {
|
|
pkgdesc="OpenBSD's SSH client"
|
|
replaces="openssh"
|
|
depends=
|
|
install -d "$subpkgdir"/usr/bin \
|
|
"$subpkgdir"/usr/lib/ssh \
|
|
"$subpkgdir"/etc/ssh \
|
|
"$subpkgdir"/var/run \
|
|
"$subpkgdir"/var/empty
|
|
|
|
mv "$pkgdir"/usr/bin/* \
|
|
"$subpkgdir"/usr/bin/ || return 1
|
|
mv "$pkgdir"/usr/lib/ssh/ssh-keysign \
|
|
"$subpkgdir"/usr/lib/ssh/ || return 1
|
|
mv "$pkgdir"/etc/ssh/ssh_config \
|
|
"$pkgdir"/etc/ssh/moduli \
|
|
"$subpkgdir"/etc/ssh/ || return 1
|
|
install -Dm755 "$_builddir"/contrib/findssl.sh \
|
|
"$subpkgdir"/usr/bin/findssl.sh || return 1
|
|
install -Dm755 "$_builddir"/contrib/ssh-copy-id \
|
|
"$subpkgdir"/usr/bin/ssh-copy-id || return 1
|
|
}
|
|
|
|
md5sums="225e75c9856f76011966013163784038 openssh-6.3p1.tar.gz
|
|
2306a0f6ba8915c02c533e7bf6e64fe8 openssh6.2-dynwindows.diff
|
|
77da1e0dd9bfe98a9c84747e7e3dc7b3 openssh-peaktput.diff
|
|
c65d454dc5b149647273485fc184636d openssh-hmac-accel.diff
|
|
cb0dd08c413fad346f0c594107b4a2e0 sshd.initd
|
|
b35e9f3829f4cfca07168fcba98749c7 sshd.confd"
|
|
sha256sums="aea575ededd3ebd45c05d42d0a87af22c79131a847ea440c54e3fdd223f5a420 openssh-6.3p1.tar.gz
|
|
4f78f16807c6b6a3a3773c000b85df0c56ea8a93dc35eaa6bbdffe6e30328e58 openssh6.2-dynwindows.diff
|
|
6e803be3b3569eedfe69d9e9aeabef2e3fec2ed28f75bc456dfd69c2ef2c8198 openssh-peaktput.diff
|
|
902ea83a9ef726f32b096280da0f1b722f4372886c65c4e28985ee57e725d95c openssh-hmac-accel.diff
|
|
3fa062fd4bfac64abf21f3c1d0548f1dfcf3c6e56e84ece14c848f53a293024e sshd.initd
|
|
29c6d57ac3ec6018cadc6ba6cd9b90c9ed46e20049b970fdcc68ee2481a2ee41 sshd.confd"
|
|
sha512sums="9ae0d11b7305739345e84adbf9dae769705ff93b3d3c3ccd9b7fb887a69716518bee931fd698f2c67087ae75281a25bcfd72220cbac1c751715d540d208a6a9a openssh-6.3p1.tar.gz
|
|
773cc0629e17a8f78e82be56e579855ea9b3ca8fd26360964aee854d717a7cfc2c9d4d654cf0fda5723c3aabe96e48ee2cfe6d1fd64b5717f0ef5eb997d00293 openssh6.2-dynwindows.diff
|
|
64f5aff3fc1a0d2f7c65ea875d1c2c4d98a3d305ff2677d9d4ca82f20778df9e317b1bfc428cee2b0df1bfa01a65dfcf83b68435a227a23a2cf3400fef35d656 openssh-peaktput.diff
|
|
aaa128126400171d0755038a846672aa7b1e87340edf73a672962d403abf404ef1821466b17da51dde25f04ec7533ae4a653399ccc912ea9c4a7b1a14032e76f openssh-hmac-accel.diff
|
|
1483e2bcd700da9b02f04508d490b472c816344787bf1675fef2f7e27f72b91e4323e4e8c1db701e47d81d37d6d4b0623eaeac46b2cf589ae5ad69f363baa594 sshd.initd
|
|
b9ae816af54a55e134a9307e376f05367b815f1b3fd545c2a2c312d18aedcf907f413e8bad8db980cdd9aad4011a72a79e1e94594f69500939a9cb46287f2f81 sshd.confd"
|