diff options
author | B. Watson <yalhcru@gmail.com> | 2013-06-26 23:17:11 -0300 |
---|---|---|
committer | Niels Horn <niels.horn@slackbuilds.org> | 2013-06-26 23:17:11 -0300 |
commit | af80afa9a435ee154859a7e77fab549759106140 (patch) | |
tree | 8065912c9e67ff3c334a0cbf25293ec4b2f5822b /games | |
parent | 1f7212e92da560a6c555c9cdd0fc500ee4ef28d4 (diff) | |
download | slackbuilds-af80afa9a435ee154859a7e77fab549759106140.tar.gz |
games/pentagram: Updated for version 20130617_svn.
Signed-off-by: Niels Horn <niels.horn@slackbuilds.org>
Diffstat (limited to 'games')
-rw-r--r-- | games/pentagram/pentagram.SlackBuild | 5 | ||||
-rw-r--r-- | games/pentagram/pentagram.info | 6 | ||||
-rw-r--r-- | games/pentagram/pentagram_gcc47.patch | 46 |
3 files changed, 4 insertions, 53 deletions
diff --git a/games/pentagram/pentagram.SlackBuild b/games/pentagram/pentagram.SlackBuild index 15092bbb19..66dfa7c7c5 100644 --- a/games/pentagram/pentagram.SlackBuild +++ b/games/pentagram/pentagram.SlackBuild @@ -7,7 +7,7 @@ # Licensed under the WTFPL. See http://www.wtfpl.net/txt/copying/ for details. PRGNAM=pentagram -VERSION=${VERSION:-20110229_svn} +VERSION=${VERSION:-20130617_svn} BUILD=${BUILD:-2} TAG=${TAG:-_SBo} @@ -53,9 +53,6 @@ find . \ \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ -exec chmod 644 {} \; -# Patch to build against gcc-4.7 -patch -p1 < $CWD/pentagram_gcc47.patch - ./bootstrap # The extra scalers make the binary about 50% bigger (not enough diff --git a/games/pentagram/pentagram.info b/games/pentagram/pentagram.info index d5b13aa0f3..91860908c2 100644 --- a/games/pentagram/pentagram.info +++ b/games/pentagram/pentagram.info @@ -1,9 +1,9 @@ PRGNAM="pentagram" -VERSION="20110229_svn" +VERSION="20130617_svn" HOMEPAGE="http://pentagram.sourceforge.net/" -DOWNLOAD="http://urchlay.naptime.net/slackstuff/src/pentagram-20110229_svn.tar.xz" +DOWNLOAD="http://urchlay.naptime.net/~urchlay/src/pentagram-20130617_svn.tar.xz" DOWNLOAD_x86_64="" -MD5SUM="b665aec67ed7bceb97581cdb90675521" +MD5SUM="7786306d42cf27b7f855cbef3f637864" MD5SUM_x86_64="" REQUIRES="" MAINTAINER="B. Watson" diff --git a/games/pentagram/pentagram_gcc47.patch b/games/pentagram/pentagram_gcc47.patch deleted file mode 100644 index 153c40ea6d..0000000000 --- a/games/pentagram/pentagram_gcc47.patch +++ /dev/null @@ -1,46 +0,0 @@ ---- pentagram-20110229_svn/misc/istring.h 2004-11-14 11:09:40.000000000 -0200 -+++ pentagram-20110229_svn_patched/misc/istring.h 2012-09-16 00:36:09.000000000 -0300 -@@ -143,37 +143,37 @@ - - _Myt& operator=(const _Myt& _Right) - { // assign _Right -- assign(_Right); -+ this->assign(_Right); - return (*this); - } - - _Myt& operator=(const _Elem *_Ptr) - { // assign [_Ptr, <null>) -- assign(_Ptr); -+ this->assign(_Ptr); - return (*this); - } - - _Myt& operator=(_Elem _Ch) - { // assign 1 * _Ch -- assign(1, _Ch); -+ this->assign(1, _Ch); - return (*this); - } - - _Myt& operator+=(const _Myt& _Right) - { // append _Right -- append(_Right); -+ this->append(_Right); - return (*this); - } - - _Myt& operator+=(const _Elem *_Ptr) - { // append [_Ptr, <null>) -- append(_Ptr); -+ this->append(_Ptr); - return (*this); - } - - _Myt& operator+=(_Elem _Ch) - { // append 1 * _Ch -- append(static_cast<size_type>(1), _Ch); -+ this->append(static_cast<size_type>(1), _Ch); - return (*this); - } - |