diff options
author | dsomero <xgizzmo@slackbuilds.org> | 2012-09-06 14:50:15 -0400 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2012-09-06 17:13:43 -0500 |
commit | f048c42e966a9a8061e780f23b7b194ec5cb06ea (patch) | |
tree | e6108db83e122b091c7f99de0e916bb0a004354c /academic | |
parent | 26ab417fb8a9945421887ebf3f05a0c015cb7d03 (diff) | |
download | slackbuilds-f048c42e966a9a8061e780f23b7b194ec5cb06ea.tar.gz |
academic/geda-gaf: Updated for version 1.6.2
Signed-off-by: dsomero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'academic')
-rw-r--r-- | academic/geda-gaf/geda-gaf.SlackBuild | 16 | ||||
-rw-r--r-- | academic/geda-gaf/geda-gaf.info | 6 | ||||
-rw-r--r-- | academic/geda-gaf/glib-single-include.patch | 15 |
3 files changed, 26 insertions, 11 deletions
diff --git a/academic/geda-gaf/geda-gaf.SlackBuild b/academic/geda-gaf/geda-gaf.SlackBuild index 71c10098e2..8002c40bc2 100644 --- a/academic/geda-gaf/geda-gaf.SlackBuild +++ b/academic/geda-gaf/geda-gaf.SlackBuild @@ -5,16 +5,14 @@ # Written by Stephen Van Berg stephen_van_berg@earlicker.com PRGNAM=geda-gaf -VERSION=${VERSION:-1.6.0} +VERSION=${VERSION:-1.6.2} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} -# Automatically determine the architecture we're building on: if [ -z "$ARCH" ]; then case "$( uname -m )" in i?86) ARCH=i486 ;; arm*) ARCH=arm ;; - # Unless $ARCH is already set, use uname -m for all other archs: *) ARCH=$( uname -m ) ;; esac fi @@ -53,6 +51,10 @@ find . \ \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ -exec chmod 644 {} \; +# Starting with glib 2.32 it is now mandatory to +# include glib.h instead of individual headers. +patch -p1 -i $CWD/glib-single-include.patch + CFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS" \ ./configure \ @@ -69,13 +71,11 @@ make install DESTDIR=$PKG rm -f $PKG/usr/share/applications/mimeinfo.cache -find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ +find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \ | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true -( cd $PKG/usr/man - find . -type f -exec gzip -9 {} \; - for i in $( find . -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done -) +find $PKG/usr/man -type f -exec gzip -9 {} \; +for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION cp -a \ diff --git a/academic/geda-gaf/geda-gaf.info b/academic/geda-gaf/geda-gaf.info index c67528d486..d21e60b04f 100644 --- a/academic/geda-gaf/geda-gaf.info +++ b/academic/geda-gaf/geda-gaf.info @@ -1,8 +1,8 @@ PRGNAM="geda-gaf" -VERSION="1.6.0" +VERSION="1.6.2" HOMEPAGE="http://gpleda.org" -DOWNLOAD="http://geda.seul.org/release/v1.6/1.6.0/geda-gaf-1.6.0.tar.gz" -MD5SUM="1dacc71407e69d77eaf4c1115f5bcd56" +DOWNLOAD="http://geda.seul.org/release/v1.6/1.6.2/geda-gaf-1.6.2.tar.gz" +MD5SUM="35ae86aebc174ec1fc03863fde4c843c" DOWNLOAD_x86_64="" MD5SUM_x86_64="" REQUIRES="" diff --git a/academic/geda-gaf/glib-single-include.patch b/academic/geda-gaf/glib-single-include.patch new file mode 100644 index 0000000000..f2f05e2323 --- /dev/null +++ b/academic/geda-gaf/glib-single-include.patch @@ -0,0 +1,15 @@ +Index: geda-gaf-1.6.2/libgeda/src/s_path.c +=================================================================== +--- geda-gaf-1.6.2.orig/libgeda/src/s_path.c ++++ geda-gaf-1.6.2/libgeda/src/s_path.c +@@ -37,9 +37,7 @@ + #include <stdlib.h> + #include <string.h> + +-#include <glib/gmem.h> +-#include <glib/gmessages.h> +-#include <glib/gtypes.h> ++#include <glib.h> + + #include "libgeda_priv.h" + |