summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTony Vroon <chainsaw@gentoo.org>2004-07-30 17:54:55 +0000
committerTony Vroon <chainsaw@gentoo.org>2004-07-30 17:54:55 +0000
commiteb3432ee90479e4a79ecf8bad88239fe9c1d72e8 (patch)
treefc1c53fb59e47aef23dca94db67960d0e20c2281 /app-crypt/steghide
parentRemoving obsolete versions (Manifest recommit) (diff)
downloadgentoo-2-eb3432ee90479e4a79ecf8bad88239fe9c1d72e8.tar.gz
gentoo-2-eb3432ee90479e4a79ecf8bad88239fe9c1d72e8.tar.bz2
gentoo-2-eb3432ee90479e4a79ecf8bad88239fe9c1d72e8.zip
Fixing libtool invocation, bug #52470
Diffstat (limited to 'app-crypt/steghide')
-rw-r--r--app-crypt/steghide/ChangeLog6
-rw-r--r--app-crypt/steghide/Manifest5
-rw-r--r--app-crypt/steghide/files/fix-libtool-invocation.patch11
-rw-r--r--app-crypt/steghide/steghide-0.5.1.ebuild5
4 files changed, 23 insertions, 4 deletions
diff --git a/app-crypt/steghide/ChangeLog b/app-crypt/steghide/ChangeLog
index c7fb2ca03335..a599e20419f4 100644
--- a/app-crypt/steghide/ChangeLog
+++ b/app-crypt/steghide/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for app-crypt/steghide
# Copyright 2000-2004 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-crypt/steghide/ChangeLog,v 1.4 2004/06/24 21:38:22 agriffis Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-crypt/steghide/ChangeLog,v 1.5 2004/07/30 17:54:55 chainsaw Exp $
+
+ 30 Jul 2004; Tony Vroon <chainsaw@gentoo.org>
+ +files/fix-libtool-invocation.patch, steghide-0.5.1.ebuild:
+ Fix libtool invocation. Closes bug #52470.
16 Feb 2004; John Davis <zhen@gentoo.org> steghide-0.5.1.ebuild:
marking stable for x86
diff --git a/app-crypt/steghide/Manifest b/app-crypt/steghide/Manifest
index 634957507186..e3fa39f48ecc 100644
--- a/app-crypt/steghide/Manifest
+++ b/app-crypt/steghide/Manifest
@@ -1,4 +1,5 @@
-MD5 0996c89e0b3a7bc5741a6f531d164b4c steghide-0.5.1.ebuild 720
-MD5 222610725a9e18bfc71a7c8de09ab0b2 ChangeLog 504
+MD5 3bdfc528eaf31940bfa9d2b425858764 steghide-0.5.1.ebuild 681
+MD5 30ce98ef73cb323de9c2303ccc8b6fa3 ChangeLog 660
MD5 42fab2a1850b10b79aaf27a057465cb9 metadata.xml 255
+MD5 a3eadebb4365050f2a06531b246f830a files/fix-libtool-invocation.patch 407
MD5 d66bb10a2779986ec5b1a406328d8dfa files/digest-steghide-0.5.1 67
diff --git a/app-crypt/steghide/files/fix-libtool-invocation.patch b/app-crypt/steghide/files/fix-libtool-invocation.patch
new file mode 100644
index 000000000000..863e25fd6863
--- /dev/null
+++ b/app-crypt/steghide/files/fix-libtool-invocation.patch
@@ -0,0 +1,11 @@
+--- src/Makefile.orig 2004-07-30 16:52:06.636316472 +0100
++++ src/Makefile 2004-07-30 16:52:21.662032216 +0100
+@@ -190,7 +190,7 @@
+ WavPCMSampleValue.cc error.cc main.cc msg.cc SMDConstructionHeuristic.cc
+
+ localedir = $(datadir)/locale
+-LIBTOOL = $(SHELL) libtool
++LIBTOOL = $(SHELL) /usr/bin/libtool
+ MAINTAINERCLEANFILES = Makefile.in
+ subdir = src
+ mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
diff --git a/app-crypt/steghide/steghide-0.5.1.ebuild b/app-crypt/steghide/steghide-0.5.1.ebuild
index ccf45dd4b559..cb53fab2b713 100644
--- a/app-crypt/steghide/steghide-0.5.1.ebuild
+++ b/app-crypt/steghide/steghide-0.5.1.ebuild
@@ -1,6 +1,8 @@
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-crypt/steghide/steghide-0.5.1.ebuild,v 1.3 2004/06/24 21:38:22 agriffis Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-crypt/steghide/steghide-0.5.1.ebuild,v 1.4 2004/07/30 17:54:55 chainsaw Exp $
+
+inherit eutils
DESCRIPTION="A steganography program which hides data in various media files"
HOMEPAGE="http://steghide.sourceforge.net/"
@@ -17,6 +19,7 @@ DEPEND=">=app-crypt/mhash-0.8.18-r1
src_compile() {
econf || die "configure failed"
+ epatch ${FILESDIR}/fix-libtool-invocation.patch
emake || die "make failed"
}