rafaelmartins 14/05/18 21:52:47 Modified: ChangeLog Added: balde-0.1.1.ebuild Removed: balde-0.1.ebuild Log: Version bump. (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key )
Revision Changes Path 1.2 net-libs/balde/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/balde/ChangeLog?rev=1.2&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/balde/ChangeLog?rev=1.2&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/balde/ChangeLog?r1=1.1&r2=1.2 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/net-libs/balde/ChangeLog,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- ChangeLog 18 May 2014 21:34:24 -0000 1.1 +++ ChangeLog 18 May 2014 21:52:47 -0000 1.2 @@ -1,6 +1,12 @@ # ChangeLog for net-libs/balde # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/balde/ChangeLog,v 1.1 2014/05/18 21:34:24 rafaelmartins Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/balde/ChangeLog,v 1.2 2014/05/18 21:52:47 rafaelmartins Exp $ + +*balde-0.1.1 (18 May 2014) + + 18 May 2014; Rafael G. Martins <rafaelmart...@gentoo.org> +balde-0.1.1.ebuild, + -balde-0.1.ebuild: + Version bump. *balde-0.1 (18 May 2014) 1.1 net-libs/balde/balde-0.1.1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/balde/balde-0.1.1.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/balde/balde-0.1.1.ebuild?rev=1.1&content-type=text/plain Index: balde-0.1.1.ebuild =================================================================== # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/net-libs/balde/balde-0.1.1.ebuild,v 1.1 2014/05/18 21:52:47 rafaelmartins Exp $ EAPI=5 if [[ ${PV} = *9999* ]]; then EGIT_REPO_URI="git://github.com/balde/balde.git https://github.com/balde/balde.git" inherit git-r3 autotools fi DESCRIPTION="A microframework for C based on GLib and bad intentions." HOMEPAGE="http://balde.io/" SRC_URI="https://github.com/${PN}/${PN}/releases/download/v${PV}/${P}.tar.bz2" KEYWORDS="~amd64 ~x86" if [[ ${PV} = *9999* ]]; then SRC_URI="" KEYWORDS="" fi LICENSE="LGPL-2" SLOT="0" IUSE="doc test" RDEPEND=">=dev-libs/glib-2.34 dev-libs/fcgi x11-misc/shared-mime-info" if [[ ${PV} = *9999* ]]; then RDEPEND="${RDEPEND} dev-util/peg" fi DEPEND="${RDEPEND} doc? ( app-doc/doxygen )" src_prepare() { [[ ${PV} = *9999* ]] && eautoreconf default } src_configure() { econf \ $(use_with doc doxygen) \ --disable-examples \ --without-valgrind } src_compile() { default use doc && emake doxygen } src_install() { default use doc && dohtml -r doc/build/html/. }