diff options
author | Johannes Winkelmann <jw@smts.ch> | 2006-02-23 15:26:10 +0000 |
---|---|---|
committer | Johannes Winkelmann <jw@smts.ch> | 2006-02-23 15:26:10 +0000 |
commit | bdea7e6c6a535e57a07d376a3139d0788efaaa41 (patch) | |
tree | 1a7334c99fa39b1ad1a7a35c113b18cb0d92413c /w3m | |
download | opt-bdea7e6c6a535e57a07d376a3139d0788efaaa41.tar.gz opt-bdea7e6c6a535e57a07d376a3139d0788efaaa41.tar.xz |
create branch for 2.2
Diffstat (limited to 'w3m')
-rw-r--r-- | w3m/.footprint | 26 | ||||
-rw-r--r-- | w3m/.md5sum | 1 | ||||
-rw-r--r-- | w3m/Pkgfile | 50 |
3 files changed, 77 insertions, 0 deletions
diff --git a/w3m/.footprint b/w3m/.footprint new file mode 100644 index 000000000..4cf3d543f --- /dev/null +++ b/w3m/.footprint @@ -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/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/man/ +drwxr-xr-x root/root usr/man/man1/ +-rw-r--r-- root/root usr/man/man1/w3m.1.gz +-rw-r--r-- root/root usr/man/man1/w3mman.1.gz +drwxr-xr-x root/root usr/share/ +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-funcdesc.ja.pl +-rw-r--r-- root/root usr/share/w3m/w3mhelp-funcname.pl +-rw-r--r-- root/root usr/share/w3m/w3mhelp.html diff --git a/w3m/.md5sum b/w3m/.md5sum new file mode 100644 index 000000000..7a8395acf --- /dev/null +++ b/w3m/.md5sum @@ -0,0 +1 @@ +0678b72e07e69c41709d71ef0fe5da13 w3m-0.5.1.tar.gz diff --git a/w3m/Pkgfile b/w3m/Pkgfile new file mode 100644 index 000000000..a411e2154 --- /dev/null +++ b/w3m/Pkgfile @@ -0,0 +1,50 @@ +# Description: Pager that can also be used as a text-based web browser +# URL: http://w3m.sourceforge.net/ +# Maintainer: Jukka Heino, jukka at karsikkopuu dot net +# Packager: Han Boetes, han at mijncomputer dot dl +# Depends on: boehm-gc + +name=w3m +version=0.5.1 +release=2 +source=(http://dl.sourceforge.net/sourceforge/$name/$name-$version.tar.gz) + +build() { + cd $name-$version + sed -i s/showaudio/mplayer/ config.h.in + ./configure \ + --disable-image \ + --disable-gopher \ + --disable-japanese \ + --disable-kanjisymbols \ + --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 \ + --libexecdir=/usr/lib \ + --prefix=/usr \ + --with-gc + make + make install DESTDIR=$PKG + rm -rf $PKG/usr/man/ja* + rm -rf $PKG/usr/share/locale/ + # do not rm usr/share/w3m/w3mhelp.html +} |