|
From: <abe...@us...> - 2014-02-03 22:12:44
|
Revision: 6399
http://sourceforge.net/p/astlinux/code/6399
Author: abelbeck
Date: 2014-02-03 22:12:38 +0000 (Mon, 03 Feb 2014)
Log Message:
-----------
joe, add new package, NOT enabled, JOE is an easy-to-use, full featured terminal-based screen editor.
Modified Paths:
--------------
branches/1.0/astlinux-ast11.config
branches/1.0/astlinux18.config
branches/1.0/initrd.config
branches/1.0/package/Config.in
branches/1.0/runnix-uclibc.config
branches/1.0/runnix.config
Added Paths:
-----------
branches/1.0/package/joe/
branches/1.0/package/joe/Config.in
branches/1.0/package/joe/joe.mk
Modified: branches/1.0/astlinux-ast11.config
===================================================================
--- branches/1.0/astlinux-ast11.config 2014-02-03 15:45:59 UTC (rev 6398)
+++ branches/1.0/astlinux-ast11.config 2014-02-03 22:12:38 UTC (rev 6399)
@@ -1,7 +1,7 @@
#
# Automatically generated make config: don't edit
-# Buildroot 2011.08-svn6372-dirty Configuration
-# Wed Jan 22 18:33:28 2014
+# Buildroot 2011.08-svn6398-dirty Configuration
+# Mon Feb 3 16:09:22 2014
#
BR2_HAVE_DOT_CONFIG=y
# BR2_arm is not set
@@ -839,6 +839,7 @@
#
# BR2_PACKAGE_ED is not set
BR2_PACKAGE_EX_VI=y
+# BR2_PACKAGE_JOE is not set
BR2_PACKAGE_NANO=y
# BR2_PACKAGE_UEMACS is not set
Modified: branches/1.0/astlinux18.config
===================================================================
--- branches/1.0/astlinux18.config 2014-02-03 15:45:59 UTC (rev 6398)
+++ branches/1.0/astlinux18.config 2014-02-03 22:12:38 UTC (rev 6399)
@@ -1,7 +1,7 @@
#
# Automatically generated make config: don't edit
-# Buildroot 2011.08-svn6372-dirty Configuration
-# Wed Jan 22 18:33:27 2014
+# Buildroot 2011.08-svn6398-dirty Configuration
+# Mon Feb 3 16:09:18 2014
#
BR2_HAVE_DOT_CONFIG=y
# BR2_arm is not set
@@ -839,6 +839,7 @@
#
# BR2_PACKAGE_ED is not set
BR2_PACKAGE_EX_VI=y
+# BR2_PACKAGE_JOE is not set
BR2_PACKAGE_NANO=y
# BR2_PACKAGE_UEMACS is not set
Modified: branches/1.0/initrd.config
===================================================================
--- branches/1.0/initrd.config 2014-02-03 15:45:59 UTC (rev 6398)
+++ branches/1.0/initrd.config 2014-02-03 22:12:38 UTC (rev 6399)
@@ -1,7 +1,7 @@
#
# Automatically generated make config: don't edit
-# Buildroot 2011.08-svn6371-dirty Configuration
-# Mon Jan 20 14:49:55 2014
+# Buildroot 2011.08-svn6398-dirty Configuration
+# Mon Feb 3 16:09:36 2014
#
BR2_HAVE_DOT_CONFIG=y
# BR2_arm is not set
@@ -682,6 +682,7 @@
#
# BR2_PACKAGE_ED is not set
# BR2_PACKAGE_EX_VI is not set
+# BR2_PACKAGE_JOE is not set
# BR2_PACKAGE_NANO is not set
# BR2_PACKAGE_UEMACS is not set
Modified: branches/1.0/package/Config.in
===================================================================
--- branches/1.0/package/Config.in 2014-02-03 15:45:59 UTC (rev 6398)
+++ branches/1.0/package/Config.in 2014-02-03 22:12:38 UTC (rev 6399)
@@ -581,6 +581,7 @@
menu "Text editors and viewers"
source "package/ed/Config.in"
source "package/ex-vi/Config.in"
+source "package/joe/Config.in"
if BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
source "package/less/Config.in"
endif
Added: branches/1.0/package/joe/Config.in
===================================================================
--- branches/1.0/package/joe/Config.in (rev 0)
+++ branches/1.0/package/joe/Config.in 2014-02-03 22:12:38 UTC (rev 6399)
@@ -0,0 +1,21 @@
+config BR2_PACKAGE_JOE
+ bool "joe"
+ help
+ Joe's Own Editor
+
+ JOE is an easy-to-use, full featured terminal-based screen editor.
+ Its behavior is a blending of WordStar and GNU-EMACS (but it does
+ not use code from either program). It is a great editor for new
+ users or as an alternative to vi.
+
+ http://joe-editor.sf.net
+
+config BR2_PACKAGE_JOE_FULL
+ bool "full install of rc and syntax highlighting files"
+ depends on BR2_PACKAGE_JOE
+ default n
+ help
+ Install all rc and syntax highlighting files. Without this option
+ only the joe binary is installed, which contains a default
+ configuration.
+
Added: branches/1.0/package/joe/joe.mk
===================================================================
--- branches/1.0/package/joe/joe.mk (rev 0)
+++ branches/1.0/package/joe/joe.mk 2014-02-03 22:12:38 UTC (rev 6399)
@@ -0,0 +1,28 @@
+################################################################################
+#
+# joe
+#
+################################################################################
+
+JOE_VERSION = 3.7
+JOE_SITE = http://downloads.sourceforge.net/project/joe-editor/JOE%20sources/joe-$(JOE_VERSION)
+JOE_SOURCE = joe-$(JOE_VERSION).tar.gz
+
+ifeq ($(BR2_PACKAGE_NCURSES),y)
+JOE_DEPENDENCIES += ncurses
+JOE_CONF_OPT += --enable-curses
+else
+JOE_CONF_OPT += --disable-curses
+endif
+
+ifneq ($(BR2_PACKAGE_JOE_FULL),y)
+define JOE_INSTALL_TARGET_CMDS
+ $(INSTALL) -m 0755 -D $(@D)/joe $(TARGET_DIR)/usr/bin/joe
+endef
+
+define JOE_UNINSTALL_TARGET_CMDS
+ rm -f $(TARGET_DIR)/usr/bin/joe
+endef
+endif
+
+$(eval $(call AUTOTARGETS,package,joe))
Modified: branches/1.0/runnix-uclibc.config
===================================================================
--- branches/1.0/runnix-uclibc.config 2014-02-03 15:45:59 UTC (rev 6398)
+++ branches/1.0/runnix-uclibc.config 2014-02-03 22:12:38 UTC (rev 6399)
@@ -1,7 +1,7 @@
#
# Automatically generated make config: don't edit
-# Buildroot 2011.08-svn6371-dirty Configuration
-# Mon Jan 20 14:49:43 2014
+# Buildroot 2011.08-svn6398-dirty Configuration
+# Mon Feb 3 16:09:32 2014
#
BR2_HAVE_DOT_CONFIG=y
# BR2_arm is not set
@@ -1038,6 +1038,7 @@
#
# BR2_PACKAGE_ED is not set
# BR2_PACKAGE_EX_VI is not set
+# BR2_PACKAGE_JOE is not set
# BR2_PACKAGE_LESS is not set
# BR2_PACKAGE_NANO is not set
# BR2_PACKAGE_UEMACS is not set
Modified: branches/1.0/runnix.config
===================================================================
--- branches/1.0/runnix.config 2014-02-03 15:45:59 UTC (rev 6398)
+++ branches/1.0/runnix.config 2014-02-03 22:12:38 UTC (rev 6399)
@@ -1,7 +1,7 @@
#
# Automatically generated make config: don't edit
-# Buildroot 2011.08-svn6371-dirty Configuration
-# Mon Jan 20 14:49:39 2014
+# Buildroot 2011.08-svn6398-dirty Configuration
+# Mon Feb 3 16:09:30 2014
#
BR2_HAVE_DOT_CONFIG=y
# BR2_arm is not set
@@ -733,6 +733,7 @@
#
# BR2_PACKAGE_ED is not set
# BR2_PACKAGE_EX_VI is not set
+# BR2_PACKAGE_JOE is not set
# BR2_PACKAGE_LESS is not set
# BR2_PACKAGE_NANO is not set
# BR2_PACKAGE_UEMACS is not set
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|