You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-libs/eet/eet-1.7.4.ebuild

65 lines
1.5 KiB

# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/eet/eet-1.7.4.ebuild,v 1.2 2013/04/01 19:39:00 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"
LICENSE="BSD-2"
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
dev-libs/libgcrypt )
!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 examples build-examples)
$(use_enable examples install-examples)
$(use_enable test tests)
${SSL_FLAGS}
${MY_ECONF}"
enlightenment_src_configure
}