dlan 14/09/11 02:47:59 Modified: ChangeLog Added: megatools-1.9.92-r2.ebuild Removed: megatools-1.9.92-r1.ebuild Log: fix missing glib-networking dep, bug 522512, thanks Jan Fikar (Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key 0xAABEFD55)
Revision Changes Path 1.3 net-misc/megatools/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/megatools/ChangeLog?rev=1.3&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/megatools/ChangeLog?rev=1.3&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/megatools/ChangeLog?r1=1.2&r2=1.3 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/net-misc/megatools/ChangeLog,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- ChangeLog 9 Sep 2014 03:21:13 -0000 1.2 +++ ChangeLog 11 Sep 2014 02:47:59 -0000 1.3 @@ -1,6 +1,12 @@ # ChangeLog for net-misc/megatools # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/megatools/ChangeLog,v 1.2 2014/09/09 03:21:13 dlan Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/megatools/ChangeLog,v 1.3 2014/09/11 02:47:59 dlan Exp $ + +*megatools-1.9.92-r2 (11 Sep 2014) + + 11 Sep 2014; Yixun Lan <d...@gentoo.org> -megatools-1.9.92-r1.ebuild, + +megatools-1.9.92-r2.ebuild: + fix missing glib-networking dep, bug 522512, thanks Jan Fikar *megatools-1.9.92-r1 (09 Sep 2014) 1.1 net-misc/megatools/megatools-1.9.92-r2.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/megatools/megatools-1.9.92-r2.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/megatools/megatools-1.9.92-r2.ebuild?rev=1.1&content-type=text/plain Index: megatools-1.9.92-r2.ebuild =================================================================== # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/net-misc/megatools/megatools-1.9.92-r2.ebuild,v 1.1 2014/09/11 02:47:59 dlan Exp $ EAPI=5 AUTOTOOLS_AUTORECONF=1 AUTOTOOLS_IN_SOURCE_BUILD=1 inherit autotools-utils DESCRIPTION="Command line tools and C library for accessing Mega cloud storage" HOMEPAGE="https://github.com/megous/megatools" SRC_URI="https://github.com/megous/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="fuse introspection static-libs" COMMON_DEPEND="dev-libs/glib:2 dev-libs/openssl:0 net-misc/curl fuse? ( sys-fs/fuse ) " RDEPEND="${COMMON_DEPEND} net-libs/glib-networking[ssl] " DEPEND="${COMMON_DEPEND} virtual/pkgconfig app-text/asciidoc" PATCHES=( "${FILESDIR}"/${P}-fuse.patch ) src_configure() { local myeconfargs=( --enable-shared --enable-docs-build --disable-maintainer-mode --disable-warnings --disable-glibtest $(use_enable static-libs static) $(use_enable introspection) $(use_with fuse) ) autotools-utils_src_configure }