[arch-commits] Commit in steghide/repos (20 files)

Lukas Fleischer lfleischer at nymeria.archlinux.org
Tue Jul 1 23:50:40 UTC 2014


    Date: Wednesday, July 2, 2014 @ 01:50:39
  Author: lfleischer
Revision: 114565

archrelease: copy trunk to community-i686, community-x86_64

Added:
  steghide/repos/community-i686/ChangeLog
    (from rev 114564, steghide/trunk/ChangeLog)
  steghide/repos/community-i686/PKGBUILD
    (from rev 114564, steghide/trunk/PKGBUILD)
  steghide/repos/community-i686/buildsystem.patch
    (from rev 114564, steghide/trunk/buildsystem.patch)
  steghide/repos/community-i686/gcc-4.2.patch
    (from rev 114564, steghide/trunk/gcc-4.2.patch)
  steghide/repos/community-i686/steghide-climits.patch
    (from rev 114564, steghide/trunk/steghide-climits.patch)
  steghide/repos/community-x86_64/ChangeLog
    (from rev 114564, steghide/trunk/ChangeLog)
  steghide/repos/community-x86_64/PKGBUILD
    (from rev 114564, steghide/trunk/PKGBUILD)
  steghide/repos/community-x86_64/buildsystem.patch
    (from rev 114564, steghide/trunk/buildsystem.patch)
  steghide/repos/community-x86_64/gcc-4.2.patch
    (from rev 114564, steghide/trunk/gcc-4.2.patch)
  steghide/repos/community-x86_64/steghide-climits.patch
    (from rev 114564, steghide/trunk/steghide-climits.patch)
Deleted:
  steghide/repos/community-i686/ChangeLog
  steghide/repos/community-i686/PKGBUILD
  steghide/repos/community-i686/buildsystem.patch
  steghide/repos/community-i686/gcc-4.2.patch
  steghide/repos/community-i686/steghide-climits.patch
  steghide/repos/community-x86_64/ChangeLog
  steghide/repos/community-x86_64/PKGBUILD
  steghide/repos/community-x86_64/buildsystem.patch
  steghide/repos/community-x86_64/gcc-4.2.patch
  steghide/repos/community-x86_64/steghide-climits.patch

-----------------------------------------+
 /ChangeLog                              |    8 +
 /PKGBUILD                               |   88 +++++++++++++++++
 /buildsystem.patch                      |   20 ++++
 /gcc-4.2.patch                          |  150 ++++++++++++++++++++++++++++++
 /steghide-climits.patch                 |   22 ++++
 community-i686/ChangeLog                |    4 
 community-i686/PKGBUILD                 |   44 --------
 community-i686/buildsystem.patch        |   10 --
 community-i686/gcc-4.2.patch            |   75 ---------------
 community-i686/steghide-climits.patch   |   11 --
 community-x86_64/ChangeLog              |    4 
 community-x86_64/PKGBUILD               |   44 --------
 community-x86_64/buildsystem.patch      |   10 --
 community-x86_64/gcc-4.2.patch          |   75 ---------------
 community-x86_64/steghide-climits.patch |   11 --
 15 files changed, 288 insertions(+), 288 deletions(-)

Deleted: community-i686/ChangeLog
===================================================================
--- community-i686/ChangeLog	2014-07-01 23:50:22 UTC (rev 114564)
+++ community-i686/ChangeLog	2014-07-01 23:50:39 UTC (rev 114565)
@@ -1,4 +0,0 @@
-2007-06-28 tardo <tardo at nagi-fanboi.net>
-* Built for x86_64
-* Added gcc 4.2 patch, with help from gentoo bug #178134
-* Fixed erroneous buildsystem.patch that removed path to mkinstalldirs

Copied: steghide/repos/community-i686/ChangeLog (from rev 114564, steghide/trunk/ChangeLog)
===================================================================
--- community-i686/ChangeLog	                        (rev 0)
+++ community-i686/ChangeLog	2014-07-01 23:50:39 UTC (rev 114565)
@@ -0,0 +1,4 @@
+2007-06-28 tardo <tardo at nagi-fanboi.net>
+* Built for x86_64
+* Added gcc 4.2 patch, with help from gentoo bug #178134
+* Fixed erroneous buildsystem.patch that removed path to mkinstalldirs

Deleted: community-i686/PKGBUILD
===================================================================
--- community-i686/PKGBUILD	2014-07-01 23:50:22 UTC (rev 114564)
+++ community-i686/PKGBUILD	2014-07-01 23:50:39 UTC (rev 114565)
@@ -1,44 +0,0 @@
-# $Id$
-# Maintainer: Lukas Fleischer <archlinux at cryptocrack dot de>
-# Contributor: Tom Newsom <Jeepster at gmx.co.uk>
-# Contributor: Jason Chu <jason at archlinux.org>
-# Contributor: Daniel J Griffiths <ghost1227 at archlinux.us>
-
-pkgname=steghide
-pkgver=0.5.1
-pkgrel=6
-pkgdesc='Embeds a message in a file by replacing some of the least significant bits'
-arch=('i686' 'x86_64')
-url='http://steghide.sourceforge.net'
-license=('GPL')
-depends=('libmcrypt' 'gcc-libs' 'mhash' 'libjpeg' 'zlib')
-source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz"
-        'buildsystem.patch'
-        'gcc-4.2.patch'
-         "${pkgname}-climits.patch")
-md5sums=('5be490e24807d921045780fd8cc446b3'
-         '14f5e054d71c91262bb1140288043df8'
-         'fd861dc5a0a392c6c94a61e85ad74f29'
-         '897ce18edd008293a3328bc3f88775b3')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  patch -p1 < ../buildsystem.patch
-
-  # this patch courtesy gentoo bug tracker #178134
-  patch -Np1 -i ../gcc-4.2.patch
-  patch -Np1 -i ../steghide-climits.patch
-
-  # touch files needed by GNU Autotools
-  touch NEWS AUTHORS ChangeLog
-
-  autoreconf -i
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-}

Copied: steghide/repos/community-i686/PKGBUILD (from rev 114564, steghide/trunk/PKGBUILD)
===================================================================
--- community-i686/PKGBUILD	                        (rev 0)
+++ community-i686/PKGBUILD	2014-07-01 23:50:39 UTC (rev 114565)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Lukas Fleischer <archlinux at cryptocrack dot de>
+# Contributor: Tom Newsom <Jeepster at gmx.co.uk>
+# Contributor: Jason Chu <jason at archlinux.org>
+# Contributor: Daniel J Griffiths <ghost1227 at archlinux.us>
+
+pkgname=steghide
+pkgver=0.5.1
+pkgrel=7
+pkgdesc='Embeds a message in a file by replacing some of the least significant bits'
+arch=('i686' 'x86_64')
+url='http://steghide.sourceforge.net'
+license=('GPL')
+depends=('libmcrypt' 'gcc-libs' 'mhash' 'libjpeg' 'zlib')
+source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz"
+        'buildsystem.patch'
+        'gcc-4.2.patch'
+         "${pkgname}-climits.patch")
+md5sums=('5be490e24807d921045780fd8cc446b3'
+         '14f5e054d71c91262bb1140288043df8'
+         'fd861dc5a0a392c6c94a61e85ad74f29'
+         '897ce18edd008293a3328bc3f88775b3')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  patch -p1 < ../buildsystem.patch
+
+  # this patch courtesy gentoo bug tracker #178134
+  patch -Np1 -i ../gcc-4.2.patch
+  patch -Np1 -i ../steghide-climits.patch
+
+  # touch files needed by GNU Autotools
+  touch NEWS AUTHORS ChangeLog
+
+  autoreconf -i
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+}

Deleted: community-i686/buildsystem.patch
===================================================================
--- community-i686/buildsystem.patch	2014-07-01 23:50:22 UTC (rev 114564)
+++ community-i686/buildsystem.patch	2014-07-01 23:50:39 UTC (rev 114565)
@@ -1,10 +0,0 @@
-diff -urN steghide-0.5.1/src/Makefile.am steghide-0.5.1-new/src/Makefile.am
---- steghide-0.5.1/src/Makefile.am	2003-09-28 09:33:21.000000000 -0700
-+++ steghide-0.5.1-new/src/Makefile.am	2003-10-30 21:05:40.000000000 -0800
-@@ -33,5 +33,5 @@
- WavPCMSampleValue.cc error.cc main.cc msg.cc SMDConstructionHeuristic.cc
- LIBS = @LIBINTL@ @LIBS@
- localedir = $(datadir)/locale
--LIBTOOL = $(SHELL) libtool
-+LIBTOOL = /usr/bin/libtool
- MAINTAINERCLEANFILES = Makefile.in

Copied: steghide/repos/community-i686/buildsystem.patch (from rev 114564, steghide/trunk/buildsystem.patch)
===================================================================
--- community-i686/buildsystem.patch	                        (rev 0)
+++ community-i686/buildsystem.patch	2014-07-01 23:50:39 UTC (rev 114565)
@@ -0,0 +1,10 @@
+diff -urN steghide-0.5.1/src/Makefile.am steghide-0.5.1-new/src/Makefile.am
+--- steghide-0.5.1/src/Makefile.am	2003-09-28 09:33:21.000000000 -0700
++++ steghide-0.5.1-new/src/Makefile.am	2003-10-30 21:05:40.000000000 -0800
+@@ -33,5 +33,5 @@
+ WavPCMSampleValue.cc error.cc main.cc msg.cc SMDConstructionHeuristic.cc
+ LIBS = @LIBINTL@ @LIBS@
+ localedir = $(datadir)/locale
+-LIBTOOL = $(SHELL) libtool
++LIBTOOL = /usr/bin/libtool
+ MAINTAINERCLEANFILES = Makefile.in

Deleted: community-i686/gcc-4.2.patch
===================================================================
--- community-i686/gcc-4.2.patch	2014-07-01 23:50:22 UTC (rev 114564)
+++ community-i686/gcc-4.2.patch	2014-07-01 23:50:39 UTC (rev 114565)
@@ -1,75 +0,0 @@
-diff -Naur steghide-0.5.1.orig/src/AuData.h steghide-0.5.1.new/src/AuData.h
---- steghide-0.5.1.orig/src/AuData.h	2003-09-28 11:30:29.000000000 -0400
-+++ steghide-0.5.1.new/src/AuData.h	2007-06-28 17:22:44.000000000 -0400
-@@ -26,22 +26,30 @@
- 
- // AuMuLawAudioData
- typedef AudioDataImpl<AuMuLaw,BYTE> AuMuLawAudioData ;
-+template<>
- inline BYTE AuMuLawAudioData::readValue (BinaryIO* io) const { return (io->read8()) ; }
-+template<>
- inline void AuMuLawAudioData::writeValue (BinaryIO* io, BYTE v) const { io->write8(v) ; }
- 
- // AuPCM8AudioData
- typedef AudioDataImpl<AuPCM8,SBYTE> AuPCM8AudioData ;
-+template<>
- inline SBYTE AuPCM8AudioData::readValue (BinaryIO* io) const { return ((SBYTE) io->read8()) ; }
-+template<>
- inline void AuPCM8AudioData::writeValue (BinaryIO* io, SBYTE v) const { io->write8((BYTE) v) ; }
- 
- // AuPCM16AudioData
- typedef AudioDataImpl<AuPCM16,SWORD16> AuPCM16AudioData ;
-+template<>
- inline SWORD16 AuPCM16AudioData::readValue (BinaryIO* io) const { return ((SWORD16) io->read16_be()) ; }
-+template<>
- inline void AuPCM16AudioData::writeValue (BinaryIO* io, SWORD16 v) const { io->write16_be((UWORD16) v) ; }
- 
- // AuPCM32AudioData
- typedef AudioDataImpl<AuPCM32,SWORD32> AuPCM32AudioData ;
-+template<>
- inline SWORD32 AuPCM32AudioData::readValue (BinaryIO* io) const { return ((SWORD32) io->read32_be()) ; }
-+template<>
- inline void AuPCM32AudioData::writeValue (BinaryIO* io, SWORD32 v) const { io->write32_be((UWORD32) v) ; }
- 
- #endif // ndef SH_AUDATA_H
-diff -Naur steghide-0.5.1.orig/src/AuSampleValues.cc steghide-0.5.1.new/src/AuSampleValues.cc
---- steghide-0.5.1.orig/src/AuSampleValues.cc	2003-09-28 11:30:30.000000000 -0400
-+++ steghide-0.5.1.new/src/AuSampleValues.cc	2007-06-28 17:23:52.000000000 -0400
-@@ -21,17 +21,25 @@
- #include "AuSampleValues.h"
- 
- // AuMuLawSampleValue
-+template<>
- const BYTE AuMuLawSampleValue::MinValue = 0 ;
-+template<>
- const BYTE AuMuLawSampleValue::MaxValue = BYTE_MAX ;
- 
- // AuPCM8SampleValue
-+template<>
- const SBYTE AuPCM8SampleValue::MinValue = SBYTE_MIN ;
-+template<>
- const SBYTE AuPCM8SampleValue::MaxValue = SBYTE_MAX ;
- 
- // AuPCM16SampleValue
-+template<>
- const SWORD16 AuPCM16SampleValue::MinValue = SWORD16_MIN ;
-+template<>
- const SWORD16 AuPCM16SampleValue::MaxValue = SWORD16_MAX ;
- 
- // AuPCM32SampleValue
-+template<>
- const SWORD32 AuPCM32SampleValue::MinValue = SWORD32_MIN ;
-+template<>
- const SWORD32 AuPCM32SampleValue::MaxValue = SWORD32_MAX ;
-diff -Naur steghide-0.5.1.orig/src/MHashPP.cc steghide-0.5.1.new/src/MHashPP.cc
---- steghide-0.5.1.orig/src/MHashPP.cc	2003-10-05 06:17:50.000000000 -0400
-+++ steghide-0.5.1.new/src/MHashPP.cc	2007-06-28 17:22:44.000000000 -0400
-@@ -120,7 +120,7 @@
- 
- std::string MHashPP::getAlgorithmName (hashid id)
- {
--	char *name = mhash_get_hash_name (id) ;
-+	char *name = (char *) mhash_get_hash_name (id) ;
- 	std::string retval ;
- 	if (name == NULL) {
- 		retval = std::string ("<algorithm not found>") ;

Copied: steghide/repos/community-i686/gcc-4.2.patch (from rev 114564, steghide/trunk/gcc-4.2.patch)
===================================================================
--- community-i686/gcc-4.2.patch	                        (rev 0)
+++ community-i686/gcc-4.2.patch	2014-07-01 23:50:39 UTC (rev 114565)
@@ -0,0 +1,75 @@
+diff -Naur steghide-0.5.1.orig/src/AuData.h steghide-0.5.1.new/src/AuData.h
+--- steghide-0.5.1.orig/src/AuData.h	2003-09-28 11:30:29.000000000 -0400
++++ steghide-0.5.1.new/src/AuData.h	2007-06-28 17:22:44.000000000 -0400
+@@ -26,22 +26,30 @@
+ 
+ // AuMuLawAudioData
+ typedef AudioDataImpl<AuMuLaw,BYTE> AuMuLawAudioData ;
++template<>
+ inline BYTE AuMuLawAudioData::readValue (BinaryIO* io) const { return (io->read8()) ; }
++template<>
+ inline void AuMuLawAudioData::writeValue (BinaryIO* io, BYTE v) const { io->write8(v) ; }
+ 
+ // AuPCM8AudioData
+ typedef AudioDataImpl<AuPCM8,SBYTE> AuPCM8AudioData ;
++template<>
+ inline SBYTE AuPCM8AudioData::readValue (BinaryIO* io) const { return ((SBYTE) io->read8()) ; }
++template<>
+ inline void AuPCM8AudioData::writeValue (BinaryIO* io, SBYTE v) const { io->write8((BYTE) v) ; }
+ 
+ // AuPCM16AudioData
+ typedef AudioDataImpl<AuPCM16,SWORD16> AuPCM16AudioData ;
++template<>
+ inline SWORD16 AuPCM16AudioData::readValue (BinaryIO* io) const { return ((SWORD16) io->read16_be()) ; }
++template<>
+ inline void AuPCM16AudioData::writeValue (BinaryIO* io, SWORD16 v) const { io->write16_be((UWORD16) v) ; }
+ 
+ // AuPCM32AudioData
+ typedef AudioDataImpl<AuPCM32,SWORD32> AuPCM32AudioData ;
++template<>
+ inline SWORD32 AuPCM32AudioData::readValue (BinaryIO* io) const { return ((SWORD32) io->read32_be()) ; }
++template<>
+ inline void AuPCM32AudioData::writeValue (BinaryIO* io, SWORD32 v) const { io->write32_be((UWORD32) v) ; }
+ 
+ #endif // ndef SH_AUDATA_H
+diff -Naur steghide-0.5.1.orig/src/AuSampleValues.cc steghide-0.5.1.new/src/AuSampleValues.cc
+--- steghide-0.5.1.orig/src/AuSampleValues.cc	2003-09-28 11:30:30.000000000 -0400
++++ steghide-0.5.1.new/src/AuSampleValues.cc	2007-06-28 17:23:52.000000000 -0400
+@@ -21,17 +21,25 @@
+ #include "AuSampleValues.h"
+ 
+ // AuMuLawSampleValue
++template<>
+ const BYTE AuMuLawSampleValue::MinValue = 0 ;
++template<>
+ const BYTE AuMuLawSampleValue::MaxValue = BYTE_MAX ;
+ 
+ // AuPCM8SampleValue
++template<>
+ const SBYTE AuPCM8SampleValue::MinValue = SBYTE_MIN ;
++template<>
+ const SBYTE AuPCM8SampleValue::MaxValue = SBYTE_MAX ;
+ 
+ // AuPCM16SampleValue
++template<>
+ const SWORD16 AuPCM16SampleValue::MinValue = SWORD16_MIN ;
++template<>
+ const SWORD16 AuPCM16SampleValue::MaxValue = SWORD16_MAX ;
+ 
+ // AuPCM32SampleValue
++template<>
+ const SWORD32 AuPCM32SampleValue::MinValue = SWORD32_MIN ;
++template<>
+ const SWORD32 AuPCM32SampleValue::MaxValue = SWORD32_MAX ;
+diff -Naur steghide-0.5.1.orig/src/MHashPP.cc steghide-0.5.1.new/src/MHashPP.cc
+--- steghide-0.5.1.orig/src/MHashPP.cc	2003-10-05 06:17:50.000000000 -0400
++++ steghide-0.5.1.new/src/MHashPP.cc	2007-06-28 17:22:44.000000000 -0400
+@@ -120,7 +120,7 @@
+ 
+ std::string MHashPP::getAlgorithmName (hashid id)
+ {
+-	char *name = mhash_get_hash_name (id) ;
++	char *name = (char *) mhash_get_hash_name (id) ;
+ 	std::string retval ;
+ 	if (name == NULL) {
+ 		retval = std::string ("<algorithm not found>") ;

Deleted: community-i686/steghide-climits.patch
===================================================================
--- community-i686/steghide-climits.patch	2014-07-01 23:50:22 UTC (rev 114564)
+++ community-i686/steghide-climits.patch	2014-07-01 23:50:39 UTC (rev 114565)
@@ -1,11 +0,0 @@
-diff -ruN steghide-0.5.1.orig/src/Graph.cc steghide-0.5.1/src/Graph.cc
---- steghide-0.5.1.orig/src/Graph.cc	2003-10-11 23:54:26.000000000 +0200
-+++ steghide-0.5.1/src/Graph.cc	2008-12-14 14:23:27.000000000 +0100
-@@ -22,6 +22,7 @@
- #include <list>
- #include <map>
- #include <vector>
-+#include <climits>
- 
- #include "BitString.h"
- #include "CvrStgFile.h"

Copied: steghide/repos/community-i686/steghide-climits.patch (from rev 114564, steghide/trunk/steghide-climits.patch)
===================================================================
--- community-i686/steghide-climits.patch	                        (rev 0)
+++ community-i686/steghide-climits.patch	2014-07-01 23:50:39 UTC (rev 114565)
@@ -0,0 +1,11 @@
+diff -ruN steghide-0.5.1.orig/src/Graph.cc steghide-0.5.1/src/Graph.cc
+--- steghide-0.5.1.orig/src/Graph.cc	2003-10-11 23:54:26.000000000 +0200
++++ steghide-0.5.1/src/Graph.cc	2008-12-14 14:23:27.000000000 +0100
+@@ -22,6 +22,7 @@
+ #include <list>
+ #include <map>
+ #include <vector>
++#include <climits>
+ 
+ #include "BitString.h"
+ #include "CvrStgFile.h"

Deleted: community-x86_64/ChangeLog
===================================================================
--- community-x86_64/ChangeLog	2014-07-01 23:50:22 UTC (rev 114564)
+++ community-x86_64/ChangeLog	2014-07-01 23:50:39 UTC (rev 114565)
@@ -1,4 +0,0 @@
-2007-06-28 tardo <tardo at nagi-fanboi.net>
-* Built for x86_64
-* Added gcc 4.2 patch, with help from gentoo bug #178134
-* Fixed erroneous buildsystem.patch that removed path to mkinstalldirs

Copied: steghide/repos/community-x86_64/ChangeLog (from rev 114564, steghide/trunk/ChangeLog)
===================================================================
--- community-x86_64/ChangeLog	                        (rev 0)
+++ community-x86_64/ChangeLog	2014-07-01 23:50:39 UTC (rev 114565)
@@ -0,0 +1,4 @@
+2007-06-28 tardo <tardo at nagi-fanboi.net>
+* Built for x86_64
+* Added gcc 4.2 patch, with help from gentoo bug #178134
+* Fixed erroneous buildsystem.patch that removed path to mkinstalldirs

Deleted: community-x86_64/PKGBUILD
===================================================================
--- community-x86_64/PKGBUILD	2014-07-01 23:50:22 UTC (rev 114564)
+++ community-x86_64/PKGBUILD	2014-07-01 23:50:39 UTC (rev 114565)
@@ -1,44 +0,0 @@
-# $Id$
-# Maintainer: Lukas Fleischer <archlinux at cryptocrack dot de>
-# Contributor: Tom Newsom <Jeepster at gmx.co.uk>
-# Contributor: Jason Chu <jason at archlinux.org>
-# Contributor: Daniel J Griffiths <ghost1227 at archlinux.us>
-
-pkgname=steghide
-pkgver=0.5.1
-pkgrel=6
-pkgdesc='Embeds a message in a file by replacing some of the least significant bits'
-arch=('i686' 'x86_64')
-url='http://steghide.sourceforge.net'
-license=('GPL')
-depends=('libmcrypt' 'gcc-libs' 'mhash' 'libjpeg' 'zlib')
-source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz"
-        'buildsystem.patch'
-        'gcc-4.2.patch'
-         "${pkgname}-climits.patch")
-md5sums=('5be490e24807d921045780fd8cc446b3'
-         '14f5e054d71c91262bb1140288043df8'
-         'fd861dc5a0a392c6c94a61e85ad74f29'
-         '897ce18edd008293a3328bc3f88775b3')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  patch -p1 < ../buildsystem.patch
-
-  # this patch courtesy gentoo bug tracker #178134
-  patch -Np1 -i ../gcc-4.2.patch
-  patch -Np1 -i ../steghide-climits.patch
-
-  # touch files needed by GNU Autotools
-  touch NEWS AUTHORS ChangeLog
-
-  autoreconf -i
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-}

Copied: steghide/repos/community-x86_64/PKGBUILD (from rev 114564, steghide/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD	                        (rev 0)
+++ community-x86_64/PKGBUILD	2014-07-01 23:50:39 UTC (rev 114565)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Lukas Fleischer <archlinux at cryptocrack dot de>
+# Contributor: Tom Newsom <Jeepster at gmx.co.uk>
+# Contributor: Jason Chu <jason at archlinux.org>
+# Contributor: Daniel J Griffiths <ghost1227 at archlinux.us>
+
+pkgname=steghide
+pkgver=0.5.1
+pkgrel=7
+pkgdesc='Embeds a message in a file by replacing some of the least significant bits'
+arch=('i686' 'x86_64')
+url='http://steghide.sourceforge.net'
+license=('GPL')
+depends=('libmcrypt' 'gcc-libs' 'mhash' 'libjpeg' 'zlib')
+source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz"
+        'buildsystem.patch'
+        'gcc-4.2.patch'
+         "${pkgname}-climits.patch")
+md5sums=('5be490e24807d921045780fd8cc446b3'
+         '14f5e054d71c91262bb1140288043df8'
+         'fd861dc5a0a392c6c94a61e85ad74f29'
+         '897ce18edd008293a3328bc3f88775b3')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  patch -p1 < ../buildsystem.patch
+
+  # this patch courtesy gentoo bug tracker #178134
+  patch -Np1 -i ../gcc-4.2.patch
+  patch -Np1 -i ../steghide-climits.patch
+
+  # touch files needed by GNU Autotools
+  touch NEWS AUTHORS ChangeLog
+
+  autoreconf -i
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+}

Deleted: community-x86_64/buildsystem.patch
===================================================================
--- community-x86_64/buildsystem.patch	2014-07-01 23:50:22 UTC (rev 114564)
+++ community-x86_64/buildsystem.patch	2014-07-01 23:50:39 UTC (rev 114565)
@@ -1,10 +0,0 @@
-diff -urN steghide-0.5.1/src/Makefile.am steghide-0.5.1-new/src/Makefile.am
---- steghide-0.5.1/src/Makefile.am	2003-09-28 09:33:21.000000000 -0700
-+++ steghide-0.5.1-new/src/Makefile.am	2003-10-30 21:05:40.000000000 -0800
-@@ -33,5 +33,5 @@
- WavPCMSampleValue.cc error.cc main.cc msg.cc SMDConstructionHeuristic.cc
- LIBS = @LIBINTL@ @LIBS@
- localedir = $(datadir)/locale
--LIBTOOL = $(SHELL) libtool
-+LIBTOOL = /usr/bin/libtool
- MAINTAINERCLEANFILES = Makefile.in

Copied: steghide/repos/community-x86_64/buildsystem.patch (from rev 114564, steghide/trunk/buildsystem.patch)
===================================================================
--- community-x86_64/buildsystem.patch	                        (rev 0)
+++ community-x86_64/buildsystem.patch	2014-07-01 23:50:39 UTC (rev 114565)
@@ -0,0 +1,10 @@
+diff -urN steghide-0.5.1/src/Makefile.am steghide-0.5.1-new/src/Makefile.am
+--- steghide-0.5.1/src/Makefile.am	2003-09-28 09:33:21.000000000 -0700
++++ steghide-0.5.1-new/src/Makefile.am	2003-10-30 21:05:40.000000000 -0800
+@@ -33,5 +33,5 @@
+ WavPCMSampleValue.cc error.cc main.cc msg.cc SMDConstructionHeuristic.cc
+ LIBS = @LIBINTL@ @LIBS@
+ localedir = $(datadir)/locale
+-LIBTOOL = $(SHELL) libtool
++LIBTOOL = /usr/bin/libtool
+ MAINTAINERCLEANFILES = Makefile.in

Deleted: community-x86_64/gcc-4.2.patch
===================================================================
--- community-x86_64/gcc-4.2.patch	2014-07-01 23:50:22 UTC (rev 114564)
+++ community-x86_64/gcc-4.2.patch	2014-07-01 23:50:39 UTC (rev 114565)
@@ -1,75 +0,0 @@
-diff -Naur steghide-0.5.1.orig/src/AuData.h steghide-0.5.1.new/src/AuData.h
---- steghide-0.5.1.orig/src/AuData.h	2003-09-28 11:30:29.000000000 -0400
-+++ steghide-0.5.1.new/src/AuData.h	2007-06-28 17:22:44.000000000 -0400
-@@ -26,22 +26,30 @@
- 
- // AuMuLawAudioData
- typedef AudioDataImpl<AuMuLaw,BYTE> AuMuLawAudioData ;
-+template<>
- inline BYTE AuMuLawAudioData::readValue (BinaryIO* io) const { return (io->read8()) ; }
-+template<>
- inline void AuMuLawAudioData::writeValue (BinaryIO* io, BYTE v) const { io->write8(v) ; }
- 
- // AuPCM8AudioData
- typedef AudioDataImpl<AuPCM8,SBYTE> AuPCM8AudioData ;
-+template<>
- inline SBYTE AuPCM8AudioData::readValue (BinaryIO* io) const { return ((SBYTE) io->read8()) ; }
-+template<>
- inline void AuPCM8AudioData::writeValue (BinaryIO* io, SBYTE v) const { io->write8((BYTE) v) ; }
- 
- // AuPCM16AudioData
- typedef AudioDataImpl<AuPCM16,SWORD16> AuPCM16AudioData ;
-+template<>
- inline SWORD16 AuPCM16AudioData::readValue (BinaryIO* io) const { return ((SWORD16) io->read16_be()) ; }
-+template<>
- inline void AuPCM16AudioData::writeValue (BinaryIO* io, SWORD16 v) const { io->write16_be((UWORD16) v) ; }
- 
- // AuPCM32AudioData
- typedef AudioDataImpl<AuPCM32,SWORD32> AuPCM32AudioData ;
-+template<>
- inline SWORD32 AuPCM32AudioData::readValue (BinaryIO* io) const { return ((SWORD32) io->read32_be()) ; }
-+template<>
- inline void AuPCM32AudioData::writeValue (BinaryIO* io, SWORD32 v) const { io->write32_be((UWORD32) v) ; }
- 
- #endif // ndef SH_AUDATA_H
-diff -Naur steghide-0.5.1.orig/src/AuSampleValues.cc steghide-0.5.1.new/src/AuSampleValues.cc
---- steghide-0.5.1.orig/src/AuSampleValues.cc	2003-09-28 11:30:30.000000000 -0400
-+++ steghide-0.5.1.new/src/AuSampleValues.cc	2007-06-28 17:23:52.000000000 -0400
-@@ -21,17 +21,25 @@
- #include "AuSampleValues.h"
- 
- // AuMuLawSampleValue
-+template<>
- const BYTE AuMuLawSampleValue::MinValue = 0 ;
-+template<>
- const BYTE AuMuLawSampleValue::MaxValue = BYTE_MAX ;
- 
- // AuPCM8SampleValue
-+template<>
- const SBYTE AuPCM8SampleValue::MinValue = SBYTE_MIN ;
-+template<>
- const SBYTE AuPCM8SampleValue::MaxValue = SBYTE_MAX ;
- 
- // AuPCM16SampleValue
-+template<>
- const SWORD16 AuPCM16SampleValue::MinValue = SWORD16_MIN ;
-+template<>
- const SWORD16 AuPCM16SampleValue::MaxValue = SWORD16_MAX ;
- 
- // AuPCM32SampleValue
-+template<>
- const SWORD32 AuPCM32SampleValue::MinValue = SWORD32_MIN ;
-+template<>
- const SWORD32 AuPCM32SampleValue::MaxValue = SWORD32_MAX ;
-diff -Naur steghide-0.5.1.orig/src/MHashPP.cc steghide-0.5.1.new/src/MHashPP.cc
---- steghide-0.5.1.orig/src/MHashPP.cc	2003-10-05 06:17:50.000000000 -0400
-+++ steghide-0.5.1.new/src/MHashPP.cc	2007-06-28 17:22:44.000000000 -0400
-@@ -120,7 +120,7 @@
- 
- std::string MHashPP::getAlgorithmName (hashid id)
- {
--	char *name = mhash_get_hash_name (id) ;
-+	char *name = (char *) mhash_get_hash_name (id) ;
- 	std::string retval ;
- 	if (name == NULL) {
- 		retval = std::string ("<algorithm not found>") ;

Copied: steghide/repos/community-x86_64/gcc-4.2.patch (from rev 114564, steghide/trunk/gcc-4.2.patch)
===================================================================
--- community-x86_64/gcc-4.2.patch	                        (rev 0)
+++ community-x86_64/gcc-4.2.patch	2014-07-01 23:50:39 UTC (rev 114565)
@@ -0,0 +1,75 @@
+diff -Naur steghide-0.5.1.orig/src/AuData.h steghide-0.5.1.new/src/AuData.h
+--- steghide-0.5.1.orig/src/AuData.h	2003-09-28 11:30:29.000000000 -0400
++++ steghide-0.5.1.new/src/AuData.h	2007-06-28 17:22:44.000000000 -0400
+@@ -26,22 +26,30 @@
+ 
+ // AuMuLawAudioData
+ typedef AudioDataImpl<AuMuLaw,BYTE> AuMuLawAudioData ;
++template<>
+ inline BYTE AuMuLawAudioData::readValue (BinaryIO* io) const { return (io->read8()) ; }
++template<>
+ inline void AuMuLawAudioData::writeValue (BinaryIO* io, BYTE v) const { io->write8(v) ; }
+ 
+ // AuPCM8AudioData
+ typedef AudioDataImpl<AuPCM8,SBYTE> AuPCM8AudioData ;
++template<>
+ inline SBYTE AuPCM8AudioData::readValue (BinaryIO* io) const { return ((SBYTE) io->read8()) ; }
++template<>
+ inline void AuPCM8AudioData::writeValue (BinaryIO* io, SBYTE v) const { io->write8((BYTE) v) ; }
+ 
+ // AuPCM16AudioData
+ typedef AudioDataImpl<AuPCM16,SWORD16> AuPCM16AudioData ;
++template<>
+ inline SWORD16 AuPCM16AudioData::readValue (BinaryIO* io) const { return ((SWORD16) io->read16_be()) ; }
++template<>
+ inline void AuPCM16AudioData::writeValue (BinaryIO* io, SWORD16 v) const { io->write16_be((UWORD16) v) ; }
+ 
+ // AuPCM32AudioData
+ typedef AudioDataImpl<AuPCM32,SWORD32> AuPCM32AudioData ;
++template<>
+ inline SWORD32 AuPCM32AudioData::readValue (BinaryIO* io) const { return ((SWORD32) io->read32_be()) ; }
++template<>
+ inline void AuPCM32AudioData::writeValue (BinaryIO* io, SWORD32 v) const { io->write32_be((UWORD32) v) ; }
+ 
+ #endif // ndef SH_AUDATA_H
+diff -Naur steghide-0.5.1.orig/src/AuSampleValues.cc steghide-0.5.1.new/src/AuSampleValues.cc
+--- steghide-0.5.1.orig/src/AuSampleValues.cc	2003-09-28 11:30:30.000000000 -0400
++++ steghide-0.5.1.new/src/AuSampleValues.cc	2007-06-28 17:23:52.000000000 -0400
+@@ -21,17 +21,25 @@
+ #include "AuSampleValues.h"
+ 
+ // AuMuLawSampleValue
++template<>
+ const BYTE AuMuLawSampleValue::MinValue = 0 ;
++template<>
+ const BYTE AuMuLawSampleValue::MaxValue = BYTE_MAX ;
+ 
+ // AuPCM8SampleValue
++template<>
+ const SBYTE AuPCM8SampleValue::MinValue = SBYTE_MIN ;
++template<>
+ const SBYTE AuPCM8SampleValue::MaxValue = SBYTE_MAX ;
+ 
+ // AuPCM16SampleValue
++template<>
+ const SWORD16 AuPCM16SampleValue::MinValue = SWORD16_MIN ;
++template<>
+ const SWORD16 AuPCM16SampleValue::MaxValue = SWORD16_MAX ;
+ 
+ // AuPCM32SampleValue
++template<>
+ const SWORD32 AuPCM32SampleValue::MinValue = SWORD32_MIN ;
++template<>
+ const SWORD32 AuPCM32SampleValue::MaxValue = SWORD32_MAX ;
+diff -Naur steghide-0.5.1.orig/src/MHashPP.cc steghide-0.5.1.new/src/MHashPP.cc
+--- steghide-0.5.1.orig/src/MHashPP.cc	2003-10-05 06:17:50.000000000 -0400
++++ steghide-0.5.1.new/src/MHashPP.cc	2007-06-28 17:22:44.000000000 -0400
+@@ -120,7 +120,7 @@
+ 
+ std::string MHashPP::getAlgorithmName (hashid id)
+ {
+-	char *name = mhash_get_hash_name (id) ;
++	char *name = (char *) mhash_get_hash_name (id) ;
+ 	std::string retval ;
+ 	if (name == NULL) {
+ 		retval = std::string ("<algorithm not found>") ;

Deleted: community-x86_64/steghide-climits.patch
===================================================================
--- community-x86_64/steghide-climits.patch	2014-07-01 23:50:22 UTC (rev 114564)
+++ community-x86_64/steghide-climits.patch	2014-07-01 23:50:39 UTC (rev 114565)
@@ -1,11 +0,0 @@
-diff -ruN steghide-0.5.1.orig/src/Graph.cc steghide-0.5.1/src/Graph.cc
---- steghide-0.5.1.orig/src/Graph.cc	2003-10-11 23:54:26.000000000 +0200
-+++ steghide-0.5.1/src/Graph.cc	2008-12-14 14:23:27.000000000 +0100
-@@ -22,6 +22,7 @@
- #include <list>
- #include <map>
- #include <vector>
-+#include <climits>
- 
- #include "BitString.h"
- #include "CvrStgFile.h"

Copied: steghide/repos/community-x86_64/steghide-climits.patch (from rev 114564, steghide/trunk/steghide-climits.patch)
===================================================================
--- community-x86_64/steghide-climits.patch	                        (rev 0)
+++ community-x86_64/steghide-climits.patch	2014-07-01 23:50:39 UTC (rev 114565)
@@ -0,0 +1,11 @@
+diff -ruN steghide-0.5.1.orig/src/Graph.cc steghide-0.5.1/src/Graph.cc
+--- steghide-0.5.1.orig/src/Graph.cc	2003-10-11 23:54:26.000000000 +0200
++++ steghide-0.5.1/src/Graph.cc	2008-12-14 14:23:27.000000000 +0100
+@@ -22,6 +22,7 @@
+ #include <list>
+ #include <map>
+ #include <vector>
++#include <climits>
+ 
+ #include "BitString.h"
+ #include "CvrStgFile.h"




More information about the arch-commits mailing list