diff options
| author | David Kühling <dvdkhlng@gmx.de> | 2011-01-02 15:19:00 +0100 |
|---|---|---|
| committer | David Kühling <dvdkhlng@gmx.de> | 2011-01-02 15:19:00 +0100 |
| commit | 9aaeb4623d3ff5746e665bc17914eefd292b7dcd (patch) | |
| tree | 370db60ffdc2ef840b7d1124d5a392f93bba3c9d /lynx | |
| download | qipackages-fork-9aaeb4623d3ff5746e665bc17914eefd292b7dcd.tar.gz | |
New OpenWrt package for GNU Octave. Experimental/probably still broken.grafted
Work in progress. Committing it as compilation seems to take forever.
Not sure whether I can finish this within a few days.
Diffstat (limited to 'lynx')
| -rw-r--r-- | lynx/Makefile | 54 | ||||
| -rw-r--r-- | lynx/files/etc/lynx.cfg | 3 | ||||
| -rw-r--r-- | lynx/files/etc/lynx.lss | 0 |
3 files changed, 57 insertions, 0 deletions
diff --git a/lynx/Makefile b/lynx/Makefile new file mode 100644 index 0000000..159072e --- /dev/null +++ b/lynx/Makefile @@ -0,0 +1,54 @@ +# +# Copyright (C) 2008 OpenWrt.org +# +# This is free software, licensed under the GNU General Public License v2. +# See /LICENSE for more information. +# + +include $(TOPDIR)/rules.mk + +PKG_NAME:=lynx +PKG_VERSION:=2.8.8dev.6 +PKG_RELEASE:=1 + +PKG_SOURCE:=$(PKG_NAME)$(PKG_VERSION).tar.bz2 +PKG_SOURCE_URL:=http://lynx.isc.org/current +PKG_MD5SUM:=289255204d23c2c3e8094b50a8638dfc + +PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)2-8-8 + +include $(INCLUDE_DIR)/package.mk + +define Package/lynx + TITLE:=lynx + SECTION:=network + CATEGORY:=Network + DEPENDS:=+libncursesw +zlib +libopenssl + URL:=http://lynx.isc.org +endef + +define Package/lynx/description + text console browser +endef + +CONFIGURE_ARGS += --with-zlib --with-ssl \ + --with-screen=ncursesw \ + --enable-widec \ + --enable-locale-charset \ + --disable-color-style \ + --enable-charset-choice \ + --enable-cjk \ + --enable-japanese-utf8 \ + --enable-nsl-fork + +CONFIGURE_VARS += cf_cv_ncurses_header="ncursesw/curses.h" \ + ac_cv_path_NCURSES_CONFIG="" + +define Package/lynx/install + $(INSTALL_DIR) $(1)/usr/bin $(1)/etc + $(INSTALL_BIN) $(PKG_BUILD_DIR)/lynx $(1)/usr/bin/ + $(INSTALL_DATA) ./files/etc/lynx.cfg $(1)/etc/ + $(INSTALL_DATA) ./files/etc/lynx.lss $(1)/etc/ +endef + +$(eval $(call BuildPackage,lynx)) diff --git a/lynx/files/etc/lynx.cfg b/lynx/files/etc/lynx.cfg new file mode 100644 index 0000000..e9487f0 --- /dev/null +++ b/lynx/files/etc/lynx.cfg @@ -0,0 +1,3 @@ +LOCALE_CHARSET:TRUE +ASSUME_CHARSET:utf-8 +ASSUME_LOCAL_CHARSET:utf-8 diff --git a/lynx/files/etc/lynx.lss b/lynx/files/etc/lynx.lss new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/lynx/files/etc/lynx.lss |
