Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Justin Boffemmyer (3f2f474f9ac6b0cdfbe8a4d4f91f2a1004823fd7)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Justin Boffemmyer <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Justin Boffemmyer (3f2f474f9ac6b0cdfbe8a4d4f91f2a1004823fd7)
  • Date: Fri, 14 Mar 2008 13:09:24 -0500

GIT changes to master grimoire by Justin Boffemmyer <flux AT sourcemage.org>:

ChangeLog | 4 ++++
devel/radare/BUILD | 3 +++
devel/radare/CONFIGURE | 18 ++++++++++++++++++
devel/radare/DEPENDS | 29 +++++++++++++++++++++++++++++
devel/radare/DETAILS | 18 ++++++++++++++++++
devel/radare/HISTORY | 3 +++
gnome2-apps/gtkdialog/DEPENDS | 1 +
gnome2-apps/gtkdialog/DETAILS | 19 +++++++++++++++++++
gnome2-apps/gtkdialog/HISTORY | 3 +++
9 files changed, 98 insertions(+)

New commits:
commit 3f2f474f9ac6b0cdfbe8a4d4f91f2a1004823fd7
Author: Justin Boffemmyer <flux AT sourcemage.org>
Commit: Justin Boffemmyer <flux AT sourcemage.org>

ChangeLog: added 2 new spells - gtkdialog and radare

commit 3949088a69e19253a421702c3d2686c4afa91797
Author: Justin Boffemmyer <flux AT sourcemage.org>
Commit: Justin Boffemmyer <flux AT sourcemage.org>

radare/{BUILD,CONFIGURE,DEPENDS,DETAILS,HISTORY}: new spell

commit f36ba70a6ffca3c6faba14f5af8d46b027e74c67
Author: Justin Boffemmyer <flux AT sourcemage.org>
Commit: Justin Boffemmyer <flux AT sourcemage.org>

gtkdialog/{DEPENDS,DETAILS,HISTORY}: new spell

diff --git a/ChangeLog b/ChangeLog
index 5e9937c..3f41342 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2008-03-14 Justin Boffemmyer <flux AT sourcemage.org>
+ * gnome2-apps/gtkdialog: new spell, gtk GUI creation util
+ * devel/radare: new spell, powerful hex editor/debugger/etc.
+
2008-03-13 Vlad Glagolev <stealth AT sourcemage.org>
* python-pypi/lunatic-python: new spell, two-way bridge between
Python and Lua

diff --git a/devel/radare/BUILD b/devel/radare/BUILD
new file mode 100755
index 0000000..bc8c80f
--- /dev/null
+++ b/devel/radare/BUILD
@@ -0,0 +1,3 @@
+list_remove ASK EMPTY1 EMPTY2 EMPTY3 EMPTY4 EMPTY5 EMPTY6
+OPTS="$ASK $OPTS" &&
+default_build
diff --git a/devel/radare/CONFIGURE b/devel/radare/CONFIGURE
new file mode 100755
index 0000000..59fbd63
--- /dev/null
+++ b/devel/radare/CONFIGURE
@@ -0,0 +1,18 @@
+config_query_option ASK "Enable the build of the libusb sniffer?" y \
+ "EMPTY1" \
+ "--without-usb-sniffer" &&
+config_query_option ASK "Enable the debugger layer?" y \
+ "EMPTY2" \
+ "--without-debugger" &&
+config_query_option ASK "Build the java api?" n \
+ "--with-java" \
+ "EMPTY3" &&
+config_query_option ASK "Build the wii plugin for usbgecko?" n \
+ "--with-wii" \
+ "EMPTY4" &&
+config_query_option ASK "Enable the win32 framework (mingw32)?" n \
+ "--enable-w32" \
+ "EMPTY5" &&
+config_query_option ASK "Build the syscall proxy plugin?" n \
+ "--with-sysproxy" \
+ "EMPTY6"
diff --git a/devel/radare/DEPENDS b/devel/radare/DEPENDS
new file mode 100755
index 0000000..d907a49
--- /dev/null
+++ b/devel/radare/DEPENDS
@@ -0,0 +1,29 @@
+depends lua &&
+
+optional_depends libewf \
+ "" \
+ "" \
+ "support Expert Witness compression Format" &&
+
+optional_depends readline \
+ "" \
+ "--without-readline" \
+ "enable readline support" &&
+
+optional_depends gtk+2 \
+ "" \
+ "--without-gui" \
+ "enable the gtk+2 gui" &&
+
+if is_depends_enabled $SPELL gtk+2 ; then
+ depends gtkdialog &&
+ depends vte
+fi
+
+optional_depends vala \
+ "" \
+ "--without-vala" \
+ "Enable the vala gui" &&
+
+suggest_depends perl "" "" "support perl scripting" &&
+suggest_depends python "" "" "support python scripting"
diff --git a/devel/radare/DETAILS b/devel/radare/DETAILS
new file mode 100755
index 0000000..8deb48a
--- /dev/null
+++ b/devel/radare/DETAILS
@@ -0,0 +1,18 @@
+ SPELL=radare
+ VERSION=0.9.3
+ SOURCE="${SPELL}-${VERSION}.tar.gz"
+ SOURCE_URL[0]=http://${SPELL}.nopcode.org/get/${SOURCE}
+ SOURCE_HASH=md5:624af36d564ff072a43d922dc36c86a6
+SOURCE_DIRECTORY="${BUILD_DIRECTORY}/${SPELL}-${VERSION}"
+ WEB_SITE="http://radare.nopcode.org/ "
+ LICENSE[0]=GPL
+ ENTERED=20080314
+ SHORT="A *nix-like toolchaing for reverse engineering and binary
file manipulation."
+cat << EOF
+radare is a toolchain that aims to create a complete set of utilities
+for handling binary files from the command line. It's mainly a hexadecimal
+editor for the command line but with advanced features. There are extensions
+for debugging processes on x86-32 and ARM, libusb and fd sniffers, binary
+diffing utilities, base format conversions, generating graphs of a program,
+a cross-platform disassembler as an objdump frontend, and more.
+EOF
diff --git a/devel/radare/HISTORY b/devel/radare/HISTORY
new file mode 100644
index 0000000..217e4ff
--- /dev/null
+++ b/devel/radare/HISTORY
@@ -0,0 +1,3 @@
+2008-03-14 Justin Boffemmyer <flux AT sourcemage.org>
+ * DEPENDS, DETAILS, HISTORY: spell created
+
diff --git a/gnome2-apps/gtkdialog/DEPENDS b/gnome2-apps/gtkdialog/DEPENDS
new file mode 100755
index 0000000..1c1666d
--- /dev/null
+++ b/gnome2-apps/gtkdialog/DEPENDS
@@ -0,0 +1 @@
+depends glade
diff --git a/gnome2-apps/gtkdialog/DETAILS b/gnome2-apps/gtkdialog/DETAILS
new file mode 100755
index 0000000..21d8ad1
--- /dev/null
+++ b/gnome2-apps/gtkdialog/DETAILS
@@ -0,0 +1,19 @@
+ SPELL=gtkdialog
+ VERSION=0.7.20
+ SOURCE="${SPELL}-${VERSION}.tar.gz"
+ SOURCE_URL[0]=ftp://linux.pte.hu/pub/${SPELL}/${SOURCE}
+
SOURCE_HASH=sha512:af765dc9c24eeeba56efdc3418ffd4c5482586c717947483626f929810c25aed98e3247945a52de0c8b9f51777a6fd38797e248d157963dc54e25270ac551c15
+SOURCE_DIRECTORY="${BUILD_DIRECTORY}/${SPELL}-${VERSION}"
+ WEB_SITE="http://linux.pte.hu/~pipas/gtkdialog/ "
+ LICENSE[0]=GPL
+ ENTERED=20080314
+ SHORT="A GUI creation system for any language interpreter."
+cat << EOF
+gtkdialog is a GUI creation utility that can be used with an arbitrary
+interpreter. It enables the programmer to describe a graphical user interface
+in a simple XML language, and create callbacks with any interpreter that
+supports either files, standard I/O, or environment variables. It can be
+called as an external program from the interpreter, but can be used as a
+stand-alone framework for the application as well. Stand-alone, bash, and
+awk examples are provided.
+EOF
diff --git a/gnome2-apps/gtkdialog/HISTORY b/gnome2-apps/gtkdialog/HISTORY
new file mode 100644
index 0000000..217e4ff
--- /dev/null
+++ b/gnome2-apps/gtkdialog/HISTORY
@@ -0,0 +1,3 @@
+2008-03-14 Justin Boffemmyer <flux AT sourcemage.org>
+ * DEPENDS, DETAILS, HISTORY: spell created
+



  • [SM-Commit] GIT changes to master grimoire by Justin Boffemmyer (3f2f474f9ac6b0cdfbe8a4d4f91f2a1004823fd7), Justin Boffemmyer, 03/14/2008

Archive powered by MHonArc 2.6.24.

Top of Page