summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMamoru Komachi <usata@gentoo.org>2005-03-21 16:51:41 +0000
committerMamoru Komachi <usata@gentoo.org>2005-03-21 16:51:41 +0000
commit92df029d8d56889e09abe2e5f37aed4d95b6b88b (patch)
tree1ece788d8d078bd72471a063279974a0c16cbf36 /www-client/w3m/files
parentdepend on xine-lib-1.0 (diff)
downloadgentoo-2-92df029d8d56889e09abe2e5f37aed4d95b6b88b.tar.gz
gentoo-2-92df029d8d56889e09abe2e5f37aed4d95b6b88b.tar.bz2
gentoo-2-92df029d8d56889e09abe2e5f37aed4d95b6b88b.zip
Moved from w3m-m17n.
(Portage version: 2.0.51.19)
Diffstat (limited to 'www-client/w3m/files')
-rw-r--r--www-client/w3m/files/digest-w3m-0.4.2-r103
-rw-r--r--www-client/w3m/files/w3m-0.4.2-imglib-gentoo.diff130
2 files changed, 133 insertions, 0 deletions
diff --git a/www-client/w3m/files/digest-w3m-0.4.2-r10 b/www-client/w3m/files/digest-w3m-0.4.2-r10
new file mode 100644
index 000000000000..a8657a4f7a27
--- /dev/null
+++ b/www-client/w3m/files/digest-w3m-0.4.2-r10
@@ -0,0 +1,3 @@
+MD5 baa9d375997cf495edf25216e0e3f3aa w3m-0.4.2+cvs-1.862.tar.gz 672615
+MD5 5d9dd2828ecab3214a87454bbc2b10b4 libwc-20030224.tar.gz 1150077
+MD5 41677a08822d49baaf7e28cfc66206e1 w3m-cvs-1.859-m17n-1.diff.gz 86023
diff --git a/www-client/w3m/files/w3m-0.4.2-imglib-gentoo.diff b/www-client/w3m/files/w3m-0.4.2-imglib-gentoo.diff
new file mode 100644
index 000000000000..c74bdc2cecdf
--- /dev/null
+++ b/www-client/w3m/files/w3m-0.4.2-imglib-gentoo.diff
@@ -0,0 +1,130 @@
+diff -urN w3m-0.4.2.ORIG/acinclude.m4 w3m-0.4.2/acinclude.m4
+--- w3m-0.4.2.ORIG/acinclude.m4 2003-09-25 18:16:27.000000000 +0900
++++ w3m-0.4.2/acinclude.m4 2003-10-05 07:02:28.000000000 +0900
+@@ -515,6 +515,12 @@
+ enable_image=x11,fb
+ fi;;
+ esac
++ AC_ARG_WITH(imglib,
++ [ --with-imglib=IMGLIB image library to link
++ (IMGLIB should be either gdk_pixbuf, imlib or imlib2.
++ Note that you need to use gdk_pixbuf or imlib2 to enable
++ inline image handler support for framebuffer device.)],
++ [test x"$with_imglib" = xyes || imglib="$with_imglib"])
+ fi
+ save_ifs="$IFS"; IFS=",";
+ for img in $enable_image; do
+@@ -555,19 +561,25 @@
+ [have_imlib2="yes"],
+ [have_imlib2="no"])])
+ if test x"$x11" = xyes; then
+- if test x"$have_gdkpixbuf" = xyes; then
++ if test x"$have_gdkpixbuf" = xyes \
++ -a -z "$with_imglib" \
++ -o x"$with_imglib" = xgdk_pixbuf; then
+ AC_DEFINE(USE_W3MIMG_X11)
+ AC_DEFINE(USE_GDKPIXBUF)
+ IMGOBJS="$IMGOBJS w3mimg/x11/x11_w3mimg.o"
+ IMGX11CFLAGS="`${GDKPIXBUF_CONFIG} --cflags`"
+ IMGX11LDFLAGS="`${GDKPIXBUF_CONFIG} --libs` -lgdk_pixbuf_xlib"
+- elif test x"$have_imlib" = xyes; then
++ elif test x"$have_imlib" = xyes \
++ -a -z "$with_imglib" \
++ -o x"$with_imglib" = ximlib; then
+ AC_DEFINE(USE_W3MIMG_X11)
+ AC_DEFINE(USE_IMLIB)
+ IMGOBJS="$IMGOBJS w3mimg/x11/x11_w3mimg.o"
+ IMGX11CFLAGS="`${IMLIB_CONFIG} --cflags`"
+ IMGX11LDFLAGS="`${IMLIB_CONFIG} --libs`"
+- elif test x"$have_imlib2" = xyes; then
++ elif test x"$have_imlib2" = xyes \
++ -a -z "$with_imglib" \
++ -o x"$with_imglib" = ximlib2; then
+ AC_DEFINE(USE_W3MIMG_X11)
+ AC_DEFINE(USE_IMLIB2)
+ IMGOBJS="$IMGOBJS w3mimg/x11/x11_w3mimg.o"
+@@ -578,13 +590,17 @@
+ fi
+ fi
+ if test x"$fb" = xyes; then
+- if test x"$have_gdkpixbuf" = xyes; then
++ if test x"$have_gdkpixbuf" = xyes \
++ -a -z "$with_imglib" \
++ -o x"$with_imglib" = xgdk_pixbuf; then
+ AC_DEFINE(USE_W3MIMG_FB)
+ AC_DEFINE(USE_GDKPIXBUF)
+ IMGOBJS="$IMGOBJS w3mimg/fb/fb_w3mimg.o w3mimg/fb/fb.o w3mimg/fb/fb_img.o"
+ IMGFBCFLAGS="`${GDKPIXBUF_CONFIG} --cflags`"
+ IMGFBLDFLAGS="`${GDKPIXBUF_CONFIG} --libs`"
+- elif test x"$have_imlib2" = xyes; then
++ elif test x"$have_imlib2" = xyes \
++ -a -z "$with_imglib" \
++ -o x"$with_imglib" = ximlib2; then
+ AC_DEFINE(USE_W3MIMG_FB)
+ AC_DEFINE(USE_IMLIB2)
+ IMGOBJS="$IMGOBJS w3mimg/fb/fb_w3mimg.o w3mimg/fb/fb.o w3mimg/fb/fb_img.o"
+diff -urN w3m-0.4.2.ORIG/aclocal.m4 w3m-0.4.2/aclocal.m4
+--- w3m-0.4.2.ORIG/aclocal.m4 2003-09-25 18:16:27.000000000 +0900
++++ w3m-0.4.2/aclocal.m4 2003-10-05 07:03:49.000000000 +0900
+@@ -527,6 +527,12 @@
+ enable_image=x11,fb
+ fi;;
+ esac
++ AC_ARG_WITH(imglib,
++ [ --with-imglib=IMGLIB image library to link
++ (IMGLIB should be either gdk_pixbuf, imlib or imlib2.
++ Note that you need to use gdk_pixbuf or imlib2 to enable
++ inline image handler support for framebuffer device.)],
++ [test x"$with_imglib" = xyes || imglib="$with_imglib"])
+ fi
+ save_ifs="$IFS"; IFS=",";
+ for img in $enable_image; do
+@@ -567,19 +573,25 @@
+ [have_imlib2="yes"],
+ [have_imlib2="no"])])
+ if test x"$x11" = xyes; then
+- if test x"$have_gdkpixbuf" = xyes; then
++ if test x"$have_gdkpixbuf" = xyes \
++ -a -z "$with_imglib" \
++ -o x"$with_imglib" = xgdk_pixbuf; then
+ AC_DEFINE(USE_W3MIMG_X11)
+ AC_DEFINE(USE_GDKPIXBUF)
+ IMGOBJS="$IMGOBJS w3mimg/x11/x11_w3mimg.o"
+ IMGX11CFLAGS="`${GDKPIXBUF_CONFIG} --cflags`"
+ IMGX11LDFLAGS="`${GDKPIXBUF_CONFIG} --libs` -lgdk_pixbuf_xlib"
+- elif test x"$have_imlib" = xyes; then
++ elif test x"$have_imlib" = xyes \
++ -a -z "$with_imglib" \
++ -o x"$with_imglib" = ximlib; then
+ AC_DEFINE(USE_W3MIMG_X11)
+ AC_DEFINE(USE_IMLIB)
+ IMGOBJS="$IMGOBJS w3mimg/x11/x11_w3mimg.o"
+ IMGX11CFLAGS="`${IMLIB_CONFIG} --cflags`"
+ IMGX11LDFLAGS="`${IMLIB_CONFIG} --libs`"
+- elif test x"$have_imlib2" = xyes; then
++ elif test x"$have_imlib2" = xyes \
++ -a -z "$with_imglib" \
++ -o x"$with_imglib" = ximlib2; then
+ AC_DEFINE(USE_W3MIMG_X11)
+ AC_DEFINE(USE_IMLIB2)
+ IMGOBJS="$IMGOBJS w3mimg/x11/x11_w3mimg.o"
+@@ -590,13 +602,17 @@
+ fi
+ fi
+ if test x"$fb" = xyes; then
+- if test x"$have_gdkpixbuf" = xyes; then
++ if test x"$have_gdkpixbuf" = xyes \
++ -a -z "$with_imglib" \
++ -o x"$with_imglib" = xgdk_pixbuf; then
+ AC_DEFINE(USE_W3MIMG_FB)
+ AC_DEFINE(USE_GDKPIXBUF)
+ IMGOBJS="$IMGOBJS w3mimg/fb/fb_w3mimg.o w3mimg/fb/fb.o w3mimg/fb/fb_img.o"
+ IMGFBCFLAGS="`${GDKPIXBUF_CONFIG} --cflags`"
+ IMGFBLDFLAGS="`${GDKPIXBUF_CONFIG} --libs`"
+- elif test x"$have_imlib2" = xyes; then
++ elif test x"$have_imlib2" = xyes \
++ -a -z "$with_imglib" \
++ -o x"$with_imglib" = ximlib2; then
+ AC_DEFINE(USE_W3MIMG_FB)
+ AC_DEFINE(USE_IMLIB2)
+ IMGOBJS="$IMGOBJS w3mimg/fb/fb_w3mimg.o w3mimg/fb/fb.o w3mimg/fb/fb_img.o"