vapier 15/03/16 23:31:46 Modified: ChangeLog Added: eet-1.7.10.ebuild Log: Version bump. (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key D2E96200)
Revision Changes Path 1.33 dev-libs/eet/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/eet/ChangeLog?rev=1.33&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/eet/ChangeLog?rev=1.33&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/eet/ChangeLog?r1=1.32&r2=1.33 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-libs/eet/ChangeLog,v retrieving revision 1.32 retrieving revision 1.33 diff -u -r1.32 -r1.33 --- ChangeLog 1 Mar 2014 22:34:46 -0000 1.32 +++ ChangeLog 16 Mar 2015 23:31:46 -0000 1.33 @@ -1,6 +1,11 @@ # ChangeLog for dev-libs/eet -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/eet/ChangeLog,v 1.32 2014/03/01 22:34:46 mgorny Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/eet/ChangeLog,v 1.33 2015/03/16 23:31:46 vapier Exp $ + +*eet-1.7.10 (16 Mar 2015) + + 16 Mar 2015; Mike Frysinger <[email protected]> +eet-1.7.10.ebuild: + Version bump. 01 Mar 2014; Michał Górny <[email protected]> eet-1.7.8.ebuild, eet-1.7.9.ebuild, eet-9999.ebuild: 1.1 dev-libs/eet/eet-1.7.10.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/eet/eet-1.7.10.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/eet/eet-1.7.10.ebuild?rev=1.1&content-type=text/plain Index: eet-1.7.10.ebuild =================================================================== # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-libs/eet/eet-1.7.10.ebuild,v 1.1 2015/03/16 23:31:46 vapier Exp $ EAPI="4" if [[ ${PV} == "9999" ]] ; then EGIT_SUB_PROJECT="legacy" EGIT_URI_APPEND=${PN} EGIT_BRANCH=${PN}-1.7 else SRC_URI="http://download.enlightenment.org/releases/${P}.tar.bz2" EKEY_STATE="snap" fi inherit enlightenment DESCRIPTION="E file chunk reading/writing library" HOMEPAGE="http://trac.enlightenment.org/e/wiki/Eet" LICENSE="BSD-2" IUSE="debug examples gnutls ssl static-libs test" RDEPEND=">=dev-libs/eina-${PV} virtual/jpeg sys-libs/zlib gnutls? ( net-libs/gnutls dev-libs/libgcrypt:0 ) !gnutls? ( ssl? ( dev-libs/openssl ) )" DEPEND="${RDEPEND} test? ( dev-libs/check dev-util/lcov )" src_configure() { E_ECONF=( $(use_enable debug assert) $(use_enable doc) $(use_enable examples build-examples) $(use_enable examples install-examples) $(use_enable test tests) ) 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 E_ECONF+=( --enable-cipher --enable-signature --disable-openssl --enable-gnutls ) elif use ssl; then E_ECONF+=( --enable-cipher --enable-signature --enable-openssl --disable-gnutls ) else E_ECONF+=( --disable-cipher --disable-signature --disable-openssl --disable-gnutls ) fi enlightenment_src_configure }
