summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73>2005-09-19 22:28:50 +0000
committernico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73>2005-09-19 22:28:50 +0000
commit797f425de96b4d0fc5c2f4237d50efda337f640d (patch)
treeef4b6a8cba3b78ae0dfc3391472556d4988a7e9a
parent4f770aeede12f640adaa6e4046f0d4d7161d464b (diff)
add nano
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@1945 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r--package/Config.in1
-rw-r--r--package/Makefile2
-rw-r--r--package/nano/Config.in9
-rw-r--r--package/nano/Makefile74
-rw-r--r--package/nano/ipkg/nano.control7
5 files changed, 93 insertions, 0 deletions
diff --git a/package/Config.in b/package/Config.in
index 55a8bbd91..eb48b4704 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -17,6 +17,7 @@ source "package/less/Config.in"
source "package/lua/Config.in"
source "package/microperl/Config.in"
source "package/monit/Config.in"
+source "package/nano/Config.in"
source "package/osiris/Config.in"
source "package/php4/Config.in"
source "package/php5/Config.in"
diff --git a/package/Makefile b/package/Makefile
index 067dfea82..1e774f1d3 100644
--- a/package/Makefile
+++ b/package/Makefile
@@ -102,6 +102,7 @@ package-$(BR2_PACKAGE_MPD) += mpd
package-$(BR2_PACKAGE_MT_DAAPD) += mt-daapd
package-$(BR2_PACKAGE_MTD) += mtd
package-$(BR2_PACKAGE_MYSQL) += mysql
+package-$(BR2_PACKAGE_NANO) += nano
package-$(BR2_PACKAGE_NCURSES) += ncurses
package-$(BR2_PACKAGE_NDISC) += ndisc
package-$(BR2_PACKAGE_NET_SNMP) += net-snmp
@@ -225,6 +226,7 @@ lighttpd-compile: openssl-compile pcre-compile
mini_httpd-compile: matrixssl-compile
mt-daapd-compile: howl-compile libgdbm-compile libid3tag-compile
mysql-compile: ncurses-compile zlib-compile
+nano-compile: ncurses-compile
net-snmp-compile: libelf-compile
nfs-server-compile: portmap-compile
nmap-compile: uclibc++-compile pcre-compile libpcap-compile
diff --git a/package/nano/Config.in b/package/nano/Config.in
new file mode 100644
index 000000000..612afdbc0
--- /dev/null
+++ b/package/nano/Config.in
@@ -0,0 +1,9 @@
+config BR2_PACKAGE_NANO
+ tristate "nano - An enhanced clone of the Pico text editor"
+ default m if CONFIG_DEVEL
+ select BR2_PACKAGE_LIBNCURSES
+ help
+ GNU nano (Nano's ANOther editor, or Not ANOther editor) is an enhanced clone of the Pico text editor..
+
+ http://www.nano-editor.org/
+
diff --git a/package/nano/Makefile b/package/nano/Makefile
new file mode 100644
index 000000000..ca8e95a25
--- /dev/null
+++ b/package/nano/Makefile
@@ -0,0 +1,74 @@
+include $(TOPDIR)/rules.mk
+
+PKG_NAME:=nano
+PKG_VERSION:=1.3.8
+PKG_RELEASE:=1
+PKG_MD5SUM:=20633397bf5d462255f37dfcc7cad4e7
+
+PKG_SOURCE_URL:=http://www.ewtoo.org/~astyanax/nano/dist/v1.3 \
+ http://www.nano-editor.org/dist/v1.3
+PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
+PKG_CAT:=zcat
+PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
+PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
+
+include $(TOPDIR)/package/rules.mk
+
+$(eval $(call PKG_template,NANO,nano,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
+
+$(PKG_BUILD_DIR)/.configured: $(PKG_BUILD_DIR)/.prepared
+ (cd $(PKG_BUILD_DIR); \
+ $(TARGET_CONFIGURE_OPTS) \
+ CFLAGS="$(TARGET_CFLAGS)" \
+ CPPFLAGS="-I$(STAGING_DIR)/usr/include -I$(STAGING_DIR)/include " \
+ LDFLAGS="-L$(STAGING_DIR)/usr/lib -L$(STAGING_DIR)/lib" \
+ ac_cv_header_regex_h=no \
+ ./configure \
+ --target=$(GNU_TARGET_NAME) \
+ --host=$(GNU_TARGET_NAME) \
+ --build=$(GNU_HOST_NAME) \
+ --program-prefix="" \
+ --program-suffix="" \
+ --prefix=/usr \
+ --exec-prefix=/usr \
+ --bindir=/usr/bin \
+ --datadir=/usr/share \
+ --includedir=/usr/include \
+ --infodir=/usr/share/info \
+ --libdir=/usr/lib \
+ --libexecdir=/usr/lib \
+ --localstatedir=/var \
+ --mandir=/usr/share/man \
+ --sbindir=/usr/sbin \
+ --sysconfdir=/etc \
+ $(DISABLE_LARGEFILE) \
+ $(DISABLE_NLS) \
+ --enable-shared \
+ --disable-static \
+ --with-gnu-ld \
+ --disable-rpath \
+ --enable-tiny \
+ --disable-glibtest \
+ --disable-utf8 \
+ --without-slang \
+ );
+ touch $@
+
+$(PKG_BUILD_DIR)/.built:
+ rm -rf $(PKG_INSTALL_DIR)
+ mkdir -p $(PKG_INSTALL_DIR)
+ $(MAKE) -C $(PKG_BUILD_DIR) \
+ DESTDIR="$(PKG_INSTALL_DIR)" \
+ all install
+ touch $@
+
+$(IPKG_NANO):
+ install -d -m0755 $(IDIR_NANO)/usr/bin
+ cp -fpR $(PKG_INSTALL_DIR)/usr/bin/nano $(IDIR_NANO)/usr/bin/
+ $(RSTRIP) $(IDIR_NANO)
+ $(IPKG_BUILD) $(IDIR_NANO) $(PACKAGE_DIR)
+
+mostlyclean:
+ -$(MAKE) -C $(PKG_BUILD_DIR) clean
+ rm -f $(PKG_BUILD_DIR)/.built
+
diff --git a/package/nano/ipkg/nano.control b/package/nano/ipkg/nano.control
new file mode 100644
index 000000000..fa004b291
--- /dev/null
+++ b/package/nano/ipkg/nano.control
@@ -0,0 +1,7 @@
+Package: nano
+Priority: optional
+Section: admin
+Maintainer: OpenWrt Developers Team <openwrt-devel@openwrt.org>, Oliver Ertl <oliver@ertl-net.net>
+Source: http://openwrt.org/cgi-bin/viewcvs.cgi/openwrt/package/nano/
+Depends: libncurses
+Description: An enhanced clone of the Pico text editor