pacho 14/11/22 16:54:38 Modified: gtorrentviewer-0.2b.ebuild ChangeLog Log: Fix underlinking (#510586 by Ted Tanberry and Leonid Kopylov), prepare to configure.in deprecation, fix tests, fix desktop file (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
Revision Changes Path 1.10 net-p2p/gtorrentviewer/gtorrentviewer-0.2b.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/gtorrentviewer/gtorrentviewer-0.2b.ebuild?rev=1.10&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/gtorrentviewer/gtorrentviewer-0.2b.ebuild?rev=1.10&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/gtorrentviewer/gtorrentviewer-0.2b.ebuild?r1=1.9&r2=1.10 Index: gtorrentviewer-0.2b.ebuild =================================================================== RCS file: /var/cvsroot/gentoo-x86/net-p2p/gtorrentviewer/gtorrentviewer-0.2b.ebuild,v retrieving revision 1.9 retrieving revision 1.10 diff -u -r1.9 -r1.10 --- gtorrentviewer-0.2b.ebuild 4 May 2012 06:33:34 -0000 1.9 +++ gtorrentviewer-0.2b.ebuild 22 Nov 2014 16:54:38 -0000 1.10 @@ -1,10 +1,11 @@ -# Copyright 1999-2012 Gentoo Foundation +# Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-p2p/gtorrentviewer/gtorrentviewer-0.2b.ebuild,v 1.9 2012/05/04 06:33:34 jdhore Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-p2p/gtorrentviewer/gtorrentviewer-0.2b.ebuild,v 1.10 2014/11/22 16:54:38 pacho Exp $ -EAPI=2 +EAPI=5 +GCONF_DEBUG="yes" -inherit eutils gnome2 +inherit autotools eutils gnome2 MY_PN=${PN/gtorrentviewer/GTorrentViewer} MY_P=${MY_PN}-${PV} @@ -12,20 +13,34 @@ DESCRIPTION="A GTK2-based viewer and editor for BitTorrent meta files" HOMEPAGE="http://gtorrentviewer.sourceforge.net/" SRC_URI="mirror://sourceforge/gtorrentviewer/${MY_P}.tar.gz" + LICENSE="GPL-2" KEYWORDS="amd64 ~ppc x86 ~x86-fbsd" + SLOT="0" IUSE="" + S=${WORKDIR}/${MY_P} -RDEPEND="net-misc/curl +RDEPEND=" + net-misc/curl >=x11-libs/gtk+-2.4:2 - >=dev-libs/glib-2.4:2" + >=dev-libs/glib-2.4:2 +" DEPEND="${RDEPEND} - virtual/pkgconfig" - -DOCS="AUTHORS ChangeLog INSTALL NEWS README" + virtual/pkgconfig +" src_prepare() { + mv configure.in configure.ac || die #426262 + epatch "${FILESDIR}"/${P}-curl-headers.patch + epatch "${FILESDIR}"/${P}-underlinking.patch + epatch "${FILESDIR}"/${P}-desktop.patch + + # Fix tests + echo "data/gtorrentviewer.desktop.in" >> po/POTFILES.in || die + + eautoreconf + gnome2_src_prepare } 1.15 net-p2p/gtorrentviewer/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/gtorrentviewer/ChangeLog?rev=1.15&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/gtorrentviewer/ChangeLog?rev=1.15&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/gtorrentviewer/ChangeLog?r1=1.14&r2=1.15 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/net-p2p/gtorrentviewer/ChangeLog,v retrieving revision 1.14 retrieving revision 1.15 diff -u -r1.14 -r1.15 --- ChangeLog 4 May 2012 06:33:34 -0000 1.14 +++ ChangeLog 22 Nov 2014 16:54:38 -0000 1.15 @@ -1,6 +1,12 @@ # ChangeLog for net-p2p/gtorrentviewer -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-p2p/gtorrentviewer/ChangeLog,v 1.14 2012/05/04 06:33:34 jdhore Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-p2p/gtorrentviewer/ChangeLog,v 1.15 2014/11/22 16:54:38 pacho Exp $ + + 22 Nov 2014; Pacho Ramos <[email protected]> + +files/gtorrentviewer-0.2b-desktop.patch, + +files/gtorrentviewer-0.2b-underlinking.patch, gtorrentviewer-0.2b.ebuild: + Fix underlinking (#510586 by Ted Tanberry and Leonid Kopylov), prepare to + configure.in deprecation, fix tests, fix desktop file 04 May 2012; Jeff Horelick <[email protected]> gtorrentviewer-0.2b.ebuild: dev-util/pkgconfig -> virtual/pkgconfig @@ -56,4 +62,3 @@ +gtorrentviewer-0.2a.ebuild: Initial import. Thanks to Dionysius Wilson Almeida <[email protected]> for the ebuild, #67795. -
