w3m: moved from opt, marked unmaintained

This commit is contained in:
Tim Biermann 2023-08-19 11:53:02 +02:00
parent 3ae22345b8
commit 6b4505b359
3 changed files with 84 additions and 0 deletions

26
w3m/.footprint Normal file
View File

@ -0,0 +1,26 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/w3m
-rwxr-xr-x root/root usr/bin/w3mman
drwxr-xr-x root/root usr/lib/
drwxr-xr-x root/root usr/lib/w3m/
drwxr-xr-x root/root usr/lib/w3m/cgi-bin/
-rwxr-xr-x root/root usr/lib/w3m/cgi-bin/dirlist.cgi
-rwxr-xr-x root/root usr/lib/w3m/cgi-bin/multipart.cgi
-rwxr-xr-x root/root usr/lib/w3m/cgi-bin/w3mbookmark
-rwxr-xr-x root/root usr/lib/w3m/cgi-bin/w3mdict.cgi
-rwxr-xr-x root/root usr/lib/w3m/cgi-bin/w3mhelp.cgi
-rwxr-xr-x root/root usr/lib/w3m/cgi-bin/w3mhelperpanel
-rwxr-xr-x root/root usr/lib/w3m/cgi-bin/w3mmail.cgi
-rwxr-xr-x root/root usr/lib/w3m/cgi-bin/w3mman2html.cgi
-rwxr-xr-x root/root usr/lib/w3m/inflate
-rwxr-xr-x root/root usr/lib/w3m/xface2xpm
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/w3m.1.gz
-rw-r--r-- root/root usr/share/man/man1/w3mman.1.gz
drwxr-xr-x root/root usr/share/w3m/
-rw-r--r-- root/root usr/share/w3m/w3mhelp-funcdesc.en.pl
-rw-r--r-- root/root usr/share/w3m/w3mhelp-funcname.pl
-rw-r--r-- root/root usr/share/w3m/w3mhelp.html

5
w3m/.signature Normal file
View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF3we/zxf50C3bCf6LCcEjyXkYxgSjHByDaDVG6d10/2gKSGi/GAFUQT6ji4h46BJT6/Id2re3ig0USheGyIyRogg=
SHA256 (Pkgfile) = ed13d83a529a5fd519e90813c248df861bdf36a761357b220828a4e66547ed25
SHA256 (.footprint) = fdc7145f1cab09f71a870263e00d1b5179fb65ea3db976df8ed4d9f3c48c58ab
SHA256 (w3m-0.5.3-38.tar.gz) = d58ac8086c0dcdc6ce4793e045a145c5b8f1a43ee5227a73c005b94c32ef4799

53
w3m/Pkgfile Normal file
View File

@ -0,0 +1,53 @@
# Description: Pager that can also be used as a text-based web browser
# URL: https://w3m.sourceforge.net/
# Maintainer: unmaintained
# Depends on: boehm-gc
name=w3m
version=0.5.3-38
release=1
source=(https://github.com/tats/w3m/archive/debian/$version/$name-$version.tar.gz)
build() {
cd $name-debian-$version
patch -p1 -i debian/patches/010_upstream.patch
patch -p1 -i debian/patches/020_debian.patch
rm -r doc/CVS
./configure \
--prefix=/usr \
--libexecdir=/usr/lib \
--disable-image \
--disable-gopher \
--disable-japanese \
--disable-m17n \
--disable-messagel10n \
--disable-nls \
--disable-nntp \
--disable-unicode \
--disable-xface \
--enable-alarm \
--enable-ansi-color \
--enable-bgcolor \
--enable-color \
--enable-cookie \
--enable-dict \
--enable-digest-auth \
--enable-external-uri-loader \
--enable-help-cgi \
--enable-history \
--enable-ipv6 \
--enable-keymap=w3m \
--enable-menu \
--enable-mouse \
--enable-sslverify \
--enable-w3mmailer \
--with-gc
make
make DESTDIR=$PKG install
rm -r $PKG/usr/share/man/{de,ja}
rm $PKG/usr/share/w3m/w3mhelp-funcdesc.{de,ja}.pl
rm -rf $PKG/usr/share/locale
}