diff options
author | Fredrik Rinnestam <fredrik@crux.nu> | 2015-07-25 21:37:04 +0200 |
---|---|---|
committer | Fredrik Rinnestam <fredrik@crux.nu> | 2015-07-25 21:37:04 +0200 |
commit | 647b30859e5dd70d4d7af363a2da66d5dd218210 (patch) | |
tree | 073827708bca1e48f1ec5bbc1796a8a0c25cf11e /openssh | |
parent | 95691f58d26d52982c3881ca39500eb6c41b3356 (diff) | |
download | core-647b30859e5dd70d4d7af363a2da66d5dd218210.tar.gz core-647b30859e5dd70d4d7af363a2da66d5dd218210.tar.xz |
openssh: move man-pages to /usr/share/man
Diffstat (limited to 'openssh')
-rw-r--r-- | openssh/.footprint | 39 | ||||
-rw-r--r-- | openssh/Pkgfile | 6 |
2 files changed, 23 insertions, 22 deletions
diff --git a/openssh/.footprint b/openssh/.footprint index 8548114b..8b6d4781 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 e8018dc2..ce11bdc9 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 } |