summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Hill <dirtyepic@gentoo.org>2007-05-12 04:13:16 +0000
committerRyan Hill <dirtyepic@gentoo.org>2007-05-12 04:13:16 +0000
commitb6b2e7f447dc8291fb9baeb2b83f70e075d5c72c (patch)
treebb1cfa00279206548a4a37dd6f65f9909be09688 /app-crypt/steghide
parentStable on mips. (diff)
downloadgentoo-2-b6b2e7f447dc8291fb9baeb2b83f70e075d5c72c.tar.gz
gentoo-2-b6b2e7f447dc8291fb9baeb2b83f70e075d5c72c.tar.bz2
gentoo-2-b6b2e7f447dc8291fb9baeb2b83f70e075d5c72c.zip
Fix GCC 4.1 build error. Bug #178134 by Jochen Schlick.
(Portage version: 2.1.2.7)
Diffstat (limited to 'app-crypt/steghide')
-rw-r--r--app-crypt/steghide/ChangeLog8
-rw-r--r--app-crypt/steghide/files/steghide-0.5.1-gcc4.patch18
-rw-r--r--app-crypt/steghide/metadata.xml6
3 files changed, 25 insertions, 7 deletions
diff --git a/app-crypt/steghide/ChangeLog b/app-crypt/steghide/ChangeLog
index 181fd4e1b242..f9c5c293898a 100644
--- a/app-crypt/steghide/ChangeLog
+++ b/app-crypt/steghide/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for app-crypt/steghide
-# Copyright 2000-2006 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-crypt/steghide/ChangeLog,v 1.13 2006/08/16 00:39:09 squinky86 Exp $
+# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-crypt/steghide/ChangeLog,v 1.14 2007/05/12 04:13:16 dirtyepic Exp $
+
+ 12 May 2007; Ryan Hill <dirtyepic@gentoo.org>
+ files/steghide-0.5.1-gcc4.patch, metadata.xml:
+ Fix GCC 4.1 build error. Bug #178134 by Jochen Schlick.
16 Aug 2006; Jon Hood <squinky86@gentoo.org> steghide-0.5.1.ebuild:
Stable on amd64, bug #143891. Thanks postmodern <brodigan@pdx.edu>.
diff --git a/app-crypt/steghide/files/steghide-0.5.1-gcc4.patch b/app-crypt/steghide/files/steghide-0.5.1-gcc4.patch
index 098a6d32d06d..a8df1735e9d4 100644
--- a/app-crypt/steghide/files/steghide-0.5.1-gcc4.patch
+++ b/app-crypt/steghide/files/steghide-0.5.1-gcc4.patch
@@ -1,6 +1,6 @@
-diff -ur steghide-0.5.1-orig/src/AuData.h steghide-0.5.1/src/AuData.h
---- steghide-0.5.1-orig/src/AuData.h 2006-03-10 02:17:19.000000000 -0500
-+++ steghide-0.5.1/src/AuData.h 2006-03-10 02:19:01.000000000 -0500
+diff -Naur steghide-0.5.1-orig/src/AuData.h steghide-0.5.1/src/AuData.h
+--- steghide-0.5.1-orig/src/AuData.h 2003-09-28 09:30:29.000000000 -0600
++++ steghide-0.5.1/src/AuData.h 2007-05-11 22:04:56.000000000 -0600
@@ -26,22 +26,30 @@
// AuMuLawAudioData
@@ -32,3 +32,15 @@ diff -ur steghide-0.5.1-orig/src/AuData.h steghide-0.5.1/src/AuData.h
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/MHashPP.cc steghide-0.5.1/src/MHashPP.cc
+--- steghide-0.5.1-orig/src/MHashPP.cc 2003-10-05 04:17:50.000000000 -0600
++++ steghide-0.5.1/src/MHashPP.cc 2007-05-11 22:07:01.000000000 -0600
+@@ -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>") ;
diff --git a/app-crypt/steghide/metadata.xml b/app-crypt/steghide/metadata.xml
index da5b114b3fbf..9f3fdee2246b 100644
--- a/app-crypt/steghide/metadata.xml
+++ b/app-crypt/steghide/metadata.xml
@@ -1,6 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
-<herd>no-herd</herd>
-<longdescription>A steganography program that hides data within media files.</longdescription>
+ <herd>no-herd</herd>
+ <maintainer>
+ <email>maintainer-needed@gentoo.org</email>
+ </maintainer>
</pkgmetadata>