steghide.paketlendi
This commit is contained in:
parent
9472256aeb
commit
f7dfc47ddb
|
@ -0,0 +1,20 @@
|
|||
# Tanım: Farklı hash algoritmaları kütüphanesi
|
||||
# URL: http://mhash.sourceforge.net/
|
||||
# Paketçi: milisarge
|
||||
# Gerekler:
|
||||
# Grup: kütüphane
|
||||
|
||||
isim=mhash
|
||||
surum=0.9.9.9
|
||||
devir=1
|
||||
kaynak=(http://downloads.sourceforge.net/mhash/mhash-$surum.tar.gz)
|
||||
|
||||
derle() {
|
||||
cd $isim-$surum
|
||||
./configure --prefix=/usr --mandir=/usr/share/man
|
||||
make
|
||||
make DESTDIR=$PKG \
|
||||
PREFIX=/usr \
|
||||
MANDIR=/usr/share/man\
|
||||
install
|
||||
}
|
|
@ -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"
|
|
@ -0,0 +1,24 @@
|
|||
diff -urN a/src/Arguments.h b/src/Arguments.h
|
||||
--- a/src/Arguments.h 2017-02-25 20:00:52.071294580 +0100
|
||||
+++ b/src/Arguments.h 2017-02-25 20:02:45.312061439 +0100
|
||||
@@ -100,7 +100,7 @@
|
||||
static const VERBOSITY Default_Verbosity = NORMAL ;
|
||||
static const unsigned long Default_Radius = 0 ; // there is no default radius for all file formats
|
||||
static const unsigned int Max_Algorithm = 3 ;
|
||||
- static const float Default_Goal = 100.0 ;
|
||||
+ static constexpr float Default_Goal = 100.0 ;
|
||||
static const DEBUGCOMMAND Default_DebugCommand = NONE ;
|
||||
static const bool Default_Check = false ;
|
||||
static const unsigned int Default_DebugLevel = 0 ;
|
||||
diff -urN a/src/ProgressOutput.h b/src/ProgressOutput.h
|
||||
--- a/src/ProgressOutput.h 2017-02-25 20:00:52.071294580 +0100
|
||||
+++ b/src/ProgressOutput.h 2017-02-25 20:03:13.528919155 +0100
|
||||
@@ -64,7 +64,7 @@
|
||||
**/
|
||||
void done (float rate, float avgweight = NoAvgWeight) const ;
|
||||
|
||||
- static const float NoAvgWeight = -1.0 ;
|
||||
+ static constexpr float NoAvgWeight = -1.0 ;
|
||||
|
||||
protected:
|
||||
std::string vcompose (const char *msgfmt, va_list ap) const ;
|
|
@ -0,0 +1,22 @@
|
|||
# Tanım: Ses ve resim dosyaları içinde veri gizleme uygulaması
|
||||
# URL: http://steghide.sourceforge.net/
|
||||
# Paketçi: milisarge
|
||||
# Gerekler: mhash libmcrypt
|
||||
# Grup: güvenlik
|
||||
|
||||
isim=steghide
|
||||
surum=0.5.1
|
||||
devir=1
|
||||
kaynak=(http://downloads.sourceforge.net/$isim/$isim-$surum.tar.bz2
|
||||
float-constexpr.diff
|
||||
climit.diff
|
||||
template-headers.diff)
|
||||
|
||||
derle() {
|
||||
cd $isim-$surum
|
||||
cat $SRC/*.diff | patch -Np1
|
||||
CONFIG_SHELL=/bin/bash CXX='g++ -std=c++11' ./configure --prefix=/usr --mandir=/usr/share/man
|
||||
make
|
||||
make DESTDIR=$PKG PREFIX=/usr MANDIR=/usr/share/man install
|
||||
rm -rf $PKG/usr/share/doc
|
||||
}
|
|
@ -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>") ;
|
Loading…
Reference in New Issue