67 lines
1.5 KiB
Bash
67 lines
1.5 KiB
Bash
# Copyright 1999-2012 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/dev-libs/eet/eet-1.7.1.ebuild,v 1.1 2012/10/22 13:18:32 tommy Exp $
|
|
|
|
EAPI=2
|
|
|
|
inherit enlightenment
|
|
|
|
DESCRIPTION="E file chunk reading/writing library"
|
|
HOMEPAGE="http://trac.enlightenment.org/e/wiki/Eet"
|
|
SRC_URI="http://download.enlightenment.org/releases/${P}.tar.bz2"
|
|
|
|
KEYWORDS="~amd64 ~arm ~x86"
|
|
IUSE="debug examples gnutls ssl static-libs test"
|
|
|
|
RDEPEND=">=dev-libs/eina-1.7.0
|
|
virtual/jpeg
|
|
sys-libs/zlib
|
|
gnutls? ( net-libs/gnutls )
|
|
!gnutls? ( ssl? ( dev-libs/openssl ) )"
|
|
DEPEND="${RDEPEND}
|
|
test? ( dev-libs/check
|
|
dev-util/lcov )"
|
|
|
|
src_configure() {
|
|
local SSL_FLAGS=""
|
|
|
|
if use gnutls; then
|
|
if use ssl; then
|
|
ewarn "You have enabled both 'ssl' and 'gnutls', so we will use"
|
|
ewarn "gnutls and not openssl for cipher and signature support"
|
|
fi
|
|
SSL_FLAGS="
|
|
--enable-cipher
|
|
--enable-signature
|
|
--disable-openssl
|
|
--enable-gnutls"
|
|
elif use ssl; then
|
|
SSL_FLAGS="
|
|
--enable-cipher
|
|
--enable-signature
|
|
--enable-openssl
|
|
--disable-gnutls"
|
|
else
|
|
SSL_FLAGS="
|
|
--disable-cipher
|
|
--disable-signature
|
|
--disable-openssl
|
|
--disable-gnutls"
|
|
fi
|
|
|
|
export MY_ECONF="
|
|
$(use_enable debug assert)
|
|
$(use_enable doc)
|
|
$(use_enable test tests)
|
|
${SSL_FLAGS}
|
|
${MY_ECONF}"
|
|
|
|
enlightenment_src_configure
|
|
}
|
|
|
|
src_install() {
|
|
enlightenment_src_install
|
|
rm -r src/examples/Makefile* || die
|
|
docinto examples
|
|
dodoc src/examples/* || die
|
|
}
|