pacho 15/06/26 18:23:03 Modified: ChangeLog Added: corebird-1.0.ebuild Log: Version bump fixing building (#542822) (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
Revision Changes Path 1.3 net-im/corebird/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/corebird/ChangeLog?rev=1.3&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/corebird/ChangeLog?rev=1.3&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/corebird/ChangeLog?r1=1.2&r2=1.3 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/net-im/corebird/ChangeLog,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- ChangeLog 5 Aug 2014 18:34:10 -0000 1.2 +++ ChangeLog 26 Jun 2015 18:23:03 -0000 1.3 @@ -1,6 +1,11 @@ # ChangeLog for net-im/corebird -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-im/corebird/ChangeLog,v 1.2 2014/08/05 18:34:10 mrueg Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-im/corebird/ChangeLog,v 1.3 2015/06/26 18:23:03 pacho Exp $ + +*corebird-1.0 (26 Jun 2015) + + 26 Jun 2015; Pacho Ramos <pa...@gentoo.org> +corebird-1.0.ebuild: + Version bump fixing building (#542822) 05 Aug 2014; Manuel RĂ¼ger <mr...@gentoo.org> corebird-0.8.ebuild: Remove trailing '.' from DESCRIPTION. 1.1 net-im/corebird/corebird-1.0.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/corebird/corebird-1.0.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/corebird/corebird-1.0.ebuild?rev=1.1&content-type=text/plain Index: corebird-1.0.ebuild =================================================================== # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/net-im/corebird/corebird-1.0.ebuild,v 1.1 2015/06/26 18:23:03 pacho Exp $ EAPI=5 VALA_MIN_API_VERSION=0.24 AUTOTOOLS_AUTORECONF=1 AUTOTOOLS_IN_SOURCE_BUILD=1 inherit eutils autotools-utils gnome2 vala DESCRIPTION="Native GTK+3 Twitter client" HOMEPAGE="http://corebird.baedert.org/" SRC_URI="https://github.com/baedert/corebird/archive/${PV}.tar.gz -> ${P}.tar.gz" LICENSE="GPL-3" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="debug gstreamer" RDEPEND=" dev-db/sqlite:3 >=dev-libs/glib-2.40:2 dev-libs/json-glib dev-libs/libgee:0.8 gstreamer? ( media-plugins/gst-plugins-meta:1.0[X,ffmpeg] ) >=net-libs/libsoup-2.42.3.1 >=net-libs/rest-0.7.91:0.7 >=x11-libs/gtk+-3.14:3 " DEPEND="${RDEPEND} $(vala_depend) >=dev-util/intltool-0.40 sys-apps/sed virtual/pkgconfig " src_prepare() { sed -i -e "/manpagedir/s/manpagedir.*/&\/man1/g" data/Makefile.am || die autotools-utils_src_prepare gnome2_src_prepare vala_src_prepare } src_configure() { local myeconfargs=( $(usex gstreamer "" --disable-video) ) gnome2_src_configure "${myeconfargs[@]}" }