Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Pol Vinogradov (92447558987b510ac49b01cb6b969f612ee058e9)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Pol Vinogradov <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Pol Vinogradov (92447558987b510ac49b01cb6b969f612ee058e9)
  • Date: Mon, 30 Apr 2007 15:20:48 -0500

GIT changes to master grimoire by Pol Vinogradov <vin.public AT gmail.com>:

editors/mp/BUILD | 6 ++++--
editors/mp/DEPENDS | 10 +++++++++-
editors/mp/DETAILS | 24 +++++++++++++-----------
editors/mp/HISTORY | 6 ++++++
graphics-libs/mesalib/DEPENDS | 2 ++
graphics-libs/mesalib/HISTORY | 4 ++++
6 files changed, 38 insertions(+), 14 deletions(-)

New commits:
commit db1d69df0eda44308689a92a1b327b9913205390
Author: Pol Vinogradov <vin.public AT gmail.com>
Commit: Pol Vinogradov <vin.public AT gmail.com>

editors/mp:

BUILD: added sedits for proper documents installation, removed cd to
source directory, added --docdir option to config.sh
DEPENDS: added gettext and pcre optional dependencies
DETAILS: PATCHLEVEL++, reformatted long description

commit d74686c1530cf05f8299da1ffa3ba52972129d54
Author: Pol Vinogradov <vin.public AT gmail.com>
Commit: Pol Vinogradov <vin.public AT gmail.com>

graphics-libs/mesalib:

DEPENDS: added sourcing of $GRIMOIRE/FUNCTIONS for
check_if_xorg_modular_libs

diff --git a/editors/mp/BUILD b/editors/mp/BUILD
index f236095..3bbf51b 100755
--- a/editors/mp/BUILD
+++ b/editors/mp/BUILD
@@ -1,3 +1,5 @@
-cd $SOURCE_DIRECTORY &&
-./config.sh --prefix=$INSTALL_ROOT/usr $OPTS &&
+sedit 's:./mkinstalldirs $(PREFIX)/share/doc/$(APPNAME):./mkinstalldirs
$(PREFIX)/share/doc/mp:' makefile.in &&
+sedit 's:-install -m 644 $(DOCS) $(PREFIX)/share/doc/$(APPNAME):-install -m
644 $(DOCS) $(PREFIX)/share/doc/mp:' \
+makefile.in &&
+./config.sh --prefix=$INSTALL_ROOT/usr
--docdir=$INSTALL_ROOT/usr/share/doc/$SPELL $OPTS &&
make
diff --git a/editors/mp/DEPENDS b/editors/mp/DEPENDS
index 74b02fe..6083e65 100755
--- a/editors/mp/DEPENDS
+++ b/editors/mp/DEPENDS
@@ -1,3 +1,7 @@
+optional_depends gettext \
+ "" \
+ "--without-gettext" \
+ "for an gettext usage" &&
optional_depends gtk+2 \
"" \
"--without-gtk" \
@@ -5,4 +9,8 @@ optional_depends gtk+2 \
optional_depends ncurses \
"" \
"--without-curses" \
- "for a curses UI"
+ "for a curses UI" &&
+optional_depends pcre \
+ "--with-pcre" \
+ "" \
+ "for PCRE library usage"
diff --git a/editors/mp/DETAILS b/editors/mp/DETAILS
index e061b62..2e1e01a 100755
--- a/editors/mp/DETAILS
+++ b/editors/mp/DETAILS
@@ -7,17 +7,19 @@ SOURCE_DIRECTORY="${BUILD_DIRECTORY}/${SPELL}-${VERSION}"
WEB_SITE="http://www.triptico.com/software/mp.html";
LICENSE[0]=GPL
ENTERED=20070429
+ PATCHLEVEL=1
SHORT="A text editor for programmers"
cat << EOF
-A text editor for Programmers # Multiple files can be edited at the same
-time and blocks copied and pasted among them. # Syntax highlighting for
-many popular languages / file formats: C, C++, Perl, Shell Scripts, Ruby,
-Php, SQL, Python, HTML... # Creative use of tags: tags created by the
-external utility ctags are used to move instantaneously to functions or
-variables inside your current source tree. Tags are visually highlighted
-(underlined), and symbol completion can be triggered to avoid typing your
-own function names over and over. # Intelligent help system: pressing F1
-over any word of a text being edited triggers the underlying system help
-(calling man when editing C or Shell files, perldoc with Perl, ri on Ruby,
-winhelp on MS Windows...).
+A text editor for Programmers
+* Multiple files can be edited at the same time and blocks copied and pasted
+among them.
+* Syntax highlighting for many popular languages / file formats: C, C++,
+Perl, Shell Scripts, Ruby, Php, SQL, Python, HTML...
+* Creative use of tags: tags created by the external utility ctags are used
to
+move instantaneously to functions or variables inside your current source
tree.
+Tags are visually highlighted (underlined), and symbol completion can be
+triggered to avoid typing your own function names over and over.
+* Intelligent help system: pressing F1 over any word of a text being edited
+triggers the underlying system help (calling man when editing C or Shell
files,
+perldoc with Perl, ri on Ruby, winhelp on MS Windows...).
EOF
diff --git a/editors/mp/HISTORY b/editors/mp/HISTORY
index 0b0f380..46f9d58 100644
--- a/editors/mp/HISTORY
+++ b/editors/mp/HISTORY
@@ -1,3 +1,9 @@
+2007-04-30 Pol Vinogradov <vin.public AT gmail.com>
+ * BUILD: added sedits for proper documents installation, removed cd to
+ source directory, added --docdir option to config.sh
+ * DEPENDS: added gettext and pcre optional dependencies
+ * DETAILS: PATCHLEVEL++, reformatted long description
+
2007-04-29 George Sherwood <george AT beernabeer.com>
* DEPENDS: Correctly specify options

diff --git a/graphics-libs/mesalib/DEPENDS b/graphics-libs/mesalib/DEPENDS
index 2a739d3..1c1a6f9 100755
--- a/graphics-libs/mesalib/DEPENDS
+++ b/graphics-libs/mesalib/DEPENDS
@@ -1,6 +1,8 @@
depends libdrm &&
depends X11-UTILS &&
depends X11-LIBS &&
+
+source $GRIMOIRE/FUNCTIONS &&
if check_if_xorg_modular_libs ; then
depends libxdamage &&
depends libxfixes
diff --git a/graphics-libs/mesalib/HISTORY b/graphics-libs/mesalib/HISTORY
index 6e32d03..0604dbd 100644
--- a/graphics-libs/mesalib/HISTORY
+++ b/graphics-libs/mesalib/HISTORY
@@ -1,3 +1,7 @@
+2007-04-30 Pol Vinogradov <vin.public AT gmail.com>
+ * DEPENDS: added sourcing of $GRIMOIRE/FUNCTIONS for
+ check_if_xorg_modular_libs
+
2007-04-29 Andraž "ruskie" Levstik <ruskie AT mages.ath.cx>
* CONFLICTS: added to finnaly stop reciving bogus bugs when
people try to build it against monolithic X



  • [SM-Commit] GIT changes to master grimoire by Pol Vinogradov (92447558987b510ac49b01cb6b969f612ee058e9), Pol Vinogradov, 04/30/2007

Archive powered by MHonArc 2.6.24.

Top of Page