[SM-Commit] PERFORCE change 77965 by Pol Vinogradov for review

Perforce Review Daemon p4review at smee.org
Tue Apr 18 15:40:01 EDT 2006


Change 77965 by pol_vinogradov at public on 2006/04/18 20:36:06

	integrated from devel

Affected files ...

... //sgl/grimoires/test/editors/nano/BUILD#3 integrate
... //sgl/grimoires/test/editors/nano/CONFIGURE#4 integrate
... //sgl/grimoires/test/editors/nano/HISTORY#17 integrate
... //sgl/grimoires/test/editors/nano/INSTALL#2 integrate
... //sgl/grimoires/test/editors/nano/spellhighlight.diff#1 branch

Differences ...

==== //sgl/grimoires/test/editors/nano/BUILD#3 (xtext) ====

@@ -1,5 +1,11 @@
   OPTS="$OPTS --build=${BUILD} ${NANO_OPTS}"
   [[ $CROSS_INSTALL == on ]] && OPTS="$OPTS --host=${HOST}"
+  if [[ "$SPELL_HIGHLIGHT" == "y" ]]; then
+    cd  doc                                              &&
+    patch -p0 < ${SCRIPT_DIRECTORY}/spellhighlight.diff  &&
+    cd  ${SOURCE_DIRECTORY}
+  fi                                          &&
+                    
 
   ./configure --prefix=${TRACK_ROOT}/usr  \
           --sysconfdir=${TRACK_ROOT}/etc  \

==== //sgl/grimoires/test/editors/nano/CONFIGURE#4 (xtext) ====

@@ -32,4 +32,10 @@
                      "--enable-nanorc"  "--disable-nanorc"                    &&
 config_query_option  NANO_OPTS  "Enable UTF-8 support?"  y                    \
                      "--enable-utf8"  "--disable-utf8"
+fi                                                                            &&
+
+if [[ "${NANO_CONFIG}" == "all" || $( echo ${NANO_OPTS} | grep -o enable-color ) = "enable-color" &&
+$( echo ${NANO_OPTS} | grep -o enable-nanorc ) = "enable-nanorc" ]] ; then
+  config_query  SPELL_HIGHLIGHT  "Do you want to enable syntax highlighting of spell files?"  y
 fi
+  

==== //sgl/grimoires/test/editors/nano/HISTORY#17 (text) ====

@@ -1,3 +1,9 @@
+2006-04-19 Pol Vinogradov <vin.public at gmail.com>
+	* CONFIGURE: added query for spell highlighting
+	* BUILD: if statement added, patch if needed
+	* INSTALL: added if and install_config_file
+	* spellhighlight.diff: added
+
 2006-03-12 Karsten Behrmann <BearPerson at sourcemage.org>
 	* DETAILS: (automated) Add KEYWORDS
 

==== //sgl/grimoires/test/editors/nano/INSTALL#2 (xtext) ====

@@ -1,1 +1,5 @@
-make install DESTDIR=$INSTALL_ROOT
+make install DESTDIR=$INSTALL_ROOT  &&
+
+if [[ "${NANO_CONFIG}" == "all" || $( echo ${NANO_OPTS} | grep -o enable-nanorc ) = "enable-nanorc" ]] ; then
+  install_config_file  doc/nanorc.sample  $INSTALL_ROOT/etc/nanorc
+fi



More information about the SM-Commit mailing list