![](https://secure.gravatar.com/avatar/df8330968b6df8cd1c1942c5fb4b720c.jpg?s=120&d=mm&r=g)
commit 647b30859e5dd70d4d7af363a2da66d5dd218210 Author: Fredrik Rinnestam <fredrik@crux.nu> Date: Sat Jul 25 21:37:04 2015 +0200 openssh: move man-pages to /usr/share/man diff --git a/openssh/.footprint b/openssh/.footprint index 8548114..8b6d478 100644 --- a/openssh/.footprint +++ b/openssh/.footprint @@ -20,24 +20,25 @@ drwxr-xr-x root/root usr/lib/ssh/ -rwxr-xr-x root/root usr/lib/ssh/sftp-server -rws--x--x root/root usr/lib/ssh/ssh-keysign -rwxr-xr-x root/root usr/lib/ssh/ssh-pkcs11-helper -drwxr-xr-x root/root usr/man/ -drwxr-xr-x root/root usr/man/man1/ --rw-r--r-- root/root usr/man/man1/scp.1.gz --rw-r--r-- root/root usr/man/man1/sftp.1.gz -lrwxrwxrwx root/root usr/man/man1/slogin.1.gz -> ssh.1.gz --rw-r--r-- root/root usr/man/man1/ssh-add.1.gz --rw-r--r-- root/root usr/man/man1/ssh-agent.1.gz --rw-r--r-- root/root usr/man/man1/ssh-keygen.1.gz --rw-r--r-- root/root usr/man/man1/ssh-keyscan.1.gz --rw-r--r-- root/root usr/man/man1/ssh.1.gz -drwxr-xr-x root/root usr/man/man5/ --rw-r--r-- root/root usr/man/man5/moduli.5.gz --rw-r--r-- root/root usr/man/man5/ssh_config.5.gz --rw-r--r-- root/root usr/man/man5/sshd_config.5.gz -drwxr-xr-x root/root usr/man/man8/ --rw-r--r-- root/root usr/man/man8/sftp-server.8.gz --rw-r--r-- root/root usr/man/man8/ssh-keysign.8.gz --rw-r--r-- root/root usr/man/man8/ssh-pkcs11-helper.8.gz --rw-r--r-- root/root usr/man/man8/sshd.8.gz drwxr-xr-x root/root usr/sbin/ -rwxr-xr-x root/root usr/sbin/sshd +drwxr-xr-x root/root usr/share/ +drwxr-xr-x root/root usr/share/man/ +drwxr-xr-x root/root usr/share/man/man1/ +-rw-r--r-- root/root usr/share/man/man1/scp.1.gz +-rw-r--r-- root/root usr/share/man/man1/sftp.1.gz +lrwxrwxrwx root/root usr/share/man/man1/slogin.1.gz -> ssh.1.gz +-rw-r--r-- root/root usr/share/man/man1/ssh-add.1.gz +-rw-r--r-- root/root usr/share/man/man1/ssh-agent.1.gz +-rw-r--r-- root/root usr/share/man/man1/ssh-keygen.1.gz +-rw-r--r-- root/root usr/share/man/man1/ssh-keyscan.1.gz +-rw-r--r-- root/root usr/share/man/man1/ssh.1.gz +drwxr-xr-x root/root usr/share/man/man5/ +-rw-r--r-- root/root usr/share/man/man5/moduli.5.gz +-rw-r--r-- root/root usr/share/man/man5/ssh_config.5.gz +-rw-r--r-- root/root usr/share/man/man5/sshd_config.5.gz +drwxr-xr-x root/root usr/share/man/man8/ +-rw-r--r-- root/root usr/share/man/man8/sftp-server.8.gz +-rw-r--r-- root/root usr/share/man/man8/ssh-keysign.8.gz +-rw-r--r-- root/root usr/share/man/man8/ssh-pkcs11-helper.8.gz +-rw-r--r-- root/root usr/share/man/man8/sshd.8.gz diff --git a/openssh/Pkgfile b/openssh/Pkgfile index e8018dc..ce11bdc 100644 --- a/openssh/Pkgfile +++ b/openssh/Pkgfile @@ -5,7 +5,7 @@ name=openssh version=6.9p1 -release=1 +release=2 source=(ftp://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/$name-$version.tar.gz sshd) build() { @@ -14,7 +14,7 @@ build() { --libexecdir=/usr/lib/ssh \ --sysconfdir=/etc/ssh \ --with-mantype=man \ - --mandir=/usr/man \ + --mandir=/usr/share/man \ --with-md5-passwords \ --with-privsep-user=nobody \ --with-privsep-path=/var/empty \ @@ -22,5 +22,5 @@ build() { make make DESTDIR=$PKG install install -D -m 755 $SRC/sshd $PKG/etc/rc.d/sshd - rm -rf $PKG/usr/share $PKG/var + rm -r $PKG/var }