public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in net-p2p/retroshare: retroshare-0.5.5c.ebuild ChangeLog
@ 2014-02-17 22:52 Julian Ospald (hasufell)
  0 siblings, 0 replies; 3+ messages in thread
From: Julian Ospald (hasufell) @ 2014-02-17 22:52 UTC (permalink / raw
  To: gentoo-commits

hasufell    14/02/17 22:52:34

  Modified:             ChangeLog
  Added:                retroshare-0.5.5c.ebuild
  Log:
  version bump
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key E73C35B3)

Revision  Changes    Path
1.5                  net-p2p/retroshare/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/retroshare/ChangeLog?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/retroshare/ChangeLog?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/retroshare/ChangeLog?r1=1.4&r2=1.5

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-p2p/retroshare/ChangeLog,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- ChangeLog	17 Nov 2013 13:06:54 -0000	1.4
+++ ChangeLog	17 Feb 2014 22:52:34 -0000	1.5
@@ -1,6 +1,11 @@
 # ChangeLog for net-p2p/retroshare
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-p2p/retroshare/ChangeLog,v 1.4 2013/11/17 13:06:54 hasufell Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-p2p/retroshare/ChangeLog,v 1.5 2014/02/17 22:52:34 hasufell Exp $
+
+*retroshare-0.5.5c (17 Feb 2014)
+
+  17 Feb 2014; Julian Ospald <hasufell@gentoo.org> +retroshare-0.5.5c.ebuild:
+  version bump
 
 *retroshare-0.5.5b (17 Nov 2013)
 



1.1                  net-p2p/retroshare/retroshare-0.5.5c.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/retroshare/retroshare-0.5.5c.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/retroshare/retroshare-0.5.5c.ebuild?rev=1.1&content-type=text/plain

Index: retroshare-0.5.5c.ebuild
===================================================================
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-p2p/retroshare/retroshare-0.5.5c.ebuild,v 1.1 2014/02/17 22:52:34 hasufell Exp $

EAPI=5

inherit eutils multilib gnome2-utils qmake-utils

MY_PN="RetroShare"
MY_P="${MY_PN}-v${PV}"

DESCRIPTION="P2P private sharing application"
HOMEPAGE="http://retroshare.sourceforge.net"
SRC_URI="mirror://sourceforge/retroshare/retroshare_0.5.5-0.7068.tar.gz"

# pegmarkdown can also be used with MIT
LICENSE="GPL-2 GPL-3 Apache-2.0 LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="cli feedreader links-cloud qt4 voip"
REQUIRED_USE="|| ( cli qt4 )
	feedreader? ( qt4 )
	links-cloud? ( qt4 )
	voip? ( qt4 )"

RDEPEND="
	app-arch/bzip2
	dev-libs/openssl:0
	gnome-base/libgnome-keyring
	net-libs/libupnp
	sys-libs/zlib
	cli? (
		dev-libs/protobuf
		net-libs/libssh[server]
	)
	feedreader? (
		dev-libs/libxml2
		dev-libs/libxslt
		net-misc/curl
		dev-qt/qtcore:4
		dev-qt/qtgui:4
	)
	qt4? (
		x11-libs/libX11
		x11-libs/libXScrnSaver
		dev-qt/qtcore:4
		|| ( ( >=dev-qt/qtgui-4.8.5:4 dev-qt/designer:4 ) <dev-qt/qtgui-4.8.5:4 )
	)
	voip? (
		media-libs/speex
		dev-qt/qt-mobility[multimedia]
		dev-qt/qtmultimedia:4
	)"
DEPEND="${RDEPEND}
	app-arch/unzip
	dev-qt/qtcore:4
	virtual/pkgconfig"

S=${WORKDIR}/retroshare-0.5.5/src

src_prepare() {
	local dir

	sed -i \
		-e "s|/usr/lib/retroshare/extensions/|/usr/$(get_libdir)/${PN}/extensions/|" \
		libretroshare/src/rsserver/rsinit.cc \
		|| die "sed failed"

	rs_src_dirs="libbitdht/src openpgpsdk/src libretroshare/src supportlibs/pegmarkdown"
	use cli && rs_src_dirs="${rs_src_dirs} retroshare-nogui/src"
	use qt4 && rs_src_dirs="${rs_src_dirs} retroshare-gui/src"
	use links-cloud && rs_src_dirs="${rs_src_dirs} plugins/LinksCloud"
	use feedreader && rs_src_dirs="${rs_src_dirs} plugins/FeedReader"

	if use voip ; then
		rs_src_dirs="${rs_src_dirs} plugins/VOIP"
		echo "QT += multimedia" >> "plugins/VOIP/VOIP.pro" || die
		echo "CONFIG += mobility" >> "plugins/VOIP/VOIP.pro" || die
	fi
}

src_configure() {
	for dir in ${rs_src_dirs} ; do
		cd "${S}"/${dir} || die
		eqmake4
	done
}

src_compile() {
	local dir

	for dir in ${rs_src_dirs} ; do
		emake -C ${dir}
	done

	unset rs_src_dirs
}

src_install() {
	local i
	local extension_dir="/usr/$(get_libdir)/${PN}/extensions/"

	use cli && dobin retroshare-nogui/src/retroshare-nogui
	use qt4 && dobin retroshare-gui/src/RetroShare

	exeinto "${extension_dir}"
	use feedreader && doexe plugins/FeedReader/*.so*
	use links-cloud && doexe plugins/LinksCloud/*.so*
	use voip && doexe plugins/VOIP/*.so*

	insinto /usr/share/RetroShare
	doins libbitdht/src/bitdht/bdboot.txt

	dodoc README.txt
	make_desktop_entry RetroShare
	for i in 24 48 64 ; do
		doicon -s ${i} build_scripts/Ubuntu_src/data/${i}x${i}/${PN}.png
	done
	doicon -s 128 build_scripts/Ubuntu_src/data/${PN}.png
}

pkg_preinst() {
	gnome2_icon_savelist
}

pkg_postinst() {
	gnome2_icon_cache_update
}

pkg_postrm() {
	gnome2_icon_cache_update
}





^ permalink raw reply	[flat|nested] 3+ messages in thread

* [gentoo-commits] gentoo-x86 commit in net-p2p/retroshare: retroshare-0.5.5c.ebuild ChangeLog
@ 2014-07-29 16:40 JosA MarAa Alonso (nimiux)
  0 siblings, 0 replies; 3+ messages in thread
From: JosA MarAa Alonso (nimiux) @ 2014-07-29 16:40 UTC (permalink / raw
  To: gentoo-commits

nimiux      14/07/29 16:40:18

  Modified:             retroshare-0.5.5c.ebuild ChangeLog
  Log:
  Stable for amd64 wrt bug #518206
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key D628E536)

Revision  Changes    Path
1.2                  net-p2p/retroshare/retroshare-0.5.5c.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/retroshare/retroshare-0.5.5c.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/retroshare/retroshare-0.5.5c.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/retroshare/retroshare-0.5.5c.ebuild?r1=1.1&r2=1.2

Index: retroshare-0.5.5c.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-p2p/retroshare/retroshare-0.5.5c.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- retroshare-0.5.5c.ebuild	17 Feb 2014 22:52:34 -0000	1.1
+++ retroshare-0.5.5c.ebuild	29 Jul 2014 16:40:18 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-p2p/retroshare/retroshare-0.5.5c.ebuild,v 1.1 2014/02/17 22:52:34 hasufell Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-p2p/retroshare/retroshare-0.5.5c.ebuild,v 1.2 2014/07/29 16:40:18 nimiux Exp $
 
 EAPI=5
 
@@ -16,7 +16,7 @@
 # pegmarkdown can also be used with MIT
 LICENSE="GPL-2 GPL-3 Apache-2.0 LGPL-2.1"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE="cli feedreader links-cloud qt4 voip"
 REQUIRED_USE="|| ( cli qt4 )
 	feedreader? ( qt4 )



1.6                  net-p2p/retroshare/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/retroshare/ChangeLog?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/retroshare/ChangeLog?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/retroshare/ChangeLog?r1=1.5&r2=1.6

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-p2p/retroshare/ChangeLog,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- ChangeLog	17 Feb 2014 22:52:34 -0000	1.5
+++ ChangeLog	29 Jul 2014 16:40:18 -0000	1.6
@@ -1,6 +1,9 @@
 # ChangeLog for net-p2p/retroshare
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-p2p/retroshare/ChangeLog,v 1.5 2014/02/17 22:52:34 hasufell Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-p2p/retroshare/ChangeLog,v 1.6 2014/07/29 16:40:18 nimiux Exp $
+
+  29 Jul 2014; Chema Alonso <nimiux@gentoo.org> retroshare-0.5.5c.ebuild:
+  Stable for amd64 wrt bug #518206
 
 *retroshare-0.5.5c (17 Feb 2014)
 





^ permalink raw reply	[flat|nested] 3+ messages in thread

* [gentoo-commits] gentoo-x86 commit in net-p2p/retroshare: retroshare-0.5.5c.ebuild ChangeLog
@ 2014-08-10 17:37 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 3+ messages in thread
From: Agostino Sarubbo (ago) @ 2014-08-10 17:37 UTC (permalink / raw
  To: gentoo-commits

ago         14/08/10 17:37:53

  Modified:             retroshare-0.5.5c.ebuild ChangeLog
  Log:
  Stable for x86, wrt bug #518206
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: --include-arches="x86", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.3                  net-p2p/retroshare/retroshare-0.5.5c.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/retroshare/retroshare-0.5.5c.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/retroshare/retroshare-0.5.5c.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/retroshare/retroshare-0.5.5c.ebuild?r1=1.2&r2=1.3

Index: retroshare-0.5.5c.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-p2p/retroshare/retroshare-0.5.5c.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- retroshare-0.5.5c.ebuild	29 Jul 2014 16:40:18 -0000	1.2
+++ retroshare-0.5.5c.ebuild	10 Aug 2014 17:37:53 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-p2p/retroshare/retroshare-0.5.5c.ebuild,v 1.2 2014/07/29 16:40:18 nimiux Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-p2p/retroshare/retroshare-0.5.5c.ebuild,v 1.3 2014/08/10 17:37:53 ago Exp $
 
 EAPI=5
 
@@ -16,7 +16,7 @@
 # pegmarkdown can also be used with MIT
 LICENSE="GPL-2 GPL-3 Apache-2.0 LGPL-2.1"
 SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE="cli feedreader links-cloud qt4 voip"
 REQUIRED_USE="|| ( cli qt4 )
 	feedreader? ( qt4 )



1.7                  net-p2p/retroshare/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/retroshare/ChangeLog?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/retroshare/ChangeLog?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/retroshare/ChangeLog?r1=1.6&r2=1.7

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-p2p/retroshare/ChangeLog,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- ChangeLog	29 Jul 2014 16:40:18 -0000	1.6
+++ ChangeLog	10 Aug 2014 17:37:53 -0000	1.7
@@ -1,6 +1,9 @@
 # ChangeLog for net-p2p/retroshare
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-p2p/retroshare/ChangeLog,v 1.6 2014/07/29 16:40:18 nimiux Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-p2p/retroshare/ChangeLog,v 1.7 2014/08/10 17:37:53 ago Exp $
+
+  10 Aug 2014; Agostino Sarubbo <ago@gentoo.org> retroshare-0.5.5c.ebuild:
+  Stable for x86, wrt bug #518206
 
   29 Jul 2014; Chema Alonso <nimiux@gentoo.org> retroshare-0.5.5c.ebuild:
   Stable for amd64 wrt bug #518206





^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2014-08-11 21:16 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-08-10 17:37 [gentoo-commits] gentoo-x86 commit in net-p2p/retroshare: retroshare-0.5.5c.ebuild ChangeLog Agostino Sarubbo (ago)
  -- strict thread matches above, loose matches on Subject: below --
2014-07-29 16:40 JosA MarAa Alonso (nimiux)
2014-02-17 22:52 Julian Ospald (hasufell)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox