hasufell 14/07/16 14:53:36 Modified: ChangeLog Added: gflags-2.1.1-r1.ebuild Removed: gflags-2.1.1.ebuild Log: build shared libs wrt #517244, add static-libs USE flag (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key BDEED020)
Revision Changes Path 1.28 dev-cpp/gflags/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/gflags/ChangeLog?rev=1.28&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/gflags/ChangeLog?rev=1.28&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/gflags/ChangeLog?r1=1.27&r2=1.28 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-cpp/gflags/ChangeLog,v retrieving revision 1.27 retrieving revision 1.28 diff -u -r1.27 -r1.28 --- ChangeLog 15 Jul 2014 01:32:27 -0000 1.27 +++ ChangeLog 16 Jul 2014 14:53:36 -0000 1.28 @@ -1,6 +1,12 @@ # ChangeLog for dev-cpp/gflags # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-cpp/gflags/ChangeLog,v 1.27 2014/07/15 01:32:27 floppym Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-cpp/gflags/ChangeLog,v 1.28 2014/07/16 14:53:36 hasufell Exp $ + +*gflags-2.1.1-r1 (16 Jul 2014) + + 16 Jul 2014; Julian Ospald <hasuf...@gentoo.org> -gflags-2.1.1.ebuild, + +gflags-2.1.1-r1.ebuild: + build shared libs wrt #517244, add static-libs USE flag 15 Jul 2014; Mike Gilbert <flop...@gentoo.org> gflags-2.1.1.ebuild: Drop shared libs again; ABI is not stable. 1.1 dev-cpp/gflags/gflags-2.1.1-r1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/gflags/gflags-2.1.1-r1.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/gflags/gflags-2.1.1-r1.ebuild?rev=1.1&content-type=text/plain Index: gflags-2.1.1-r1.ebuild =================================================================== # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-cpp/gflags/gflags-2.1.1-r1.ebuild,v 1.1 2014/07/16 14:53:36 hasufell Exp $ EAPI="5" inherit cmake-multilib DESCRIPTION="Google's C++ argument parsing library" HOMEPAGE="http://code.google.com/p/gflags/" SRC_URI="https://github.com/schuhschuh/gflags/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="BSD" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux" IUSE="static-libs" PATCHES=( "${FILESDIR}/gflags-2.1.1-libs.patch" ) multilib_src_configure() { local mycmakeargs=( -DBUILD_SHARED_LIBS=ON $(cmake-utils_use_build static-libs STATIC_LIBS) ) cmake-utils_src_configure } multilib_src_install_all() { rm -rf "${ED}"/usr/share/doc dodoc {AUTHORS,ChangeLog,NEWS,README}.txt dohtml doc/* }