Skip to Content.
Sympa Menu

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

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 (bac3782876dc4a8628e3b0baeacb619f39101fc6)
  • Date: Sat, 3 May 2008 08:43:29 -0500

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

dev/null |binary
graphics/gbdfed/DETAILS | 8 -
graphics/gbdfed/HISTORY | 5
graphics/gbdfed/PRE_BUILD | 10 -
graphics/gbdfed/gbdfed-1.3-patch1 | 188
---------------------------------
graphics/gbdfed/gbdfed-1.3.tar.bz2.sig | 0
graphics/gbdfed/gbdfed-1.4.tbz2.sig |binary
graphics/gbdfed/patch-Makefile_in | 12 --
8 files changed, 9 insertions(+), 214 deletions(-)

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

gbdfed: added forgotten sig

commit 069661fd650e3e71eab80ae1615536d73adf847b
Author: Vlad Glagolev <stealth AT sourcemage.org>
Commit: Vlad Glagolev <stealth AT sourcemage.org>

gbdfed: => 1.4

diff --git a/graphics/gbdfed/DETAILS b/graphics/gbdfed/DETAILS
index 49208f7..d0f7c53 100755
--- a/graphics/gbdfed/DETAILS
+++ b/graphics/gbdfed/DETAILS
@@ -1,10 +1,10 @@
SPELL=gbdfed
- VERSION=1.3
- SOURCE=$SPELL-$VERSION.tar.bz2
- SOURCE_URL[0]=http://crl.nmsu.edu/~mleisher/$SOURCE
+ VERSION=1.4
+ SOURCE=$SPELL-$VERSION.tbz2
+ SOURCE_URL[0]=http://www.math.nmsu.edu/~mleisher/Software/gbdfed/$SOURCE
SOURCE_GPG=gurus.gpg:$SOURCE.sig
SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION
- WEB_SITE=http://crl.nmsu.edu/~mleisher/gbdfed.html
+ WEB_SITE=http://www.math.nmsu.edu/~mleisher/Software/gbdfed.html
ENTERED=20060531
LICENSE[0]=MIT
SHORT="GTK+2-based pixel (bitmap) font editor"
diff --git a/graphics/gbdfed/HISTORY b/graphics/gbdfed/HISTORY
index e972cf6..5178597 100644
--- a/graphics/gbdfed/HISTORY
+++ b/graphics/gbdfed/HISTORY
@@ -1,3 +1,8 @@
+2008-05-03 Vlad Glagolev <stealth AT sourcemage.org>
+ * DETAILS: Fixed SOURCE_URL[0], WEBSITE
+ updated spell to 1.4
+ * PRE_BUILD: removed previous patches
+
2008-02-25 Vlad Glagolev <stealth AT sourcemage.org>
* INSTALL: added 48x48 png icon

diff --git a/graphics/gbdfed/PRE_BUILD b/graphics/gbdfed/PRE_BUILD
deleted file mode 100755
index 9672af8..0000000
--- a/graphics/gbdfed/PRE_BUILD
+++ /dev/null
@@ -1,10 +0,0 @@
-default_pre_build &&
-cd $SOURCE_DIRECTORY &&
-
-# Apply author's bugfix patch released so far
-patch -p0 < $SCRIPT_DIRECTORY/gbdfed-1.3-patch1 &&
-
-# Apply our patch for new GTK+2
-patch -p0 < $SCRIPT_DIRECTORY/patch-Makefile_in &&
-
-sed -i "s:1.2:1.3:" htext.h
diff --git a/graphics/gbdfed/gbdfed-1.3-patch1
b/graphics/gbdfed/gbdfed-1.3-patch1
deleted file mode 100644
index c5d9335..0000000
--- a/graphics/gbdfed/gbdfed-1.3-patch1
+++ /dev/null
@@ -1,188 +0,0 @@
---- bdf.c.orig 2007-07-05 16:01:49.000000000 -0600
-+++ bdf.c 2007-07-05 16:17:18.000000000 -0600
-@@ -1092,7 +1092,7 @@
- static void
- _bdf_add_property(bdf_font_t *font, char *name, char *value)
- {
-- unsigned int propid;
-+ unsigned long propid;
- hashnode hn;
- int len;
- bdf_property_t *prop, *fp;
-@@ -1105,7 +1105,7 @@
- * The property already exists in the font, so simply replace
- * the value of the property with the current value.
- */
-- fp = font->props + (unsigned int) hn->data;
-+ fp = font->props + (unsigned long) hn->data;
-
- switch (fp->format) {
- case BDF_ATOM:
-@@ -1159,7 +1159,7 @@
- font->props_size++;
- }
-
-- propid = (unsigned int) hn->data;
-+ propid = (unsigned long) hn->data;
- if (propid >= _num_bdf_properties)
- prop = user_props + (propid - _num_bdf_properties);
- else
-@@ -1199,7 +1199,7 @@
- /*
- * Add the property to the font property table.
- */
-- hash_insert(fp->name, (void *) font->props_used,
-+ hash_insert(fp->name, (void *) ((unsigned long) font->props_used),
- (hashtable *) font->internal);
-
- font->props_used++;
-@@ -1883,7 +1883,7 @@
- void
- bdf_setup(void)
- {
-- unsigned int i;
-+ unsigned long i;
- bdf_property_t *prop;
-
- hash_init(&proptbl);
-@@ -3206,7 +3206,7 @@
- void
- bdf_create_property(char *name, int format)
- {
-- unsigned int n;
-+ unsigned long n;
- bdf_property_t *p;
-
- /*
-@@ -3243,7 +3243,7 @@
- bdf_get_property(char *name)
- {
- hashnode hn;
-- unsigned int propid;
-+ unsigned long propid;
-
- if (name == 0 || *name == 0)
- return 0;
-@@ -3251,7 +3251,7 @@
- if ((hn = hash_lookup(name, &proptbl)) == 0)
- return 0;
-
-- propid = (unsigned int) hn->data;
-+ propid = (unsigned long) hn->data;
- if (propid >= _num_bdf_properties)
- return user_props + (propid - _num_bdf_properties);
- return _bdf_properties + propid;
-@@ -3333,7 +3333,7 @@
- bdf_add_font_property(bdf_font_t *font, bdf_property_t *property)
- {
- int len;
-- unsigned int propid;
-+ unsigned long propid;
- hashnode hn;
- bdf_property_t *p, *ip;
-
-@@ -3360,7 +3360,7 @@
- * If the property exists and is a user defined property, make sure
- * its format is updated to match the property being added.
- */
-- propid = (unsigned int) hn->data;
-+ propid = (unsigned long) hn->data;
- if (propid >= _num_bdf_properties) {
- p = user_props + (propid - _num_bdf_properties);
- if (p->format != property->format)
-@@ -3376,7 +3376,7 @@
- /*
- * Changing an existing property value.
- */
-- p = font->props + ((unsigned int) hn->data);
-+ p = font->props + ((unsigned long) hn->data);
-
- /*
- * If the format changed, then free the atom value if the original
-@@ -3433,7 +3433,7 @@
- * name of the property.
- */
- hn = hash_lookup(property->name, &proptbl);
-- propid = (unsigned int) hn->data;
-+ propid = (unsigned long) hn->data;
- if (propid >= _num_bdf_properties)
- ip = user_props + (propid - _num_bdf_properties);
- else
-@@ -3480,7 +3480,7 @@
- /*
- * Now insert it into the internal hash table.
- */
-- hash_insert(p->name, (void *) font->props_used,
-+ hash_insert(p->name, (void *) ((unsigned long) font->props_used),
- (hashtable *) font->internal);
- font->props_used++;
- }
-@@ -3552,7 +3552,7 @@
- bdf_delete_font_property(bdf_font_t *font, char *name)
- {
- hashnode hn;
-- unsigned int off;
-+ unsigned long off;
- bdf_property_t *p;
-
- if (font == 0 || name == 0 || *name == 0 || font->props_used == 0)
-@@ -3561,7 +3561,7 @@
- if ((hn = hash_lookup(name, (hashtable *) font->internal)) == 0)
- return;
-
-- off = (unsigned int) hn->data;
-+ off = (unsigned long) hn->data;
- p = font->props + off;
-
- /*
-@@ -3616,7 +3616,7 @@
- return 0;
-
- hn = hash_lookup(name, (hashtable *) font->internal);
-- return (hn) ? (font->props + ((unsigned int) hn->data)) : 0;
-+ return (hn) ? (font->props + ((unsigned long) hn->data)) : 0;
- }
-
- typedef struct {
---- bdfpsf.c.orig 2007-07-05 16:33:12.000000000 -0600
-+++ bdfpsf.c 2007-07-05 16:33:15.000000000 -0600
-@@ -105,7 +105,7 @@
- {
- int i, more, c0, c1, cnt;
- unsigned int code;
-- unsigned char buf[4];
-+ unsigned char buf[6];
- bdf_glyph_t *gp;
-
- gp = font->glyphs;
---- guifile.c.orig 2007-07-05 16:18:00.000000000 -0600
-+++ guifile.c 2007-07-05 16:22:07.000000000 -0600
-@@ -1858,7 +1858,7 @@
- /*
- * Now set up a file name.
- */
-- sprintf(buffer1, "%.*s.bdf", dot - file, file);
-+ sprintf(buffer1, "%.*s.bdf", (int) (dot - file), file);
-
- /*
- * Delete the file and path names so they can be updated.
-Index: guigedit.c
-===================================================================
---- guigedit.c (revision 49)
-+++ guigedit.c (working copy)
-@@ -1293,7 +1293,6 @@
- * until we explicitly get rid of it later.
- */
- g_object_ref(G_OBJECT(ge->ops.rotate_adj));
-- gtk_object_sink(GTK_OBJECT(ge->ops.rotate_adj));
-
- ge->ops.shear_adj =
- (GtkAdjustment *) gtk_adjustment_new(0.0, -20.0, 20.0, 1.0,
-@@ -1303,7 +1302,6 @@
- * until we explicitly get rid of it later.
- */
- g_object_ref(G_OBJECT(ge->ops.shear_adj));
-- gtk_object_sink(GTK_OBJECT(ge->ops.shear_adj));
-
- hbox = gtk_hbox_new(FALSE, 0);
- label = gtk_label_new("Degrees:");
diff --git a/graphics/gbdfed/gbdfed-1.3.tar.bz2.sig
b/graphics/gbdfed/gbdfed-1.3.tar.bz2.sig
deleted file mode 100644
index adc3aca..0000000
Binary files a/graphics/gbdfed/gbdfed-1.3.tar.bz2.sig and /dev/null differ
diff --git a/graphics/gbdfed/gbdfed-1.4.tbz2.sig
b/graphics/gbdfed/gbdfed-1.4.tbz2.sig
new file mode 100644
index 0000000..21c2c56
Binary files /dev/null and b/graphics/gbdfed/gbdfed-1.4.tbz2.sig differ
diff --git a/graphics/gbdfed/patch-Makefile_in
b/graphics/gbdfed/patch-Makefile_in
deleted file mode 100644
index e21d911..0000000
--- a/graphics/gbdfed/patch-Makefile_in
+++ /dev/null
@@ -1,12 +0,0 @@
---- Makefile.in.orig 2006-11-08 00:41:40.000000000 +0300
-+++ Makefile.in 2007-12-20 08:41:16.938141677 +0300
-@@ -32,8 +32,7 @@
- CFLAGS = @XX_CFLAGS@ @CFLAGS@
-
- DEFINES = @DEFINES@ -DG_DISABLE_DEPRECATED \
-- -DGDK_DISABLE_DEPRECATED -DGDK_PIXBUF_DISABLE_DEPRECATED \
-- -DGTK_DISABLE_DEPRECATED
-+ -DGDK_DISABLE_DEPRECATED -DGDK_PIXBUF_DISABLE_DEPRECATED
-
- SRCS = bdf.c bdfcons.c bdffnt.c bdfgname.c bdfgrab.c bdfgrid.c bdfotf.c \
- bdfpkgf.c bdfpsf.c @HBFSRC@ \



  • [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (bac3782876dc4a8628e3b0baeacb619f39101fc6), Vlad Glagolev, 05/03/2008

Archive powered by MHonArc 2.6.24.

Top of Page