app-crypt/steghide: Fix S variable in ebuild. - parlay - yet another gentoo overlay
HTML git clone https://git.parazyd.org/parlay
DIR Log
DIR Files
DIR Refs
DIR README
---
DIR commit 823456ebca694add398b1f15e856d2ff6f5540fd
DIR parent d9eaabf8df10618ba58221545fe2d384ba6e3f3b
HTML Author: parazyd <parazyd@dyne.org>
Date: Sat, 13 May 2017 10:38:59 +0200
app-crypt/steghide: Fix S variable in ebuild.
Diffstat:
A app-crypt/steghide/steghide-0.5.1-… | 50 +++++++++++++++++++++++++++++++
D app-crypt/steghide/steghide-0.5.1.… | 52 -------------------------------
2 files changed, 50 insertions(+), 52 deletions(-)
---
DIR diff --git a/app-crypt/steghide/steghide-0.5.1-r1.ebuild b/app-crypt/steghide/steghide-0.5.1-r1.ebuild
@@ -0,0 +1,50 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+
+inherit autotools eutils
+
+DESCRIPTION="A steganography program which hides data in various media files"
+HOMEPAGE="http://steghide.sourceforge.net"
+LICENSE="GPL-2"
+SRC_URI="http://prdownloads.sourceforge.net/${PN}/${P}.tar.gz"
+KEYWORDS="~amd64 ~x86"
+
+SLOT="0"
+IUSE="nls debug"
+
+RDEPEND="
+ >=app-crypt/mhash-0.8.18-r1
+ >=dev-libs/libmcrypt-2.5.7
+ >=sys-libs/zlib-1.1.4-r2
+ virtual/jpeg
+ "
+DEPEND="${RDEPEND}"
+
+src_prepare() {
+ #export CXXFLAGS="$CXXFLAGS -std=c++0x"
+ epatch "${FILESDIR}"/${P}-gcc34.patch \
+ "${FILESDIR}"/${P}-gcc4.patch \
+ "${FILESDIR}"/${P}-gcc43.patch
+ eautoreconf
+}
+src_configure() {
+ export CXXFLAGS="$CXXFLAGS -std=c++0x"
+ econf \
+ $(use_enable nls) \
+ $(use_enable debug)
+}
+
+src_compile() {
+ export CXXFLAGS="$CXXFLAGS -std=c++0x"
+ local libtool
+ [[ ${CHOST} == *-darwin* ]] && libtool=$(type -P glibtool) || libtool=$(type -P libtool)
+ emake LIBTOOL="${libtool}" || die "emake failed"
+}
+
+src_install() {
+ emake DESTDIR="${ED}" docdir="${EPREFIX}/usr/share/doc/${PF}" install || die "emake install failed"
+ #prepalldocs
+}
DIR diff --git a/app-crypt/steghide/steghide-0.5.1.ebuild b/app-crypt/steghide/steghide-0.5.1.ebuild
@@ -1,52 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="5"
-
-inherit autotools eutils
-
-DESCRIPTION="A steganography program which hides data in various media files"
-HOMEPAGE="http://steghide.sourceforge.net"
-LICENSE="GPL-2"
-PKGNAME="steghide"
-S=${WORKDIR}/${PKGNAME}-${PV}
-SRC_URI="http://prdownloads.sourceforge.net/${PN}/${P}.tar.gz"
-KEYWORDS="~amd64 ~x86"
-
-SLOT="0"
-IUSE="nls debug"
-
-RDEPEND="
- >=app-crypt/mhash-0.8.18-r1
- >=dev-libs/libmcrypt-2.5.7
- >=sys-libs/zlib-1.1.4-r2
- virtual/jpeg
- "
-DEPEND="${RDEPEND}"
-
-src_prepare() {
- #export CXXFLAGS="$CXXFLAGS -std=c++0x"
- epatch "${FILESDIR}"/${P}-gcc34.patch \
- "${FILESDIR}"/${P}-gcc4.patch \
- "${FILESDIR}"/${P}-gcc43.patch
- eautoreconf
-}
-src_configure() {
- export CXXFLAGS="$CXXFLAGS -std=c++0x"
- econf \
- $(use_enable nls) \
- $(use_enable debug)
-}
-
-src_compile() {
- export CXXFLAGS="$CXXFLAGS -std=c++0x"
- local libtool
- [[ ${CHOST} == *-darwin* ]] && libtool=$(type -P glibtool) || libtool=$(type -P libtool)
- emake LIBTOOL="${libtool}" || die "emake failed"
-}
-
-src_install() {
- emake DESTDIR="${ED}" docdir="${EPREFIX}/usr/share/doc/${PF}" install || die "emake install failed"
- #prepalldocs
-}