Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (6b1074c4161476441c29a7b716e8a452ef9d4bb7)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Vlad Glagolev <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (6b1074c4161476441c29a7b716e8a452ef9d4bb7)
  • Date: Tue, 19 Jun 2012 14:20:28 -0500

GIT changes to master grimoire by Vlad Glagolev <stealth AT sourcemage.org>:

editors/ne/BUILD | 4 +++-
editors/ne/CONFIGURE | 21 +++++++++++++++++++++
editors/ne/DEPENDS | 3 +++
editors/ne/DETAILS | 6 +++---
editors/ne/HISTORY | 8 ++++++++
editors/ne/INSTALL | 4 +++-
editors/ne/PRE_BUILD | 5 +++++
7 files changed, 46 insertions(+), 5 deletions(-)

New commits:
commit 6b1074c4161476441c29a7b716e8a452ef9d4bb7
Author: Vlad Glagolev <stealth AT sourcemage.org>
Commit: Vlad Glagolev <stealth AT sourcemage.org>

ne: => 2.4

diff --git a/editors/ne/BUILD b/editors/ne/BUILD
index 0374137..581af83 100755
--- a/editors/ne/BUILD
+++ b/editors/ne/BUILD
@@ -1 +1,3 @@
-make PREFIX="$INSTALL_ROOT/usr"
+make_single &&
+make PREFIX="$INSTALL_ROOT/usr" $NE_OPTS &&
+make_normal
diff --git a/editors/ne/CONFIGURE b/editors/ne/CONFIGURE
new file mode 100755
index 0000000..857ed92
--- /dev/null
+++ b/editors/ne/CONFIGURE
@@ -0,0 +1,21 @@
+config_query_option NE_OPTS "Use termcap database?" n \
+ "NE_TERMCAP=1" \
+ "NE_TERMCAP=" &&
+
+if list_find "$NE_OPTS" "TERMCAP=1"; then
+ config_query_option NE_OPTS "Use built-in ANSI terminal description by
default?" n \
+ "NE_ANSI=1" \
+ "NE_ANSI="
+fi &&
+
+config_query_option NE_OPTS "Enable debugging?" n \
+ "NE_DEBUG=1" \
+ "NE_DEBUG=" &&
+
+config_query_option NE_OPTS "Build POSIX-compliant version?" n \
+ "NE_POSIX=1" \
+ "NE_POSIX=" &&
+
+config_query_option NE_OPTS "Enable multiple-column support?" y \
+ "NE_NOWCHAR=" \
+ "NE_NOWCHAR=1"
diff --git a/editors/ne/DEPENDS b/editors/ne/DEPENDS
new file mode 100755
index 0000000..559c7dd
--- /dev/null
+++ b/editors/ne/DEPENDS
@@ -0,0 +1,3 @@
+if ! list_find "$NE_OPTS" "NE_TERMCAP=1"; then
+ depends ncurses
+fi
diff --git a/editors/ne/DETAILS b/editors/ne/DETAILS
index 80acb1b..8a71596 100755
--- a/editors/ne/DETAILS
+++ b/editors/ne/DETAILS
@@ -1,6 +1,6 @@
SPELL=ne
- VERSION=2.3
-
SOURCE_HASH=sha512:2a02aa2d800ae01df8a707d59f3f5638422e699d09e1e384274be4a4a90b7019c40b5005e3892684f0ca7e3521ca1449af94bb89f0933c17c64aefc8e2c36240
+ VERSION=2.4
+
SOURCE_HASH=sha512:1cea65abc9ced79fc4eeb4ade42c51a9620b6e78e4f6dfb6a085380906299b56b81159b634d0bfb98c427b8c2e0e1a2d060254dff299a548c7c47987d76f4768
SOURCE=$SPELL-$VERSION.tar.gz
SOURCE_URL[0]=http://ne.dsi.unimi.it/$SOURCE
SOURCE_DIRECTORY="$BUILD_DIRECTORY/$SPELL-$VERSION"
@@ -8,7 +8,7 @@ SOURCE_DIRECTORY="$BUILD_DIRECTORY/$SPELL-$VERSION"
LICENSE[0]='GPL'
ENTERED=20060122
KEYWORDS="editors"
- SHORT="a nice editor"
+ SHORT="nice editor: minimal, modern replacement for vi"
cat << EOF
ne is a free text editor that runs on (hopefully almost) any UN*X machine.
ne is easy to use for the beginner, but powerful and fully configurable for
diff --git a/editors/ne/HISTORY b/editors/ne/HISTORY
index bb4d039..c242c2c 100644
--- a/editors/ne/HISTORY
+++ b/editors/ne/HISTORY
@@ -1,3 +1,11 @@
+2012-06-19 Vlad Glagolev <stealth AT sourcemage.org>
+ * DETAILS: updated spell to 2.4; updated short desc
+ * PRE_BUILD: added, to compile with user-defined cflags
+ * DEPENDS: added, for missing dependency
+ * CONFIGURE: added, for various options
+ * BUILD: multijob build isn't supported; use NE_OPTS
+ * INSTALL: multijob install isn't supported
+
2011-11-10 Vlad Glagolev <stealth AT sourcemage.org>
* DETAILS: updated spell to 2.3; corrected source url
* BUILD: simplified build process
diff --git a/editors/ne/INSTALL b/editors/ne/INSTALL
index f1b6bc6..67fdcdd 100755
--- a/editors/ne/INSTALL
+++ b/editors/ne/INSTALL
@@ -1 +1,3 @@
-make install PREFIX="$INSTALL_ROOT/usr"
+make_single &&
+make install PREFIX="$INSTALL_ROOT/usr" &&
+make_normal
diff --git a/editors/ne/PRE_BUILD b/editors/ne/PRE_BUILD
new file mode 100755
index 0000000..a347273
--- /dev/null
+++ b/editors/ne/PRE_BUILD
@@ -0,0 +1,5 @@
+default_pre_build &&
+cd "$SOURCE_DIRECTORY" &&
+
+# apply user-defined cflags
+sedit "s:-O3:${CFLAGS}:" src/makefile



  • [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (6b1074c4161476441c29a7b716e8a452ef9d4bb7), Vlad Glagolev, 06/19/2012

Archive powered by MHonArc 2.6.24.

Top of Page