Treecleaned
authorSteve Dibb <beandog@gentoo.org>
Thu, 30 Nov 2006 02:07:16 +0000 (02:07 +0000)
committerSteve Dibb <beandog@gentoo.org>
Thu, 30 Nov 2006 02:07:16 +0000 (02:07 +0000)
app-crypt/outguess for bug(s) 143897

app-crypt/outguess/ChangeLog [deleted file]
app-crypt/outguess/Manifest [deleted file]
app-crypt/outguess/files/digest-outguess-0.2 [deleted file]
app-crypt/outguess/files/digest-outguess-0.2-r1 [deleted file]
app-crypt/outguess/files/outguess-0.2-gcc4.diff [deleted file]
app-crypt/outguess/metadata.xml [deleted file]
app-crypt/outguess/outguess-0.2-r1.ebuild [deleted file]
app-crypt/outguess/outguess-0.2.ebuild [deleted file]

diff --git a/app-crypt/outguess/ChangeLog b/app-crypt/outguess/ChangeLog
deleted file mode 100644 (file)
index 68ab8e8..0000000
+++ /dev/null
@@ -1,32 +0,0 @@
-# ChangeLog for app-crypt/outguess
-# Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-crypt/outguess/ChangeLog,v 1.10 2005/09/20 18:46:33 grobian Exp $
-
-  20 Sep 2005; Fabian Groffen <grobian@gentoo.org> outguess-0.2-r1.ebuild:
-  Marking ~ppc-macos (bug #106610)
-
-*outguess-0.2-r1 (10 Sep 2005)
-
-  10 Sep 2005; Marcelo Goes <vanquirius@gentoo.org>
-  +files/outguess-0.2-gcc4.diff, +outguess-0.2-r1.ebuild:
-  Add gcc4 patch to suppress warning messages.
-
-  19 Aug 2005; Luis Medinas <metalgod@gentoo.org> outguess-0.2.ebuild:
-  Added ~amd64 keywords.
-
-  05 Oct 2004; Pieter Van den Abeele <pvdabeel@gentoo.org>
-  outguess-0.2.ebuild:
-  Masked outguess-0.2.ebuild stable for ppc
-
-  03 Sep 2004; David Holm <dholm@gentoo.org> outguess-0.2.ebuild:
-  Added to ~ppc.
-
-  16 Feb 2004; John Davis <zhen@gentoo.org> outguess-0.2.ebuild:
-  marking stable
-
-*outguess-0.2 (09 Dec 2003)
-
-  09 Dec 2003; zhen <zhen@gentoo.org> metadata.xml, outguess-0.2.ebuild:
-  initial import, thanks to Eric Harney <eharney@clemson.edu> for the ebuild via
-  bugzilla.
-
diff --git a/app-crypt/outguess/Manifest b/app-crypt/outguess/Manifest
deleted file mode 100644 (file)
index ba8ba33..0000000
+++ /dev/null
@@ -1,7 +0,0 @@
-MD5 f4f52c46119f67e4c381c7418c8680d8 outguess-0.2-r1.ebuild 699
-MD5 99de7a90afa3ceadd7797b6efdc93903 outguess-0.2.ebuild 602
-MD5 ed0a7ef3bb25759c03be235cf122e3cc ChangeLog 1099
-MD5 de17f5253e20f421975d0d41f766745e metadata.xml 331
-MD5 5ffffcde193556283e9061b4a0013bfc files/outguess-0.2-gcc4.diff 5353
-MD5 6b32639a3f1ae05e9ce4c132f1833129 files/digest-outguess-0.2-r1 64
-MD5 6b32639a3f1ae05e9ce4c132f1833129 files/digest-outguess-0.2 64
diff --git a/app-crypt/outguess/files/digest-outguess-0.2 b/app-crypt/outguess/files/digest-outguess-0.2
deleted file mode 100644 (file)
index 7e7bc7d..0000000
+++ /dev/null
@@ -1 +0,0 @@
-MD5 321f23dc0badaba4350fa66b59829064 outguess-0.2.tar.gz 470638
diff --git a/app-crypt/outguess/files/digest-outguess-0.2-r1 b/app-crypt/outguess/files/digest-outguess-0.2-r1
deleted file mode 100644 (file)
index 7e7bc7d..0000000
+++ /dev/null
@@ -1 +0,0 @@
-MD5 321f23dc0badaba4350fa66b59829064 outguess-0.2.tar.gz 470638
diff --git a/app-crypt/outguess/files/outguess-0.2-gcc4.diff b/app-crypt/outguess/files/outguess-0.2-gcc4.diff
deleted file mode 100644 (file)
index ef9280b..0000000
+++ /dev/null
@@ -1,186 +0,0 @@
-diff --exclude='*~' -Naur outguess.orig/arc.c outguess/arc.c
---- outguess.orig/arc.c        2005-09-10 19:51:29.000000000 -0300
-+++ outguess/arc.c     2005-09-10 20:09:29.000000000 -0300
-@@ -111,7 +111,7 @@
-   /* Bah, we want bcrypt */
-   MD5Init(&ctx);
--  MD5Update(&ctx, type, strlen(type));
-+  MD5Update(&ctx, (u_char *)type, strlen(type));
-   MD5Update(&ctx, key, keylen);
-   MD5Final(digest, &ctx);
-diff --exclude='*~' -Naur outguess.orig/histogram.c outguess/histogram.c
---- outguess.orig/histogram.c  2005-09-10 19:51:29.000000000 -0300
-+++ outguess/histogram.c       2005-09-10 20:20:16.000000000 -0300
-@@ -96,8 +96,8 @@
-       if ((res = fread(data, sizeof(char), bytes, fin)) != bytes)
-               err(1, "fread(2): %d", res);
--      histogram_simple(data, bits);
--      histogram_runlen(data, bits);
-+      histogram_simple((u_char *)data, bits);
-+      histogram_runlen((u_char *)data, bits);
-       exit(0);
- }
-diff --exclude='*~' -Naur outguess.orig/jpg.c outguess/jpg.c
---- outguess.orig/jpg.c        2005-09-10 19:51:29.000000000 -0300
-+++ outguess/jpg.c     2005-09-10 20:16:10.000000000 -0300
-@@ -110,9 +110,9 @@
- {
-       int i;
-       char *data = bitmap->data;
--      char *pbits = bitmap->bitmap;
--      char *plock = bitmap->locked;
--      char *pmetalock = bitmap->metalock;
-+      char *pbits = (char *)bitmap->bitmap;
-+      char *plock = (char *)bitmap->locked;
-+      char *pmetalock = (char *)bitmap->metalock;
-       for (i = off - 1; i >= 0; i--) {
-               if (TEST_BIT(plock, i))
-@@ -317,7 +317,7 @@
-                               fprintf(stderr, "steg_use_bit: realloc()\n");
-                               exit(1);
-                       }
--                      tbitmap.data = buf;
-+                      tbitmap.data = (char *)buf;
-               }
-               break;
-       default:
-@@ -767,7 +767,7 @@
- {
-   my_dest_ptr dest = (my_dest_ptr) cinfo->dest;
--  dest->pub.next_output_byte = dummy_buf;
-+  dest->pub.next_output_byte = (u_char *)dummy_buf;
-   dest->pub.free_in_buffer = BUFSIZE;
- }
-@@ -776,7 +776,7 @@
- {
-   my_dest_ptr dest = (my_dest_ptr) cinfo->dest;
--  dest->pub.next_output_byte = dummy_buf;
-+  dest->pub.next_output_byte = (u_char *)dummy_buf;
-   dest->pub.free_in_buffer = BUFSIZE;
-   return TRUE;
-diff --exclude='*~' -Naur outguess.orig/missing/md5.c outguess/missing/md5.c
---- outguess.orig/missing/md5.c        2005-09-10 19:51:29.000000000 -0300
-+++ outguess/missing/md5.c     2005-09-10 20:22:48.000000000 -0300
-@@ -28,6 +28,7 @@
- #endif
- #include "md5.h"
-+#include <string.h>
- /* Little-endian byte-swapping routines.  Note that these do not
-    depend on the size of datatypes such as uint32, nor do they require
-diff --exclude='*~' -Naur outguess.orig/outguess.c outguess/outguess.c
---- outguess.orig/outguess.c   2005-09-10 19:51:29.000000000 -0300
-+++ outguess/outguess.c        2005-09-10 20:07:32.000000000 -0300
-@@ -357,13 +357,13 @@
-       datalen = 4;
--      encode_data(NULL, &datalen, NULL, flags);
-+      encode_data(NULL, (int *)&datalen, NULL, flags);
-       tmpbuf = checkedmalloc(datalen);
-       for (i = 0; i < datalen; i++)
-               tmpbuf[i] = steg_retrbyte(bitmap, 8, iter);
--      buf = decode_data (tmpbuf, &datalen, as, flags);
-+      buf = decode_data (tmpbuf, (int *)&datalen, as, flags);
-       if (datalen != 4) {
-               fprintf (stderr, "Steg retrieve: wrong data len: %d\n",
-@@ -398,7 +398,7 @@
-       }
-       *len = origlen;
--      return buf;
-+      return (char *)buf;
- }
- int
-@@ -677,10 +677,10 @@
-       iterator_init(&iter, bitmap, key, klen); 
-       /* Encode the data for us */
--      mmap_file(filename, &data, &datalen);
-+      mmap_file((char *)filename, &data, (int *)&datalen);
-       steg_data = datalen * 8;
-       enclen = datalen;
--      encdata = encode_data(data, &enclen, &tas, cfg->flags);
-+      encdata = encode_data(data, (int *)&enclen, &tas, cfg->flags);
-       if (cfg->flags & STEG_ERROR) {
-               fprintf(stderr, "Encoded '%s' with ECC: %d bits, %d bytes\n",
-                       filename, enclen * 8, enclen);
-@@ -746,7 +746,7 @@
- #endif /* HAVE_MMAP */
-       close(fd);
--      *data = p;
-+      *data = (u_char *)p;
-       *size = fs.st_size;
- }
-@@ -872,10 +872,10 @@
-                       mark = 1; /* Mark bytes we modified with 255 */
-                       break;
-               case 'd':
--                      data = optarg;
-+                      data = (u_char *)optarg;
-                       break;
-               case 'D':
--                      data2 = optarg;
-+                      data2 = (u_char *)optarg;
-                       break;
-               case 'e':
-                       doerror = 1;
-@@ -979,7 +979,7 @@
-                                       (float)100*bitmap.maxcorrect/bitmap.bits);
-               }
--              do_embed(&bitmap, data, key, strlen(key), &cfg1, &cumres);
-+              do_embed(&bitmap, data, (u_char *)key, strlen(key), &cfg1, &cumres);
-               if (key2 && data2) {
-                       char derivekey[128];
-@@ -1002,7 +1002,7 @@
-                                       derivekey[strlen(key2)] = '\0';
-                               j = do_embed(&bitmap, data2,
--                                           derivekey, strlen(derivekey),
-+                                           (u_char *)derivekey, strlen(derivekey),
-                                            &cfg2, &tmpres);
-                       }
-       
-@@ -1021,7 +1021,7 @@
-                       int n;
-                       u_char cbit;
-                       u_char *pbits = bitmap.bitmap;
--                      u_char *data = bitmap.data;
-+                      u_char *data = (u_char *)bitmap.data;
-                       u_char *plocked = bitmap.locked;
-     
-                       memset(steg_offset, 0, sizeof(steg_offset));
-@@ -1088,12 +1088,12 @@
-               dsth->write(fout, image);
-       } else {
-               /* Initialize random data stream */
--              arc4_initkey(&as,  "Encryption", key, strlen(key));
-+              arc4_initkey(&as,  "Encryption", (u_char *)key, strlen(key));
-               tas = as;
-         
--              iterator_init(&iter, &bitmap, key, strlen(key)); 
-+              iterator_init(&iter, &bitmap, (u_char *)key, strlen(key)); 
--              encdata = steg_retrieve(&datalen, &bitmap, &iter, &as,
-+              encdata = (u_char *)steg_retrieve(&datalen, &bitmap, &iter, &as,
-                                       cfg1.flags);
-               data = decode_data(encdata, &datalen, &tas, cfg1.flags);
diff --git a/app-crypt/outguess/metadata.xml b/app-crypt/outguess/metadata.xml
deleted file mode 100644 (file)
index 1d222a1..0000000
+++ /dev/null
@@ -1,9 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-<herd>crypto</herd>
-<longdescription>
-       OutGuess is a universal steganographic tool that allows the insertion of
-       hidden information into the redundant bits of data sources.
-</longdescription>
-</pkgmetadata>
diff --git a/app-crypt/outguess/outguess-0.2-r1.ebuild b/app-crypt/outguess/outguess-0.2-r1.ebuild
deleted file mode 100644 (file)
index 46f414b..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright 1999-2005 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-crypt/outguess/outguess-0.2-r1.ebuild,v 1.2 2005/09/20 18:46:33 grobian Exp $
-
-inherit eutils
-
-DESCRIPTION="A universal tool for inserting steganographic information into other data"
-HOMEPAGE="http://www.outguess.org/"
-SRC_URI="http://packetstormsecurity.nl/crypt/stego/outguess-0.2.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc-macos ~x86"
-IUSE=""
-
-DEPEND="virtual/libc"
-
-S=${WORKDIR}/${PN}
-
-src_unpack() {
-       unpack ${A}
-       epatch ${FILESDIR}/${P}-gcc4.diff
-}
-
-src_install() {
-       dobin outguess || die "installation failed"
-       doman outguess.1
-}
diff --git a/app-crypt/outguess/outguess-0.2.ebuild b/app-crypt/outguess/outguess-0.2.ebuild
deleted file mode 100644 (file)
index 32f2482..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-# Copyright 1999-2005 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-crypt/outguess/outguess-0.2.ebuild,v 1.8 2005/08/19 04:00:16 metalgod Exp $
-
-DESCRIPTION="A universal tool for inserting steganographic information into other data"
-HOMEPAGE="http://www.outguess.org/"
-SRC_URI="http://packetstormsecurity.nl/crypt/stego/outguess-0.2.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ppc x86"
-IUSE=""
-
-DEPEND="virtual/libc"
-
-S=${WORKDIR}/${PN}
-
-src_install() {
-       dobin outguess || die "installation failed"
-       doman outguess.1
-}