ssuominen 14/10/24 17:51:34 Modified: ChangeLog Added: libical-1.0.1.ebuild Log: Version bump. Stop building static archives (.a) with USE="-static-libs" uselessly. (Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key 4868F14D)
Revision Changes Path 1.87 dev-libs/libical/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libical/ChangeLog?rev=1.87&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libical/ChangeLog?rev=1.87&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libical/ChangeLog?r1=1.86&r2=1.87 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-libs/libical/ChangeLog,v retrieving revision 1.86 retrieving revision 1.87 diff -u -r1.86 -r1.87 --- ChangeLog 19 May 2014 12:55:58 -0000 1.86 +++ ChangeLog 24 Oct 2014 17:51:34 -0000 1.87 @@ -1,6 +1,12 @@ # ChangeLog for dev-libs/libical # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libical/ChangeLog,v 1.86 2014/05/19 12:55:58 johu Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libical/ChangeLog,v 1.87 2014/10/24 17:51:34 ssuominen Exp $ + +*libical-1.0.1 (24 Oct 2014) + + 24 Oct 2014; Samuli Suominen <[email protected]> +libical-1.0.1.ebuild: + Version bump. Stop building static archives (.a) with USE="-static-libs" + uselessly. 19 May 2014; Johannes Huber <[email protected]> -libical-0.48.ebuild: Remove old. 1.1 dev-libs/libical/libical-1.0.1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libical/libical-1.0.1.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libical/libical-1.0.1.ebuild?rev=1.1&content-type=text/plain Index: libical-1.0.1.ebuild =================================================================== # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-libs/libical/libical-1.0.1.ebuild,v 1.1 2014/10/24 17:51:34 ssuominen Exp $ EAPI=5 inherit cmake-utils DESCRIPTION="An implementation of basic iCAL protocols from citadel, previously known as aurore" HOMEPAGE="http://github.com/libical/libical" SRC_URI="http://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" # FIGURE OUT: Why ebuild for 1.0 was marked || ( MPL-1.1 LGPL-2 ) against what COPYING file says? LICENSE="|| ( MPL-1.0 LGPL-2.1 )" SLOT="0/1" KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris" IUSE="doc examples introspection static-libs" RDEPEND="introspection? ( dev-libs/gobject-introspection )" DEPEND="${RDEPEND} dev-lang/perl" src_configure() { local mycmakeargs=( $(cmake-utils_use introspection GOBJECT_INTROSPECTION) ) use static-libs || mycmakeargs+=( -DSHARED_ONLY=ON ) cmake-utils_src_configure } DOCS=( AUTHORS ReadMe.txt ReleaseNotes.txt TEST THANKS TODO doc/{AddingOrModifyingComponents,UsingLibical}.txt ) src_compile() { cmake-utils_src_compile -j1 } src_install() { cmake-utils_src_install if use examples; then rm examples/Makefile* examples/CMakeLists.txt insinto /usr/share/doc/${PF}/examples doins examples/* fi }
