diff options
author | Zbigniew Baniewski <Zbigniew.Baniewski@gmail.com> | 2013-02-11 14:44:56 -0600 |
---|---|---|
committer | Erik Hanson <erik@slackbuilds.org> | 2013-02-14 00:26:56 -0600 |
commit | c14df07dd2ea428d957c2cc495d377c36669df5a (patch) | |
tree | e71ca88d1772673b6b3016148e508a011d79c745 /development | |
parent | a31908b35e86ce7d338f5e0b76004b78d86b0687 (diff) | |
download | slackbuilds-c14df07dd2ea428d957c2cc495d377c36669df5a.tar.gz |
development/4th: Updated for version 3.62.0.
Signed-off-by: Erik Hanson <erik@slackbuilds.org>
Diffstat (limited to 'development')
-rw-r--r-- | development/4th/01-directories.patch (renamed from development/4th/02-directories.patch) | 10 | ||||
-rw-r--r-- | development/4th/01-if_for_64bit.patch | 19 | ||||
-rw-r--r-- | development/4th/4th.SlackBuild | 6 | ||||
-rw-r--r-- | development/4th/4th.info | 8 |
4 files changed, 12 insertions, 31 deletions
diff --git a/development/4th/02-directories.patch b/development/4th/01-directories.patch index a16070aff1..19e2c98354 100644 --- a/development/4th/02-directories.patch +++ b/development/4th/01-directories.patch @@ -1,6 +1,6 @@ -diff -Nur 4th-3.61.2-unix/sources/Makefile 4th-3.61.2-unix.new/sources/Makefile ---- 4th-3.61.2-unix/sources/Makefile 2011-08-18 20:34:47.000000000 +0000 -+++ 4th-3.61.2-unix.new/sources/Makefile 2011-08-20 01:10:29.653081410 +0000 +diff -Nur 4th-3.62.0-unix/sources/Makefile 4th-3.62.0-unix.new/sources/Makefile +--- 4th-3.62.0-unix/sources/Makefile 2012-12-22 12:26:35.000000000 +0000 ++++ 4th-3.62.0-unix.new/sources/Makefile 2013-02-11 15:30:00.531948113 +0000 @@ -16,13 +16,13 @@ # The following variables may need to be changed @@ -21,12 +21,12 @@ diff -Nur 4th-3.61.2-unix/sources/Makefile 4th-3.61.2-unix.new/sources/Makefile # Cross compilation variables LD=$(CROSS)ld -@@ -125,7 +125,7 @@ +@@ -128,7 +128,7 @@ install: mostlyinstall install -Dm644 ../documentation/4th.1 $(MANDIR)/man1/4th.1 - install -Dm644 ../documentation/4tHmanual.txt $(DOCDIR)/4th/ -+ install -Dm644 ../documentation/4tHmanual.txt $(DOCDIR)/4th-3.61.2/ ++ install -Dm644 ../documentation/4tHmanual.txt $(DOCDIR)/4th-3.62.0/ uninstall: -rm -f $(LIBRARIES)/lib4th.{a,so*} diff --git a/development/4th/01-if_for_64bit.patch b/development/4th/01-if_for_64bit.patch deleted file mode 100644 index 51aa0d8a11..0000000000 --- a/development/4th/01-if_for_64bit.patch +++ /dev/null @@ -1,19 +0,0 @@ -diff -Nur 4th-3.61.2-unix/sources/4th.h 4th-3.61.2-unix.new/sources/4th.h ---- 4th-3.61.2-unix/sources/4th.h 2009-11-20 23:52:02.000000000 +0000 -+++ 4th-3.61.2-unix.new/sources/4th.h 2011-08-15 19:55:51.674547949 +0000 -@@ -60,11 +60,11 @@ - #define M4DUPNAM 26 - #define M4CABORT 27 - --#define CELL_MIN LONG_MIN --#define CELL_MAX LONG_MAX --#define strtocell(a,b,c) strtol((a),(b),(c)) -+#define CELL_MIN INT_MIN -+#define CELL_MAX INT_MAX -+#define strtocell(a,b,c) (int)strtol((a),(b),(c)) - --typedef long cell; -+typedef int cell; - typedef unsigned char unit; - - typedef struct { diff --git a/development/4th/4th.SlackBuild b/development/4th/4th.SlackBuild index 0fe35855a4..6ab6296148 100644 --- a/development/4th/4th.SlackBuild +++ b/development/4th/4th.SlackBuild @@ -2,10 +2,10 @@ # Slackware build script for 4th -# Written by Zbigniew Baniewski, zb@ispid.com.pl +# Written by Zbigniew Baniewski <Zbigniew.Baniewski@gmail.com> PRGNAM=4th -VERSION=3.61.2 +VERSION=3.62.0 BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -43,7 +43,7 @@ mkdir -p $TMP $PKG $OUTPUT cd $TMP rm -rf $PRGNAM-$VERSION-unix tar xvf $CWD/$PRGNAM-$VERSION-unix.tar.gz -cat $CWD/02-directories.patch | patch -p0 || exit +cat $CWD/01-directories.patch | patch -p0 || exit cd $PRGNAM-$VERSION-unix/sources chown -R root:root . find . \ diff --git a/development/4th/4th.info b/development/4th/4th.info index 450fb86d58..2c4cb640ef 100644 --- a/development/4th/4th.info +++ b/development/4th/4th.info @@ -1,10 +1,10 @@ PRGNAM="4th" -VERSION="3.61.2" +VERSION="3.62.0" HOMEPAGE="http://thebeez.home.xs4all.nl/4tH/" -DOWNLOAD="http://4th.googlecode.com/files/4th-3.61.2-unix.tar.gz" -MD5SUM="b2730f7b68c91510e1b3762ab08d641b" +DOWNLOAD="http://4th.googlecode.com/files/4th-3.62.0-unix.tar.gz" +MD5SUM="7dea1c189e70f47730c279c0cda323a0" DOWNLOAD_x86_64="" MD5SUM_x86_64="" REQUIRES="" MAINTAINER="Zbigniew Baniewski" -EMAIL="zb@ispid.com.pl" +EMAIL="Zbigniew.Baniewski@gmail.com" |