From 27680c7ad9f091b85c90ff13f4679985743f0363 Mon Sep 17 00:00:00 2001 From: Gustavo Zacarias Date: Wed, 9 Feb 2011 15:22:40 -0300 Subject: links: bump to version 2.3pre1 * Switch to links 2.3pre1. * Enable graphics mode via directfb. TODO: Support X11 mode, maybe linuxfb (requires gpm). Signed-off-by: Gustavo Zacarias Signed-off-by: Peter Korsgaard --- package/links/Config.in | 11 ++++++- .../links/links-1.01pre1-no-ssl-largefile.patch | 22 -------------- package/links/links-no-largefile.patch | 22 ++++++++++++++ package/links/links.mk | 35 +++++++++++++++++----- 4 files changed, 59 insertions(+), 31 deletions(-) delete mode 100644 package/links/links-1.01pre1-no-ssl-largefile.patch create mode 100644 package/links/links-no-largefile.patch (limited to 'package/links') diff --git a/package/links/Config.in b/package/links/Config.in index 5a0ce9c66..fddf3d260 100644 --- a/package/links/Config.in +++ b/package/links/Config.in @@ -3,4 +3,13 @@ config BR2_PACKAGE_LINKS help Graphics and text mode WWW browser (kind of like lynx). - http://atrey.karlin.mff.cuni.cz/~clock/twibright/links + http://links.twibright.com/ + +config BR2_PACKAGE_LINKS_GRAPHICS + bool "use graphics (directfb)" + depends on BR2_PACKAGE_LINKS + select BR2_PACKAGE_DIRECTFB + select BR2_PACKAGE_LIBPNG + help + Enable graphics output. + Otherwise links will be text-mode only. diff --git a/package/links/links-1.01pre1-no-ssl-largefile.patch b/package/links/links-1.01pre1-no-ssl-largefile.patch deleted file mode 100644 index f3143cba0..000000000 --- a/package/links/links-1.01pre1-no-ssl-largefile.patch +++ /dev/null @@ -1,22 +0,0 @@ -Index: links-1.01pre1-no-ssl/links.h -=================================================================== ---- links-1.01pre1-no-ssl.orig/links.h 2010-06-21 00:39:10.000000000 +0200 -+++ links-1.01pre1-no-ssl/links.h 2010-06-21 00:39:52.000000000 +0200 -@@ -2,6 +2,9 @@ - #define __EXTENSIONS__ - #endif - -+#include -+/* uclibc without largefile support #errors on _FILE_OFFSET_BITS=64 */ -+#if !(defined(__UCLIBC__) && !defined(__UCLIBC_HAS_LFS__)) - #ifndef _LARGEFILE_SOURCE - #define _LARGEFILE_SOURCE 1 - #endif -@@ -9,6 +12,7 @@ - #ifndef _FILE_OFFSET_BITS - #define _FILE_OFFSET_BITS 64 - #endif -+#endif - - #ifdef HAVE_CONFIG_H - #include "config.h" diff --git a/package/links/links-no-largefile.patch b/package/links/links-no-largefile.patch new file mode 100644 index 000000000..f3143cba0 --- /dev/null +++ b/package/links/links-no-largefile.patch @@ -0,0 +1,22 @@ +Index: links-1.01pre1-no-ssl/links.h +=================================================================== +--- links-1.01pre1-no-ssl.orig/links.h 2010-06-21 00:39:10.000000000 +0200 ++++ links-1.01pre1-no-ssl/links.h 2010-06-21 00:39:52.000000000 +0200 +@@ -2,6 +2,9 @@ + #define __EXTENSIONS__ + #endif + ++#include ++/* uclibc without largefile support #errors on _FILE_OFFSET_BITS=64 */ ++#if !(defined(__UCLIBC__) && !defined(__UCLIBC_HAS_LFS__)) + #ifndef _LARGEFILE_SOURCE + #define _LARGEFILE_SOURCE 1 + #endif +@@ -9,6 +12,7 @@ + #ifndef _FILE_OFFSET_BITS + #define _FILE_OFFSET_BITS 64 + #endif ++#endif + + #ifdef HAVE_CONFIG_H + #include "config.h" diff --git a/package/links/links.mk b/package/links/links.mk index 2e17066f2..b8520d4a0 100644 --- a/package/links/links.mk +++ b/package/links/links.mk @@ -1,16 +1,35 @@ ############################################################# # -# links (text based web browser) +# links # ############################################################# -LINKS_VERSION:=1.01pre1-no-ssl -LINKS_SITE:=http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/links/download/no-ssl -LINKS_SOURCE:=links-$(LINKS_VERSION).tar.gz -LINKS_CONF_OPT = --localstatedir=/tmp +LINKS_VERSION = 2.3pre1 +LINKS_SITE = http://links.twibright.com/download +LINKS_CONF_OPT = --without-x -define LINKS_INSTALL_TARGET_CMDS - install -c $(@D)/links $(TARGET_DIR)/usr/bin/links -endef +ifeq ($(BR2_PACKAGE_LINKS_GRAPHICS),y) +LINKS_CONF_OPT += --enable-graphics +LINKS_CONF_ENV = ac_cv_path_DIRECTFB_CONFIG=$(STAGING_DIR)/usr/bin/directfb-config +LINKS_DEPENDENCIES += directfb libpng +ifeq ($(BR2_PACKAGE_JPEG),y) +LINKS_DEPENDENCIES += jpeg +endif +ifeq ($(BR2_PACKAGE_TIFF),y) +LINKS_DEPENDENCIES += tiff +endif +endif + +ifeq ($(BR2_PACKAGE_BZIP2),y) +LINKS_DEPENDENCIES += bzip2 +endif + +ifeq ($(BR2_PACKAGE_OPENSSL),y) +LINKS_DEPENDENCIES += openssl +endif + +ifeq ($(BR2_PACKAGE_ZLIB),y) +LINKS_DEPENDENCIES += zlib +endif $(eval $(call AUTOTARGETS,package,links)) -- cgit v1.2.3