mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-02-05 15:04:24 +01:00
45 lines
1.1 KiB
Bash
45 lines
1.1 KiB
Bash
# Copyright 2012 Funtoo Technologies
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI="5"
|
|
inherit autotools eutils
|
|
|
|
DESCRIPTION="A steganography program which hides data in various media files"
|
|
HOMEPAGE="http://steghide.sourceforge.net/"
|
|
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
IUSE="debug"
|
|
|
|
DEPEND=">=app-crypt/mhash-0.8.18-r1
|
|
>=dev-libs/libmcrypt-2.5.7
|
|
>=sys-libs/zlib-1.1.4-r2
|
|
virtual/jpeg"
|
|
RDEPEND="${DEPEND}"
|
|
|
|
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 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
|
|
}
|