Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Ladislav Hagara (e4f11b9d1723f5c09c04929b3a320be47564c2e6)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Ladislav Hagara <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Ladislav Hagara (e4f11b9d1723f5c09c04929b3a320be47564c2e6)
  • Date: Thu, 12 Mar 2009 08:47:04 -0500

GIT changes to master grimoire by Ladislav Hagara <ladislav.hagara AT unob.cz>:

utils/usbview/DEPENDS | 2 -
utils/usbview/DETAILS | 11 +++++----
utils/usbview/HISTORY | 5 ++++
utils/usbview/PREPARE | 2 -
utils/usbview/PRE_BUILD | 8 ------
utils/usbview/diff | 57
------------------------------------------------
6 files changed, 13 insertions(+), 72 deletions(-)

New commits:
commit e4f11b9d1723f5c09c04929b3a320be47564c2e6
Author: Ladislav Hagara <ladislav.hagara AT unob.cz>
Commit: Ladislav Hagara <ladislav.hagara AT unob.cz>

usbview 1.1

diff --git a/utils/usbview/DEPENDS b/utils/usbview/DEPENDS
index 3b8e993..edffa0e 100755
--- a/utils/usbview/DEPENDS
+++ b/utils/usbview/DEPENDS
@@ -1 +1 @@
-depends $USB_GTK
+depends gtk+2
diff --git a/utils/usbview/DETAILS b/utils/usbview/DETAILS
index da76d50..db76acf 100755
--- a/utils/usbview/DETAILS
+++ b/utils/usbview/DETAILS
@@ -1,14 +1,17 @@
SPELL=usbview
- VERSION=1.0
+ VERSION=1.1
SOURCE=$SPELL-$VERSION.tar.gz
SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION
SOURCE_URL[0]=http://www.kroah.com/linux-usb/$SOURCE
WEB_SITE=http://www.kroah.com/linux-usb/
ENTERED=20020909
-
SOURCE_HASH=sha512:eb54ca9d5882f75bb0e04a183a6437adc31a71dcc44e0fa453ccf5d9f27c3e609f19eb702684d8ce16bae02df2fb3eaab0a450c83e7825084c034aea8a8b9c2c
+
SOURCE_HASH=sha512:5d6a3d1d8054a9a5cc9e28d97e52d843aaeda3251da3cf33d00e938695b6296106456192dddc48fb02f1e6490e89ebb2a096f68faa64ac10144a80106d986a39
LICENSE=GPL
KEYWORDS="usb utils"
- SHORT="USBView is a GTK program that displays the topography of
the devices that are plugged into the USB bus on a Linux machine."
+ SHORT="USB topology and device viewer"
cat << EOF
-USBView is a GTK program that displays the topography of the devices that
are plugged into the USB bus on a Linux machine. It also displays information
on each of the devices. This can be useful to determine if a device is
working properly or not.
+USBView is a GTK program that displays the topography of the devices
+that are plugged into the USB bus on a Linux machine. It also displays
+information on each of the devices. This can be useful to determine if
+a device is working properly or not.
EOF
diff --git a/utils/usbview/HISTORY b/utils/usbview/HISTORY
index 4d706c6..b1740a1 100644
--- a/utils/usbview/HISTORY
+++ b/utils/usbview/HISTORY
@@ -1,3 +1,8 @@
+2009-03-12 Ladislav Hagara <hgr AT vabo.cz>
+ * DETAILS: 1.1, SHORT changed
+ * PREPARE, DEPENDS: depends only on gtk+2 now
+ * PRE_BUILD, diff: removed
+
2006-10-03 Juuso Alasuutari <iuso AT sourcemage.org>
* DETAILS: [automated] Removed UPDATED.

diff --git a/utils/usbview/PREPARE b/utils/usbview/PREPARE
deleted file mode 100755
index 14aa80f..0000000
--- a/utils/usbview/PREPARE
+++ /dev/null
@@ -1,2 +0,0 @@
-#config_query USB_GTK2 "use gtk+2?" n
-config_query_list USB_GTK "which gtk?" "gtk+" "gtk+2"
diff --git a/utils/usbview/PRE_BUILD b/utils/usbview/PRE_BUILD
deleted file mode 100755
index 915157a..0000000
--- a/utils/usbview/PRE_BUILD
+++ /dev/null
@@ -1,8 +0,0 @@
-default_pre_build &&
-if [ "$USB_GTK" == "gtk+2" ]; then
-cd $SOURCE_DIRECTORY &&
-patch -p1 <$SPELL_DIRECTORY/diff &&
-aclocal --force &&
-automake -af &&
-autoreconf
-fi
diff --git a/utils/usbview/diff b/utils/usbview/diff
deleted file mode 100644
index f154f2e..0000000
--- a/utils/usbview/diff
+++ /dev/null
@@ -1,57 +0,0 @@
-diff -uNr usbview-1.0/configure.in usbview-1.0.copy/configure.in
---- usbview-1.0/configure.in 2000-12-06 07:48:28.000000000 +0100
-+++ usbview-1.0.copy/configure.in 2005-12-27 12:39:48.000000000 +0100
-@@ -9,9 +9,10 @@
- AM_PROG_CC_STDC
- AC_HEADER_STDC
-
--AM_PATH_GTK(1.2.0, ,
-- AC_MSG_ERROR(Cannot find GTK: Is gtk-config in path?))
--
-+PKG_CHECK_MODULES(GTK2, gtk+-2.0 >= 2.8)
-+AC_SUBST(GTK2_CFLAGS)
-+AC_SUBST(GTK2_LIBS)
-+dnl AC_DEFINE(HAVE_GTK24, 1, [Have version 2.4 or greater of GTK])
-
- dnl Set PACKAGE_LOCALE_DIR in config.h.
- if test "x${prefix}" = "xNONE"; then
-diff -uNr usbview-1.0/Makefile.am usbview-1.0.copy/Makefile.am
---- usbview-1.0/Makefile.am 2000-12-06 07:47:26.000000000 +0100
-+++ usbview-1.0.copy/Makefile.am 2005-12-27 12:46:18.000000000 +0100
-@@ -1,7 +1,7 @@
- ## Process this file with automake to produce Makefile.in
-
- INCLUDES = \
-- @GTK_CFLAGS@
-+ @GTK2_CFLAGS@
-
- VERSION = 1.0
-
-@@ -20,5 +20,5 @@
- usbview_logo.xcf \
- usbview.spec
-
--usbview_LDADD = @GTK_LIBS@
-+usbview_LDADD = @GTK2_LIBS@
-
-diff -uNr usbview-1.0/usbtree.c usbview-1.0.copy/usbtree.c
---- usbview-1.0/usbtree.c 2000-10-24 10:15:22.000000000 +0200
-+++ usbview-1.0.copy/usbtree.c 2005-12-27 13:51:39.000000000 +0100
-@@ -76,7 +76,7 @@
-
- /* freeze the display */
- /* this keeps the annoying scroll from happening */
-- gtk_text_freeze (GTK_TEXT (textDescription));
-+/* gtk_text_freeze (GTK_TEXT (textDescription));*/
-
- string = (char *)g_malloc (1000);
-
-@@ -195,7 +195,7 @@
- gtk_editable_set_position (GTK_EDITABLE(textDescription), 0);
-
- /* thaw the display */
-- gtk_text_thaw (GTK_TEXT (textDescription));
-+/* gtk_text_thaw (GTK_TEXT (textDescription));*/
-
- /* clean up our string */
- g_free (string);



  • [SM-Commit] GIT changes to master grimoire by Ladislav Hagara (e4f11b9d1723f5c09c04929b3a320be47564c2e6), Ladislav Hagara, 03/12/2009

Archive powered by MHonArc 2.6.24.

Top of Page