diff options
author | Tim Biermann <tbier@posteo.de> | 2020-01-20 15:36:54 +0000 |
---|---|---|
committer | Tim Biermann <tbier@posteo.de> | 2020-01-20 15:43:16 +0000 |
commit | 40d030d9541d77e54bde03cac0a479c9d845f67e (patch) | |
tree | 099c0f8af79f41b30ef7ba17b4b7d77d47488a38 /urlview | |
parent | 6cf73ddd174b695c7da67d6ff24b2a7cd94e2c82 (diff) | |
download | contrib-40d030d9541d77e54bde03cac0a479c9d845f67e.tar.gz contrib-40d030d9541d77e54bde03cac0a479c9d845f67e.tar.xz |
urlview: corrected mandir
Diffstat (limited to 'urlview')
-rw-r--r-- | urlview/.footprint | 7 | ||||
-rw-r--r-- | urlview/.signature | 6 | ||||
-rw-r--r-- | urlview/Pkgfile | 14 |
3 files changed, 14 insertions, 13 deletions
diff --git a/urlview/.footprint b/urlview/.footprint index 724a047ee..2707be6b2 100644 --- a/urlview/.footprint +++ b/urlview/.footprint @@ -1,6 +1,7 @@ drwxr-xr-x root/root usr/ drwxr-xr-x root/root usr/bin/ -rwxr-xr-x root/root usr/bin/urlview -drwxr-xr-x root/root usr/man/ -drwxr-xr-x root/root usr/man/man1/ --rw-r--r-- root/root usr/man/man1/urlview.1.gz +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/urlview.1.gz diff --git a/urlview/.signature b/urlview/.signature index e2fe82081..a370581ea 100644 --- a/urlview/.signature +++ b/urlview/.signature @@ -1,6 +1,6 @@ untrusted comment: verify with /etc/ports/contrib.pub -RWSagIOpLGJF3w9WkvQN3ujxib2lyXm9x1EIZo9vZ7jARrP16wb26aWbjJUnZVrZ/3rOSD2xHYm/54Dq0QT7HqhbiCxDW/vd/gk= -SHA256 (Pkgfile) = 378dc82f1559630c4c5a46f4bbd20b25466bd4aa5f38d66ab649d2aa1c9ce877 -SHA256 (.footprint) = fbd8cabe4406ebd500dfa105722214467bb7a01fbc7683b44f5f0581631609d6 +RWSagIOpLGJF35lJn46WZOzukkRxtVQPm82ThJZcb2SpmbMnnjTQwSlrvg766GQEcVdrp9/pK/nXLGhY85BfNdJNVUicNYFVrAQ= +SHA256 (Pkgfile) = af813a0201fa5fbde6c343b7ce2281f235d12318a8a2d98f6a1aaaebb997145b +SHA256 (.footprint) = 5d72ff8fed30a2bdabd95bbcd368a5ee7b473ae10db6f809a820826e58d90f0f SHA256 (urlview-0.9.tar.gz) = 74d18026e84e3cd70a3fdd1a7247a68031b0c1c1c6d761d64b7063ff71091cc3 SHA256 (urlview-0.9.patch) = 06c90f34f6e9f9bc096aee1d262bf38944a2b7c2501f694ba0a93593f4db7d17 diff --git a/urlview/Pkgfile b/urlview/Pkgfile index 20281a16d..f4a7d1626 100644 --- a/urlview/Pkgfile +++ b/urlview/Pkgfile @@ -1,22 +1,22 @@ -# Description: Extracts URLs from text +# Description: Extracts URLs from text # URL: ftp://ftp.mutt.org/pub/mutt/contrib/ # Maintainer: Thomas Penteker, tek at serverop dot de -# Packager: Simon Glossner, viper at hometux dot de # Depends on: ncurses name=urlview version=0.9 -release=1 +release=2 source=(ftp://ftp.netbsd.org/pub/pkgsrc/distfiles/${name}-${version}.tar.gz \ ${name}-${version}.patch) build () { cd $name-$version - - mkdir -p $PKG/usr/man/man1 + + mkdir -p $PKG/usr/share/man/man1 patch -p1 < ../$name-$version.patch - - ./configure --prefix=/usr + + ./configure --prefix=/usr \ + --mandir=/usr/share/man make make DESTDIR=$PKG install } |