From 7e0e9e8244a6bc97cdebc98273f9d967c27fb91e Mon Sep 17 00:00:00 2001 From: Florian Fainelli Date: Tue, 1 Aug 2006 18:06:50 +0000 Subject: [PATCH] Port elinks to -ng SVN-Revision: 4377 --- net/elinks/Makefile | 70 +++++++++++++++++++ .../patches/01-missing_decl_for_off_t.patch | 11 +++ 2 files changed, 81 insertions(+) create mode 100644 net/elinks/Makefile create mode 100644 net/elinks/patches/01-missing_decl_for_off_t.patch diff --git a/net/elinks/Makefile b/net/elinks/Makefile new file mode 100644 index 0000000000..98f9890466 --- /dev/null +++ b/net/elinks/Makefile @@ -0,0 +1,70 @@ +# +# Copyright (C) 2006 OpenWrt.org +# +# This is free software, licensed under the GNU General Public License v2. +# See /LICENSE for more information. +# +# $Id$ + +include $(TOPDIR)/rules.mk + +PKG_NAME:=elinks +PKG_VERSION:=0.11.1 +PKG_RELEASE:=2 +PKG_MD5SUM:=c09d726075e4b5810fa07f8654088755 + +PKG_SOURCE_URL:=http://elinks.or.cz/download/ +PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz +PKG_CAT:=zcat + +PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION) + +include $(INCLUDE_DIR)/package.mk + +define Package/elinks + SECTION:=net + CATEGORY:=Network + DEPENDS:=+libopenssl + TITLE:=A text based web browser + DESCRIPTION:=An advanced text based web browser + URL:=http://elinks.or.cz/ +endef + +define Build/Configure +$(call Build/Configure/Default,--enable-small\ + --enable-256-colors\ + --disable-backtrace\ + --disable-data\ + --disable-formhist\ + --disable-leds \ + --disable-mailcap\ + --disable-mouse \ + --disable-smb \ + --disable-uri-rewrite\ + --disable-xbel \ + --without-bzlib \ + --without-gpm \ + --without-idn \ + --without-gnutls \ + --without-libiconv \ + --without-lua \ + --with-openssl="$(STAGING_DIR)/usr" \ + --without-spidermonkey\ + --without-x\ + --without-zlib \ + --disable-ipv6 \, x=`echo ac_cv_file_./features.conf | tr [:blank:]-/. _` && export $$$${x}=yes && \ + x=`echo ac_cv_file_$(PKG_BUILD_DIR)/features.conf | tr [:blank:]-/. _` && export $$$${x}=yes && \ +) +endef + +define Build/Compile + $(MAKE) -C $(PKG_BUILD_DIR)\ + CC=$(TARGET_CC) LD=$(TARGET_CROSS)ld +endef + +define Package/elinks/install + mkdir -p $(1)/usr/bin + $(CP) $(PKG_BUILD_DIR)/src/elinks $(1)/usr/bin/ +endef + +$(eval $(call BuildPackage,elinks)) diff --git a/net/elinks/patches/01-missing_decl_for_off_t.patch b/net/elinks/patches/01-missing_decl_for_off_t.patch new file mode 100644 index 0000000000..4393e31466 --- /dev/null +++ b/net/elinks/patches/01-missing_decl_for_off_t.patch @@ -0,0 +1,11 @@ +diff -ruN elinks-0.11.1-old/src/util/time.h elinks-0.11.1-new/src/util/time.h +--- elinks-0.11.1-old/src/util/time.h 2006-01-29 14:10:39.000000000 +0100 ++++ elinks-0.11.1-new/src/util/time.h 2006-03-27 23:09:08.000000000 +0200 +@@ -1,6 +1,7 @@ + #ifndef EL__UTIL_TIME_H + #define EL__UTIL_TIME_H + ++#include + #ifdef HAVE_SYS_TIME_H + #include + #endif -- 2.30.2