[gentoo-commits] gentoo-x86 commit in dev-games/openscenegraph/files: openscenegraph-3.2.1-gdal-2.0.patch

2015-07-20 Thread Maciej Mrozowski (reavertm)
reavertm15/07/20 19:24:58

  Added:openscenegraph-3.2.1-gdal-2.0.patch
  Log:
  Addd patch for gdal-2.0 compilation, fixes bug 554310.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
B1E955DB)

Revision  ChangesPath
1.1  
dev-games/openscenegraph/files/openscenegraph-3.2.1-gdal-2.0.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/openscenegraph/files/openscenegraph-3.2.1-gdal-2.0.patch?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/openscenegraph/files/openscenegraph-3.2.1-gdal-2.0.patch?rev=1.1&content-type=text/plain

Index: openscenegraph-3.2.1-gdal-2.0.patch
===
--- OpenSceneGraph-3.2.1/src/osgPlugins/ogr/ReaderWriterOGR.cpp
+++ OpenSceneGraph-3.2.1/src/osgPlugins/ogr/ReaderWriterOGR.cpp
@@ -134,11 +134,21 @@
 
 virtual ReadResult readFile(const std::string& fileName, const 
osgDB::ReaderWriter::Options* options) const
 {
+#if GDAL_VERSION_MAJOR < 2
 if (OGRSFDriverRegistrar::GetRegistrar()->GetDriverCount() == 0)
 OGRRegisterAll();
+#else
+if (GDALGetDriverCount() == 0)
+GDALAllRegister();
+#endif
 
 // Try to open data source
+#if GDAL_VERSION_MAJOR < 2
 OGRDataSource* file = OGRSFDriverRegistrar::Open(fileName.c_str());
+#else
+GDALDataset   *file;
+file = (GDALDataset*) GDALOpenEx( fileName.c_str(), GDAL_OF_VECTOR, 
NULL, NULL, NULL );
+#endif
 if (!file)
 return 0;
 
@@ -156,6 +166,7 @@
 
 osg::Group* group = new osg::Group;
 
+#if GDAL_VERSION_MAJOR < 2
 for (int i = 0; i < file->GetLayerCount(); i++)
 {
 osg::Group* node = readLayer(file->GetLayer(i), file->GetName(), 
useRandomColorByFeature, addGroupPerFeature);
@@ -163,6 +174,16 @@
 group->addChild( node );
 }
 OGRDataSource::DestroyDataSource( file );
+#else
+for (int i = 0; i < file->GetLayerCount(); i++)
+{
+OGRLayer* layer = (OGRLayer *)GDALDatasetGetLayer(file, i); 
+osg::Group* node = readLayer(layer, layer->GetName(), 
useRandomColorByFeature, addGroupPerFeature);
+if (node)
+group->addChild( node );
+}
+GDALClose( file );
+#endif
 return group;
 }
 






[gentoo-commits] gentoo-x86 commit in dev-games/openscenegraph: openscenegraph-3.2.1-r1.ebuild ChangeLog

2015-07-20 Thread Maciej Mrozowski (reavertm)
reavertm15/07/20 19:24:57

  Modified: openscenegraph-3.2.1-r1.ebuild ChangeLog
  Log:
  Addd patch for gdal-2.0 compilation, fixes bug 554310.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
B1E955DB)

Revision  ChangesPath
1.2  dev-games/openscenegraph/openscenegraph-3.2.1-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/openscenegraph/openscenegraph-3.2.1-r1.ebuild?rev=1.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/openscenegraph/openscenegraph-3.2.1-r1.ebuild?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/openscenegraph/openscenegraph-3.2.1-r1.ebuild?r1=1.1&r2=1.2

Index: openscenegraph-3.2.1-r1.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-games/openscenegraph/openscenegraph-3.2.1-r1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- openscenegraph-3.2.1-r1.ebuild  14 Jul 2015 17:30:59 -  1.1
+++ openscenegraph-3.2.1-r1.ebuild  20 Jul 2015 19:24:57 -  1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-games/openscenegraph/openscenegraph-3.2.1-r1.ebuild,v
 1.1 2015/07/14 17:30:59 reavertm Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-games/openscenegraph/openscenegraph-3.2.1-r1.ebuild,v
 1.2 2015/07/20 19:24:57 reavertm Exp $
 
 EAPI=5
 
@@ -89,6 +89,7 @@
 
 PATCHES=(
"${FILESDIR}"/${PN}-3.2.1-cmake.patch
+   "${FILESDIR}"/${PN}-3.2.1-gdal-2.0.patch
 )
 
 src_configure() {



1.64 dev-games/openscenegraph/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/openscenegraph/ChangeLog?rev=1.64&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/openscenegraph/ChangeLog?rev=1.64&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/openscenegraph/ChangeLog?r1=1.63&r2=1.64

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-games/openscenegraph/ChangeLog,v
retrieving revision 1.63
retrieving revision 1.64
diff -u -r1.63 -r1.64
--- ChangeLog   14 Jul 2015 17:30:59 -  1.63
+++ ChangeLog   20 Jul 2015 19:24:57 -  1.64
@@ -1,6 +1,10 @@
 # ChangeLog for dev-games/openscenegraph
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-games/openscenegraph/ChangeLog,v 1.63 
2015/07/14 17:30:59 reavertm Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-games/openscenegraph/ChangeLog,v 1.64 
2015/07/20 19:24:57 reavertm Exp $
+
+  20 Jul 2015; Maciej Mrozowski 
+  +files/openscenegraph-3.2.1-gdal-2.0.patch, openscenegraph-3.2.1-r1.ebuild:
+  Addd patch for gdal-2.0 compilation, fixes bug 554310.
 
 *openscenegraph-3.2.1-r1 (14 Jul 2015)
 






[gentoo-commits] gentoo-x86 commit in dev-games/openscenegraph: openscenegraph-3.2.1-r1.ebuild ChangeLog openscenegraph-3.0.1-r1.ebuild

2015-07-14 Thread Maciej Mrozowski (reavertm)
reavertm15/07/14 17:30:59

  Modified: ChangeLog
  Added:openscenegraph-3.2.1-r1.ebuild
  Removed:  openscenegraph-3.0.1-r1.ebuild
  Log:
  Add Qt5 support, fixes bug 553354. Remove old.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
B1E955DB)

Revision  ChangesPath
1.63 dev-games/openscenegraph/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/openscenegraph/ChangeLog?rev=1.63&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/openscenegraph/ChangeLog?rev=1.63&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/openscenegraph/ChangeLog?r1=1.62&r2=1.63

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-games/openscenegraph/ChangeLog,v
retrieving revision 1.62
retrieving revision 1.63
diff -u -r1.62 -r1.63
--- ChangeLog   6 Jun 2015 03:28:39 -   1.62
+++ ChangeLog   14 Jul 2015 17:30:59 -  1.63
@@ -1,6 +1,15 @@
 # ChangeLog for dev-games/openscenegraph
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-games/openscenegraph/ChangeLog,v 1.62 
2015/06/06 03:28:39 reavertm Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-games/openscenegraph/ChangeLog,v 1.63 
2015/07/14 17:30:59 reavertm Exp $
+
+*openscenegraph-3.2.1-r1 (14 Jul 2015)
+
+  14 Jul 2015; Maciej Mrozowski 
+  +openscenegraph-3.2.1-r1.ebuild, -files/openscenegraph-3.0.1-cmake.patch,
+  -files/openscenegraph-3.0.1-libav-0.7.patch,
+  -files/openscenegraph-3.0.1-libav-9.patch,
+  -files/openscenegraph-3.0.1-xinelib12x.patch, 
-openscenegraph-3.0.1-r1.ebuild:
+  Add Qt5 support, fixes bug 553354. Remove old.
 
   06 Jun 2015; Maciej Mrozowski 
   files/openscenegraph-3.2.1-cmake.patch, openscenegraph-3.2.1.ebuild:



1.1  dev-games/openscenegraph/openscenegraph-3.2.1-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/openscenegraph/openscenegraph-3.2.1-r1.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/openscenegraph/openscenegraph-3.2.1-r1.ebuild?rev=1.1&content-type=text/plain

Index: openscenegraph-3.2.1-r1.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-games/openscenegraph/openscenegraph-3.2.1-r1.ebuild,v
 1.1 2015/07/14 17:30:59 reavertm Exp $

EAPI=5

inherit eutils cmake-utils flag-o-matic wxwidgets

MY_PN="OpenSceneGraph"
MY_P=${MY_PN}-${PV}

DESCRIPTION="Open source high performance 3D graphics toolkit"
HOMEPAGE="http://www.openscenegraph.org/projects/osg/";
SRC_URI="http://www.openscenegraph.org/downloads/developer_releases/${MY_P}.zip";

LICENSE="wxWinLL-3 LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="asio curl debug doc examples ffmpeg fltk fox gdal gif glut gtk jpeg jpeg2k
openexr openinventor osgapps pdf png qt4 qt5 sdl svg tiff truetype vnc wxwidgets
xine xrandr zlib"

REQUIRED_USE="
qt4? ( !qt5 )
qt5? ( !qt4 )
"

# TODO: COLLADA, FBX, GTA, ITK, OpenVRML, Performer, DCMTK
RDEPEND="
x11-libs/libSM
x11-libs/libXext
virtual/glu
virtual/opengl
asio? ( dev-cpp/asio )
curl? ( net-misc/curl )
examples? (
fltk? ( x11-libs/fltk:1[opengl] )
fox? ( x11-libs/fox:1.6[opengl] )
glut? ( media-libs/freeglut )
gtk? ( x11-libs/gtkglext )
sdl? ( media-libs/libsdl )
wxwidgets? ( x11-libs/wxGTK[opengl,X] )
)
ffmpeg? ( virtual/ffmpeg )
gdal? ( sci-libs/gdal )
gif? ( media-libs/giflib )
jpeg? ( virtual/jpeg )
jpeg2k? ( media-libs/jasper )
openexr? (
media-libs/ilmbase
media-libs/openexr
)
openinventor? ( media-libs/coin )
pdf? ( app-text/poppler[cairo] )
png? ( media-libs/libpng:0 )
qt4? (
dev-qt/qtcore:4
dev-qt/qtgui:4
dev-qt/qtopengl:4
)
qt5? (
dev-qt/qtcore:5
dev-qt/qtgui:5
dev-qt/qtopengl:5
dev-qt/qtwidgets:5
)
svg? (
gnome-base/librsvg
x11-libs/cairo
)
tiff? ( media-libs/tiff:0 )
truetype? ( media-libs/freetype:2 )
vnc? ( net-libs/libvncserver )
xine? ( media-libs/xine-lib )
xrandr? ( x11-libs/libXrandr )
zlib? ( sys-libs/zlib )
"
DEPEND="${RDEPEND}
app-arch/unzip
virtual/pkgconfig
x11-proto/xextproto
doc? ( app-doc/doxygen )
xrandr? ( x11-proto/randrproto )
"

S=${WORKDIR}/${MY_P}

DOCS=(AUTHORS.txt Cha

[gentoo-commits] gentoo-x86 commit in dev-games/openscenegraph/files: openscenegraph-3.0.1-libav-0.7.patch openscenegraph-3.0.1-libav-9.patch openscenegraph-3.0.1-cmake.patch openscenegraph-3.0.1-xine

2015-07-14 Thread Maciej Mrozowski (reavertm)
reavertm15/07/14 17:30:59

  Removed:  openscenegraph-3.0.1-libav-0.7.patch
openscenegraph-3.0.1-libav-9.patch
openscenegraph-3.0.1-cmake.patch
openscenegraph-3.0.1-xinelib12x.patch
  Log:
  Add Qt5 support, fixes bug 553354. Remove old.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
B1E955DB)



[gentoo-commits] gentoo-x86 commit in dev-libs/injeqt: injeqt-1.0.0.ebuild ChangeLog

2015-07-13 Thread Maciej Mrozowski (reavertm)
reavertm15/07/14 00:42:25

  Modified: injeqt-1.0.0.ebuild ChangeLog
  Log:
  Fix bug 554294.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
B1E955DB)

Revision  ChangesPath
1.2  dev-libs/injeqt/injeqt-1.0.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/injeqt/injeqt-1.0.0.ebuild?rev=1.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/injeqt/injeqt-1.0.0.ebuild?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/injeqt/injeqt-1.0.0.ebuild?r1=1.1&r2=1.2

Index: injeqt-1.0.0.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/injeqt/injeqt-1.0.0.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- injeqt-1.0.0.ebuild 5 Jul 2015 20:06:58 -   1.1
+++ injeqt-1.0.0.ebuild 14 Jul 2015 00:42:24 -  1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/injeqt/injeqt-1.0.0.ebuild,v 1.1 
2015/07/05 20:06:58 reavertm Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/injeqt/injeqt-1.0.0.ebuild,v 1.2 
2015/07/14 00:42:24 reavertm Exp $
 
 EAPI=5
 
@@ -24,6 +24,7 @@
 
 src_configure() {
local mycmakeargs=(
+   -DDISABLE_EXAMPLES=ON
$(cmake-utils_use_disable test TESTS)
)
cmake-utils_src_configure



1.2  dev-libs/injeqt/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/injeqt/ChangeLog?rev=1.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/injeqt/ChangeLog?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/injeqt/ChangeLog?r1=1.1&r2=1.2

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/injeqt/ChangeLog,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ChangeLog   5 Jul 2015 20:06:58 -   1.1
+++ ChangeLog   14 Jul 2015 00:42:24 -  1.2
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/injeqt
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/injeqt/ChangeLog,v 1.1 2015/07/05 
20:06:58 reavertm Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/injeqt/ChangeLog,v 1.2 2015/07/14 
00:42:24 reavertm Exp $
+
+  14 Jul 2015; Maciej Mrozowski  injeqt-1.0.0.ebuild:
+  Fix bug 554294.
 
 *injeqt-1.0.0 (05 Jul 2015)
 






[gentoo-commits] gentoo-x86 commit in games-simulation/flightgear: flightgear-3.4.0.ebuild ChangeLog

2015-07-11 Thread Maciej Mrozowski (reavertm)
reavertm15/07/11 15:08:35

  Modified: flightgear-3.4.0.ebuild ChangeLog
  Log:
  Fix bug 554292.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
B1E955DB)

Revision  ChangesPath
1.5  games-simulation/flightgear/flightgear-3.4.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/flightgear/flightgear-3.4.0.ebuild?rev=1.5&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/flightgear/flightgear-3.4.0.ebuild?rev=1.5&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/flightgear/flightgear-3.4.0.ebuild?r1=1.4&r2=1.5

Index: flightgear-3.4.0.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/games-simulation/flightgear/flightgear-3.4.0.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- flightgear-3.4.0.ebuild 19 Apr 2015 10:15:59 -  1.4
+++ flightgear-3.4.0.ebuild 11 Jul 2015 15:08:35 -  1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/games-simulation/flightgear/flightgear-3.4.0.ebuild,v 
1.4 2015/04/19 10:15:59 ago Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/games-simulation/flightgear/flightgear-3.4.0.ebuild,v 
1.5 2015/07/11 15:08:35 reavertm Exp $
 
 EAPI=5
 
@@ -45,6 +45,11 @@
~games-simulation/${PN}-data-${PV}
 "
 
+PATCHES=(
+   "${FILESDIR}/0001-${P}-cmake.patch"
+   "${FILESDIR}/0002-${P}-cmake.patch"
+)
+
 DOCS=(AUTHORS ChangeLog NEWS README Thanks)
 
 src_configure() {



1.82 games-simulation/flightgear/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/flightgear/ChangeLog?rev=1.82&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/flightgear/ChangeLog?rev=1.82&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/flightgear/ChangeLog?r1=1.81&r2=1.82

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/games-simulation/flightgear/ChangeLog,v
retrieving revision 1.81
retrieving revision 1.82
diff -u -r1.81 -r1.82
--- ChangeLog   14 May 2015 22:38:35 -  1.81
+++ ChangeLog   11 Jul 2015 15:08:35 -  1.82
@@ -1,6 +1,11 @@
 # ChangeLog for games-simulation/flightgear
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-simulation/flightgear/ChangeLog,v 
1.81 2015/05/14 22:38:35 reavertm Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-simulation/flightgear/ChangeLog,v 
1.82 2015/07/11 15:08:35 reavertm Exp $
+
+  11 Jul 2015; Maciej Mrozowski 
+  +files/0001-flightgear-3.4.0-cmake.patch,
+  +files/0002-flightgear-3.4.0-cmake.patch, flightgear-3.4.0.ebuild:
+  Fix bug 554292.
 
   14 May 2015; Maciej Mrozowski 
   -flightgear-3.0.0-r1.ebuild, -flightgear-3.0.0.ebuild,






[gentoo-commits] gentoo-x86 commit in games-simulation/flightgear/files: 0001-flightgear-3.4.0-cmake.patch 0002-flightgear-3.4.0-cmake.patch

2015-07-11 Thread Maciej Mrozowski (reavertm)
reavertm15/07/11 15:08:35

  Added:0001-flightgear-3.4.0-cmake.patch
0002-flightgear-3.4.0-cmake.patch
  Log:
  Fix bug 554292.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
B1E955DB)

Revision  ChangesPath
1.1  
games-simulation/flightgear/files/0001-flightgear-3.4.0-cmake.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/flightgear/files/0001-flightgear-3.4.0-cmake.patch?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/flightgear/files/0001-flightgear-3.4.0-cmake.patch?rev=1.1&content-type=text/plain

Index: 0001-flightgear-3.4.0-cmake.patch
===
>From 06a260822c0eb10f47533a2cbf5cbbc968878c17 Mon Sep 17 00:00:00 2001
From: James Turner 
Date: Tue, 17 Mar 2015 23:33:57 +
Subject: [PATCH] Make 3.2.1 fix: make thread check platform specific.

---
 CMakeLists.txt | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/CMakeLists.txt b/CMakeLists.txt
index 8847614..c881c32 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -109,6 +109,8 @@ IF(APPLE)
 SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -mmacosx-version-min=10.7")
 elseif(${CMAKE_SYSTEM_NAME} MATCHES "Linux" OR
${CMAKE_SYSTEM_NAME} MATCHES "FreeBSD")
+find_package(Threads REQUIRED)
+
 set(USE_DBUS_DEFAULT 1)
 
 find_package(UDev)
@@ -230,7 +232,6 @@ endif(EVENT_INPUT)
 # check required dependencies
 find_package(Boost   REQUIRED)
 find_package(ZLIBREQUIRED)
-find_package(Threads REQUIRED)
 find_package(OpenGL  REQUIRED)
 find_package(OpenAL  REQUIRED)
 find_package(OpenSceneGraph 3.2.0 REQUIRED



1.1  
games-simulation/flightgear/files/0002-flightgear-3.4.0-cmake.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/flightgear/files/0002-flightgear-3.4.0-cmake.patch?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/flightgear/files/0002-flightgear-3.4.0-cmake.patch?rev=1.1&content-type=text/plain

Index: 0002-flightgear-3.4.0-cmake.patch
===
>From 14405fe2e397b9a6ab9b004cb8c7459eeb41ec59 Mon Sep 17 00:00:00 2001
From: "Rebecca N. Palmer" 
Date: Fri, 3 Apr 2015 19:15:52 +0100
Subject: [PATCH] Fix compile with CMake 3.2.1, by Kevin Seroux

Explicitly link X11, as this no longer comes with OpenGL
---
 CMakeLists.txt| 1 +
 src/Main/CMakeLists.txt   | 4 +++-
 utils/fgviewer/CMakeLists.txt | 4 
 3 files changed, 8 insertions(+), 1 deletion(-)

diff --git a/CMakeLists.txt b/CMakeLists.txt
index c881c32..c443f58 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -110,6 +110,7 @@ IF(APPLE)
 elseif(${CMAKE_SYSTEM_NAME} MATCHES "Linux" OR
${CMAKE_SYSTEM_NAME} MATCHES "FreeBSD")
 find_package(Threads REQUIRED)
+find_package(X11 REQUIRED)
 
 set(USE_DBUS_DEFAULT 1)
 
diff --git a/src/Main/CMakeLists.txt b/src/Main/CMakeLists.txt
index 949b379..4b6926e 100644
--- a/src/Main/CMakeLists.txt
+++ b/src/Main/CMakeLists.txt
@@ -130,7 +130,9 @@ endif()
 if (CRASHRPT_FOUND)
target_link_libraries(fgfs ${CRASHRPT_LIBRARY})
 endif()
-
+if(X11_FOUND)
+target_link_libraries(fgfs ${X11_LIBRARIES})
+endif()
 target_link_libraries(fgfs
${SQLITE3_LIBRARY}
${SIMGEAR_LIBRARIES}
diff --git a/utils/fgviewer/CMakeLists.txt b/utils/fgviewer/CMakeLists.txt
index 165be74..bfc52ad 100644
--- a/utils/fgviewer/CMakeLists.txt
+++ b/utils/fgviewer/CMakeLists.txt
@@ -42,6 +42,10 @@ else()
 endif()
 
 add_executable(fgviewer ${FGVIEWER_SOURCES} ${FGVIEWER_RTI_SOURCES})
+if(X11_FOUND)
+target_link_libraries(fgviewer ${X11_LIBRARIES})
+endif()
+
 target_link_libraries(fgviewer
${SIMGEAR_LIBRARIES}
${OPENSCENEGRAPH_LIBRARIES}






[gentoo-commits] gentoo-x86 commit in net-im/kadu: kadu-2.1.ebuild ChangeLog

2015-07-05 Thread Maciej Mrozowski (reavertm)
reavertm15/07/05 20:25:47

  Modified: kadu-2.1.ebuild ChangeLog
  Log:
  Move linguist-tools to DEPEND.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
B1E955DB)

Revision  ChangesPath
1.2  net-im/kadu/kadu-2.1.ebuild

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

Index: kadu-2.1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/net-im/kadu/kadu-2.1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- kadu-2.1.ebuild 5 Jul 2015 20:17:08 -   1.1
+++ kadu-2.1.ebuild 5 Jul 2015 20:25:47 -   1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-im/kadu/kadu-2.1.ebuild,v 1.1 
2015/07/05 20:17:08 reavertm Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-im/kadu/kadu-2.1.ebuild,v 1.2 
2015/07/05 20:25:47 reavertm Exp $
 
 EAPI="5"
 
@@ -25,7 +25,6 @@
 COMMON_DEPEND="
app-crypt/qca:2[openssl,qt5]
>=dev-libs/injeqt-1.0.0
-   >=dev-qt/linguist-tools-5.2.0:5
>=dev-qt/qtcore-5.2.0:5
>=dev-qt/qtdbus-5.2.0:5
>=dev-qt/qtgui-5.2.0:5
@@ -63,6 +62,7 @@
)
 "
 DEPEND="${COMMON_DEPEND}
+   >=dev-qt/linguist-tools-5.2.0:5
x11-proto/scrnsaverproto
x11-proto/xextproto
x11-proto/xproto



1.156net-im/kadu/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/kadu/ChangeLog?rev=1.156&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/kadu/ChangeLog?rev=1.156&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/kadu/ChangeLog?r1=1.155&r2=1.156

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-im/kadu/ChangeLog,v
retrieving revision 1.155
retrieving revision 1.156
diff -u -r1.155 -r1.156
--- ChangeLog   5 Jul 2015 20:17:08 -   1.155
+++ ChangeLog   5 Jul 2015 20:25:47 -   1.156
@@ -1,6 +1,9 @@
 # ChangeLog for net-im/kadu
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-im/kadu/ChangeLog,v 1.155 2015/07/05 
20:17:08 reavertm Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-im/kadu/ChangeLog,v 1.156 2015/07/05 
20:25:47 reavertm Exp $
+
+  05 Jul 2015; Maciej Mrozowski  kadu-2.1.ebuild:
+  Move linguist-tools to DEPEND.
 
 *kadu-2.1 (05 Jul 2015)
 






[gentoo-commits] gentoo-x86 commit in net-im/kadu/files: kadu-2.1-qt5-compilation.patch

2015-07-05 Thread Maciej Mrozowski (reavertm)
reavertm15/07/05 20:17:08

  Added:kadu-2.1-qt5-compilation.patch
  Log:
  Version bump, bug 542136. Some credits to wojtask9.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
B1E955DB)

Revision  ChangesPath
1.1  net-im/kadu/files/kadu-2.1-qt5-compilation.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/kadu/files/kadu-2.1-qt5-compilation.patch?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/kadu/files/kadu-2.1-qt5-compilation.patch?rev=1.1&content-type=text/plain

Index: kadu-2.1-qt5-compilation.patch
===
diff -ruN kadu-2.1/kadu-core/os/single-application/single-application.cpp 
my/kadu-core/os/single-application/single-application.cpp
--- kadu-2.1/kadu-core/os/single-application/single-application.cpp 
2015-03-24 22:13:18.0 +0100
+++ my/kadu-core/os/single-application/single-application.cpp   2015-07-05 
21:08:09.044685214 +0200
@@ -26,6 +26,7 @@
 #include "long-lived-lock-file.h"
 
 #include 
+#include 
 #include 
 #include 
 #include 






[gentoo-commits] gentoo-x86 commit in net-im/kadu: metadata.xml kadu-2.1.ebuild ChangeLog

2015-07-05 Thread Maciej Mrozowski (reavertm)
reavertm15/07/05 20:17:08

  Modified: metadata.xml ChangeLog
  Added:kadu-2.1.ebuild
  Log:
  Version bump, bug 542136. Some credits to wojtask9.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
B1E955DB)

Revision  ChangesPath
1.28 net-im/kadu/metadata.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/kadu/metadata.xml?rev=1.28&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/kadu/metadata.xml?rev=1.28&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/kadu/metadata.xml?r1=1.27&r2=1.28

Index: metadata.xml
===
RCS file: /var/cvsroot/gentoo-x86/net-im/kadu/metadata.xml,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -r1.27 -r1.28
--- metadata.xml10 Mar 2013 21:02:40 -  1.27
+++ metadata.xml5 Jul 2015 20:17:08 -   1.28
@@ -9,6 +9,7 @@

Enables Gadu communication protocol
Enables Music Player Daemon support
+   Enable char encryption via OTR library
Enables phonon audio plugin
Install Kadu SDK (cmake module, API 
headers)
Enables speech module



1.155net-im/kadu/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/kadu/ChangeLog?rev=1.155&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/kadu/ChangeLog?rev=1.155&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/kadu/ChangeLog?r1=1.154&r2=1.155

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-im/kadu/ChangeLog,v
retrieving revision 1.154
retrieving revision 1.155
diff -u -r1.154 -r1.155
--- ChangeLog   22 Feb 2015 18:41:23 -  1.154
+++ ChangeLog   5 Jul 2015 20:17:08 -   1.155
@@ -1,6 +1,12 @@
 # ChangeLog for net-im/kadu
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-im/kadu/ChangeLog,v 1.154 2015/02/22 
18:41:23 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-im/kadu/ChangeLog,v 1.155 2015/07/05 
20:17:08 reavertm Exp $
+
+*kadu-2.1 (05 Jul 2015)
+
+  05 Jul 2015; Maciej Mrozowski 
+  +files/kadu-2.1-qt5-compilation.patch, +kadu-2.1.ebuild, metadata.xml:
+  Version bump, bug 542136. Some credits to wojtask9.
 
   22 Feb 2015; Michał Górny  kadu-0.12.3.ebuild:
   Update dependency on QCA plugins to use USE flags on app-crypt/qca:2



1.1  net-im/kadu/kadu-2.1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/kadu/kadu-2.1.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/kadu/kadu-2.1.ebuild?rev=1.1&content-type=text/plain

Index: kadu-2.1.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-im/kadu/kadu-2.1.ebuild,v 1.1 2015/07/05 
20:17:08 reavertm Exp $

EAPI="5"

inherit base cmake-utils flag-o-matic

MY_P="${P/_/-}"

DESCRIPTION="An open source Gadu-Gadu and Jabber/XMPP protocol Instant 
Messenger client"
HOMEPAGE="http://www.kadu.net";
SRC_URI="http://download.kadu.im/stable/${P}.tar.bz2";

LICENSE="GPL-2"
KEYWORDS="~amd64 ~x86"
SLOT="0"
IUSE="+gadu mpd otr phonon sdk speech spell xmpp"
REQUIRED_USE="
|| (
gadu
xmpp
)
"
COMMON_DEPEND="
app-crypt/qca:2[openssl,qt5]
>=dev-libs/injeqt-1.0.0
>=dev-qt/linguist-tools-5.2.0:5
>=dev-qt/qtcore-5.2.0:5
>=dev-qt/qtdbus-5.2.0:5
>=dev-qt/qtgui-5.2.0:5
>=dev-qt/qtmultimedia-5.2.0:5
>=dev-qt/qtnetwork-5.2.0:5
>=dev-qt/qtquick1-5.2.0:5
>=dev-qt/qtscript-5.2.0:5
>=dev-qt/qtsql-5.2.0:5
>=dev-qt/qtsvg-5.2.0:5
>=dev-qt/qtwebkit-5.2.0:5
>=dev-qt/qtwidgets-5.2.0:5
>=dev-qt/qtx11extras-5.2.0:5
>=dev-qt/qtxml-5.2.0:5
>=dev-qt/qtxmlpatterns-5.2.0:5
>=app-arch/libarchive-2.6[lzma]
x11-libs/libX11
x11-libs/libXext
x11-libs/libXScrnSaver
gadu? ( >=net-libs/libgadu-1.11.1[threads] )
mpd? ( media-libs/libmpdclient )
otr? (
>=dev-libs/libgcrypt-1.2.2:0
>=net-libs/libotr-4.1.0
)
phonon? (
|| (
media-libs/phonon[qt5]
>=dev-qt/qtphonon-4.7.0:4
)
)
spell? ( app-text/enchant )
xmpp? (
net-dns/libidn
sys-libs/zlib
)
"
DEPEND="${COMMON_DEPEND}
x11-proto/scrnsaverproto
x11-proto/xextproto
x11-proto/xproto
"
RDEPEND="${COMMON_DEPEND}

[gentoo-commits] gentoo-x86 commit in dev-libs/injeqt: metadata.xml injeqt-1.0.0.ebuild ChangeLog

2015-07-05 Thread Maciej Mrozowski (reavertm)
reavertm15/07/05 20:06:58

  Added:metadata.xml injeqt-1.0.0.ebuild ChangeLog
  Log:
  New ebuild for net-im/kadu. Credits to Michał Ziąbkowski (roslin overlay).
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
B1E955DB)

Revision  ChangesPath
1.1  dev-libs/injeqt/metadata.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/injeqt/metadata.xml?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/injeqt/metadata.xml?rev=1.1&content-type=text/plain

Index: metadata.xml
===

http://www.gentoo.org/dtd/metadata.dtd";>


reave...@gentoo.org
Maciej Mrozowski





1.1  dev-libs/injeqt/injeqt-1.0.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/injeqt/injeqt-1.0.0.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/injeqt/injeqt-1.0.0.ebuild?rev=1.1&content-type=text/plain

Index: injeqt-1.0.0.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/injeqt/injeqt-1.0.0.ebuild,v 1.1 
2015/07/05 20:06:58 reavertm Exp $

EAPI=5

inherit cmake-utils

DESCRIPTION="Dependency injection framework for Qt5"
HOMEPAGE="https://github.com/vogel/injeqt";
SRC_URI="https://github.com/vogel/injeqt/archive/${PV}.tar.gz -> ${P}.tar.gz"

LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="test"

RDEPEND="
>=dev-qt/qtcore-5.4.2:5
"
DEPEND="${RDEPEND}
test? ( >=dev-qt/qttest-5.4.2:5 )
"

src_configure() {
local mycmakeargs=(
$(cmake-utils_use_disable test TESTS)
)
cmake-utils_src_configure
}



1.1  dev-libs/injeqt/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/injeqt/ChangeLog?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/injeqt/ChangeLog?rev=1.1&content-type=text/plain

Index: ChangeLog
===
# ChangeLog for dev-libs/injeqt
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/injeqt/ChangeLog,v 1.1 2015/07/05 
20:06:58 reavertm Exp $

*injeqt-1.0.0 (05 Jul 2015)

  05 Jul 2015; Maciej Mrozowski  +injeqt-1.0.0.ebuild,
  +metadata.xml:
  New ebuild for net-im/kadu. Credits to Michał Ziąbkowski (roslin overlay).






[gentoo-commits] gentoo-x86 commit in dev-libs/injeqt: - New directory

2015-07-05 Thread Maciej Mrozowski (reavertm)
reavertm15/07/05 20:01:24

  Log:
  Directory /var/cvsroot/gentoo-x86/dev-libs/injeqt added to the repository



[gentoo-commits] gentoo-x86 commit in dev-games/openscenegraph/files: openscenegraph-3.2.1-cmake.patch

2015-06-05 Thread Maciej Mrozowski (reavertm)
reavertm15/06/06 03:28:39

  Modified: openscenegraph-3.2.1-cmake.patch
  Log:
  Properly handle USE=qt4, fixes bug 550206.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
B1E955DB)

Revision  ChangesPath
1.2  
dev-games/openscenegraph/files/openscenegraph-3.2.1-cmake.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/openscenegraph/files/openscenegraph-3.2.1-cmake.patch?rev=1.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/openscenegraph/files/openscenegraph-3.2.1-cmake.patch?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/openscenegraph/files/openscenegraph-3.2.1-cmake.patch?r1=1.1&r2=1.2

Index: openscenegraph-3.2.1-cmake.patch
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-games/openscenegraph/files/openscenegraph-3.2.1-cmake.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- openscenegraph-3.2.1-cmake.patch10 Oct 2014 20:17:06 -  1.1
+++ openscenegraph-3.2.1-cmake.patch6 Jun 2015 03:28:39 -   1.2
@@ -70,48 +70,6 @@
  ENDIF()
  
  # Include macro utilities here
-@@ -560,16 +561,16 @@
- 
- IF  (DESIRED_QT_VERSION)
- IF  (DESIRED_QT_VERSION MATCHES 5)
--  FIND_PACKAGE(Qt5Widgets)
-+  MACRO_OPTIONAL_FIND_PACKAGE(Qt5Widgets)
- ELSEIF (DESIRED_QT_VERSION MATCHES 4)
--  FIND_PACKAGE(Qt4)
-+  MACRO_OPTIONAL_FIND_PACKAGE(Qt4)
- ELSE()
--  FIND_PACKAGE(Qt3)
-+  MACRO_OPTIONAL_FIND_PACKAGE(Qt3)
- ENDIF()
- 
- ELSE()
- 
--FIND_PACKAGE(Qt5Widgets QUIET)
-+MACRO_OPTIONAL_FIND_PACKAGE(Qt5Widgets QUIET)
- 
- IF ( Qt5Widgets_FOUND )
- # CMake 2.8.8 or greater required
-@@ -585,17 +586,17 @@
- ENDIF( )
- 
- IF ( NOT Qt5Widgets_FOUND )
--FIND_PACKAGE(Qt4)
-+MACRO_OPTIONAL_FIND_PACKAGE(Qt4)
- 
- IF (NOT QT4_FOUND)
--FIND_PACKAGE(Qt3)
-+MACRO_OPTIONAL_FIND_PACKAGE(Qt3)
- ENDIF()
- ENDIF()
- ENDIF()
- 
- #If we have found Qt5, let's try to top off by getting the webkit as well
- IF ( Qt5Widgets_FOUND )
--FIND_PACKAGE(Qt5WebKitWidgets QUIET)
-+MACRO_OPTIONAL_FIND_PACKAGE(Qt5WebKitWidgets QUIET)
- ENDIF()
- 
- ENDIF()
 @@ -604,12 +605,12 @@
  IF   (BUILD_OSG_EXAMPLES AND NOT ANDROID)
  






[gentoo-commits] gentoo-x86 commit in dev-games/openscenegraph: openscenegraph-3.2.1.ebuild ChangeLog

2015-06-05 Thread Maciej Mrozowski (reavertm)
reavertm15/06/06 03:28:39

  Modified: openscenegraph-3.2.1.ebuild ChangeLog
  Log:
  Properly handle USE=qt4, fixes bug 550206.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
B1E955DB)

Revision  ChangesPath
1.5  dev-games/openscenegraph/openscenegraph-3.2.1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/openscenegraph/openscenegraph-3.2.1.ebuild?rev=1.5&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/openscenegraph/openscenegraph-3.2.1.ebuild?rev=1.5&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/openscenegraph/openscenegraph-3.2.1.ebuild?r1=1.4&r2=1.5

Index: openscenegraph-3.2.1.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-games/openscenegraph/openscenegraph-3.2.1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- openscenegraph-3.2.1.ebuild 21 Feb 2015 12:02:44 -  1.4
+++ openscenegraph-3.2.1.ebuild 6 Jun 2015 03:28:39 -   1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-games/openscenegraph/openscenegraph-3.2.1.ebuild,v 
1.4 2015/02/21 12:02:44 ago Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-games/openscenegraph/openscenegraph-3.2.1.ebuild,v 
1.5 2015/06/06 03:28:39 reavertm Exp $
 
 EAPI=5
 
@@ -33,11 +33,6 @@
fox? ( x11-libs/fox:1.6[opengl] )
glut? ( media-libs/freeglut )
gtk? ( x11-libs/gtkglext )
-   qt4? (
-   dev-qt/qtcore:4
-   dev-qt/qtgui:4
-   dev-qt/qtopengl:4
-   )
sdl? ( media-libs/libsdl )
wxwidgets? ( x11-libs/wxGTK[opengl,X] )
)
@@ -53,6 +48,11 @@
openinventor? ( media-libs/coin )
pdf? ( app-text/poppler[cairo] )
png? ( media-libs/libpng:0 )
+   qt4? (
+   dev-qt/qtcore:4
+   dev-qt/qtgui:4
+   dev-qt/qtopengl:4
+   )
svg? (
gnome-base/librsvg
x11-libs/cairo
@@ -90,6 +90,7 @@
append-cppflags -D__STDC_CONSTANT_MACROS
 
mycmakeargs=(
+   -DDESIRED_QT_VERSION=4
-DDYNAMIC_OPENSCENEGRAPH=ON
-DWITH_ITK=OFF
-DGENTOO_DOCDIR="/usr/share/doc/${PF}"
@@ -111,7 +112,7 @@
$(cmake-utils_use_with openinventor Inventor)
$(cmake-utils_use_with pdf Poppler-glib)
$(cmake-utils_use_with png)
-   $(cmake-utils_use_with qt4)
+   $(cmake-utils_use qt4 OSG_USE_QT)
$(cmake-utils_use_with sdl)
$(cmake-utils_use_with svg rsvg)
$(cmake-utils_use_with tiff)



1.62 dev-games/openscenegraph/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/openscenegraph/ChangeLog?rev=1.62&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/openscenegraph/ChangeLog?rev=1.62&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/openscenegraph/ChangeLog?r1=1.61&r2=1.62

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-games/openscenegraph/ChangeLog,v
retrieving revision 1.61
retrieving revision 1.62
diff -u -r1.61 -r1.62
--- ChangeLog   21 Feb 2015 12:02:44 -  1.61
+++ ChangeLog   6 Jun 2015 03:28:39 -   1.62
@@ -1,6 +1,10 @@
 # ChangeLog for dev-games/openscenegraph
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-games/openscenegraph/ChangeLog,v 1.61 
2015/02/21 12:02:44 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-games/openscenegraph/ChangeLog,v 1.62 
2015/06/06 03:28:39 reavertm Exp $
+
+  06 Jun 2015; Maciej Mrozowski 
+  files/openscenegraph-3.2.1-cmake.patch, openscenegraph-3.2.1.ebuild:
+  Properly handle USE=qt4, fixes bug 550206.
 
   21 Feb 2015; Agostino Sarubbo  openscenegraph-3.2.1.ebuild:
   Stable for ppc, wrt bug #526372






[gentoo-commits] gentoo-x86 commit in dev-games/simgear: ChangeLog simgear-3.0.0.ebuild simgear-3.2.0.ebuild

2015-05-14 Thread Maciej Mrozowski (reavertm)
reavertm15/05/14 22:43:12

  Modified: ChangeLog
  Removed:  simgear-3.0.0.ebuild simgear-3.2.0.ebuild
  Log:
  Remove old
  
  (Portage version: 2.2.19/cvs/Linux x86_64, signed Manifest commit with key 
B1E955DB)

Revision  ChangesPath
1.73 dev-games/simgear/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/simgear/ChangeLog?rev=1.73&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/simgear/ChangeLog?rev=1.73&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/simgear/ChangeLog?r1=1.72&r2=1.73

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-games/simgear/ChangeLog,v
retrieving revision 1.72
retrieving revision 1.73
diff -u -r1.72 -r1.73
--- ChangeLog   19 Apr 2015 10:16:02 -  1.72
+++ ChangeLog   14 May 2015 22:43:12 -  1.73
@@ -1,6 +1,11 @@
 # ChangeLog for dev-games/simgear
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-games/simgear/ChangeLog,v 1.72 
2015/04/19 10:16:02 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-games/simgear/ChangeLog,v 1.73 
2015/05/14 22:43:12 reavertm Exp $
+
+  14 May 2015; Maciej Mrozowski 
+  -files/simgear-2.8.0-unbundle-expat.patch, -simgear-3.0.0.ebuild,
+  -simgear-3.2.0.ebuild:
+  Remove old
 
   19 Apr 2015; Agostino Sarubbo  simgear-3.4.0.ebuild:
   Stable for x86, wrt bug #544714






[gentoo-commits] gentoo-x86 commit in dev-games/simgear/files: simgear-2.8.0-unbundle-expat.patch

2015-05-14 Thread Maciej Mrozowski (reavertm)
reavertm15/05/14 22:43:12

  Removed:  simgear-2.8.0-unbundle-expat.patch
  Log:
  Remove old
  
  (Portage version: 2.2.19/cvs/Linux x86_64, signed Manifest commit with key 
B1E955DB)



[gentoo-commits] gentoo-x86 commit in games-simulation/flightgear-data: ChangeLog flightgear-data-3.2.0.ebuild flightgear-data-3.0.0.ebuild

2015-05-14 Thread Maciej Mrozowski (reavertm)
reavertm15/05/14 22:40:25

  Modified: ChangeLog
  Removed:  flightgear-data-3.2.0.ebuild
flightgear-data-3.0.0.ebuild
  Log:
  Remove old
  
  (Portage version: 2.2.19/cvs/Linux x86_64, signed Manifest commit with key 
B1E955DB)

Revision  ChangesPath
1.16 games-simulation/flightgear-data/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/flightgear-data/ChangeLog?rev=1.16&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/flightgear-data/ChangeLog?rev=1.16&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/flightgear-data/ChangeLog?r1=1.15&r2=1.16

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/games-simulation/flightgear-data/ChangeLog,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- ChangeLog   19 Apr 2015 10:16:05 -  1.15
+++ ChangeLog   14 May 2015 22:40:25 -  1.16
@@ -1,6 +1,10 @@
 # ChangeLog for games-simulation/flightgear-data
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: 
/var/cvsroot/gentoo-x86/games-simulation/flightgear-data/ChangeLog,v 1.15 
2015/04/19 10:16:05 ago Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/games-simulation/flightgear-data/ChangeLog,v 1.16 
2015/05/14 22:40:25 reavertm Exp $
+
+  14 May 2015; Maciej Mrozowski 
+  -flightgear-data-3.0.0.ebuild, -flightgear-data-3.2.0.ebuild:
+  Remove old
 
   19 Apr 2015; Agostino Sarubbo  flightgear-data-3.4.0.ebuild:
   Stable for x86, wrt bug #544714






[gentoo-commits] gentoo-x86 commit in games-simulation/flightgear: ChangeLog flightgear-3.2.0.ebuild flightgear-3.0.0-r1.ebuild flightgear-3.0.0.ebuild

2015-05-14 Thread Maciej Mrozowski (reavertm)
reavertm15/05/14 22:38:35

  Modified: ChangeLog
  Removed:  flightgear-3.2.0.ebuild flightgear-3.0.0-r1.ebuild
flightgear-3.0.0.ebuild
  Log:
  Remove old
  
  (Portage version: 2.2.19/cvs/Linux x86_64, signed Manifest commit with key 
B1E955DB)

Revision  ChangesPath
1.81 games-simulation/flightgear/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/flightgear/ChangeLog?rev=1.81&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/flightgear/ChangeLog?rev=1.81&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/flightgear/ChangeLog?r1=1.80&r2=1.81

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/games-simulation/flightgear/ChangeLog,v
retrieving revision 1.80
retrieving revision 1.81
diff -u -r1.80 -r1.81
--- ChangeLog   19 Apr 2015 10:15:59 -  1.80
+++ ChangeLog   14 May 2015 22:38:35 -  1.81
@@ -1,6 +1,11 @@
 # ChangeLog for games-simulation/flightgear
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-simulation/flightgear/ChangeLog,v 
1.80 2015/04/19 10:15:59 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-simulation/flightgear/ChangeLog,v 
1.81 2015/05/14 22:38:35 reavertm Exp $
+
+  14 May 2015; Maciej Mrozowski 
+  -flightgear-3.0.0-r1.ebuild, -flightgear-3.0.0.ebuild,
+  -flightgear-3.2.0.ebuild:
+  Remove old
 
   19 Apr 2015; Agostino Sarubbo  flightgear-3.4.0.ebuild:
   Stable for x86, wrt bug #544714






[gentoo-commits] gentoo-x86 commit in app-text/diffpdf: diffpdf-2.1.3.ebuild ChangeLog diffpdf-1.9.2.ebuild diffpdf-2.1.1.ebuild

2015-05-12 Thread Maciej Mrozowski (reavertm)
reavertm15/05/12 21:46:18

  Modified: ChangeLog
  Added:diffpdf-2.1.3.ebuild
  Removed:  diffpdf-1.9.2.ebuild diffpdf-2.1.1.ebuild
  Log:
  Version bump (the last version released by upstream), remove all.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
B1E955DB)

Revision  ChangesPath
1.9  app-text/diffpdf/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/diffpdf/ChangeLog?rev=1.9&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/diffpdf/ChangeLog?rev=1.9&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/diffpdf/ChangeLog?r1=1.8&r2=1.9

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-text/diffpdf/ChangeLog,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- ChangeLog   17 Mar 2013 16:00:23 -  1.8
+++ ChangeLog   12 May 2015 21:46:18 -  1.9
@@ -1,6 +1,12 @@
 # ChangeLog for app-text/diffpdf
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/diffpdf/ChangeLog,v 1.8 2013/03/17 
16:00:23 dilfridge Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-text/diffpdf/ChangeLog,v 1.9 2015/05/12 
21:46:18 reavertm Exp $
+
+*diffpdf-2.1.3 (12 May 2015)
+
+  12 May 2015; Maciej Mrozowski  +diffpdf-2.1.3.ebuild,
+  -diffpdf-1.9.2.ebuild, -diffpdf-2.1.1.ebuild:
+  Version bump (the last version released by upstream), remove all.
 
   17 Mar 2013; Andreas K. Huettel  diffpdf-1.9.2.ebuild,
   diffpdf-2.1.1.ebuild:



1.1  app-text/diffpdf/diffpdf-2.1.3.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/diffpdf/diffpdf-2.1.3.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/diffpdf/diffpdf-2.1.3.ebuild?rev=1.1&content-type=text/plain

Index: diffpdf-2.1.3.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/diffpdf/diffpdf-2.1.3.ebuild,v 1.1 
2015/05/12 21:46:18 reavertm Exp $

EAPI=5

inherit qt4-r2 eutils qmake-utils

DESCRIPTION="Program that textually or visually compares two PDF files"
HOMEPAGE="http://www.qtrac.eu/diffpdf.html";
SRC_URI="http://www.qtrac.eu/${P}.tar.gz";

LICENSE="GPL-2"
KEYWORDS="~amd64 ~x86"
SLOT="0"
IUSE=""

DEPEND="
app-text/poppler:=[qt4]
>=dev-qt/qtcore-4.6:4
>=dev-qt/qtgui-4.6:4
"
RDEPEND="${DEPEND}"

DOCS="README"

src_configure() {
$(qt4_get_bindir)/lrelease diffpdf.pro || die 'Generating translations 
failed'
qt4-r2_src_configure
}

src_install() {
qt4-r2_src_install

dobin diffpdf
doman diffpdf.1
}






[gentoo-commits] gentoo-x86 commit in profiles: ChangeLog package.mask

2015-04-05 Thread Maciej Mrozowski (reavertm)
reavertm15/04/06 03:29:54

  Modified: ChangeLog package.mask
  Log:
  Mask sys-fs/evms for removal

Revision  ChangesPath
1.9909   profiles/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/ChangeLog?rev=1.9909&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/ChangeLog?rev=1.9909&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/ChangeLog?r1=1.9908&r2=1.9909

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v
retrieving revision 1.9908
retrieving revision 1.9909
diff -u -r1.9908 -r1.9909
--- ChangeLog   5 Apr 2015 16:12:24 -   1.9908
+++ ChangeLog   6 Apr 2015 03:29:53 -   1.9909
@@ -1,11 +1,14 @@
 # ChangeLog for profile directory
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v 1.9908 2015/04/05 
16:12:24 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v 1.9909 2015/04/06 
03:29:53 reavertm Exp $
 #
 # This ChangeLog should include records for all changes in profiles directory.
 # Only typo fixes which don't affect portage/repoman behaviour could be avoided
 # here. If in doubt put a record here!
 
+  06 Apr 2015; Maciej Mrozowski  package.mask:
+  Masked sys-fs/evms for removal
+
   05 Apr 2015; Michał Górny  updates/2Q-2015:
   Move libdbusmenu:3 to :0.
 



1.16463  profiles/package.mask

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/package.mask?rev=1.16463&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/package.mask?rev=1.16463&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/package.mask?r1=1.16462&r2=1.16463

Index: package.mask
===
RCS file: /var/cvsroot/gentoo-x86/profiles/package.mask,v
retrieving revision 1.16462
retrieving revision 1.16463
diff -u -r1.16462 -r1.16463
--- package.mask5 Apr 2015 10:37:25 -   1.16462
+++ package.mask6 Apr 2015 03:29:53 -   1.16463
@@ -1,5 +1,5 @@
 
-# $Header: /var/cvsroot/gentoo-x86/profiles/package.mask,v 1.16462 2015/04/05 
10:37:25 chewi Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/package.mask,v 1.16463 2015/04/06 
03:29:53 reavertm Exp $
 #
 # When you add an entry to the top of this file, add your name, the date, and
 # an explanation of why something is getting masked. Please be extremely
@@ -30,6 +30,13 @@
 
 #--- END OF EXAMPLES ---
 
+
+# Maciej Mrozowski  (06 Apr 2015)
+# Does not link against latest ncurses and no interest to fix it.
+# Superseded by LVM2 and all clusters should be migrated by now.
+# Removal in 30 days.
+sys-fs/evms
+
 # James Le Cuirot  (05 Apr 2015)
 # A 32-on-64 Java VM is no longer considered necessary and a multilib
 # icedtea-bin would be preferred anyway. sun-j2me-bin depends on this






[gentoo-commits] gentoo-x86 commit in www-misc/monitorix: monitorix-3.5.1.ebuild metadata.xml ChangeLog

2015-04-05 Thread Maciej Mrozowski (reavertm)
reavertm15/04/06 03:19:46

  Modified: monitorix-3.5.1.ebuild metadata.xml ChangeLog
  Log:
  Remove evms USE flag. evms was superseded by lvm2.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
B1E955DB)

Revision  ChangesPath
1.3  www-misc/monitorix/monitorix-3.5.1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-misc/monitorix/monitorix-3.5.1.ebuild?rev=1.3&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-misc/monitorix/monitorix-3.5.1.ebuild?rev=1.3&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-misc/monitorix/monitorix-3.5.1.ebuild?r1=1.2&r2=1.3

Index: monitorix-3.5.1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/www-misc/monitorix/monitorix-3.5.1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- monitorix-3.5.1.ebuild  1 Apr 2015 22:25:27 -   1.2
+++ monitorix-3.5.1.ebuild  6 Apr 2015 03:19:46 -   1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/www-misc/monitorix/monitorix-3.5.1.ebuild,v 
1.2 2015/04/01 22:25:27 dilfridge Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-misc/monitorix/monitorix-3.5.1.ebuild,v 
1.3 2015/04/06 03:19:46 reavertm Exp $
 
 EAPI="5"
 
@@ -13,7 +13,7 @@
 LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
-IUSE="apcupsd evms hddtemp httpd lm_sensors postfix"
+IUSE="apcupsd hddtemp httpd lm_sensors postfix"
 
 DEPEND="sys-apps/sed"
 RDEPEND="dev-perl/Config-General
@@ -26,7 +26,6 @@
net-analyzer/rrdtool[perl]
virtual/perl-CGI
apcupsd? ( sys-power/apcupsd )
-   evms? ( sys-fs/evms )
hddtemp? ( app-admin/hddtemp )
httpd? ( virtual/httpd-cgi )
lm_sensors? ( sys-apps/lm_sensors )



1.4  www-misc/monitorix/metadata.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-misc/monitorix/metadata.xml?rev=1.4&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-misc/monitorix/metadata.xml?rev=1.4&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-misc/monitorix/metadata.xml?r1=1.3&r2=1.4

Index: metadata.xml
===
RCS file: /var/cvsroot/gentoo-x86/www-misc/monitorix/metadata.xml,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- metadata.xml14 Nov 2014 02:17:10 -  1.3
+++ metadata.xml6 Apr 2015 03:19:46 -   1.4
@@ -9,7 +9,6 @@
   
   
 Make use of a daemon that controls APC UPSes with 
sys-power/apcupsd.
-Make use of utilities for the IBM Enterprise Volume 
Management System with sys-fs/evms.
 Use SMART to monitor the temperature of hard drives 
with app-admin/hddtemp.
 Enables the CGI webserver with any package that 
satisfies virtual/httpd-cgi.
 Additional hardware mnitoring sensors with 
sys-apps/lm_sensors.



1.9  www-misc/monitorix/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-misc/monitorix/ChangeLog?rev=1.9&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-misc/monitorix/ChangeLog?rev=1.9&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-misc/monitorix/ChangeLog?r1=1.8&r2=1.9

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/www-misc/monitorix/ChangeLog,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- ChangeLog   1 Apr 2015 22:25:27 -   1.8
+++ ChangeLog   6 Apr 2015 03:19:46 -   1.9
@@ -1,6 +1,10 @@
 # ChangeLog for www-misc/monitorix
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-misc/monitorix/ChangeLog,v 1.8 
2015/04/01 22:25:27 dilfridge Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-misc/monitorix/ChangeLog,v 1.9 
2015/04/06 03:19:46 reavertm Exp $
+
+  06 Apr 2015; Maciej Mrozowski  metadata.xml,
+  monitorix-3.5.1.ebuild:
+  Remove evms USE flag. evms was superseded by lvm2.
 
   01 Apr 2015; Andreas K. Huettel  
monitorix-3.5.1.ebuild:
   Fix dependencies: pkgmove of Config-General






[gentoo-commits] gentoo-x86 commit in games-emulation/atari800: atari800-3.1.0.ebuild ChangeLog

2015-03-26 Thread Maciej Mrozowski (reavertm)
reavertm15/03/26 23:06:52

  Modified: atari800-3.1.0.ebuild ChangeLog
  Log:
  Look for tgetent also in tinfow, fixes bug 544608.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
B1E955DB)

Revision  ChangesPath
1.4  games-emulation/atari800/atari800-3.1.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/atari800/atari800-3.1.0.ebuild?rev=1.4&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/atari800/atari800-3.1.0.ebuild?rev=1.4&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/atari800/atari800-3.1.0.ebuild?r1=1.3&r2=1.4

Index: atari800-3.1.0.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/games-emulation/atari800/atari800-3.1.0.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- atari800-3.1.0.ebuild   25 Mar 2015 13:53:29 -  1.3
+++ atari800-3.1.0.ebuild   26 Mar 2015 23:06:52 -  1.4
@@ -1,9 +1,9 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/games-emulation/atari800/atari800-3.1.0.ebuild,v 1.3 
2015/03/25 13:53:29 ago Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/games-emulation/atari800/atari800-3.1.0.ebuild,v 1.4 
2015/03/26 23:06:52 reavertm Exp $
 
 EAPI=5
-inherit games
+inherit games autotools eutils
 
 DESCRIPTION="Atari 800 emulator"
 HOMEPAGE="http://atari800.sourceforge.net/";
@@ -44,6 +44,11 @@
src/atari.c || die
sed "s:/usr/share/games:${GAMES_DATADIR}:" \
"${FILESDIR}"/atari800.cfg > "${T}"/atari800.cfg || die
+
+   # Bug 544608
+   epatch "${FILESDIR}/${P}-tgetent-detection.patch"
+   pushd src > /dev/null && eautoreconf
+   popd > /dev/null
 }
 
 src_configure() {



1.41 games-emulation/atari800/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/atari800/ChangeLog?rev=1.41&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/atari800/ChangeLog?rev=1.41&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/atari800/ChangeLog?r1=1.40&r2=1.41

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/games-emulation/atari800/ChangeLog,v
retrieving revision 1.40
retrieving revision 1.41
diff -u -r1.40 -r1.41
--- ChangeLog   25 Mar 2015 13:53:29 -  1.40
+++ ChangeLog   26 Mar 2015 23:06:52 -  1.41
@@ -1,6 +1,10 @@
 # ChangeLog for games-emulation/atari800
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-emulation/atari800/ChangeLog,v 1.40 
2015/03/25 13:53:29 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-emulation/atari800/ChangeLog,v 1.41 
2015/03/26 23:06:52 reavertm Exp $
+
+  26 Mar 2015; Maciej Mrozowski 
+  +files/atari800-3.1.0-tgetent-detection.patch, atari800-3.1.0.ebuild:
+  Look for tgetent also in tinfow, fixes bug 544608.
 
   25 Mar 2015; Agostino Sarubbo  atari800-3.1.0.ebuild:
   Stable for x86, wrt bug #544244






[gentoo-commits] gentoo-x86 commit in games-emulation/atari800/files: atari800-3.1.0-tgetent-detection.patch

2015-03-26 Thread Maciej Mrozowski (reavertm)
reavertm15/03/26 23:06:52

  Added:atari800-3.1.0-tgetent-detection.patch
  Log:
  Look for tgetent also in tinfow, fixes bug 544608.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
B1E955DB)

Revision  ChangesPath
1.1  
games-emulation/atari800/files/atari800-3.1.0-tgetent-detection.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/atari800/files/atari800-3.1.0-tgetent-detection.patch?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/atari800/files/atari800-3.1.0-tgetent-detection.patch?rev=1.1&content-type=text/plain

Index: atari800-3.1.0-tgetent-detection.patch
===
diff -ruN atari800-3.1.0/src/configure.ac new/src/configure.ac
--- atari800-3.1.0/src/configure.ac 2014-04-12 15:58:16.0 +0200
+++ new/src/configure.ac2015-03-26 23:36:24.419178078 +0100
@@ -982,7 +982,7 @@
 dnl existence of the tgetent symbol in readline. If not, we search for tgetent
 dnl in a few other libraries. All done with a single AC_SEARCH_LIBS statement.
 have_readline=no
-AC_SEARCH_LIBS(tgetent, [readline termcap ncursesw ncurses curses], [
+AC_SEARCH_LIBS(tgetent, [readline termcap tinfow ncursesw ncurses curses], 
[
 AC_SEARCH_LIBS(readline, readline, [
 AC_CHECK_HEADER([readline/readline.h], [
 have_readline=yes






[gentoo-commits] gentoo-x86 commit in games-simulation/flightgear: flightgear-3.4.0.ebuild ChangeLog

2015-03-01 Thread Maciej Mrozowski (reavertm)
reavertm15/03/02 01:18:36

  Modified: flightgear-3.4.0.ebuild ChangeLog
  Log:
  Adjust dependencies to Qt-5.4.1. Fixes bug 541840.
  
  (Portage version: 2.2.17/cvs/Linux x86_64, signed Manifest commit with key 
B1E955DB)

Revision  ChangesPath
1.2  games-simulation/flightgear/flightgear-3.4.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/flightgear/flightgear-3.4.0.ebuild?rev=1.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/flightgear/flightgear-3.4.0.ebuild?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/flightgear/flightgear-3.4.0.ebuild?r1=1.1&r2=1.2

Index: flightgear-3.4.0.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/games-simulation/flightgear/flightgear-3.4.0.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- flightgear-3.4.0.ebuild 25 Feb 2015 00:31:34 -  1.1
+++ flightgear-3.4.0.ebuild 2 Mar 2015 01:18:36 -   1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/games-simulation/flightgear/flightgear-3.4.0.ebuild,v 
1.1 2015/02/25 00:31:34 reavertm Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/games-simulation/flightgear/flightgear-3.4.0.ebuild,v 
1.2 2015/03/02 01:18:36 reavertm Exp $
 
 EAPI=5
 
@@ -25,7 +25,11 @@
sys-libs/zlib
x11-libs/libX11
dbus? ( >=sys-apps/dbus-1.6.18-r1 )
-   qt5? ( >=dev-qt/qtgui-5.4.0:5 )
+   qt5? (
+   >=dev-qt/qtcore-5.4.1:5
+   >=dev-qt/qtgui-5.4.1:5
+   >=dev-qt/qtwidgets-5.4.1:5
+   )
udev? ( virtual/udev )
utils? (
media-libs/freeglut



1.76 games-simulation/flightgear/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/flightgear/ChangeLog?rev=1.76&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/flightgear/ChangeLog?rev=1.76&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/flightgear/ChangeLog?r1=1.75&r2=1.76

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/games-simulation/flightgear/ChangeLog,v
retrieving revision 1.75
retrieving revision 1.76
diff -u -r1.75 -r1.76
--- ChangeLog   25 Feb 2015 00:31:34 -  1.75
+++ ChangeLog   2 Mar 2015 01:18:36 -   1.76
@@ -1,6 +1,9 @@
 # ChangeLog for games-simulation/flightgear
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-simulation/flightgear/ChangeLog,v 
1.75 2015/02/25 00:31:34 reavertm Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-simulation/flightgear/ChangeLog,v 
1.76 2015/03/02 01:18:36 reavertm Exp $
+
+  02 Mar 2015; Maciej Mrozowski  flightgear-3.4.0.ebuild:
+  Adjust dependencies to Qt-5.4.1. Fixes bug 541840.
 
 *flightgear-3.4.0 (25 Feb 2015)
 






[gentoo-commits] gentoo-x86 commit in games-simulation/flightgear: flightgear-3.0.0.ebuild flightgear-3.4.0.ebuild metadata.xml flightgear-3.2.0.ebuild flightgear-3.0.0-r1.ebuild ChangeLog

2015-02-24 Thread Maciej Mrozowski (reavertm)
reavertm15/02/25 00:31:34

  Modified: flightgear-3.0.0.ebuild metadata.xml
flightgear-3.2.0.ebuild flightgear-3.0.0-r1.ebuild
ChangeLog
  Added:flightgear-3.4.0.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.17/cvs/Linux x86_64, signed Manifest commit with key 
B1E955DB)

Revision  ChangesPath
1.4  games-simulation/flightgear/flightgear-3.0.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/flightgear/flightgear-3.0.0.ebuild?rev=1.4&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/flightgear/flightgear-3.0.0.ebuild?rev=1.4&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/flightgear/flightgear-3.0.0.ebuild?r1=1.3&r2=1.4

Index: flightgear-3.0.0.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/games-simulation/flightgear/flightgear-3.0.0.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- flightgear-3.0.0.ebuild 7 Jun 2014 19:24:28 -   1.3
+++ flightgear-3.0.0.ebuild 25 Feb 2015 00:31:34 -  1.4
@@ -1,6 +1,6 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/games-simulation/flightgear/flightgear-3.0.0.ebuild,v 
1.3 2014/06/07 19:24:28 ago Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/games-simulation/flightgear/flightgear-3.0.0.ebuild,v 
1.4 2015/02/25 00:31:34 reavertm Exp $
 
 EAPI=5
 
@@ -26,7 +26,7 @@
udev? ( virtual/udev )
utils? (
media-libs/freeglut
-   media-libs/libpng
+   media-libs/libpng:0
virtual/opengl
)
 "



1.11 games-simulation/flightgear/metadata.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/flightgear/metadata.xml?rev=1.11&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/flightgear/metadata.xml?rev=1.11&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/flightgear/metadata.xml?r1=1.10&r2=1.11

Index: metadata.xml
===
RCS file: /var/cvsroot/gentoo-x86/games-simulation/flightgear/metadata.xml,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- metadata.xml12 Aug 2014 22:40:50 -  1.10
+++ metadata.xml25 Feb 2015 00:31:34 -  1.11
@@ -10,6 +10,7 @@
Enable screensaver DBus interaction
Enables JSBSim Flight Dynamics Model 
(default)
Enables deprecated Flight Dynamics Models (LaRCsim, 
UIUC)
+   Builds Qt5 launcher application
Enables event-based Input devices through 
virtual/udev
Builds various utilities (fgpanel, terrasync, 
fgviewer among others)
Enables YASim Flight Dynamics Model



1.3  games-simulation/flightgear/flightgear-3.2.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/flightgear/flightgear-3.2.0.ebuild?rev=1.3&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/flightgear/flightgear-3.2.0.ebuild?rev=1.3&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/flightgear/flightgear-3.2.0.ebuild?r1=1.2&r2=1.3

Index: flightgear-3.2.0.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/games-simulation/flightgear/flightgear-3.2.0.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- flightgear-3.2.0.ebuild 11 Jan 2015 13:57:39 -  1.2
+++ flightgear-3.2.0.ebuild 25 Feb 2015 00:31:34 -  1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/games-simulation/flightgear/flightgear-3.2.0.ebuild,v 
1.2 2015/01/11 13:57:39 reavertm Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/games-simulation/flightgear/flightgear-3.2.0.ebuild,v 
1.3 2015/02/25 00:31:34 reavertm Exp $
 
 EAPI=5
 
@@ -28,7 +28,7 @@
udev? ( virtual/udev )
utils? (
media-libs/freeglut
-   media-libs/libpng
+   media-libs/libpng:0
virtual/opengl
)
 "



1.2  games-simulation/flightgear/flightgear-3.0.0-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/flightgear/flightgear-3.0.0-r1.ebuild?rev=1.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/flightgear/flightgear-3.0.0-r1.ebuild?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/f

[gentoo-commits] gentoo-x86 commit in games-simulation/flightgear-data: flightgear-data-3.4.0.ebuild ChangeLog

2015-02-24 Thread Maciej Mrozowski (reavertm)
reavertm15/02/25 00:30:37

  Modified: ChangeLog
  Added:flightgear-data-3.4.0.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.17/cvs/Linux x86_64, signed Manifest commit with key 
B1E955DB)

Revision  ChangesPath
1.11 games-simulation/flightgear-data/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/flightgear-data/ChangeLog?rev=1.11&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/flightgear-data/ChangeLog?rev=1.11&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/flightgear-data/ChangeLog?r1=1.10&r2=1.11

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/games-simulation/flightgear-data/ChangeLog,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- ChangeLog   11 Jan 2015 13:53:05 -  1.10
+++ ChangeLog   25 Feb 2015 00:30:37 -  1.11
@@ -1,6 +1,12 @@
 # ChangeLog for games-simulation/flightgear-data
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: 
/var/cvsroot/gentoo-x86/games-simulation/flightgear-data/ChangeLog,v 1.10 
2015/01/11 13:53:05 reavertm Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/games-simulation/flightgear-data/ChangeLog,v 1.11 
2015/02/25 00:30:37 reavertm Exp $
+
+*flightgear-data-3.4.0 (25 Feb 2015)
+
+  25 Feb 2015; Maciej Mrozowski 
+  +flightgear-data-3.4.0.ebuild:
+  Version bump.
 
 *flightgear-data-3.2.0 (11 Jan 2015)
 



1.1  
games-simulation/flightgear-data/flightgear-data-3.4.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/flightgear-data/flightgear-data-3.4.0.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/flightgear-data/flightgear-data-3.4.0.ebuild?rev=1.1&content-type=text/plain

Index: flightgear-data-3.4.0.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/games-simulation/flightgear-data/flightgear-data-3.4.0.ebuild,v
 1.1 2015/02/25 00:30:37 reavertm Exp $

EAPI=5

inherit games

DESCRIPTION="FlightGear data files"
HOMEPAGE="http://www.flightgear.org/";
SRC_URI="mirror://flightgear/Shared/FlightGear-data-${PV}.tar.bz2"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE=""

# data files split to separate package since 2.10.0
RDEPEND="
!

[gentoo-commits] gentoo-x86 commit in dev-games/simgear: simgear-3.4.0.ebuild simgear-3.0.0.ebuild ChangeLog

2015-02-24 Thread Maciej Mrozowski (reavertm)
reavertm15/02/25 00:29:43

  Modified: simgear-3.0.0.ebuild ChangeLog
  Added:simgear-3.4.0.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.17/cvs/Linux x86_64, signed Manifest commit with key 
B1E955DB)

Revision  ChangesPath
1.4  dev-games/simgear/simgear-3.0.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/simgear/simgear-3.0.0.ebuild?rev=1.4&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/simgear/simgear-3.0.0.ebuild?rev=1.4&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/simgear/simgear-3.0.0.ebuild?r1=1.3&r2=1.4

Index: simgear-3.0.0.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-games/simgear/simgear-3.0.0.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- simgear-3.0.0.ebuild7 Jun 2014 19:24:24 -   1.3
+++ simgear-3.0.0.ebuild25 Feb 2015 00:29:43 -  1.4
@@ -1,6 +1,6 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-games/simgear/simgear-3.0.0.ebuild,v 
1.3 2014/06/07 19:24:24 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-games/simgear/simgear-3.0.0.ebuild,v 
1.4 2015/02/25 00:29:43 reavertm Exp $
 
 EAPI=5
 
@@ -21,7 +21,7 @@
media-libs/openal
sys-libs/zlib
virtual/opengl
-   jpeg? ( virtual/jpeg )
+   jpeg? ( virtual/jpeg:62 )
 "
 DEPEND="${COMMON_DEPEND}
>=dev-libs/boost-1.44



1.68 dev-games/simgear/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/simgear/ChangeLog?rev=1.68&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/simgear/ChangeLog?rev=1.68&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/simgear/ChangeLog?r1=1.67&r2=1.68

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-games/simgear/ChangeLog,v
retrieving revision 1.67
retrieving revision 1.68
diff -u -r1.67 -r1.68
--- ChangeLog   11 Jan 2015 13:52:20 -  1.67
+++ ChangeLog   25 Feb 2015 00:29:43 -  1.68
@@ -1,6 +1,12 @@
 # ChangeLog for dev-games/simgear
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-games/simgear/ChangeLog,v 1.67 
2015/01/11 13:52:20 reavertm Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-games/simgear/ChangeLog,v 1.68 
2015/02/25 00:29:43 reavertm Exp $
+
+*simgear-3.4.0 (25 Feb 2015)
+
+  25 Feb 2015; Maciej Mrozowski  +simgear-3.4.0.ebuild,
+  simgear-3.0.0.ebuild:
+  Version bump.
 
 *simgear-3.2.0 (11 Jan 2015)
 



1.1  dev-games/simgear/simgear-3.4.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/simgear/simgear-3.4.0.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/simgear/simgear-3.4.0.ebuild?rev=1.1&content-type=text/plain

Index: simgear-3.4.0.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-games/simgear/simgear-3.4.0.ebuild,v 1.1 
2015/02/25 00:29:43 reavertm Exp $

EAPI=5

inherit eutils cmake-utils

DESCRIPTION="Development library for simulation games"
HOMEPAGE="http://www.simgear.org/";
SRC_URI="http://mirrors.ibiblio.org/pub/mirrors/simgear/ftp/Source/${P}.tar.bz2";

LICENSE="GPL-2"
KEYWORDS="~amd64 ~ppc ~x86"
SLOT="0"
IUSE="debug subversion test"

COMMON_DEPEND="
dev-libs/expat
>=dev-games/openscenegraph-3.2.0
media-libs/openal
sys-libs/zlib
virtual/opengl
"
DEPEND="${COMMON_DEPEND}
>=dev-libs/boost-1.44
"
RDEPEND="${COMMON_DEPEND}
subversion? ( dev-vcs/subversion )
"

DOCS=(AUTHORS ChangeLog NEWS README Thanks)

src_configure() {
local mycmakeargs=(
-ENABLE_PKGUTIL=OFF
-DENABLE_RTI=OFF
-DENABLE_SOUND=ON
-DSIMGEAR_HEADLESS=OFF
-DSIMGEAR_SHARED=ON
-DSYSTEM_EXPAT=ON
$(cmake-utils_use_enable test TESTS)
)
cmake-utils_src_configure
}






[gentoo-commits] gentoo-x86 commit in games-simulation/flightgear: flightgear-3.2.0.ebuild ChangeLog

2015-01-11 Thread Maciej Mrozowski (reavertm)
reavertm15/01/11 13:57:39

  Modified: flightgear-3.2.0.ebuild ChangeLog
  Log:
  Add missing speex/gsm dependencies.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
B1E955DB)

Revision  ChangesPath
1.2  games-simulation/flightgear/flightgear-3.2.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/flightgear/flightgear-3.2.0.ebuild?rev=1.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/flightgear/flightgear-3.2.0.ebuild?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/flightgear/flightgear-3.2.0.ebuild?r1=1.1&r2=1.2

Index: flightgear-3.2.0.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/games-simulation/flightgear/flightgear-3.2.0.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- flightgear-3.2.0.ebuild 11 Jan 2015 13:53:40 -  1.1
+++ flightgear-3.2.0.ebuild 11 Jan 2015 13:57:39 -  1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/games-simulation/flightgear/flightgear-3.2.0.ebuild,v 
1.1 2015/01/11 13:53:40 reavertm Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/games-simulation/flightgear/flightgear-3.2.0.ebuild,v 
1.2 2015/01/11 13:57:39 reavertm Exp $
 
 EAPI=5
 
@@ -20,6 +20,8 @@
>=dev-games/openscenegraph-3.2.0[png]
~dev-games/simgear-${PV}
media-libs/openal
+   media-libs/speex
+   media-sound/gsm
sys-libs/zlib
x11-libs/libX11
dbus? ( >=sys-apps/dbus-1.6.18-r1 )



1.74 games-simulation/flightgear/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/flightgear/ChangeLog?rev=1.74&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/flightgear/ChangeLog?rev=1.74&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/flightgear/ChangeLog?r1=1.73&r2=1.74

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/games-simulation/flightgear/ChangeLog,v
retrieving revision 1.73
retrieving revision 1.74
diff -u -r1.73 -r1.74
--- ChangeLog   11 Jan 2015 13:53:40 -  1.73
+++ ChangeLog   11 Jan 2015 13:57:39 -  1.74
@@ -1,6 +1,9 @@
 # ChangeLog for games-simulation/flightgear
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-simulation/flightgear/ChangeLog,v 
1.73 2015/01/11 13:53:40 reavertm Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-simulation/flightgear/ChangeLog,v 
1.74 2015/01/11 13:57:39 reavertm Exp $
+
+  11 Jan 2015; Maciej Mrozowski  flightgear-3.2.0.ebuild:
+  Add missing speex/gsm dependencies.
 
 *flightgear-3.2.0 (11 Jan 2015)
 






[gentoo-commits] gentoo-x86 commit in games-simulation/flightgear-data: flightgear-data-3.2.0.ebuild ChangeLog

2015-01-11 Thread Maciej Mrozowski (reavertm)
reavertm15/01/11 13:53:05

  Modified: ChangeLog
  Added:flightgear-data-3.2.0.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
B1E955DB)

Revision  ChangesPath
1.10 games-simulation/flightgear-data/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/flightgear-data/ChangeLog?rev=1.10&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/flightgear-data/ChangeLog?rev=1.10&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/flightgear-data/ChangeLog?r1=1.9&r2=1.10

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/games-simulation/flightgear-data/ChangeLog,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- ChangeLog   12 Aug 2014 22:41:57 -  1.9
+++ ChangeLog   11 Jan 2015 13:53:05 -  1.10
@@ -1,6 +1,12 @@
 # ChangeLog for games-simulation/flightgear-data
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: 
/var/cvsroot/gentoo-x86/games-simulation/flightgear-data/ChangeLog,v 1.9 
2014/08/12 22:41:57 reavertm Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: 
/var/cvsroot/gentoo-x86/games-simulation/flightgear-data/ChangeLog,v 1.10 
2015/01/11 13:53:05 reavertm Exp $
+
+*flightgear-data-3.2.0 (11 Jan 2015)
+
+  11 Jan 2015; Maciej Mrozowski 
+  +flightgear-data-3.2.0.ebuild:
+  Version bump.
 
   12 Aug 2014; Maciej Mrozowski 
   -flightgear-data-2.10.0.ebuild, -flightgear-data-2.12.1.ebuild:



1.1  
games-simulation/flightgear-data/flightgear-data-3.2.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/flightgear-data/flightgear-data-3.2.0.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/flightgear-data/flightgear-data-3.2.0.ebuild?rev=1.1&content-type=text/plain

Index: flightgear-data-3.2.0.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/games-simulation/flightgear-data/flightgear-data-3.2.0.ebuild,v
 1.1 2015/01/11 13:53:05 reavertm Exp $

EAPI=5

inherit games

DESCRIPTION="FlightGear data files"
HOMEPAGE="http://www.flightgear.org/";
SRC_URI="mirror://flightgear/Shared/FlightGear-data-${PV}.tar.bz2"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE=""

# data files split to separate package since 2.10.0
RDEPEND="
!

[gentoo-commits] gentoo-x86 commit in games-simulation/flightgear: flightgear-3.2.0.ebuild ChangeLog

2015-01-11 Thread Maciej Mrozowski (reavertm)
reavertm15/01/11 13:53:40

  Modified: ChangeLog
  Added:flightgear-3.2.0.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
B1E955DB)

Revision  ChangesPath
1.73 games-simulation/flightgear/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/flightgear/ChangeLog?rev=1.73&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/flightgear/ChangeLog?rev=1.73&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/flightgear/ChangeLog?r1=1.72&r2=1.73

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/games-simulation/flightgear/ChangeLog,v
retrieving revision 1.72
retrieving revision 1.73
diff -u -r1.72 -r1.73
--- ChangeLog   11 Sep 2014 00:59:12 -  1.72
+++ ChangeLog   11 Jan 2015 13:53:40 -  1.73
@@ -1,6 +1,11 @@
 # ChangeLog for games-simulation/flightgear
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-simulation/flightgear/ChangeLog,v 
1.72 2014/09/11 00:59:12 reavertm Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/games-simulation/flightgear/ChangeLog,v 
1.73 2015/01/11 13:53:40 reavertm Exp $
+
+*flightgear-3.2.0 (11 Jan 2015)
+
+  11 Jan 2015; Maciej Mrozowski  +flightgear-3.2.0.ebuild:
+  Version bump.
 
 *flightgear-3.0.0-r1 (11 Sep 2014)
 



1.1  games-simulation/flightgear/flightgear-3.2.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/flightgear/flightgear-3.2.0.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/flightgear/flightgear-3.2.0.ebuild?rev=1.1&content-type=text/plain

Index: flightgear-3.2.0.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/games-simulation/flightgear/flightgear-3.2.0.ebuild,v 
1.1 2015/01/11 13:53:40 reavertm Exp $

EAPI=5

inherit games cmake-utils bash-completion-r1

DESCRIPTION="Open Source Flight Simulator"
HOMEPAGE="http://www.flightgear.org/";
SRC_URI="mirror://flightgear/Source/${P}.tar.bz2"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="dbus debug examples +jsbsim oldfdm test +udev +utils vim-syntax +yasim"

COMMON_DEPEND="
dev-db/sqlite:3
>=dev-games/openscenegraph-3.2.0[png]
~dev-games/simgear-${PV}
media-libs/openal
sys-libs/zlib
x11-libs/libX11
dbus? ( >=sys-apps/dbus-1.6.18-r1 )
udev? ( virtual/udev )
utils? (
media-libs/freeglut
media-libs/libpng
virtual/opengl
)
"
DEPEND="${COMMON_DEPEND}
>=dev-libs/boost-1.44
>=media-libs/plib-1.8.5
"
RDEPEND="${COMMON_DEPEND}
~games-simulation/${PN}-data-${PV}
"

DOCS=(AUTHORS ChangeLog NEWS README Thanks)

src_configure() {
local mycmakeargs=(
-DCMAKE_INSTALL_PREFIX=${GAMES_PREFIX}
-DENABLE_FLITE=OFF
-DENABLE_PROFILE=OFF
-DENABLE_RTI=OFF
-DFG_DATA_DIR="${GAMES_DATADIR}"/${PN}
-DSIMGEAR_SHARED=ON
-DSP_FDMS=OFF
-DSYSTEM_FLITE=ON
-DSYSTEM_HTS_ENGINE=ON
-DSYSTEM_SPEEX=ON
-DSYSTEM_GSM=ON
-DSYSTEM_SQLITE=ON
$(cmake-utils_use_use dbus)
$(cmake-utils_use_enable jsbsim)
$(cmake-utils_use jsbsim JSBSIM_TERRAIN)
$(cmake-utils_use_enable oldfdm LARCSIM)
$(cmake-utils_use_enable oldfdm UIUC_MODEL)
$(cmake-utils_use test LOGGING)
$(cmake-utils_use_enable test TESTS)
$(cmake-utils_use udev EVENT_INPUT)
$(cmake-utils_use_enable utils FGCOM)
$(cmake-utils_use_enable utils FGELEV)
$(cmake-utils_use_enable utils FGJS)
$(cmake-utils_use_with utils FGPANEL)
$(cmake-utils_use_enable utils FGVIEWER)
$(cmake-utils_use_enable utils GPSSMOOTH)
$(cmake-utils_use_enable utils JS_DEMO)
$(cmake-utils_use_enable utils METAR)
$(cmake-utils_use_enable utils TERRASYNC)
$(cmake-utils_use_enable yasim)
)

cmake-utils_src_configure
}

src_install() {
cmake-utils_src_install

# Install icons and menu entry
local s
for s in 16 22 24 32 48 64 128; do
doicon -s ${s} icons/${s}x${s}/apps/${PN}.png
use utils && doicon -s ${s} icons/${s}x${s}/apps/fgcom.png

[gentoo-commits] gentoo-x86 commit in dev-games/simgear: simgear-3.2.0.ebuild ChangeLog

2015-01-11 Thread Maciej Mrozowski (reavertm)
reavertm15/01/11 13:52:20

  Modified: ChangeLog
  Added:simgear-3.2.0.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
B1E955DB)

Revision  ChangesPath
1.67 dev-games/simgear/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/simgear/ChangeLog?rev=1.67&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/simgear/ChangeLog?rev=1.67&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/simgear/ChangeLog?r1=1.66&r2=1.67

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-games/simgear/ChangeLog,v
retrieving revision 1.66
retrieving revision 1.67
diff -u -r1.66 -r1.67
--- ChangeLog   12 Aug 2014 22:43:01 -  1.66
+++ ChangeLog   11 Jan 2015 13:52:20 -  1.67
@@ -1,6 +1,11 @@
 # ChangeLog for dev-games/simgear
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-games/simgear/ChangeLog,v 1.66 
2014/08/12 22:43:01 reavertm Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-games/simgear/ChangeLog,v 1.67 
2015/01/11 13:52:20 reavertm Exp $
+
+*simgear-3.2.0 (11 Jan 2015)
+
+  11 Jan 2015; Maciej Mrozowski  +simgear-3.2.0.ebuild:
+  Version bump.
 
   12 Aug 2014; Maciej Mrozowski  -simgear-2.10.0.ebuild,
   -simgear-2.12.1.ebuild, -simgear-2.8.0-r1.ebuild:



1.1  dev-games/simgear/simgear-3.2.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/simgear/simgear-3.2.0.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/simgear/simgear-3.2.0.ebuild?rev=1.1&content-type=text/plain

Index: simgear-3.2.0.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-games/simgear/simgear-3.2.0.ebuild,v 1.1 
2015/01/11 13:52:20 reavertm Exp $

EAPI=5

inherit eutils cmake-utils

DESCRIPTION="Development library for simulation games"
HOMEPAGE="http://www.simgear.org/";
SRC_URI="http://mirrors.ibiblio.org/pub/mirrors/simgear/ftp/Source/${P}.tar.bz2";

LICENSE="GPL-2"
KEYWORDS="~amd64 ~ppc ~x86"
SLOT="0"
IUSE="debug subversion test"

COMMON_DEPEND="
dev-libs/expat
>=dev-games/openscenegraph-3.2.0
media-libs/openal
sys-libs/zlib
virtual/opengl
"
DEPEND="${COMMON_DEPEND}
>=dev-libs/boost-1.44
"
RDEPEND="${COMMON_DEPEND}
subversion? ( dev-vcs/subversion )
"

DOCS=(AUTHORS ChangeLog NEWS README Thanks)

src_configure() {
local mycmakeargs=(
-ENABLE_PKGUTIL=OFF
-DENABLE_RTI=OFF
-DENABLE_SOUND=ON
-DSIMGEAR_HEADLESS=OFF
-DSIMGEAR_SHARED=ON
-DSYSTEM_EXPAT=ON
$(cmake-utils_use_enable test TESTS)
)
cmake-utils_src_configure
}






[gentoo-commits] gentoo-x86 commit in net-libs/libgadu: ChangeLog libgadu-1.11.0.ebuild libgadu-1.11.1.ebuild

2014-09-22 Thread Maciej Mrozowski (reavertm)
reavertm14/09/23 00:55:37

  Modified: ChangeLog
  Removed:  libgadu-1.11.0.ebuild libgadu-1.11.1.ebuild
  Log:
  Remove versions affected by bug 510714 and 505558.
  
  (Portage version: 2.2.13/cvs/Linux x86_64, signed Manifest commit with key 
B1E955DB)

Revision  ChangesPath
1.90 net-libs/libgadu/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libgadu/ChangeLog?rev=1.90&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libgadu/ChangeLog?rev=1.90&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libgadu/ChangeLog?r1=1.89&r2=1.90

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-libs/libgadu/ChangeLog,v
retrieving revision 1.89
retrieving revision 1.90
diff -u -r1.89 -r1.90
--- ChangeLog   21 Sep 2014 20:08:30 -  1.89
+++ ChangeLog   23 Sep 2014 00:55:37 -  1.90
@@ -1,6 +1,10 @@
 # ChangeLog for net-libs/libgadu
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/libgadu/ChangeLog,v 1.89 
2014/09/21 20:08:30 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/libgadu/ChangeLog,v 1.90 
2014/09/23 00:55:37 reavertm Exp $
+
+  23 Sep 2014; Maciej Mrozowski  -libgadu-1.11.0.ebuild,
+  -libgadu-1.11.1.ebuild:
+  Remove versions affected by bug 510714 and 505558.
 
   21 Sep 2014; Markus Meier  libgadu-1.11.4.ebuild:
   arm stable, bug #505558






[gentoo-commits] gentoo-x86 commit in media-plugins/kipi-plugins: kipi-plugins-4.0.0.ebuild kipi-plugins-4.2.0.ebuild kipi-plugins-3.5.0.ebuild ChangeLog

2014-09-15 Thread Maciej Mrozowski (reavertm)
reavertm14/09/15 23:30:42

  Modified: kipi-plugins-4.0.0.ebuild kipi-plugins-4.2.0.ebuild
kipi-plugins-3.5.0.ebuild ChangeLog
  Log:
  Requires msgfmt (gettext) at build time.
  
  (Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key 
B1E955DB)

Revision  ChangesPath
1.3  media-plugins/kipi-plugins/kipi-plugins-4.0.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-plugins/kipi-plugins/kipi-plugins-4.0.0.ebuild?rev=1.3&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-plugins/kipi-plugins/kipi-plugins-4.0.0.ebuild?rev=1.3&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-plugins/kipi-plugins/kipi-plugins-4.0.0.ebuild?r1=1.2&r2=1.3

Index: kipi-plugins-4.0.0.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/media-plugins/kipi-plugins/kipi-plugins-4.0.0.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- kipi-plugins-4.0.0.ebuild   14 Jun 2014 19:10:05 -  1.2
+++ kipi-plugins-4.0.0.ebuild   15 Sep 2014 23:30:42 -  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/media-plugins/kipi-plugins/kipi-plugins-4.0.0.ebuild,v 
1.2 2014/06/14 19:10:05 dilfridge Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/media-plugins/kipi-plugins/kipi-plugins-4.0.0.ebuild,v 
1.3 2014/09/15 23:30:42 reavertm Exp $
 
 EAPI=5
 
@@ -63,6 +63,7 @@
vkontakte?  ( net-libs/libkvkontakte )
 "
 DEPEND="${COMMONDEPEND}
+   sys-devel/gettext
panorama?   (
  sys-devel/bison
  sys-devel/flex



1.3  media-plugins/kipi-plugins/kipi-plugins-4.2.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-plugins/kipi-plugins/kipi-plugins-4.2.0.ebuild?rev=1.3&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-plugins/kipi-plugins/kipi-plugins-4.2.0.ebuild?rev=1.3&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-plugins/kipi-plugins/kipi-plugins-4.2.0.ebuild?r1=1.2&r2=1.3

Index: kipi-plugins-4.2.0.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/media-plugins/kipi-plugins/kipi-plugins-4.2.0.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- kipi-plugins-4.2.0.ebuild   20 Aug 2014 14:43:48 -  1.2
+++ kipi-plugins-4.2.0.ebuild   15 Sep 2014 23:30:42 -  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/media-plugins/kipi-plugins/kipi-plugins-4.2.0.ebuild,v 
1.2 2014/08/20 14:43:48 johu Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/media-plugins/kipi-plugins/kipi-plugins-4.2.0.ebuild,v 
1.3 2014/09/15 23:30:42 reavertm Exp $
 
 EAPI=5
 
@@ -63,6 +63,7 @@
vkontakte?  ( net-libs/libkvkontakte )
 "
 DEPEND="${COMMONDEPEND}
+   sys-devel/gettext
panorama?   (
  sys-devel/bison
  sys-devel/flex



1.6  media-plugins/kipi-plugins/kipi-plugins-3.5.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-plugins/kipi-plugins/kipi-plugins-3.5.0.ebuild?rev=1.6&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-plugins/kipi-plugins/kipi-plugins-3.5.0.ebuild?rev=1.6&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-plugins/kipi-plugins/kipi-plugins-3.5.0.ebuild?r1=1.5&r2=1.6

Index: kipi-plugins-3.5.0.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/media-plugins/kipi-plugins/kipi-plugins-3.5.0.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- kipi-plugins-3.5.0.ebuild   14 Jun 2014 19:10:05 -  1.5
+++ kipi-plugins-3.5.0.ebuild   15 Sep 2014 23:30:42 -  1.6
@@ -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/media-plugins/kipi-plugins/kipi-plugins-3.5.0.ebuild,v 
1.5 2014/06/14 19:10:05 dilfridge Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/media-plugins/kipi-plugins/kipi-plugins-3.5.0.ebuild,v 
1.6 2014/09/15 23:30:42 reavertm Exp $
 
 EAPI=5
 
@@ -62,6 +62,7 @@
vkontakte?  ( net-libs/libkvkontakte )
 "
 DEPEND="${COMMONDEPEND}
+   sys-devel/gettext
panorama?   (
  sys-devel/bison
  sys-devel/flex



1.168media-plugins/kipi-plugins/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-plugins/kipi-plugins/ChangeLog?rev=1.168&view

[gentoo-commits] gentoo-x86 commit in games-simulation/flightgear/files: ac3d.vim nasal.vim

2014-09-10 Thread Maciej Mrozowski (reavertm)
reavertm14/09/11 00:59:12

  Added:ac3d.vim nasal.vim
  Log:
  Install examples, misc scripts and vim syntax, bug 520434.
  
  (Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key 
B1E955DB)

Revision  ChangesPath
1.1  games-simulation/flightgear/files/ac3d.vim

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/flightgear/files/ac3d.vim?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/flightgear/files/ac3d.vim?rev=1.1&content-type=text/plain

Index: ac3d.vim
===
au BufRead,BufNewFile *.ac set filetype=ac3d



1.1  games-simulation/flightgear/files/nasal.vim

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/flightgear/files/nasal.vim?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/flightgear/files/nasal.vim?rev=1.1&content-type=text/plain

Index: nasal.vim
===
au BufRead,BufNewFile *.nas set filetype=nasal






[gentoo-commits] gentoo-x86 commit in games-simulation/flightgear: flightgear-3.0.0-r1.ebuild ChangeLog

2014-09-10 Thread Maciej Mrozowski (reavertm)
reavertm14/09/11 00:59:12

  Modified: ChangeLog
  Added:flightgear-3.0.0-r1.ebuild
  Log:
  Install examples, misc scripts and vim syntax, bug 520434.
  
  (Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key 
B1E955DB)

Revision  ChangesPath
1.72 games-simulation/flightgear/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/flightgear/ChangeLog?rev=1.72&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/flightgear/ChangeLog?rev=1.72&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/flightgear/ChangeLog?r1=1.71&r2=1.72

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/games-simulation/flightgear/ChangeLog,v
retrieving revision 1.71
retrieving revision 1.72
diff -u -r1.71 -r1.72
--- ChangeLog   12 Aug 2014 22:40:50 -  1.71
+++ ChangeLog   11 Sep 2014 00:59:12 -  1.72
@@ -1,6 +1,12 @@
 # ChangeLog for games-simulation/flightgear
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-simulation/flightgear/ChangeLog,v 
1.71 2014/08/12 22:40:50 reavertm Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-simulation/flightgear/ChangeLog,v 
1.72 2014/09/11 00:59:12 reavertm Exp $
+
+*flightgear-3.0.0-r1 (11 Sep 2014)
+
+  11 Sep 2014; Maciej Mrozowski  +files/ac3d.vim,
+  +files/nasal.vim, +flightgear-3.0.0-r1.ebuild:
+  Install examples, misc scripts and vim syntax, bug 520434.
 
   12 Aug 2014; Maciej Mrozowski 
   -files/flightgear-2.8.0-fgpanel-linking.patch, -flightgear-2.10.0.ebuild,



1.1  games-simulation/flightgear/flightgear-3.0.0-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/flightgear/flightgear-3.0.0-r1.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/flightgear/flightgear-3.0.0-r1.ebuild?rev=1.1&content-type=text/plain

Index: flightgear-3.0.0-r1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/games-simulation/flightgear/flightgear-3.0.0-r1.ebuild,v
 1.1 2014/09/11 00:59:12 reavertm Exp $

EAPI=5

inherit games cmake-utils bash-completion-r1

DESCRIPTION="Open Source Flight Simulator"
HOMEPAGE="http://www.flightgear.org/";
SRC_URI="mirror://flightgear/Source/${P}.tar.bz2"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="dbus debug examples jpeg +jsbsim oldfdm test +udev +utils vim-syntax 
+yasim"

COMMON_DEPEND="
dev-db/sqlite:3
>=dev-games/openscenegraph-3.0.1[png]
~dev-games/simgear-${PV}[jpeg?]
media-libs/openal
sys-libs/zlib
x11-libs/libX11
dbus? ( >=sys-apps/dbus-1.6.18-r1 )
udev? ( virtual/udev )
utils? (
media-libs/freeglut
media-libs/libpng
virtual/opengl
)
"
# Some entries below are just buildsystem bugs (jpeg) or
# deps unconditionally inherited from static version of simgear
DEPEND="${COMMON_DEPEND}
>=dev-libs/boost-1.44
>=media-libs/plib-1.8.5
jpeg? ( virtual/jpeg )
"
RDEPEND="${COMMON_DEPEND}
~games-simulation/${PN}-data-${PV}
"

DOCS=(AUTHORS ChangeLog NEWS README Thanks)

src_configure() {
local mycmakeargs=(
-DCMAKE_INSTALL_PREFIX=${GAMES_PREFIX}
-DENABLE_FGADMIN=OFF
-DENABLE_PROFILE=OFF
-DENABLE_RTI=OFF
-DFG_DATA_DIR="${GAMES_DATADIR}"/${PN}
-DSIMGEAR_SHARED=ON
-DSP_FDMS=OFF
-DSYSTEM_SQLITE=ON
$(cmake-utils_use_use dbus)
$(cmake-utils_use jpeg JPEG_FACTORY)
$(cmake-utils_use_enable jsbsim)
$(cmake-utils_use_enable oldfdm LARCSIM)
$(cmake-utils_use_enable oldfdm UIUC_MODEL)
$(cmake-utils_use test LOGGING)
$(cmake-utils_use_enable test TESTS)
$(cmake-utils_use udev EVENT_INPUT)
$(cmake-utils_use_enable utils FGCOM)
$(cmake-utils_use_enable utils FGELEV)
$(cmake-utils_use_enable utils FGJS)
$(cmake-utils_use_with utils FGPANEL)
$(cmake-utils_use_enable utils FGVIEWER)
$(cmake-utils_use_enable utils GPSSMOOTH)
$(cmake-utils_use_enable utils JS_DEMO)
$(cmake-utils_use_enable utils METAR)
$(cmake-utils_use_enable utils TERRASYNC)
$(cmake-utils_use_enable yasim)
)

cmake-utils_src_configure
}

src_install() {
cmake-utils_src_install

# Install icons and menu entry
local s
 

[gentoo-commits] gentoo-x86 commit in net-libs/libgadu: libgadu-1.12.0.ebuild libgadu-1.11.4.ebuild ChangeLog

2014-09-05 Thread Maciej Mrozowski (reavertm)
reavertm14/09/05 22:37:44

  Modified: libgadu-1.12.0.ebuild libgadu-1.11.4.ebuild
ChangeLog
  Log:
  Properly trigger autoreconf, buf 520946.
  
  (Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key 
B1E955DB)

Revision  ChangesPath
1.4  net-libs/libgadu/libgadu-1.12.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libgadu/libgadu-1.12.0.ebuild?rev=1.4&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libgadu/libgadu-1.12.0.ebuild?rev=1.4&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libgadu/libgadu-1.12.0.ebuild?r1=1.3&r2=1.4

Index: libgadu-1.12.0.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/net-libs/libgadu/libgadu-1.12.0.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- libgadu-1.12.0.ebuild   13 Aug 2014 23:58:36 -  1.3
+++ libgadu-1.12.0.ebuild   5 Sep 2014 22:37:44 -   1.4
@@ -1,9 +1,11 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/libgadu/libgadu-1.12.0.ebuild,v 
1.3 2014/08/13 23:58:36 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/libgadu/libgadu-1.12.0.ebuild,v 
1.4 2014/09/05 22:37:44 reavertm Exp $
 
 EAPI=5
 
+AUTOTOOLS_AUTORECONF=1
+
 inherit autotools-utils
 
 DESCRIPTION="This library implements the client side of the Gadu-Gadu protocol"
@@ -39,7 +41,6 @@
!=net-im/kadu-0.6.0.1
 "
 
-AUTOTOOLS_AUTORECONF=1
 AUTOTOOLS_IN_SOURCE_BUILD=1
 
 PATCHES=(



1.11 net-libs/libgadu/libgadu-1.11.4.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libgadu/libgadu-1.11.4.ebuild?rev=1.11&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libgadu/libgadu-1.11.4.ebuild?rev=1.11&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libgadu/libgadu-1.11.4.ebuild?r1=1.10&r2=1.11

Index: libgadu-1.11.4.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/net-libs/libgadu/libgadu-1.11.4.ebuild,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- libgadu-1.11.4.ebuild   25 Aug 2014 11:53:29 -  1.10
+++ libgadu-1.11.4.ebuild   5 Sep 2014 22:37:44 -   1.11
@@ -1,9 +1,11 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/libgadu/libgadu-1.11.4.ebuild,v 
1.10 2014/08/25 11:53:29 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/libgadu/libgadu-1.11.4.ebuild,v 
1.11 2014/09/05 22:37:44 reavertm Exp $
 
 EAPI=5
 
+AUTOTOOLS_AUTORECONF=1
+
 inherit autotools-utils
 
 DESCRIPTION="This library implements the client side of the Gadu-Gadu protocol"
@@ -40,10 +42,6 @@
 
 DOCS=(AUTHORS ChangeLog NEWS README)
 
-src_prepare() {
-   eautoreconf
-}
-
 src_configure() {
local myeconfargs=(
$(use_with threads pthread)



1.87 net-libs/libgadu/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libgadu/ChangeLog?rev=1.87&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libgadu/ChangeLog?rev=1.87&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libgadu/ChangeLog?r1=1.86&r2=1.87

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-libs/libgadu/ChangeLog,v
retrieving revision 1.86
retrieving revision 1.87
diff -u -r1.86 -r1.87
--- ChangeLog   25 Aug 2014 11:53:29 -  1.86
+++ ChangeLog   5 Sep 2014 22:37:44 -   1.87
@@ -1,6 +1,10 @@
 # ChangeLog for net-libs/libgadu
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/libgadu/ChangeLog,v 1.86 
2014/08/25 11:53:29 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/libgadu/ChangeLog,v 1.87 
2014/09/05 22:37:44 reavertm Exp $
+
+  05 Sep 2014; Maciej Mrozowski  libgadu-1.11.4.ebuild,
+  libgadu-1.12.0.ebuild:
+  Properly trigger autoreconf, buf 520946.
 
   25 Aug 2014; Raúl Porcel  libgadu-1.11.4.ebuild:
   sparc stable wrt #505558






[gentoo-commits] gentoo-x86 commit in dev-games/openscenegraph: metadata.xml openscenegraph-3.0.1-r1.ebuild ChangeLog

2014-08-20 Thread Maciej Mrozowski (reavertm)
reavertm14/08/20 23:47:19

  Modified: metadata.xml openscenegraph-3.0.1-r1.ebuild
ChangeLog
  Log:
  Remove not really supported USE flag "itk", bug 520364.
  
  (Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key 
B1E955DB)

Revision  ChangesPath
1.9  dev-games/openscenegraph/metadata.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/openscenegraph/metadata.xml?rev=1.9&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/openscenegraph/metadata.xml?rev=1.9&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/openscenegraph/metadata.xml?r1=1.8&r2=1.9

Index: metadata.xml
===
RCS file: /var/cvsroot/gentoo-x86/dev-games/openscenegraph/metadata.xml,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- metadata.xml17 Nov 2011 18:14:20 -  1.8
+++ metadata.xml20 Aug 2014 23:47:19 -  1.9
@@ -12,7 +12,6 @@
   
 Build examples using x11-libs/fox 
library
 Enable support for sci-libs/gdal 
library
-   Build dev-tcltk/itk plugin
 Build OpenInventor plugin
 Build osg applications
 Enable support for the X xrandr extension



1.5  dev-games/openscenegraph/openscenegraph-3.0.1-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/openscenegraph/openscenegraph-3.0.1-r1.ebuild?rev=1.5&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/openscenegraph/openscenegraph-3.0.1-r1.ebuild?rev=1.5&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/openscenegraph/openscenegraph-3.0.1-r1.ebuild?r1=1.4&r2=1.5

Index: openscenegraph-3.0.1-r1.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-games/openscenegraph/openscenegraph-3.0.1-r1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- openscenegraph-3.0.1-r1.ebuild  15 Jun 2013 20:09:37 -  1.4
+++ openscenegraph-3.0.1-r1.ebuild  20 Aug 2014 23:47:19 -  1.5
@@ -1,8 +1,8 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-games/openscenegraph/openscenegraph-3.0.1-r1.ebuild,v
 1.4 2013/06/15 20:09:37 pacho Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-games/openscenegraph/openscenegraph-3.0.1-r1.ebuild,v
 1.5 2014/08/20 23:47:19 reavertm Exp $
 
-EAPI=3
+EAPI=5
 
 inherit eutils cmake-utils flag-o-matic wxwidgets
 
@@ -16,11 +16,12 @@
 LICENSE="wxWinLL-3 LGPL-2.1"
 SLOT="0"
 KEYWORDS="amd64 ppc x86"
-IUSE="curl debug doc examples ffmpeg fltk fox gdal gif glut gtk itk jpeg jpeg2k
-openexr openinventor osgapps pdf png qt4 sdl svg tiff truetype vnc wxwidgets 
xine xrandr zlib"
+IUSE="curl debug doc examples ffmpeg fltk fox gdal gif glut gtk jpeg jpeg2k
+openexr openinventor osgapps pdf png qt4 sdl svg tiff truetype vnc wxwidgets
+xine xrandr zlib"
 
 # NOTE: OpenAL (support missing)
-# TODO: COLLADA, FBX, OpenVRML, Performer, DCMTK
+# TODO: COLLADA, FBX, ITK, OpenVRML, Performer, DCMTK
 RDEPEND="
x11-libs/libSM
x11-libs/libXext
@@ -43,7 +44,6 @@
ffmpeg? ( virtual/ffmpeg )
gdal? ( sci-libs/gdal )
gif? ( media-libs/giflib )
-   itk? ( dev-tcltk/itk )
jpeg? ( virtual/jpeg )
jpeg2k? ( media-libs/jasper )
openexr? (
@@ -94,6 +94,7 @@
 
mycmakeargs=(
-DDYNAMIC_OPENSCENEGRAPH=ON
+   -DWITH_ITK=OFF
-DWITH_OpenAL=OFF # Commented out in buildsystem
-DGENTOO_DOCDIR="/usr/share/doc/${PF}"
$(cmake-utils_use_with curl)
@@ -107,7 +108,6 @@
$(cmake-utils_use_with gif GIFLIB)
$(cmake-utils_use_with glut)
$(cmake-utils_use_with gtk GtkGl)
-   $(cmake-utils_use_with itk)
$(cmake-utils_use_with jpeg)
$(cmake-utils_use_with jpeg2k Jasper)
$(cmake-utils_use_with openexr OpenEXR)



1.57 dev-games/openscenegraph/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/openscenegraph/ChangeLog?rev=1.57&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/openscenegraph/ChangeLog?rev=1.57&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/openscenegraph/ChangeLog?r1=1.56&r2=1.57

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-games/openscenegraph/ChangeLog,v
retrieving revision 1.56
retrieving revision 1.57
diff -u -r1.56 -r1.57
--- ChangeLog   13 Feb 2014 21:22:42 -  1.56
+++ ChangeLog   20 Aug 2014 23:47:19 -  

[gentoo-commits] gentoo-x86 commit in media-libs/quarter: quarter-1.0.0-r1.ebuild ChangeLog

2014-08-13 Thread Maciej Mrozowski (reavertm)
reavertm14/08/14 00:15:23

  Modified: quarter-1.0.0-r1.ebuild ChangeLog
  Log:
  Fix patch, bug 477114, Move to EAPI 5.
  
  (Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key 
B1E955DB)

Revision  ChangesPath
1.6  media-libs/quarter/quarter-1.0.0-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/quarter/quarter-1.0.0-r1.ebuild?rev=1.6&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/quarter/quarter-1.0.0-r1.ebuild?rev=1.6&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/quarter/quarter-1.0.0-r1.ebuild?r1=1.5&r2=1.6

Index: quarter-1.0.0-r1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/media-libs/quarter/quarter-1.0.0-r1.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- quarter-1.0.0-r1.ebuild 2 Mar 2013 21:48:45 -   1.5
+++ quarter-1.0.0-r1.ebuild 14 Aug 2014 00:15:23 -  1.6
@@ -1,10 +1,10 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/media-libs/quarter/quarter-1.0.0-r1.ebuild,v 1.5 
2013/03/02 21:48:45 hwoarang Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/media-libs/quarter/quarter-1.0.0-r1.ebuild,v 1.6 
2014/08/14 00:15:23 reavertm Exp $
 
-EAPI="2"
+EAPI=5
 
-inherit base
+inherit autotools-utils
 
 MY_P="${P/q/Q}"
 
@@ -37,24 +37,13 @@
 DOCS=(AUTHORS NEWS README)
 
 src_configure() {
-   # Bug 336008
-   MAKEOPTS=-j1
-
-   econf \
-   htmldir="${ROOT}usr/share/doc/${PF}/html" \
-   --enable-pkgconfig \
-   --enable-shared \
-   --with-coin \
-   $(use_enable debug) \
-   $(use_enable debug symbols) \
-   $(use_enable doc html) \
-   $(use_enable static-libs static)
-}
-
-src_install() {
-   base_src_install
-
-   # Do not install .la files
-   rm -f "${D}"/usr/lib*/qt4/plugins/designer/*.{la,a}
-   use static-libs || rm -f "${D}"/usr/lib*/*.la
+   local myeconfargs=(
+   htmldir="${ROOT}usr/share/doc/${PF}/html"
+   --enable-pkgconfig
+   --with-coin
+   $(use_enable debug)
+   $(use_enable debug symbols)
+   $(use_enable doc html)
+   )
+   autotools-utils_src_configure
 }



1.7  media-libs/quarter/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-libs/quarter/ChangeLog,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- ChangeLog   2 Mar 2013 21:48:45 -   1.6
+++ ChangeLog   14 Aug 2014 00:15:23 -  1.7
@@ -1,6 +1,10 @@
 # ChangeLog for media-libs/quarter
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/quarter/ChangeLog,v 1.6 
2013/03/02 21:48:45 hwoarang Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/media-libs/quarter/ChangeLog,v 1.7 
2014/08/14 00:15:23 reavertm Exp $
+
+  14 Aug 2014; Maciej Mrozowski 
+  files/quarter-1.0.0-gcc44.patch, quarter-1.0.0-r1.ebuild:
+  Fix patch, bug 477114, Move to EAPI 5.
 
   02 Mar 2013; Markos Chandras  quarter-1.0.0-r1.ebuild:
   Move Qt dependencies to the new category






[gentoo-commits] gentoo-x86 commit in media-libs/quarter/files: quarter-1.0.0-gcc44.patch

2014-08-13 Thread Maciej Mrozowski (reavertm)
reavertm14/08/14 00:15:22

  Modified: quarter-1.0.0-gcc44.patch
  Log:
  Fix patch, bug 477114, Move to EAPI 5.
  
  (Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key 
B1E955DB)

Revision  ChangesPath
1.2  media-libs/quarter/files/quarter-1.0.0-gcc44.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/quarter/files/quarter-1.0.0-gcc44.patch?rev=1.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/quarter/files/quarter-1.0.0-gcc44.patch?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/quarter/files/quarter-1.0.0-gcc44.patch?r1=1.1&r2=1.2

Index: quarter-1.0.0-gcc44.patch
===
RCS file: 
/var/cvsroot/gentoo-x86/media-libs/quarter/files/quarter-1.0.0-gcc44.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- quarter-1.0.0-gcc44.patch   18 May 2010 14:34:59 -  1.1
+++ quarter-1.0.0-gcc44.patch   14 Aug 2014 00:15:22 -  1.2
@@ -1,6 +1,6 @@
-diff -ru ../Quarter-1.0.0/src/Quarter/Quarter.cpp ./src/Quarter/Quarter.cpp
 ../Quarter-1.0.0/src/Quarter/Quarter.cpp   2009-01-26 22:47:07.0 
+0100
-+++ ./src/Quarter/Quarter.cpp  2010-05-18 16:17:25.246880238 +0200
+diff -ruN Quarter-1.0.0/src/Quarter/Quarter.cpp my/src/Quarter/Quarter.cpp
+--- Quarter-1.0.0/src/Quarter/Quarter.cpp  2009-01-26 22:47:07.0 
+0100
 my/src/Quarter/Quarter.cpp 2014-08-14 01:48:45.019728780 +0200
 @@ -123,6 +123,7 @@
\subpage examiner
  */






[gentoo-commits] gentoo-x86 commit in net-libs/libgadu: metadata.xml libgadu-1.12.0.ebuild ChangeLog

2014-08-13 Thread Maciej Mrozowski (reavertm)
reavertm14/08/13 23:00:37

  Modified: metadata.xml libgadu-1.12.0.ebuild ChangeLog
  Log:
  After deeper inspection, protobuf-c (gg11 support) is not really optional, 
fixes bug 519812.
  
  (Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key 
B1E955DB)

Revision  ChangesPath
1.5  net-libs/libgadu/metadata.xml

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

Index: metadata.xml
===
RCS file: /var/cvsroot/gentoo-x86/net-libs/libgadu/metadata.xml,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- metadata.xml13 Aug 2014 02:30:01 -  1.4
+++ metadata.xml13 Aug 2014 23:00:37 -  1.5
@@ -6,7 +6,4 @@
reave...@gentoo.org
Maciej Mrozowski

-   
-   Enable GaduGadu 11 protocol support
-   
 



1.2  net-libs/libgadu/libgadu-1.12.0.ebuild

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

Index: libgadu-1.12.0.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/net-libs/libgadu/libgadu-1.12.0.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- libgadu-1.12.0.ebuild   13 Aug 2014 02:30:01 -  1.1
+++ libgadu-1.12.0.ebuild   13 Aug 2014 23:00:37 -  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-libs/libgadu/libgadu-1.12.0.ebuild,v 
1.1 2014/08/13 02:30:01 reavertm Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/libgadu/libgadu-1.12.0.ebuild,v 
1.2 2014/08/13 23:00:37 reavertm Exp $
 
 EAPI=5
 
@@ -11,16 +11,16 @@
 SRC_URI="https://github.com/wojtekka/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="LGPL-2.1"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos"
+KEYWORDS="~amd64 ~arm ~mips ~ppc ~ppc64 ~x86 ~x86-fbsd ~x86-freebsd 
~amd64-linux ~x86-linux ~ppc-macos"
 SLOT="0"
-IUSE="doc +gg11 gnutls ssl static-libs test threads"
+IUSE="doc gnutls ssl static-libs test threads"
 
 REQUIRED_USE="
gnutls? ( ssl )
 "
 COMMON_DEPEND="
+   >=dev-libs/protobuf-c-0.15
sys-libs/zlib
-   gg11? ( >=dev-libs/protobuf-c-0.15 )
ssl? (
gnutls? ( net-libs/gnutls )
!gnutls? ( >=dev-libs/openssl-0.9.6m )
@@ -50,7 +50,7 @@
 
 src_configure() {
local myeconfargs=(
-   $(use_with gg11 protobuf)
+   --with-protobuf
$(use_enable test tests)
$(use_with threads pthread)
)



1.77 net-libs/libgadu/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libgadu/ChangeLog?rev=1.77&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libgadu/ChangeLog?rev=1.77&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libgadu/ChangeLog?r1=1.76&r2=1.77

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-libs/libgadu/ChangeLog,v
retrieving revision 1.76
retrieving revision 1.77
diff -u -r1.76 -r1.77
--- ChangeLog   13 Aug 2014 02:30:01 -  1.76
+++ ChangeLog   13 Aug 2014 23:00:37 -  1.77
@@ -1,6 +1,11 @@
 # ChangeLog for net-libs/libgadu
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/libgadu/ChangeLog,v 1.76 
2014/08/13 02:30:01 reavertm Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/libgadu/ChangeLog,v 1.77 
2014/08/13 23:00:37 reavertm Exp $
+
+  13 Aug 2014; Maciej Mrozowski  libgadu-1.12.0.ebuild,
+  metadata.xml:
+  After deeper inspection, protobuf-c (gg11 support) is not really optional,
+  fixes bug 519812.
 
 *libgadu-1.12.0 (13 Aug 2014)
 






[gentoo-commits] gentoo-x86 commit in net-libs/libgadu: libgadu-1.12.0.ebuild metadata.xml ChangeLog libgadu-1.11.3.ebuild

2014-08-12 Thread Maciej Mrozowski (reavertm)
reavertm14/08/13 02:30:01

  Modified: metadata.xml ChangeLog
  Added:libgadu-1.12.0.ebuild
  Removed:  libgadu-1.11.3.ebuild
  Log:
  Version bump, remove old.
  
  (Portage version: 2.2.12/cvs/Linux x86_64, RepoMan options: --force, signed 
Manifest commit with key B1E955DB)

Revision  ChangesPath
1.4  net-libs/libgadu/metadata.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libgadu/metadata.xml?rev=1.4&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libgadu/metadata.xml?rev=1.4&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libgadu/metadata.xml?r1=1.3&r2=1.4

Index: metadata.xml
===
RCS file: /var/cvsroot/gentoo-x86/net-libs/libgadu/metadata.xml,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- metadata.xml14 May 2010 19:07:02 -  1.3
+++ metadata.xml13 Aug 2014 02:30:01 -  1.4
@@ -6,4 +6,7 @@
reave...@gentoo.org
Maciej Mrozowski

+   
+   Enable GaduGadu 11 protocol support
+   
 



1.76 net-libs/libgadu/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libgadu/ChangeLog?rev=1.76&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libgadu/ChangeLog?rev=1.76&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libgadu/ChangeLog?r1=1.75&r2=1.76

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-libs/libgadu/ChangeLog,v
retrieving revision 1.75
retrieving revision 1.76
diff -u -r1.75 -r1.76
--- ChangeLog   26 May 2014 05:51:33 -  1.75
+++ ChangeLog   13 Aug 2014 02:30:01 -  1.76
@@ -1,6 +1,13 @@
 # ChangeLog for net-libs/libgadu
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/libgadu/ChangeLog,v 1.75 
2014/05/26 05:51:33 mrueg Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/libgadu/ChangeLog,v 1.76 
2014/08/13 02:30:01 reavertm Exp $
+
+*libgadu-1.12.0 (13 Aug 2014)
+
+  13 Aug 2014; Maciej Mrozowski 
+  +files/libgadu-1.12.0-tests.patch, +libgadu-1.12.0.ebuild,
+  -libgadu-1.11.3.ebuild, metadata.xml:
+  Version bump, remove old.
 
   26 May 2014; Manuel Rüger  libgadu-1.11.3.ebuild,
   libgadu-1.11.4.ebuild:



1.1  net-libs/libgadu/libgadu-1.12.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libgadu/libgadu-1.12.0.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libgadu/libgadu-1.12.0.ebuild?rev=1.1&content-type=text/plain

Index: libgadu-1.12.0.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-libs/libgadu/libgadu-1.12.0.ebuild,v 1.1 
2014/08/13 02:30:01 reavertm Exp $

EAPI=5

inherit autotools-utils

DESCRIPTION="This library implements the client side of the Gadu-Gadu protocol"
HOMEPAGE="http://toxygen.net/libgadu/";
SRC_URI="https://github.com/wojtekka/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"

LICENSE="LGPL-2.1"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos"
SLOT="0"
IUSE="doc +gg11 gnutls ssl static-libs test threads"

REQUIRED_USE="
gnutls? ( ssl )
"
COMMON_DEPEND="
sys-libs/zlib
gg11? ( >=dev-libs/protobuf-c-0.15 )
ssl? (
gnutls? ( net-libs/gnutls )
!gnutls? ( >=dev-libs/openssl-0.9.6m )
)
"
DEPEND="${COMMON_DEPEND}
doc? ( app-doc/doxygen )
test? (
dev-libs/expat
dev-libs/libxml2:2
net-misc/curl
)
"
RDEPEND="${COMMON_DEPEND}
!=net-im/kadu-0.6.0.2
!=net-im/kadu-0.6.0.1
"

AUTOTOOLS_AUTORECONF=1
AUTOTOOLS_IN_SOURCE_BUILD=1

PATCHES=(
"${FILESDIR}/${P}-tests.patch"
)

DOCS=(AUTHORS ChangeLog NEWS README)

src_configure() {
local myeconfargs=(
$(use_with gg11 protobuf)
$(use_enable test tests)
$(use_with threads pthread)
)

if use ssl; then
myeconfargs+=(
$(use_with gnutls gnutls)
$(use_with !gnutls openssl)
)
else
myeconfargs+=(
--without-gnutls
--without-openssl
)
fi

autotools-utils_src_configure
}

src_install() {
use doc && HTML_DOCS=(docs/html/)
autotools-utils_src_install
}






[gentoo-commits] gentoo-x86 commit in profiles/arch/ia64: ChangeLog package.use.mask

2014-08-12 Thread Maciej Mrozowski (reavertm)
reavertm14/08/13 02:28:44

  Modified: ChangeLog package.use.mask
  Log:
  Mask gg11 flag on >=net-libs/libgadu-1.12.0 due to missing keywords (bug 
519772)

Revision  ChangesPath
1.209profiles/arch/ia64/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/ia64/ChangeLog?rev=1.209&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/ia64/ChangeLog?rev=1.209&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/ia64/ChangeLog?r1=1.208&r2=1.209

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/profiles/arch/ia64/ChangeLog,v
retrieving revision 1.208
retrieving revision 1.209
diff -u -r1.208 -r1.209
--- ChangeLog   12 Aug 2014 12:01:43 -  1.208
+++ ChangeLog   13 Aug 2014 02:28:44 -  1.209
@@ -1,6 +1,9 @@
 # ChangeLog for Gentoo/ia64 profile
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/arch/ia64/ChangeLog,v 1.208 
2014/08/12 12:01:43 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/arch/ia64/ChangeLog,v 1.209 
2014/08/13 02:28:44 reavertm Exp $
+
+  13 Aug 2014; Maciej Mrozowski  package.use.mask:
+  Mask gg11 flag due to missing keywords (bug 519772)
 
   12 Aug 2014; Mike Frysinger  use.mask:
   Mask untested mumble. #509216 by Émeric Maschino.



1.147profiles/arch/ia64/package.use.mask

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/ia64/package.use.mask?rev=1.147&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/ia64/package.use.mask?rev=1.147&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/ia64/package.use.mask?r1=1.146&r2=1.147

Index: package.use.mask
===
RCS file: /var/cvsroot/gentoo-x86/profiles/arch/ia64/package.use.mask,v
retrieving revision 1.146
retrieving revision 1.147
diff -u -r1.146 -r1.147
--- package.use.mask29 Jul 2014 23:15:42 -  1.146
+++ package.use.mask13 Aug 2014 02:28:44 -  1.147
@@ -1,6 +1,10 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/arch/ia64/package.use.mask,v 1.146 
2014/07/29 23:15:42 robbat2 Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/arch/ia64/package.use.mask,v 1.147 
2014/08/13 02:28:44 reavertm Exp $
+
+# Maciej Mrozowski  (13 Aug 2014)
+# Missing keywords on dev-libs/protobuf-c (bug 519772)
+>=net-libs/libgadu-1.12.0 gg11
 
 # Christoph Junghans  (21 Jul 2014)
 # Missing keywords on sci-libs/libcerf (bug 517726)






[gentoo-commits] gentoo-x86 commit in profiles/arch/powerpc: ChangeLog package.use.mask

2014-08-12 Thread Maciej Mrozowski (reavertm)
reavertm14/08/13 02:28:44

  Modified: ChangeLog package.use.mask
  Log:
  Mask gg11 flag on >=net-libs/libgadu-1.12.0 due to missing keywords (bug 
519772)

Revision  ChangesPath
1.277profiles/arch/powerpc/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/powerpc/ChangeLog?rev=1.277&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/powerpc/ChangeLog?rev=1.277&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/powerpc/ChangeLog?r1=1.276&r2=1.277

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/profiles/arch/powerpc/ChangeLog,v
retrieving revision 1.276
retrieving revision 1.277
diff -u -r1.276 -r1.277
--- ChangeLog   12 Aug 2014 21:53:03 -  1.276
+++ ChangeLog   13 Aug 2014 02:28:44 -  1.277
@@ -1,6 +1,9 @@
 # ChangeLog for Gentoo/PPC profile directory
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/arch/powerpc/ChangeLog,v 1.276 
2014/08/12 21:53:03 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/arch/powerpc/ChangeLog,v 1.277 
2014/08/13 02:28:44 reavertm Exp $
+
+  13 Aug 2014; Maciej Mrozowski  package.use.mask:
+  Mask gg11 flag due to missing keywords (bug 519772)
 
   12 Aug 2014; Anthony G. Basile  ChangeLog:
   Mask FEATURES=test on dev-ruby/actionpack since it eventually pulls in nodejs



1.205profiles/arch/powerpc/package.use.mask

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/powerpc/package.use.mask?rev=1.205&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/powerpc/package.use.mask?rev=1.205&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/powerpc/package.use.mask?r1=1.204&r2=1.205

Index: package.use.mask
===
RCS file: /var/cvsroot/gentoo-x86/profiles/arch/powerpc/package.use.mask,v
retrieving revision 1.204
retrieving revision 1.205
diff -u -r1.204 -r1.205
--- package.use.mask12 Aug 2014 20:52:24 -  1.204
+++ package.use.mask13 Aug 2014 02:28:44 -  1.205
@@ -1,6 +1,10 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/arch/powerpc/package.use.mask,v 
1.204 2014/08/12 20:52:24 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/arch/powerpc/package.use.mask,v 
1.205 2014/08/13 02:28:44 reavertm Exp $
+
+# Maciej Mrozowski  (13 Aug 2014)
+# Missing keywords on dev-libs/protobuf-c (bug 519772)
+>=net-libs/libgadu-1.12.0 gg11
 
 # Anthony G. Basile  (12 Aug 2014)
 # Ultimately pulls in nodejs which is broken.






[gentoo-commits] gentoo-x86 commit in profiles/arch/alpha: ChangeLog package.use.mask

2014-08-12 Thread Maciej Mrozowski (reavertm)
reavertm14/08/13 02:28:43

  Modified: ChangeLog package.use.mask
  Log:
  Mask gg11 flag on >=net-libs/libgadu-1.12.0 due to missing keywords (bug 
519772)

Revision  ChangesPath
1.197profiles/arch/alpha/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/alpha/ChangeLog?rev=1.197&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/alpha/ChangeLog?rev=1.197&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/alpha/ChangeLog?r1=1.196&r2=1.197

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/profiles/arch/alpha/ChangeLog,v
retrieving revision 1.196
retrieving revision 1.197
diff -u -r1.196 -r1.197
--- ChangeLog   4 Aug 2014 15:52:03 -   1.196
+++ ChangeLog   13 Aug 2014 02:28:43 -  1.197
@@ -1,6 +1,9 @@
 # ChangeLog for Gentoo/Alpha profile directory
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/arch/alpha/ChangeLog,v 1.196 
2014/08/04 15:52:03 klausman Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/arch/alpha/ChangeLog,v 1.197 
2014/08/13 02:28:43 reavertm Exp $
+
+  13 Aug 2014; Maciej Mrozowski  package.use.mask:
+  Mask gg11 flag due to missing keywords (bug 519772)
 
   04 Aug 2014; Tobias Klausmann  package.use.mask:
   Mask x265 use flag for ffmpeg due to bug 519046



1.162profiles/arch/alpha/package.use.mask

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/alpha/package.use.mask?rev=1.162&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/alpha/package.use.mask?rev=1.162&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/alpha/package.use.mask?r1=1.161&r2=1.162

Index: package.use.mask
===
RCS file: /var/cvsroot/gentoo-x86/profiles/arch/alpha/package.use.mask,v
retrieving revision 1.161
retrieving revision 1.162
diff -u -r1.161 -r1.162
--- package.use.mask4 Aug 2014 15:52:03 -   1.161
+++ package.use.mask13 Aug 2014 02:28:43 -  1.162
@@ -1,6 +1,10 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/arch/alpha/package.use.mask,v 
1.161 2014/08/04 15:52:03 klausman Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/arch/alpha/package.use.mask,v 
1.162 2014/08/13 02:28:43 reavertm Exp $
+
+# Maciej Mrozowski  (13 Aug 2014)
+# Missing keywords on dev-libs/protobuf-c (bug 519772)
+>=net-libs/libgadu-1.12.0 gg11
 
 # Tobias Klausmann 
 # media-libs/x265 doesn't work on alpha (bug 519046)






[gentoo-commits] gentoo-x86 commit in profiles/arch/sparc: ChangeLog package.use.mask

2014-08-12 Thread Maciej Mrozowski (reavertm)
reavertm14/08/13 02:28:44

  Modified: ChangeLog package.use.mask
  Log:
  Mask gg11 flag on >=net-libs/libgadu-1.12.0 due to missing keywords (bug 
519772)

Revision  ChangesPath
1.223profiles/arch/sparc/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/sparc/ChangeLog?rev=1.223&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/sparc/ChangeLog?rev=1.223&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/sparc/ChangeLog?r1=1.222&r2=1.223

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/profiles/arch/sparc/ChangeLog,v
retrieving revision 1.222
retrieving revision 1.223
diff -u -r1.222 -r1.223
--- ChangeLog   31 Jul 2014 22:14:24 -  1.222
+++ ChangeLog   13 Aug 2014 02:28:44 -  1.223
@@ -1,6 +1,9 @@
 # ChangeLog for Gentoo/sparc profile
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/arch/sparc/ChangeLog,v 1.222 
2014/07/31 22:14:24 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/arch/sparc/ChangeLog,v 1.223 
2014/08/13 02:28:44 reavertm Exp $
+
+  13 Aug 2014; Maciej Mrozowski  package.use.mask:
+  Mask gg11 flag due to missing keywords (bug 519772)
 
   31 Jul 2014; Samuli Suominen  package.use.stable.mask:
   Temporarily mask USE="test" for sys-block/thin-provisioning-tools because of



1.169profiles/arch/sparc/package.use.mask

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/sparc/package.use.mask?rev=1.169&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/sparc/package.use.mask?rev=1.169&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/sparc/package.use.mask?r1=1.168&r2=1.169

Index: package.use.mask
===
RCS file: /var/cvsroot/gentoo-x86/profiles/arch/sparc/package.use.mask,v
retrieving revision 1.168
retrieving revision 1.169
diff -u -r1.168 -r1.169
--- package.use.mask29 Jul 2014 23:16:23 -  1.168
+++ package.use.mask13 Aug 2014 02:28:44 -  1.169
@@ -1,6 +1,10 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/arch/sparc/package.use.mask,v 
1.168 2014/07/29 23:16:23 robbat2 Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/arch/sparc/package.use.mask,v 
1.169 2014/08/13 02:28:44 reavertm Exp $
+
+# Maciej Mrozowski  (13 Aug 2014)
+# Missing keywords on dev-libs/protobuf-c (bug 519772)
+>=net-libs/libgadu-1.12.0 gg11
 
 # Christoph Junghans  (21 Jul 2014)
 # Missing keywords on sci-libs/libcerf (bug 517726)






[gentoo-commits] gentoo-x86 commit in games-simulation/fgrun/files: fgrun-1.5.2-fltk.patch

2014-08-12 Thread Maciej Mrozowski (reavertm)
reavertm14/08/13 00:23:06

  Removed:  fgrun-1.5.2-fltk.patch
  Log:
  Version bump, remove old, exported from git tag 3.0.0-final. Fixes bug 436600.
  
  (Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key 
B1E955DB)



[gentoo-commits] gentoo-x86 commit in games-simulation/fgrun: fgrun-3.0.0.ebuild ChangeLog fgrun-1.6.0.ebuild

2014-08-12 Thread Maciej Mrozowski (reavertm)
reavertm14/08/13 00:23:06

  Modified: ChangeLog
  Added:fgrun-3.0.0.ebuild
  Removed:  fgrun-1.6.0.ebuild
  Log:
  Version bump, remove old, exported from git tag 3.0.0-final. Fixes bug 436600.
  
  (Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key 
B1E955DB)

Revision  ChangesPath
1.13 games-simulation/fgrun/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/fgrun/ChangeLog?rev=1.13&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/fgrun/ChangeLog?rev=1.13&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/fgrun/ChangeLog?r1=1.12&r2=1.13

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/games-simulation/fgrun/ChangeLog,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- ChangeLog   21 Jan 2012 15:57:35 -  1.12
+++ ChangeLog   13 Aug 2014 00:23:06 -  1.13
@@ -1,6 +1,12 @@
 # ChangeLog for games-simulation/fgrun
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-simulation/fgrun/ChangeLog,v 1.12 
2012/01/21 15:57:35 reavertm Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/games-simulation/fgrun/ChangeLog,v 1.13 
2014/08/13 00:23:06 reavertm Exp $
+
+*fgrun-3.0.0 (13 Aug 2014)
+
+  13 Aug 2014; Maciej Mrozowski  +fgrun-3.0.0.ebuild,
+  -fgrun-1.6.0.ebuild, -files/fgrun-1.5.2-fltk.patch:
+  Version bump, remove old, exported from git tag 3.0.0-final. Fixes bug 
436600.
 
 *fgrun-1.6.0 (21 Jan 2012)
 
@@ -53,4 +59,3 @@
   26 Apr 2007; Tupone Alfredo 
   +files/fgrun-0.4.8-fltk.patch, +metadata.xml, +fgrun-0.4.8.ebuild:
   New package. Bug #130115 by Lawrence Shafer
-



1.1  games-simulation/fgrun/fgrun-3.0.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/fgrun/fgrun-3.0.0.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/fgrun/fgrun-3.0.0.ebuild?rev=1.1&content-type=text/plain

Index: fgrun-3.0.0.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-simulation/fgrun/fgrun-3.0.0.ebuild,v 
1.1 2014/08/13 00:23:06 reavertm Exp $

EAPI=5

inherit games cmake-utils

# Exported from git tag 3.0.0-final
MY_PN=fg-fgrun
MY_PV=e13e42811239008fded7685d8f2311bb571f6a58
MY_P="${MY_PN}-${MY_PV}"

DESCRIPTION="A graphical frontend for the FlightGear Flight Simulator"
HOMEPAGE="http://sourceforge.net/projects/fgrun";
SRC_URI="mirror://gentoo/${MY_P}.tar.gz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="debug nls"

COMMON_DEPEND="
>=dev-games/openscenegraph-3.0.1
sys-libs/zlib
x11-libs/fltk:1[opengl,threads]
"
DEPEND="${COMMON_DEPEND}
>=dev-games/simgear-${PV}
>=dev-libs/boost-1.34
nls? ( sys-devel/gettext )
"
RDEPEND="${COMMON_DEPEND}
>=games-simulation/flightgear-${PV}
"

S=${WORKDIR}/${MY_PN}
DOCS=(AUTHORS NEWS)

src_configure() {
local mycmakeargs=(
-DCMAKE_INSTALL_PREFIX=${GAMES_PREFIX}
$(cmake-utils_use_enable nls)
)

cmake-utils_src_configure
}

src_install() {
cmake-utils_src_install

prepgamesdirs
}






[gentoo-commits] gentoo-x86 commit in games-util/atlas/files: atlas-0.3.1_p20101101-libpng15.patch atlas-0.3.1_p20101101-simgear-2.4.0.patch

2014-08-12 Thread Maciej Mrozowski (reavertm)
reavertm14/08/12 23:52:13

  Removed:  atlas-0.3.1_p20101101-libpng15.patch
atlas-0.3.1_p20101101-simgear-2.4.0.patch
  Log:
  Version bump, remove old, effectively fixes bug 458448.
  
  (Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key 
B1E955DB)



[gentoo-commits] gentoo-x86 commit in games-util/atlas: atlas-0.4.9_p20140320.ebuild ChangeLog atlas-0.3.1_p20101101-r1.ebuild atlas-0.3.1_p20101101.ebuild

2014-08-12 Thread Maciej Mrozowski (reavertm)
reavertm14/08/12 23:52:12

  Modified: ChangeLog
  Added:atlas-0.4.9_p20140320.ebuild
  Removed:  atlas-0.3.1_p20101101-r1.ebuild
atlas-0.3.1_p20101101.ebuild
  Log:
  Version bump, remove old, effectively fixes bug 458448.
  
  (Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key 
B1E955DB)

Revision  ChangesPath
1.30 games-util/atlas/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-util/atlas/ChangeLog?rev=1.30&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-util/atlas/ChangeLog?rev=1.30&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-util/atlas/ChangeLog?r1=1.29&r2=1.30

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/games-util/atlas/ChangeLog,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -r1.29 -r1.30
--- ChangeLog   16 Oct 2011 03:32:27 -  1.29
+++ ChangeLog   12 Aug 2014 23:52:12 -  1.30
@@ -1,6 +1,14 @@
 # ChangeLog for games-util/atlas
-# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-util/atlas/ChangeLog,v 1.29 
2011/10/16 03:32:27 reavertm Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/games-util/atlas/ChangeLog,v 1.30 
2014/08/12 23:52:12 reavertm Exp $
+
+*atlas-0.4.9_p20140320 (12 Aug 2014)
+
+  12 Aug 2014; Maciej Mrozowski 
+  +atlas-0.4.9_p20140320.ebuild, -atlas-0.3.1_p20101101-r1.ebuild,
+  -atlas-0.3.1_p20101101.ebuild, -files/atlas-0.3.1_p20101101-libpng15.patch,
+  -files/atlas-0.3.1_p20101101-simgear-2.4.0.patch:
+  Version bump, remove old, effectively fixes bug 458448.
 
   16 Oct 2011; Maciej Mrozowski 
   atlas-0.3.1_p20101101-r1.ebuild:
@@ -120,4 +128,3 @@
 
   26 Aug 2003; Michael Sterrett  atlas-0.2.2.ebuild:
   initial commit.  ebuild draft from Jeff Thorsett via bug 25540
-



1.1  games-util/atlas/atlas-0.4.9_p20140320.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-util/atlas/atlas-0.4.9_p20140320.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-util/atlas/atlas-0.4.9_p20140320.ebuild?rev=1.1&content-type=text/plain

Index: atlas-0.4.9_p20140320.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/games-util/atlas/atlas-0.4.9_p20140320.ebuild,v 1.1 
2014/08/12 23:52:12 reavertm Exp $

EAPI=5

inherit autotools eutils games

MY_PN=Atlas
MY_PV=${PV/p/cvs}
MY_P="${MY_PN}-${MY_PV}"

DESCRIPTION="Chart Program to use with Flightgear Flight Simulator"
HOMEPAGE="http://atlas.sourceforge.net/";
SRC_URI="mirror://gentoo/${MY_P}.tar.bz2"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE=""

COMMON_DEPEND="
media-libs/freeglut
>=media-libs/libpng-1.5
net-misc/curl
sys-libs/zlib
virtual/glu
virtual/jpeg
virtual/opengl
"
DEPEND="${COMMON_DEPEND}
>=dev-games/simgear-3.0.0
media-libs/plib
"
RDEPEND="${COMMON_DEPEND}
>=games-simulation/flightgear-3.0.0
"

S=${WORKDIR}/${MY_PN}

src_prepare() {
eautoreconf
}

src_configure() {
egamesconf \
--disable-dependency-tracking \
--enable-simgear-shared \
--with-fgbase="${GAMES_DATADIR}"/flightgear
}

src_install() {
emake DESTDIR="${D}" install || die
insinto "${GAMES_DATADIR}"/flightgear/Atlas
doins src/data/*.{jpg,png} || die
insinto "${GAMES_DATADIR}"/flightgear/Atlas/Palettes
doins src/data/Palettes/*.ap || die
insinto "${GAMES_DATADIR}"/flightgear/Atlas/Fonts
doins src/data/Fonts/*.txf || die
dodoc AUTHORS NEWS README
prepgamesdirs
}

pkg_postinst() {
games_pkg_postinst
elog "You now can make the maps with the following commands:"
elog "${GAMES_BINDIR}/Map --atlas=${GAMES_DATADIR}/flightgear/Atlas"
elog
elog "To run Atlas concurrently with FlightGear use the following:"
elog "Atlas --path=[path of map images] --udp=[port number]"
elog "and start fgfs with the following switch (or in .fgfsrc):"
elog "--nmea=socket,out,0.5,[host that you run Atlas on],[port 
number],udp"
echo
}

pkg_postrm() {
elog "You must manually remove the maps if you don't want them around."
elog "They are found in the following directory:"
echo
elog "${GAMES_DATADIR}/flightgear/Atlas"
echo
}






[gentoo-commits] gentoo-x86 commit in dev-games/simgear: ChangeLog simgear-2.8.0-r1.ebuild simgear-2.12.1.ebuild simgear-2.10.0.ebuild

2014-08-12 Thread Maciej Mrozowski (reavertm)
reavertm14/08/12 22:43:01

  Modified: ChangeLog
  Removed:  simgear-2.8.0-r1.ebuild simgear-2.12.1.ebuild
simgear-2.10.0.ebuild
  Log:
  Removed versions affected by bug 468106. Dropping to ~ppc.
  
  (Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key 
B1E955DB)

Revision  ChangesPath
1.66 dev-games/simgear/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/simgear/ChangeLog?rev=1.66&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/simgear/ChangeLog?rev=1.66&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/simgear/ChangeLog?r1=1.65&r2=1.66

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-games/simgear/ChangeLog,v
retrieving revision 1.65
retrieving revision 1.66
diff -u -r1.65 -r1.66
--- ChangeLog   7 Jun 2014 19:24:24 -   1.65
+++ ChangeLog   12 Aug 2014 22:43:01 -  1.66
@@ -1,6 +1,10 @@
 # ChangeLog for dev-games/simgear
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-games/simgear/ChangeLog,v 1.65 
2014/06/07 19:24:24 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-games/simgear/ChangeLog,v 1.66 
2014/08/12 22:43:01 reavertm Exp $
+
+  12 Aug 2014; Maciej Mrozowski  -simgear-2.10.0.ebuild,
+  -simgear-2.12.1.ebuild, -simgear-2.8.0-r1.ebuild:
+  Removed versions affected by bug 468106. Dropping to ~ppc.
 
   07 Jun 2014; Agostino Sarubbo  simgear-3.0.0.ebuild:
   Stable for x86, wrt bug #505912






[gentoo-commits] gentoo-x86 commit in games-simulation/flightgear-data: ChangeLog flightgear-data-2.12.1.ebuild flightgear-data-2.10.0.ebuild

2014-08-12 Thread Maciej Mrozowski (reavertm)
reavertm14/08/12 22:41:57

  Modified: ChangeLog
  Removed:  flightgear-data-2.12.1.ebuild
flightgear-data-2.10.0.ebuild
  Log:
  Removed versions affected by bug 468106. Dropping to ~ppc.
  
  (Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key 
B1E955DB)

Revision  ChangesPath
1.9  games-simulation/flightgear-data/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/flightgear-data/ChangeLog?rev=1.9&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/flightgear-data/ChangeLog?rev=1.9&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/flightgear-data/ChangeLog?r1=1.8&r2=1.9

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/games-simulation/flightgear-data/ChangeLog,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- ChangeLog   7 Jun 2014 19:24:33 -   1.8
+++ ChangeLog   12 Aug 2014 22:41:57 -  1.9
@@ -1,6 +1,10 @@
 # ChangeLog for games-simulation/flightgear-data
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: 
/var/cvsroot/gentoo-x86/games-simulation/flightgear-data/ChangeLog,v 1.8 
2014/06/07 19:24:33 ago Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/games-simulation/flightgear-data/ChangeLog,v 1.9 
2014/08/12 22:41:57 reavertm Exp $
+
+  12 Aug 2014; Maciej Mrozowski 
+  -flightgear-data-2.10.0.ebuild, -flightgear-data-2.12.1.ebuild:
+  Removed versions affected by bug 468106. Dropping to ~ppc.
 
   07 Jun 2014; Agostino Sarubbo  flightgear-data-3.0.0.ebuild:
   Stable for x86, wrt bug #505912






[gentoo-commits] gentoo-x86 commit in games-simulation/flightgear/files: flightgear-2.8.0-fgpanel-linking.patch

2014-08-12 Thread Maciej Mrozowski (reavertm)
reavertm14/08/12 22:40:50

  Removed:  flightgear-2.8.0-fgpanel-linking.patch
  Log:
  Removed versions affected by bug 468106. Dropping to ~ppc.
  
  (Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key 
B1E955DB)



[gentoo-commits] gentoo-x86 commit in games-simulation/flightgear: metadata.xml ChangeLog flightgear-2.10.0.ebuild flightgear-2.8.0.ebuild flightgear-2.12.1.ebuild

2014-08-12 Thread Maciej Mrozowski (reavertm)
reavertm14/08/12 22:40:50

  Modified: metadata.xml ChangeLog
  Removed:  flightgear-2.10.0.ebuild flightgear-2.8.0.ebuild
flightgear-2.12.1.ebuild
  Log:
  Removed versions affected by bug 468106. Dropping to ~ppc.
  
  (Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key 
B1E955DB)

Revision  ChangesPath
1.10 games-simulation/flightgear/metadata.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/flightgear/metadata.xml?rev=1.10&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/flightgear/metadata.xml?rev=1.10&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/flightgear/metadata.xml?r1=1.9&r2=1.10

Index: metadata.xml
===
RCS file: /var/cvsroot/gentoo-x86/games-simulation/flightgear/metadata.xml,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- metadata.xml27 Mar 2014 02:40:48 -  1.9
+++ metadata.xml12 Aug 2014 22:40:50 -  1.10
@@ -8,10 +8,8 @@
 
 
Enable screensaver DBus interaction
-   Enables standalone lightweight 2D-panel rendering 
utility
Enables JSBSim Flight Dynamics Model 
(default)
Enables deprecated Flight Dynamics Models (LaRCsim, 
UIUC)
-   Enables terrasync scenery downloader
Enables event-based Input devices through 
virtual/udev
Builds various utilities (fgpanel, terrasync, 
fgviewer among others)
Enables YASim Flight Dynamics Model



1.71 games-simulation/flightgear/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/flightgear/ChangeLog?rev=1.71&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/flightgear/ChangeLog?rev=1.71&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/flightgear/ChangeLog?r1=1.70&r2=1.71

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/games-simulation/flightgear/ChangeLog,v
retrieving revision 1.70
retrieving revision 1.71
diff -u -r1.70 -r1.71
--- ChangeLog   7 Jun 2014 19:24:28 -   1.70
+++ ChangeLog   12 Aug 2014 22:40:50 -  1.71
@@ -1,6 +1,11 @@
 # ChangeLog for games-simulation/flightgear
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-simulation/flightgear/ChangeLog,v 
1.70 2014/06/07 19:24:28 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-simulation/flightgear/ChangeLog,v 
1.71 2014/08/12 22:40:50 reavertm Exp $
+
+  12 Aug 2014; Maciej Mrozowski 
+  -files/flightgear-2.8.0-fgpanel-linking.patch, -flightgear-2.10.0.ebuild,
+  -flightgear-2.12.1.ebuild, -flightgear-2.8.0.ebuild, metadata.xml:
+  Removed versions affected by bug 468106. Dropping to ~ppc.
 
   07 Jun 2014; Agostino Sarubbo  flightgear-3.0.0.ebuild:
   Stable for x86, wrt bug #505912






[gentoo-commits] gentoo-x86 commit in sci-libs/xkaapi: xkaapi-2.1.ebuild ChangeLog

2014-07-31 Thread Maciej Mrozowski (reavertm)
reavertm14/07/31 23:29:18

  Modified: xkaapi-2.1.ebuild ChangeLog
  Log:
  Remove explicit src_test override since eclass is fixed, bug 499580.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
B1E955DB)

Revision  ChangesPath
1.2  sci-libs/xkaapi/xkaapi-2.1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/xkaapi/xkaapi-2.1.ebuild?rev=1.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/xkaapi/xkaapi-2.1.ebuild?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/xkaapi/xkaapi-2.1.ebuild?r1=1.1&r2=1.2

Index: xkaapi-2.1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/sci-libs/xkaapi/xkaapi-2.1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- xkaapi-2.1.ebuild   28 Jan 2014 12:47:39 -  1.1
+++ xkaapi-2.1.ebuild   31 Jul 2014 23:29:18 -  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/sci-libs/xkaapi/xkaapi-2.1.ebuild,v 1.1 
2014/01/28 12:47:39 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/xkaapi/xkaapi-2.1.ebuild,v 1.2 
2014/07/31 23:29:18 reavertm Exp $
 
 EAPI=5
 
@@ -56,8 +56,3 @@
)
autotools-utils_src_configure
 }
-
-src_test() {
-   cd "${BUILD_DIR}" || die
-   emake check
-}



1.2  sci-libs/xkaapi/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/xkaapi/ChangeLog?rev=1.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/xkaapi/ChangeLog?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/xkaapi/ChangeLog?r1=1.1&r2=1.2

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sci-libs/xkaapi/ChangeLog,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ChangeLog   28 Jan 2014 12:47:39 -  1.1
+++ ChangeLog   31 Jul 2014 23:29:18 -  1.2
@@ -1,6 +1,9 @@
 # ChangeLog for sci-libs/xkaapi
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/xkaapi/ChangeLog,v 1.1 2014/01/28 
12:47:39 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/xkaapi/ChangeLog,v 1.2 2014/07/31 
23:29:18 reavertm Exp $
+
+  31 Jul 2014; Maciej Mrozowski  xkaapi-2.1.ebuild:
+  Remove explicit src_test override since eclass is fixed, bug 499580.
 
 *xkaapi-2.1 (28 Jan 2014)
 






[gentoo-commits] gentoo-x86 commit in eclass: autotools-utils.eclass

2014-07-31 Thread Maciej Mrozowski (reavertm)
reavertm14/07/31 23:24:56

  Modified: autotools-utils.eclass
  Log:
  When probing for supported test targets for make, explicity ignore recipe 
errors even if we run make in dry-run mode.

Revision  ChangesPath
1.74 eclass/autotools-utils.eclass

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/autotools-utils.eclass?rev=1.74&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/autotools-utils.eclass?rev=1.74&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/autotools-utils.eclass?r1=1.73&r2=1.74

Index: autotools-utils.eclass
===
RCS file: /var/cvsroot/gentoo-x86/eclass/autotools-utils.eclass,v
retrieving revision 1.73
retrieving revision 1.74
diff -u -r1.73 -r1.74
--- autotools-utils.eclass  11 Mar 2014 23:55:44 -  1.73
+++ autotools-utils.eclass  31 Jul 2014 23:24:56 -  1.74
@@ -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/eclass/autotools-utils.eclass,v 1.73 
2014/03/11 23:55:44 floppym Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/autotools-utils.eclass,v 1.74 
2014/07/31 23:24:56 reavertm Exp $
 
 # @ECLASS: autotools-utils.eclass
 # @MAINTAINER:
@@ -468,9 +468,9 @@
_check_build_dir
pushd "${BUILD_DIR}" > /dev/null || die
 
-   if make -n check "${@}" &>/dev/null; then
+   if make -ni check "${@}" &>/dev/null; then
emake check "${@}" || die 'emake check failed.'
-   elif make -n test "${@}" &>/dev/null; then
+   elif make -ni test "${@}" &>/dev/null; then
emake test "${@}" || die 'emake test failed.'
fi
 






[gentoo-commits] gentoo-x86 commit in dev-util/ddd/files: ddd-3.3.12-man.patch

2014-07-14 Thread Maciej Mrozowski (reavertm)
reavertm14/07/14 23:52:55

  Modified: ddd-3.3.12-man.patch
  Log:
  Use libiconv-compatible charsets, bug 516370.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
B1E955DB)

Revision  ChangesPath
1.2  dev-util/ddd/files/ddd-3.3.12-man.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/ddd/files/ddd-3.3.12-man.patch?rev=1.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/ddd/files/ddd-3.3.12-man.patch?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/ddd/files/ddd-3.3.12-man.patch?r1=1.1&r2=1.2

Index: ddd-3.3.12-man.patch
===
RCS file: /var/cvsroot/gentoo-x86/dev-util/ddd/files/ddd-3.3.12-man.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ddd-3.3.12-man.patch6 Nov 2012 01:04:41 -   1.1
+++ ddd-3.3.12-man.patch14 Jul 2014 23:52:55 -  1.2
@@ -10,7 +10,7 @@
 -  && $(MV) $@~ $@
 -
 +ddd.1:   ddd.man
-+  iconv -f ISO8859-15 -t UTF8 ddd.man > ddd.1
++  iconv -f ISO8859-15 -t UTF-8 ddd.man > ddd.1
  
  
  # 
-






[gentoo-commits] gentoo-x86 commit in dev-util/ddd: ChangeLog

2014-07-14 Thread Maciej Mrozowski (reavertm)
reavertm14/07/14 23:52:55

  Modified: ChangeLog
  Log:
  Use libiconv-compatible charsets, bug 516370.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
B1E955DB)

Revision  ChangesPath
1.77 dev-util/ddd/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/ddd/ChangeLog?rev=1.77&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/ddd/ChangeLog?rev=1.77&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/ddd/ChangeLog?r1=1.76&r2=1.77

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-util/ddd/ChangeLog,v
retrieving revision 1.76
retrieving revision 1.77
diff -u -r1.76 -r1.77
--- ChangeLog   8 Apr 2014 00:48:03 -   1.76
+++ ChangeLog   14 Jul 2014 23:52:55 -  1.77
@@ -1,6 +1,10 @@
 # ChangeLog for dev-util/ddd
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/ddd/ChangeLog,v 1.76 2014/04/08 
00:48:03 reavertm Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/ddd/ChangeLog,v 1.77 2014/07/14 
23:52:55 reavertm Exp $
+
+  14 Jul 2014; Maciej Mrozowski 
+  files/ddd-3.3.12-man.patch:
+  Use libiconv-compatible charsets, bug 516370.
 
 *ddd-3.3.12-r4 (08 Apr 2014)
 






[gentoo-commits] gentoo-x86 commit in kde-base/kdelibs/files: kdelibs-4.13.2-CVE-2014-3494.patch

2014-06-18 Thread Maciej Mrozowski (reavertm)
reavertm14/06/18 22:18:22

  Added:kdelibs-4.13.2-CVE-2014-3494.patch
  Log:
  Bug 513726, CVE-2014-3494
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
B1E955DB)

Revision  ChangesPath
1.1  kde-base/kdelibs/files/kdelibs-4.13.2-CVE-2014-3494.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/kdelibs/files/kdelibs-4.13.2-CVE-2014-3494.patch?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/kdelibs/files/kdelibs-4.13.2-CVE-2014-3494.patch?rev=1.1&content-type=text/plain

Index: kdelibs-4.13.2-CVE-2014-3494.patch
===
From: David Faure 
Date: Wed, 18 Jun 2014 18:29:04 +
Subject: Don't require a job to handle messageboxes.
X-Git-Url: 
http://quickgit.kde.org/?p=kdelibs.git&a=commitdiff&h=bbae87dc1be3ae063796a582774bd5642cacdd5d
---
Don't require a job to handle messageboxes.

The POP3 ioslave doesn't have a job when it gets here.
---


--- a/kio/kio/usernotificationhandler.cpp
+++ b/kio/kio/usernotificationhandler.cpp
@@ -19,7 +19,7 @@
 #include "usernotificationhandler_p.h"
 
 #include "slave.h"
-#include "job_p.h"
+#include "jobuidelegate.h"
 
 #include 
 
@@ -76,19 +76,18 @@
 
 if (m_cachedResults.contains(key)) {
 result = *(m_cachedResults[key]);
-} else if (r->slave->job()) {
-SimpleJobPrivate* jobPrivate = 
SimpleJobPrivate::get(r->slave->job());
-if (jobPrivate) {
-result = jobPrivate->requestMessageBox(r->type,
-  
r->data.value(MSG_TEXT).toString(),
-  
r->data.value(MSG_CAPTION).toString(),
-  
r->data.value(MSG_YES_BUTTON_TEXT).toString(),
-  
r->data.value(MSG_NO_BUTTON_TEXT).toString(),
-  
r->data.value(MSG_YES_BUTTON_ICON).toString(),
-  
r->data.value(MSG_NO_BUTTON_ICON).toString(),
-  
r->data.value(MSG_DONT_ASK_AGAIN).toString(),
-  
r->data.value(MSG_META_DATA).toMap());
-}
+} else {
+JobUiDelegate ui;
+const JobUiDelegate::MessageBoxType type = 
static_cast(r->type);
+result = ui.requestMessageBox(type,
+  r->data.value(MSG_TEXT).toString(),
+  
r->data.value(MSG_CAPTION).toString(),
+  
r->data.value(MSG_YES_BUTTON_TEXT).toString(),
+  
r->data.value(MSG_NO_BUTTON_TEXT).toString(),
+  
r->data.value(MSG_YES_BUTTON_ICON).toString(),
+  
r->data.value(MSG_NO_BUTTON_ICON).toString(),
+  
r->data.value(MSG_DONT_ASK_AGAIN).toString(),
+  
r->data.value(MSG_META_DATA).toMap());
 m_cachedResults.insert(key, new int(result));
 }
 } else {







[gentoo-commits] gentoo-x86 commit in kde-base/kdelibs: kdelibs-4.13.2-r1.ebuild kdelibs-4.12.5-r1.ebuild ChangeLog kdelibs-4.13.2.ebuild

2014-06-18 Thread Maciej Mrozowski (reavertm)
reavertm14/06/18 22:18:22

  Modified: ChangeLog
  Added:kdelibs-4.13.2-r1.ebuild kdelibs-4.12.5-r1.ebuild
  Removed:  kdelibs-4.13.2.ebuild
  Log:
  Bug 513726, CVE-2014-3494
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
B1E955DB)

Revision  ChangesPath
1.1009   kde-base/kdelibs/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/kdelibs/ChangeLog?rev=1.1009&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/kdelibs/ChangeLog?rev=1.1009&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/kdelibs/ChangeLog?r1=1.1008&r2=1.1009

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/kde-base/kdelibs/ChangeLog,v
retrieving revision 1.1008
retrieving revision 1.1009
diff -u -r1.1008 -r1.1009
--- ChangeLog   15 Jun 2014 18:03:42 -  1.1008
+++ ChangeLog   18 Jun 2014 22:18:22 -  1.1009
@@ -1,6 +1,14 @@
 # ChangeLog for kde-base/kdelibs
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/kde-base/kdelibs/ChangeLog,v 1.1008 
2014/06/15 18:03:42 kensington Exp $
+# $Header: /var/cvsroot/gentoo-x86/kde-base/kdelibs/ChangeLog,v 1.1009 
2014/06/18 22:18:22 reavertm Exp $
+
+*kdelibs-4.12.5-r1 (18 Jun 2014)
+*kdelibs-4.13.2-r1 (18 Jun 2014)
+
+  18 Jun 2014; Maciej Mrozowski 
+  +files/kdelibs-4.13.2-CVE-2014-3494.patch, +kdelibs-4.12.5-r1.ebuild,
+  +kdelibs-4.13.2-r1.ebuild, -kdelibs-4.13.2.ebuild:
+  Bug 513726, CVE-2014-3494
 
 *kdelibs-4.13.2 (15 Jun 2014)
 



1.1  kde-base/kdelibs/kdelibs-4.13.2-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/kdelibs/kdelibs-4.13.2-r1.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/kdelibs/kdelibs-4.13.2-r1.ebuild?rev=1.1&content-type=text/plain

Index: kdelibs-4.13.2-r1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/kde-base/kdelibs/kdelibs-4.13.2-r1.ebuild,v 
1.1 2014/06/18 22:18:22 reavertm Exp $

EAPI=5

CPPUNIT_REQUIRED="optional"
DECLARATIVE_REQUIRED="always"
OPENGL_REQUIRED="optional"
KDE_HANDBOOK="optional"
inherit kde4-base fdo-mime multilib toolchain-funcs flag-o-matic

EGIT_BRANCH="KDE/4.13"

DESCRIPTION="KDE libraries needed by all KDE programs."

KEYWORDS=" ~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux 
~x86-linux"
LICENSE="LGPL-2.1"
IUSE="3dnow acl alsa altivec +bzip2 debug doc fam jpeg2k kerberos lzma mmx
nepomuk nls openexr +policykit spell sse sse2 ssl +udev +udisks +upower
zeroconf"

REQUIRED_USE="
udisks? ( udev )
upower? ( udev )
"

# needs the kate regression testsuite from svn
RESTRICT="test"

COMMONDEPEND="
app-crypt/qca:2
>=app-misc/strigi-0.7.7
app-text/docbook-xml-dtd:4.2
app-text/docbook-xsl-stylesheets
>=dev-libs/libattica-0.4.2
>=dev-libs/libdbusmenu-qt-0.3.2
dev-libs/libpcre[unicode]
dev-libs/libxml2
dev-libs/libxslt
media-libs/fontconfig
media-libs/freetype:2
media-libs/giflib
media-libs/libpng:0=
>=media-libs/phonon-4.4.3
sys-libs/zlib
virtual/jpeg:0
>=x11-misc/shared-mime-info-0.60
acl? ( virtual/acl )
alsa? ( media-libs/alsa-lib )
!aqua? (
x11-libs/libICE
x11-libs/libSM
x11-libs/libX11
x11-libs/libXau
x11-libs/libXcursor
x11-libs/libXdmcp
x11-libs/libXext
x11-libs/libXfixes
x11-libs/libXft
x11-libs/libXpm
x11-libs/libXrender
x11-libs/libXScrnSaver
x11-libs/libXtst
!kernel_SunOS? (
|| (
sys-libs/libutempter
>=sys-freebsd/freebsd-lib-9.0
)
)
)
bzip2? ( app-arch/bzip2 )
fam? ( virtual/fam )
jpeg2k? ( media-libs/jasper )
kerberos? ( virtual/krb5 )
nepomuk? (
>=dev-libs/shared-desktop-ontologies-0.11.0
>=dev-libs/soprano-2.9.0[dbus,raptor,redland]
)
openexr? (
media-libs/openexr:=
media-libs/ilmbase:=
)
policykit? ( >=sys-auth/polkit-qt-0.103.0 )
spell? ( app-text/enchant )
ssl? ( dev-libs/openssl )
udev? ( virtual/udev )
zeroconf? ( net-dns/avahi[mdnsresponder-compat] )
"
DEPEND="${COMMONDEPEND}
doc? ( app-doc/doxygen )
nls? ( virtual/libintl )
"
RDEPEND="${COMM

[gentoo-commits] gentoo-x86 commit in net-misc/networkmanager: networkmanager-0.9.8.10-r1.ebuild ChangeLog networkmanager-0.9.8.10.ebuild

2014-06-15 Thread Maciej Mrozowski (reavertm)
reavertm14/06/16 00:16:37

  Modified: ChangeLog
  Added:networkmanager-0.9.8.10-r1.ebuild
  Removed:  networkmanager-0.9.8.10.ebuild
  Log:
  Apply upstream patch for crash on Wifi re-scan.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
B1E955DB)

Revision  ChangesPath
1.197net-misc/networkmanager/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/networkmanager/ChangeLog?rev=1.197&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/networkmanager/ChangeLog?rev=1.197&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/networkmanager/ChangeLog?r1=1.196&r2=1.197

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-misc/networkmanager/ChangeLog,v
retrieving revision 1.196
retrieving revision 1.197
diff -u -r1.196 -r1.197
--- ChangeLog   31 May 2014 20:39:59 -  1.196
+++ ChangeLog   16 Jun 2014 00:16:37 -  1.197
@@ -1,6 +1,13 @@
 # ChangeLog for net-misc/networkmanager
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/networkmanager/ChangeLog,v 1.196 
2014/05/31 20:39:59 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/networkmanager/ChangeLog,v 1.197 
2014/06/16 00:16:37 reavertm Exp $
+
+*networkmanager-0.9.8.10-r1 (16 Jun 2014)
+
+  16 Jun 2014; Maciej Mrozowski 
+  +files/networkmanager-0.9.8.9-fix-crash-on-wifi-rescan.patch,
+  +networkmanager-0.9.8.10-r1.ebuild, -networkmanager-0.9.8.10.ebuild:
+  Apply upstream patch for crash on Wifi re-scan.
 
   31 May 2014; Samuli Suominen 
   networkmanager-0.9.8.10.ebuild, networkmanager-0.9.8.8.ebuild:



1.1  net-misc/networkmanager/networkmanager-0.9.8.10-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/networkmanager/networkmanager-0.9.8.10-r1.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/networkmanager/networkmanager-0.9.8.10-r1.ebuild?rev=1.1&content-type=text/plain

Index: networkmanager-0.9.8.10-r1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/net-misc/networkmanager/networkmanager-0.9.8.10-r1.ebuild,v
 1.1 2014/06/16 00:16:37 reavertm Exp $

EAPI="5"
GNOME_ORG_MODULE="NetworkManager"
VALA_MIN_API_VERSION="0.18"
VALA_USE_DEPEND="vapigen"

inherit bash-completion-r1 gnome.org linux-info systemd user readme.gentoo 
toolchain-funcs vala virtualx udev eutils

DESCRIPTION="Universal network configuration daemon for laptops, desktops, 
servers and virtualization hosts"
HOMEPAGE="http://projects.gnome.org/NetworkManager/";

LICENSE="GPL-2+"
SLOT="0" # add subslot if libnm-util.so.2 or libnm-glib.so.4 bumps soname 
version
IUSE="avahi bluetooth connection-sharing consolekit dhclient +dhcpcd gnutls 
+introspection kernel_linux +nss +modemmanager +ppp resolvconf systemd test 
vala +wext +wifi" # wimax

KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"

REQUIRED_USE="
modemmanager? ( ppp )
^^ ( nss gnutls )
^^ ( dhclient dhcpcd )
"

# gobject-introspection-0.10.3 is needed due to gnome bug 642300
# wpa_supplicant-0.7.3-r3 is needed due to bug 359271
# TODO: Qt support?
COMMON_DEPEND="
>=sys-apps/dbus-1.2
>=dev-libs/dbus-glib-0.94
>=dev-libs/glib-2.30
>=dev-libs/libnl-3.2.7:3=
>=sys-auth/polkit-0.106
>=net-libs/libsoup-2.26:2.4=
>=virtual/udev-165[gudev]
bluetooth? ( >=net-wireless/bluez-4.82 )
avahi? ( net-dns/avahi:=[autoipd] )
connection-sharing? (
net-dns/dnsmasq[dhcp]
net-firewall/iptables )
gnutls? (
dev-libs/libgcrypt:0=
net-libs/gnutls:= )
modemmanager? ( >=net-misc/modemmanager-0.7.991 )
nss? ( >=dev-libs/nss-3.11:= )
dhclient? ( =net-misc/dhcp-4*[client] )
dhcpcd? ( >=net-misc/dhcpcd-4.0.0_rc3 )
introspection? ( >=dev-libs/gobject-introspection-0.10.3 )
ppp? ( >=net-dialup/ppp-2.4.5[ipv6] )
resolvconf? ( net-dns/openresolv )
systemd? ( >=sys-apps/systemd-183:0= )
|| ( sys-power/upower sys-power/upower-pm-utils >=sys-apps/systemd-183 )
"
RDEPEND="${COMMON_DEPEND}
consolekit? ( sys-auth/consolekit )
wifi? ( >=net-wireless/wpa_supplicant-0.7.3-r3[dbus] )
"
DEPEND="${COMMON_DEPEND}
dev-util/gtk-doc-am
>=dev-util/intltool-0.40
>=sys-devel/gettext-0.17
>=sys-kernel/linux-headers-2.6.29
virtual/pkgconfig
vala? ( $(vala_depend) )
test? (
dev-lang/python:2.7
dev-python/dbus-python[python_targets_python2_7]
 

[gentoo-commits] gentoo-x86 commit in net-misc/networkmanager/files: networkmanager-0.9.8.9-fix-crash-on-wifi-rescan.patch

2014-06-15 Thread Maciej Mrozowski (reavertm)
reavertm14/06/16 00:16:37

  Added:   
networkmanager-0.9.8.9-fix-crash-on-wifi-rescan.patch
  Log:
  Apply upstream patch for crash on Wifi re-scan.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
B1E955DB)

Revision  ChangesPath
1.1  
net-misc/networkmanager/files/networkmanager-0.9.8.9-fix-crash-on-wifi-rescan.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/networkmanager/files/networkmanager-0.9.8.9-fix-crash-on-wifi-rescan.patch?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/networkmanager/files/networkmanager-0.9.8.9-fix-crash-on-wifi-rescan.patch?rev=1.1&content-type=text/plain

Index: networkmanager-0.9.8.9-fix-crash-on-wifi-rescan.patch
===
>From 4099c9242b091604466dda081dc5f6909354258b Mon Sep 17 00:00:00 2001
From: M. Vefa Bicakci 
Date: Sat, 24 May 2014 23:37:00 +
Subject: core: fix crash during Wi-Fi rescan by emitting NM_DEVICE_AUTH_REQUEST 
signal correctly

Fixes regression introduced by commit da59b6d2229b85afbb9e14846931376340dc6030.

https://mail.gnome.org/archives/networkmanager-list/2014-May/msg00038.html

Backport-of: d9653484859c426f707b4759bc9882f7a57c1152
[thal...@redhat.com: original patch modified in nm-device-wifi.c to pass no
 connection, as it is done on master]
Signed-off-by: Thomas Haller 
---
diff --git a/src/nm-device-wifi.c b/src/nm-device-wifi.c
index 8ca5278..052d68f 100644
--- a/src/nm-device-wifi.c
+++ b/src/nm-device-wifi.c
@@ -1563,6 +1563,7 @@ impl_device_request_scan (NMDeviceWifi *self,
g_signal_emit_by_name (device,
   NM_DEVICE_AUTH_REQUEST,
   context,
+  NULL,
   NM_AUTH_PERMISSION_NETWORK_CONTROL,
   TRUE,
   request_scan_cb,
diff --git a/src/nm-manager.c b/src/nm-manager.c
index 9037e64..96bf3b4 100644
--- a/src/nm-manager.c
+++ b/src/nm-manager.c
@@ -1874,10 +1874,10 @@ device_auth_request_cb (NMDevice *device,
}
 
/* Ensure the subject has permissions for this connection */
-   if (!nm_auth_uid_in_acl (connection,
-priv->session_monitor,
-sender_uid,
-&error_desc)) {
+   if (connection != NULL && !nm_auth_uid_in_acl (connection,
+  priv->session_monitor,
+  sender_uid,
+  &error_desc)) {
error = g_error_new_literal (NM_MANAGER_ERROR,
 NM_MANAGER_ERROR_PERMISSION_DENIED,
 error_desc);
--
cgit v0.9.0.2-2-gbebe






[gentoo-commits] gentoo-x86 commit in kde-base/okular: okular-4.13.1-r1.ebuild okular-4.12.5-r1.ebuild okular-4.13.0-r1.ebuild ChangeLog okular-4.13.0.ebuild okular-4.12.5.ebuild okular-4.13.1.ebuild

2014-05-26 Thread Maciej Mrozowski (reavertm)
reavertm14/05/26 21:44:29

  Modified: ChangeLog
  Added:okular-4.13.1-r1.ebuild okular-4.12.5-r1.ebuild
okular-4.13.0-r1.ebuild
  Removed:  okular-4.13.0.ebuild okular-4.12.5.ebuild
okular-4.13.1.ebuild
  Log:
  Handle kimgio generator under jpeg USE flag. Fixes bug 511416
  
  (Portage version: 2.2.10/cvs/Linux x86_64, RepoMan options: --force, signed 
Manifest commit with key B1E955DB)

Revision  ChangesPath
1.250kde-base/okular/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/okular/ChangeLog?rev=1.250&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/okular/ChangeLog?rev=1.250&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/okular/ChangeLog?r1=1.249&r2=1.250

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/kde-base/okular/ChangeLog,v
retrieving revision 1.249
retrieving revision 1.250
diff -u -r1.249 -r1.250
--- ChangeLog   13 May 2014 17:43:31 -  1.249
+++ ChangeLog   26 May 2014 21:44:29 -  1.250
@@ -1,6 +1,15 @@
 # ChangeLog for kde-base/okular
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/kde-base/okular/ChangeLog,v 1.249 
2014/05/13 17:43:31 johu Exp $
+# $Header: /var/cvsroot/gentoo-x86/kde-base/okular/ChangeLog,v 1.250 
2014/05/26 21:44:29 reavertm Exp $
+
+*okular-4.12.5-r1 (26 May 2014)
+*okular-4.13.0-r1 (26 May 2014)
+*okular-4.13.1-r1 (26 May 2014)
+
+  26 May 2014; Maciej Mrozowski  +okular-4.12.5-r1.ebuild,
+  +okular-4.13.0-r1.ebuild, +okular-4.13.1-r1.ebuild, -okular-4.12.5.ebuild,
+  -okular-4.13.0.ebuild, -okular-4.13.1.ebuild:
+  Handle kimgio generator under jpeg USE flag. Fixes bug 511416
 
 *okular-4.13.1 (13 May 2014)
 



1.1  kde-base/okular/okular-4.13.1-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/okular/okular-4.13.1-r1.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/okular/okular-4.13.1-r1.ebuild?rev=1.1&content-type=text/plain

Index: okular-4.13.1-r1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/kde-base/okular/okular-4.13.1-r1.ebuild,v 
1.1 2014/05/26 21:44:29 reavertm Exp $

EAPI=5

KDE_HANDBOOK="optional"

#VIRTUALX_REQUIRED=test
RESTRICT=test
# test 2: parttest hangs

inherit kde4-base

DESCRIPTION="Okular is a universal document viewer based on KPDF for KDE 4."
HOMEPAGE="http://okular.kde.org http://www.kde.org/applications/graphics/okular";
KEYWORDS=" ~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
IUSE="chm crypt debug djvu dpi ebook +jpeg mobi +postscript +pdf +tiff"

DEPEND="
media-libs/freetype
media-libs/qimageblitz
sys-libs/zlib
chm? ( dev-libs/chmlib )
crypt? ( app-crypt/qca:2 )
djvu? ( app-text/djvu )
dpi? ( x11-libs/libkscreen )
ebook? ( app-text/ebook-tools )
jpeg? (
$(add_kdebase_dep libkexiv2)
virtual/jpeg:0
)
mobi? ( $(add_kdebase_dep kdegraphics-mobipocket) )
pdf? ( >=app-text/poppler-0.20[qt4,-exceptions(-)] )
postscript? ( app-text/libspectre )
tiff? ( media-libs/tiff )
"
RDEPEND="${DEPEND}"

src_configure() {
mycmakeargs=(
$(cmake-utils_use_with chm)
$(cmake-utils_use_with crypt QCA2)
$(cmake-utils_use_with djvu DjVuLibre)
$(cmake-utils_use_with dpi LibKScreen)
$(cmake-utils_use_with ebook EPub)
$(cmake-utils_use_with jpeg)
$(cmake-utils_use_with jpeg Kexiv2)
$(cmake-utils_use_with mobi QMobiPocket)
$(cmake-utils_use_with postscript LibSpectre)
$(cmake-utils_use_with pdf PopplerQt4)
$(cmake-utils_use_with pdf Poppler)
$(cmake-utils_use_with tiff)
)

kde4-base_src_configure
}



1.1  kde-base/okular/okular-4.12.5-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/okular/okular-4.12.5-r1.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/okular/okular-4.12.5-r1.ebuild?rev=1.1&content-type=text/plain

Index: okular-4.12.5-r1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/kde-base/okular/okular-4.12.5-r1.ebuild,v 
1.1 2014/05/26 21:44:29 reavertm Exp $

EAPI=5

KDE_HANDBOOK="optional"

#VIRTUALX_REQUIRED=test
RESTRICT=test
# test 2: parttest

[gentoo-commits] gentoo-x86 commit in media-video/kdenlive: kdenlive-0.9.8.ebuild ChangeLog

2014-05-14 Thread Maciej Mrozowski (reavertm)
reavertm14/05/14 21:58:08

  Modified: ChangeLog
  Added:kdenlive-0.9.8.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
B1E955DB)

Revision  ChangesPath
1.91 media-video/kdenlive/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/kdenlive/ChangeLog?rev=1.91&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/kdenlive/ChangeLog?rev=1.91&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/kdenlive/ChangeLog?r1=1.90&r2=1.91

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-video/kdenlive/ChangeLog,v
retrieving revision 1.90
retrieving revision 1.91
diff -u -r1.90 -r1.91
--- ChangeLog   13 May 2014 23:08:55 -  1.90
+++ ChangeLog   14 May 2014 21:58:08 -  1.91
@@ -1,6 +1,12 @@
 # ChangeLog for media-video/kdenlive
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/kdenlive/ChangeLog,v 1.90 
2014/05/13 23:08:55 johu Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/kdenlive/ChangeLog,v 1.91 
2014/05/14 21:58:08 reavertm Exp $
+
+*kdenlive-0.9.8 (14 May 2014)
+
+  14 May 2014; Maciej Mrozowski  +kdenlive-0.9.8.ebuild,
+  metadata.xml:
+  Version bump.
 
 *kdenlive-0.9.6-r1 (13 May 2014)
 



1.1  media-video/kdenlive/kdenlive-0.9.8.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/kdenlive/kdenlive-0.9.8.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/kdenlive/kdenlive-0.9.8.ebuild?rev=1.1&content-type=text/plain

Index: kdenlive-0.9.8.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-video/kdenlive/kdenlive-0.9.8.ebuild,v 
1.1 2014/05/14 21:58:08 reavertm Exp $

EAPI=5

KDE_HANDBOOK="optional"
KDE_MINIMAL="4.13.1"
OPENGL_REQUIRED="always"
inherit kde4-base

DESCRIPTION="A non-linear video editing suite for KDE"
HOMEPAGE="http://www.kdenlive.org/";
SRC_URI="mirror://kde/stable/${PN}/${PV}/src/${P}.tar.bz2"

LICENSE="GPL-2"
SLOT="4"
KEYWORDS="~amd64 ~ppc ~x86 ~x86-linux"
IUSE="debug nepomuk v4l"

RDEPEND="
dev-libs/qjson
$(add_kdebase_dep kdelibs 'nepomuk?')
>=media-libs/mlt-0.9.0[ffmpeg,sdl,xml,melt,qt4,kdenlive]
virtual/ffmpeg[encode,sdl,X]
v4l? ( media-libs/libv4l )
"
DEPEND="${RDEPEND}
sys-devel/gettext
"

DOCS=(AUTHORS ChangeLog README)

src_configure() {
local mycmakeargs=(
$(cmake-utils_use_with nepomuk)
$(cmake-utils_use_with v4l LibV4L2)
)
kde4-base_src_configure
}






[gentoo-commits] gentoo-x86 commit in kde-base/kdemultimedia-meta: kdemultimedia-meta-4.13.0.ebuild kdemultimedia-meta-4.12.5.ebuild ChangeLog

2014-05-11 Thread Maciej Mrozowski (reavertm)
reavertm14/05/12 02:04:21

  Modified: kdemultimedia-meta-4.13.0.ebuild
kdemultimedia-meta-4.12.5.ebuild ChangeLog
  Log:
  Favour ffmpeg over mplayer to be consistent with defaults in dolphin, bug 
509634
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
B1E955DB)

Revision  ChangesPath
1.3  
kde-base/kdemultimedia-meta/kdemultimedia-meta-4.13.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/kdemultimedia-meta/kdemultimedia-meta-4.13.0.ebuild?rev=1.3&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/kdemultimedia-meta/kdemultimedia-meta-4.13.0.ebuild?rev=1.3&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/kdemultimedia-meta/kdemultimedia-meta-4.13.0.ebuild?r1=1.2&r2=1.3

Index: kdemultimedia-meta-4.13.0.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/kde-base/kdemultimedia-meta/kdemultimedia-meta-4.13.0.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- kdemultimedia-meta-4.13.0.ebuild17 Apr 2014 00:43:33 -  1.2
+++ kdemultimedia-meta-4.13.0.ebuild12 May 2014 02:04:20 -  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/kde-base/kdemultimedia-meta/kdemultimedia-meta-4.13.0.ebuild,v
 1.2 2014/04/17 00:43:33 johu Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/kde-base/kdemultimedia-meta/kdemultimedia-meta-4.13.0.ebuild,v
 1.3 2014/05/12 02:04:20 reavertm Exp $
 
 EAPI=5
 inherit kde4-meta-pkg
@@ -11,7 +11,7 @@
http://multimedia.kde.org/
 "
 KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
-IUSE="ffmpeg +mplayer"
+IUSE="+ffmpeg mplayer"
 
 RDEPEND="
$(add_kdebase_dep dragon)



1.6  
kde-base/kdemultimedia-meta/kdemultimedia-meta-4.12.5.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/kdemultimedia-meta/kdemultimedia-meta-4.12.5.ebuild?rev=1.6&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/kdemultimedia-meta/kdemultimedia-meta-4.12.5.ebuild?rev=1.6&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/kdemultimedia-meta/kdemultimedia-meta-4.12.5.ebuild?r1=1.5&r2=1.6

Index: kdemultimedia-meta-4.12.5.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/kde-base/kdemultimedia-meta/kdemultimedia-meta-4.12.5.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- kdemultimedia-meta-4.12.5.ebuild8 May 2014 07:32:01 -   1.5
+++ kdemultimedia-meta-4.12.5.ebuild12 May 2014 02:04:20 -  1.6
@@ -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/kde-base/kdemultimedia-meta/kdemultimedia-meta-4.12.5.ebuild,v
 1.5 2014/05/08 07:32:01 ago Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/kde-base/kdemultimedia-meta/kdemultimedia-meta-4.12.5.ebuild,v
 1.6 2014/05/12 02:04:20 reavertm Exp $
 
 EAPI=5
 inherit kde4-meta-pkg
@@ -11,7 +11,7 @@
http://multimedia.kde.org/
 "
 KEYWORDS="amd64 ~arm ppc ppc64 x86 ~amd64-linux ~x86-linux"
-IUSE="ffmpeg +mplayer"
+IUSE="+ffmpeg mplayer"
 
 RDEPEND="
$(add_kdebase_dep dragon)



1.314kde-base/kdemultimedia-meta/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/kdemultimedia-meta/ChangeLog?rev=1.314&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/kdemultimedia-meta/ChangeLog?rev=1.314&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/kdemultimedia-meta/ChangeLog?r1=1.313&r2=1.314

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/kde-base/kdemultimedia-meta/ChangeLog,v
retrieving revision 1.313
retrieving revision 1.314
diff -u -r1.313 -r1.314
--- ChangeLog   8 May 2014 10:32:20 -   1.313
+++ ChangeLog   12 May 2014 02:04:20 -  1.314
@@ -1,6 +1,11 @@
 # ChangeLog for kde-base/kdemultimedia-meta
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/kde-base/kdemultimedia-meta/ChangeLog,v 
1.313 2014/05/08 10:32:20 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/kde-base/kdemultimedia-meta/ChangeLog,v 
1.314 2014/05/12 02:04:20 reavertm Exp $
+
+  12 May 2014; Maciej Mrozowski 
+  kdemultimedia-meta-4.12.5.ebuild, kdemultimedia-meta-4.13.0.ebuild:
+  Favour ffmpeg over mplayer to be consistent with defaults in dolphin, bug
+  509634
 
   08 May 2014; Agostino Sarubbo 
   -kdemultimedia-meta-4.11.5.ebuild:






[gentoo-commits] gentoo-x86 commit in kde-base/mplayerthumbs: mplayerthumbs-4.13.0.ebuild mplayerthumbs-4.12.5.ebuild ChangeLog

2014-05-11 Thread Maciej Mrozowski (reavertm)
reavertm14/05/12 01:55:53

  Modified: mplayerthumbs-4.13.0.ebuild
mplayerthumbs-4.12.5.ebuild ChangeLog
  Log:
  Thumbnailers require kdebase-kioslaves. Remome RDEPEND on dolphin/konqueror. 
Bug 509634
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
B1E955DB)

Revision  ChangesPath
1.3  kde-base/mplayerthumbs/mplayerthumbs-4.13.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/mplayerthumbs/mplayerthumbs-4.13.0.ebuild?rev=1.3&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/mplayerthumbs/mplayerthumbs-4.13.0.ebuild?rev=1.3&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/mplayerthumbs/mplayerthumbs-4.13.0.ebuild?r1=1.2&r2=1.3

Index: mplayerthumbs-4.13.0.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/kde-base/mplayerthumbs/mplayerthumbs-4.13.0.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- mplayerthumbs-4.13.0.ebuild 17 Apr 2014 00:43:23 -  1.2
+++ mplayerthumbs-4.13.0.ebuild 12 May 2014 01:55:53 -  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/kde-base/mplayerthumbs/mplayerthumbs-4.13.0.ebuild,v 
1.2 2014/04/17 00:43:23 johu Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/kde-base/mplayerthumbs/mplayerthumbs-4.13.0.ebuild,v 
1.3 2014/05/12 01:55:53 reavertm Exp $
 
 EAPI=5
 
@@ -11,14 +11,11 @@
 IUSE="debug"
 
 RDEPEND="
-   || (
-   $(add_kdebase_dep dolphin)
-   $(add_kdebase_dep konqueror)
-   )
+   $(add_kdebase_dep kdebase-kioslaves)
 "
 
 src_configure() {
-   mycmakeargs=(
+   local mycmakeargs=(
-DENABLE_PHONON_SUPPORT=ON
)
 



1.6  kde-base/mplayerthumbs/mplayerthumbs-4.12.5.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/mplayerthumbs/mplayerthumbs-4.12.5.ebuild?rev=1.6&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/mplayerthumbs/mplayerthumbs-4.12.5.ebuild?rev=1.6&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/mplayerthumbs/mplayerthumbs-4.12.5.ebuild?r1=1.5&r2=1.6

Index: mplayerthumbs-4.12.5.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/kde-base/mplayerthumbs/mplayerthumbs-4.12.5.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- mplayerthumbs-4.12.5.ebuild 8 May 2014 07:32:43 -   1.5
+++ mplayerthumbs-4.12.5.ebuild 12 May 2014 01:55:53 -  1.6
@@ -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/kde-base/mplayerthumbs/mplayerthumbs-4.12.5.ebuild,v 
1.5 2014/05/08 07:32:43 ago Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/kde-base/mplayerthumbs/mplayerthumbs-4.12.5.ebuild,v 
1.6 2014/05/12 01:55:53 reavertm Exp $
 
 EAPI=5
 
@@ -11,14 +11,11 @@
 IUSE="debug"
 
 RDEPEND="
-   || (
-   $(add_kdebase_dep dolphin)
-   $(add_kdebase_dep konqueror)
-   )
+   $(add_kdebase_dep kdebase-kioslaves)
 "
 
 src_configure() {
-   mycmakeargs=(
+   local mycmakeargs=(
-DENABLE_PHONON_SUPPORT=ON
)
 



1.192kde-base/mplayerthumbs/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/mplayerthumbs/ChangeLog?rev=1.192&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/mplayerthumbs/ChangeLog?rev=1.192&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/mplayerthumbs/ChangeLog?r1=1.191&r2=1.192

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/kde-base/mplayerthumbs/ChangeLog,v
retrieving revision 1.191
retrieving revision 1.192
diff -u -r1.191 -r1.192
--- ChangeLog   8 May 2014 10:32:58 -   1.191
+++ ChangeLog   12 May 2014 01:55:53 -  1.192
@@ -1,6 +1,11 @@
 # ChangeLog for kde-base/mplayerthumbs
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/kde-base/mplayerthumbs/ChangeLog,v 1.191 
2014/05/08 10:32:58 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/kde-base/mplayerthumbs/ChangeLog,v 1.192 
2014/05/12 01:55:53 reavertm Exp $
+
+  12 May 2014; Maciej Mrozowski 
+  mplayerthumbs-4.12.5.ebuild, mplayerthumbs-4.13.0.ebuild:
+  Thumbnailers require kdebase-kioslaves. Remome RDEPEND on dolphin/konqueror.
+  Bug 509634
 
   08 May 2014; Agostino Sarubbo  -mplayerthumbs-4.11.5.ebuild:
   Remove old






[gentoo-commits] gentoo-x86 commit in kde-base/ffmpegthumbs: ffmpegthumbs-4.12.5.ebuild ffmpegthumbs-4.13.0.ebuild ChangeLog

2014-05-11 Thread Maciej Mrozowski (reavertm)
reavertm14/05/12 01:54:06

  Modified: ffmpegthumbs-4.12.5.ebuild
ffmpegthumbs-4.13.0.ebuild ChangeLog
  Log:
  Thumbnailers require kdebase-kioslaves, bug 509634
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
B1E955DB)

Revision  ChangesPath
1.6  kde-base/ffmpegthumbs/ffmpegthumbs-4.12.5.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/ffmpegthumbs/ffmpegthumbs-4.12.5.ebuild?rev=1.6&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/ffmpegthumbs/ffmpegthumbs-4.12.5.ebuild?rev=1.6&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/ffmpegthumbs/ffmpegthumbs-4.12.5.ebuild?r1=1.5&r2=1.6

Index: ffmpegthumbs-4.12.5.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/kde-base/ffmpegthumbs/ffmpegthumbs-4.12.5.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- ffmpegthumbs-4.12.5.ebuild  8 May 2014 07:32:27 -   1.5
+++ ffmpegthumbs-4.12.5.ebuild  12 May 2014 01:54:06 -  1.6
@@ -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/kde-base/ffmpegthumbs/ffmpegthumbs-4.12.5.ebuild,v 1.5 
2014/05/08 07:32:27 ago Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/kde-base/ffmpegthumbs/ffmpegthumbs-4.12.5.ebuild,v 1.6 
2014/05/12 01:54:06 reavertm Exp $
 
 EAPI=5
 
@@ -13,4 +13,6 @@
 DEPEND="
virtual/ffmpeg
 "
-RDEPEND="${DEPEND}"
+RDEPEND="${DEPEND}
+   $(add_kdebase_dep kdebase-kioslaves)
+"



1.3  kde-base/ffmpegthumbs/ffmpegthumbs-4.13.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/ffmpegthumbs/ffmpegthumbs-4.13.0.ebuild?rev=1.3&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/ffmpegthumbs/ffmpegthumbs-4.13.0.ebuild?rev=1.3&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/ffmpegthumbs/ffmpegthumbs-4.13.0.ebuild?r1=1.2&r2=1.3

Index: ffmpegthumbs-4.13.0.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/kde-base/ffmpegthumbs/ffmpegthumbs-4.13.0.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- ffmpegthumbs-4.13.0.ebuild  17 Apr 2014 00:43:02 -  1.2
+++ ffmpegthumbs-4.13.0.ebuild  12 May 2014 01:54:06 -  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/kde-base/ffmpegthumbs/ffmpegthumbs-4.13.0.ebuild,v 1.2 
2014/04/17 00:43:02 johu Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/kde-base/ffmpegthumbs/ffmpegthumbs-4.13.0.ebuild,v 1.3 
2014/05/12 01:54:06 reavertm Exp $
 
 EAPI=5
 
@@ -13,4 +13,6 @@
 DEPEND="
virtual/ffmpeg
 "
-RDEPEND="${DEPEND}"
+RDEPEND="${DEPEND}
+   $(add_kdebase_dep kdebase-kioslaves)
+"



1.160kde-base/ffmpegthumbs/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/ffmpegthumbs/ChangeLog?rev=1.160&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/ffmpegthumbs/ChangeLog?rev=1.160&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/ffmpegthumbs/ChangeLog?r1=1.159&r2=1.160

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/kde-base/ffmpegthumbs/ChangeLog,v
retrieving revision 1.159
retrieving revision 1.160
diff -u -r1.159 -r1.160
--- ChangeLog   8 May 2014 10:31:58 -   1.159
+++ ChangeLog   12 May 2014 01:54:06 -  1.160
@@ -1,6 +1,10 @@
 # ChangeLog for kde-base/ffmpegthumbs
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/kde-base/ffmpegthumbs/ChangeLog,v 1.159 
2014/05/08 10:31:58 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/kde-base/ffmpegthumbs/ChangeLog,v 1.160 
2014/05/12 01:54:06 reavertm Exp $
+
+  12 May 2014; Maciej Mrozowski 
+  ffmpegthumbs-4.12.5.ebuild, ffmpegthumbs-4.13.0.ebuild:
+  Thumbnailers require kdebase-kioslaves, bug 509634
 
   08 May 2014; Agostino Sarubbo  -ffmpegthumbs-4.11.5.ebuild:
   Remove old






[gentoo-commits] gentoo-x86 commit in kde-base/thumbnailers: thumbnailers-4.12.5.ebuild thumbnailers-4.13.0.ebuild ChangeLog

2014-05-11 Thread Maciej Mrozowski (reavertm)
reavertm14/05/12 01:53:00

  Modified: thumbnailers-4.12.5.ebuild
thumbnailers-4.13.0.ebuild ChangeLog
  Log:
  Thumbnailers require kdebase-kioslaves, bug 509634
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
B1E955DB)

Revision  ChangesPath
1.6  kde-base/thumbnailers/thumbnailers-4.12.5.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/thumbnailers/thumbnailers-4.12.5.ebuild?rev=1.6&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/thumbnailers/thumbnailers-4.12.5.ebuild?rev=1.6&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/thumbnailers/thumbnailers-4.12.5.ebuild?r1=1.5&r2=1.6

Index: thumbnailers-4.12.5.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/kde-base/thumbnailers/thumbnailers-4.12.5.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- thumbnailers-4.12.5.ebuild  8 May 2014 07:32:43 -   1.5
+++ thumbnailers-4.12.5.ebuild  12 May 2014 01:53:00 -  1.6
@@ -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/kde-base/thumbnailers/thumbnailers-4.12.5.ebuild,v 1.5 
2014/05/08 07:32:43 ago Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/kde-base/thumbnailers/thumbnailers-4.12.5.ebuild,v 1.6 
2014/05/12 01:53:00 reavertm Exp $
 
 EAPI=5
 
@@ -15,7 +15,9 @@
$(add_kdebase_dep libkdcraw)
$(add_kdebase_dep libkexiv2)
 "
-RDEPEND="${DEPEND}"
+RDEPEND="${DEPEND}
+   $(add_kdebase_dep kdebase-kioslaves)
+"
 
 if [[ ${KDE_BUILD_TYPE} != live ]]; then
S="${WORKDIR}/${KMNAME}-${PV}"



1.3  kde-base/thumbnailers/thumbnailers-4.13.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/thumbnailers/thumbnailers-4.13.0.ebuild?rev=1.3&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/thumbnailers/thumbnailers-4.13.0.ebuild?rev=1.3&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/thumbnailers/thumbnailers-4.13.0.ebuild?r1=1.2&r2=1.3

Index: thumbnailers-4.13.0.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/kde-base/thumbnailers/thumbnailers-4.13.0.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- thumbnailers-4.13.0.ebuild  17 Apr 2014 00:43:12 -  1.2
+++ thumbnailers-4.13.0.ebuild  12 May 2014 01:53:00 -  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/kde-base/thumbnailers/thumbnailers-4.13.0.ebuild,v 1.2 
2014/04/17 00:43:12 johu Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/kde-base/thumbnailers/thumbnailers-4.13.0.ebuild,v 1.3 
2014/05/12 01:53:00 reavertm Exp $
 
 EAPI=5
 
@@ -15,7 +15,9 @@
$(add_kdebase_dep libkdcraw)
$(add_kdebase_dep libkexiv2)
 "
-RDEPEND="${DEPEND}"
+RDEPEND="${DEPEND}
+   $(add_kdebase_dep kdebase-kioslaves)
+"
 
 if [[ ${KDE_BUILD_TYPE} != live ]]; then
S="${WORKDIR}/${KMNAME}-${PV}"



1.190kde-base/thumbnailers/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/thumbnailers/ChangeLog?rev=1.190&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/thumbnailers/ChangeLog?rev=1.190&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/thumbnailers/ChangeLog?r1=1.189&r2=1.190

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/kde-base/thumbnailers/ChangeLog,v
retrieving revision 1.189
retrieving revision 1.190
diff -u -r1.189 -r1.190
--- ChangeLog   8 May 2014 10:33:05 -   1.189
+++ ChangeLog   12 May 2014 01:53:00 -  1.190
@@ -1,6 +1,10 @@
 # ChangeLog for kde-base/thumbnailers
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/kde-base/thumbnailers/ChangeLog,v 1.189 
2014/05/08 10:33:05 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/kde-base/thumbnailers/ChangeLog,v 1.190 
2014/05/12 01:53:00 reavertm Exp $
+
+  12 May 2014; Maciej Mrozowski 
+  thumbnailers-4.12.5.ebuild, thumbnailers-4.13.0.ebuild:
+  Thumbnailers require kdebase-kioslaves, bug 509634
 
   08 May 2014; Agostino Sarubbo  -thumbnailers-4.11.5.ebuild:
   Remove old






[gentoo-commits] gentoo-x86 commit in kde-base/dolphin: dolphin-4.13.0.ebuild dolphin-4.12.5.ebuild ChangeLog

2014-05-11 Thread Maciej Mrozowski (reavertm)
reavertm14/05/12 01:51:33

  Modified: dolphin-4.13.0.ebuild dolphin-4.12.5.ebuild
ChangeLog
  Log:
  Move thumbnailer plugins to RDEPEND, bug 509634
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
B1E955DB)

Revision  ChangesPath
1.5  kde-base/dolphin/dolphin-4.13.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/dolphin/dolphin-4.13.0.ebuild?rev=1.5&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/dolphin/dolphin-4.13.0.ebuild?rev=1.5&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/dolphin/dolphin-4.13.0.ebuild?r1=1.4&r2=1.5

Index: dolphin-4.13.0.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/kde-base/dolphin/dolphin-4.13.0.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- dolphin-4.13.0.ebuild   3 May 2014 14:25:02 -   1.4
+++ dolphin-4.13.0.ebuild   12 May 2014 01:51:33 -  1.5
@@ -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/kde-base/dolphin/dolphin-4.13.0.ebuild,v 
1.4 2014/05/03 14:25:02 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/kde-base/dolphin/dolphin-4.13.0.ebuild,v 
1.5 2014/05/12 01:51:33 reavertm Exp $
 
 EAPI=5
 
@@ -25,8 +25,6 @@
 "
 RDEPEND="${DEPEND}
$(add_kdebase_dep kfind)
-"
-PDEPEND="
thumbnail? (
$(add_kdebase_dep thumbnailers)
|| (



1.6  kde-base/dolphin/dolphin-4.12.5.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/dolphin/dolphin-4.12.5.ebuild?rev=1.6&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/dolphin/dolphin-4.12.5.ebuild?rev=1.6&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/dolphin/dolphin-4.12.5.ebuild?r1=1.5&r2=1.6

Index: dolphin-4.12.5.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/kde-base/dolphin/dolphin-4.12.5.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- dolphin-4.12.5.ebuild   8 May 2014 07:32:25 -   1.5
+++ dolphin-4.12.5.ebuild   12 May 2014 01:51:33 -  1.6
@@ -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/kde-base/dolphin/dolphin-4.12.5.ebuild,v 
1.5 2014/05/08 07:32:25 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/kde-base/dolphin/dolphin-4.12.5.ebuild,v 
1.6 2014/05/12 01:51:33 reavertm Exp $
 
 EAPI=5
 
@@ -27,8 +27,6 @@
 "
 RDEPEND="${DEPEND}
$(add_kdebase_dep kfind)
-"
-PDEPEND="
thumbnail? (
$(add_kdebase_dep thumbnailers)
|| (



1.247kde-base/dolphin/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/dolphin/ChangeLog?rev=1.247&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/dolphin/ChangeLog?rev=1.247&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/dolphin/ChangeLog?r1=1.246&r2=1.247

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/kde-base/dolphin/ChangeLog,v
retrieving revision 1.246
retrieving revision 1.247
diff -u -r1.246 -r1.247
--- ChangeLog   8 May 2014 10:31:57 -   1.246
+++ ChangeLog   12 May 2014 01:51:33 -  1.247
@@ -1,6 +1,10 @@
 # ChangeLog for kde-base/dolphin
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/kde-base/dolphin/ChangeLog,v 1.246 
2014/05/08 10:31:57 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/kde-base/dolphin/ChangeLog,v 1.247 
2014/05/12 01:51:33 reavertm Exp $
+
+  12 May 2014; Maciej Mrozowski  dolphin-4.12.5.ebuild,
+  dolphin-4.13.0.ebuild:
+  Move thumbnailer plugins to RDEPEND, bug 509634
 
   08 May 2014; Agostino Sarubbo  -dolphin-4.11.5.ebuild:
   Remove old






[gentoo-commits] gentoo-x86 commit in media-video/kffmpegthumbnailer: kffmpegthumbnailer-1.1.0-r3.ebuild ChangeLog

2014-05-11 Thread Maciej Mrozowski (reavertm)
reavertm14/05/12 01:48:28

  Modified: kffmpegthumbnailer-1.1.0-r3.ebuild ChangeLog
  Log:
  Thumbnailer requires kdebase-kioslaves, bug 509634
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
B1E955DB)

Revision  ChangesPath
1.3  
media-video/kffmpegthumbnailer/kffmpegthumbnailer-1.1.0-r3.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/kffmpegthumbnailer/kffmpegthumbnailer-1.1.0-r3.ebuild?rev=1.3&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/kffmpegthumbnailer/kffmpegthumbnailer-1.1.0-r3.ebuild?rev=1.3&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/kffmpegthumbnailer/kffmpegthumbnailer-1.1.0-r3.ebuild?r1=1.2&r2=1.3

Index: kffmpegthumbnailer-1.1.0-r3.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/media-video/kffmpegthumbnailer/kffmpegthumbnailer-1.1.0-r3.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- kffmpegthumbnailer-1.1.0-r3.ebuild  28 Apr 2014 22:39:37 -  1.2
+++ kffmpegthumbnailer-1.1.0-r3.ebuild  12 May 2014 01:48:28 -  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/media-video/kffmpegthumbnailer/kffmpegthumbnailer-1.1.0-r3.ebuild,v
 1.2 2014/04/28 22:39:37 johu Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/media-video/kffmpegthumbnailer/kffmpegthumbnailer-1.1.0-r3.ebuild,v
 1.3 2014/05/12 01:48:28 reavertm Exp $
 
 EAPI=5
 
@@ -18,7 +18,9 @@
 DEPEND="
>=media-video/ffmpegthumbnailer-2
 "
-RDEPEND="${DEPEND}"
+RDEPEND="${DEPEND}
+   $(add_kdebase_dep kdebase-kioslaves)
+"
 
 DOCS=( Changelog README )
 



1.14 media-video/kffmpegthumbnailer/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/kffmpegthumbnailer/ChangeLog?rev=1.14&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/kffmpegthumbnailer/ChangeLog?rev=1.14&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/kffmpegthumbnailer/ChangeLog?r1=1.13&r2=1.14

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-video/kffmpegthumbnailer/ChangeLog,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- ChangeLog   28 Apr 2014 22:39:37 -  1.13
+++ ChangeLog   12 May 2014 01:48:28 -  1.14
@@ -1,6 +1,10 @@
 # ChangeLog for media-video/kffmpegthumbnailer
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/kffmpegthumbnailer/ChangeLog,v 
1.13 2014/04/28 22:39:37 johu Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/kffmpegthumbnailer/ChangeLog,v 
1.14 2014/05/12 01:48:28 reavertm Exp $
+
+  12 May 2014; Maciej Mrozowski 
+  kffmpegthumbnailer-1.1.0-r3.ebuild:
+  Thumbnailer requires kdebase-kioslaves, bug 509634
 
   28 Apr 2014; Johannes Huber 
   -kffmpegthumbnailer-1.1.0-r2.ebuild, kffmpegthumbnailer-1.1.0-r3.ebuild:






[gentoo-commits] gentoo-x86 commit in kde-base/kwalletd: kwalletd-4.13.0.ebuild metadata.xml ChangeLog

2014-04-23 Thread Maciej Mrozowski (reavertm)
reavertm14/04/23 22:43:27

  Modified: kwalletd-4.13.0.ebuild metadata.xml ChangeLog
  Log:
  Make kdepimilbs optional via "gpg" USE flag due to popular demand, bug 508492.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
B1E955DB)

Revision  ChangesPath
1.4  kde-base/kwalletd/kwalletd-4.13.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/kwalletd/kwalletd-4.13.0.ebuild?rev=1.4&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/kwalletd/kwalletd-4.13.0.ebuild?rev=1.4&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/kwalletd/kwalletd-4.13.0.ebuild?r1=1.3&r2=1.4

Index: kwalletd-4.13.0.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/kde-base/kwalletd/kwalletd-4.13.0.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- kwalletd-4.13.0.ebuild  22 Apr 2014 22:57:02 -  1.3
+++ kwalletd-4.13.0.ebuild  23 Apr 2014 22:43:26 -  1.4
@@ -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/kde-base/kwalletd/kwalletd-4.13.0.ebuild,v 
1.3 2014/04/22 22:57:02 reavertm Exp $
+# $Header: /var/cvsroot/gentoo-x86/kde-base/kwalletd/kwalletd-4.13.0.ebuild,v 
1.4 2014/04/23 22:43:26 reavertm Exp $
 
 EAPI=5
 
@@ -9,13 +9,24 @@
 
 DESCRIPTION="KDE Password Server"
 KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~x86-fbsd ~amd64-linux ~x86-linux"
-IUSE="debug"
+IUSE="debug gpg"
 
 DEPEND="
-   app-crypt/gpgme
-   $(add_kdebase_dep kdepimlibs)
+   gpg? (
+   app-crypt/gpgme
+   $(add_kdebase_dep kdepimlibs)
+   )
 "
 RDEPEND="${DEPEND}"
 
 RESTRICT="test"
 # testpamopen crashes with a buffer overflow (__fortify_fail)
+
+src_configure() {
+   local mycmakeargs=(
+   $(cmake-utils_use_find_package gpg Gpgme)
+   $(cmake-utils_use_find_package gpg QGpgme)
+   )
+
+   kde4-base_src_configure
+}



1.2  kde-base/kwalletd/metadata.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/kwalletd/metadata.xml?rev=1.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/kwalletd/metadata.xml?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/kwalletd/metadata.xml?r1=1.1&r2=1.2

Index: metadata.xml
===
RCS file: /var/cvsroot/gentoo-x86/kde-base/kwalletd/metadata.xml,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- metadata.xml27 Jan 2009 18:03:50 -  1.1
+++ metadata.xml23 Apr 2014 22:43:26 -  1.2
@@ -2,4 +2,7 @@
 http://www.gentoo.org/dtd/metadata.dtd";>
 
 kde
+
+   Support wallets with GnuPG encryption additionally to 
default blowfish-encrypted file
+
 



1.205kde-base/kwalletd/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/kwalletd/ChangeLog?rev=1.205&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/kwalletd/ChangeLog?rev=1.205&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/kwalletd/ChangeLog?r1=1.204&r2=1.205

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/kde-base/kwalletd/ChangeLog,v
retrieving revision 1.204
retrieving revision 1.205
diff -u -r1.204 -r1.205
--- ChangeLog   22 Apr 2014 22:57:02 -  1.204
+++ ChangeLog   23 Apr 2014 22:43:27 -  1.205
@@ -1,6 +1,10 @@
 # ChangeLog for kde-base/kwalletd
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/kde-base/kwalletd/ChangeLog,v 1.204 
2014/04/22 22:57:02 reavertm Exp $
+# $Header: /var/cvsroot/gentoo-x86/kde-base/kwalletd/ChangeLog,v 1.205 
2014/04/23 22:43:27 reavertm Exp $
+
+  23 Apr 2014; Maciej Mrozowski  kwalletd-4.13.0.ebuild,
+  metadata.xml:
+  Make kdepimilbs optional via "gpg" USE flag due to popular demand, bug 
508492.
 
   22 Apr 2014; Maciej Mrozowski  kwalletd-4.13.0.ebuild:
   Drop semantic-desktop USE flag and make kdepimlibs mandatory dependency due 
to






[gentoo-commits] gentoo-x86 commit in kde-base/akonadiconsole: akonadiconsole-4.13.0.ebuild ChangeLog

2014-04-22 Thread Maciej Mrozowski (reavertm)
reavertm14/04/22 23:34:14

  Modified: akonadiconsole-4.13.0.ebuild ChangeLog
  Log:
  Drop baloo/baloo-widgets dependency (not needed at all).
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
B1E955DB)

Revision  ChangesPath
1.5  kde-base/akonadiconsole/akonadiconsole-4.13.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/akonadiconsole/akonadiconsole-4.13.0.ebuild?rev=1.5&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/akonadiconsole/akonadiconsole-4.13.0.ebuild?rev=1.5&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/akonadiconsole/akonadiconsole-4.13.0.ebuild?r1=1.4&r2=1.5

Index: akonadiconsole-4.13.0.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/kde-base/akonadiconsole/akonadiconsole-4.13.0.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- akonadiconsole-4.13.0.ebuild22 Apr 2014 22:19:00 -  1.4
+++ akonadiconsole-4.13.0.ebuild22 Apr 2014 23:34:14 -  1.5
@@ -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/kde-base/akonadiconsole/akonadiconsole-4.13.0.ebuild,v 
1.4 2014/04/22 22:19:00 johu Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/kde-base/akonadiconsole/akonadiconsole-4.13.0.ebuild,v 
1.5 2014/04/22 23:34:14 reavertm Exp $
 
 EAPI=5
 
@@ -12,11 +12,9 @@
 IUSE="debug"
 
 DEPEND="
-   $(add_kdebase_dep baloo)
-   $(add_kdebase_dep baloo-widgets)
+   >=app-office/akonadi-server-1.12.1
$(add_kdebase_dep kdepimlibs)
$(add_kdebase_dep kdepim-common-libs)
-   app-office/akonadi-server
 "
 RDEPEND="${DEPEND}"
 



1.126kde-base/akonadiconsole/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/akonadiconsole/ChangeLog?rev=1.126&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/akonadiconsole/ChangeLog?rev=1.126&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/akonadiconsole/ChangeLog?r1=1.125&r2=1.126

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/kde-base/akonadiconsole/ChangeLog,v
retrieving revision 1.125
retrieving revision 1.126
diff -u -r1.125 -r1.126
--- ChangeLog   22 Apr 2014 22:19:00 -  1.125
+++ ChangeLog   22 Apr 2014 23:34:14 -  1.126
@@ -1,6 +1,10 @@
 # ChangeLog for kde-base/akonadiconsole
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/kde-base/akonadiconsole/ChangeLog,v 1.125 
2014/04/22 22:19:00 johu Exp $
+# $Header: /var/cvsroot/gentoo-x86/kde-base/akonadiconsole/ChangeLog,v 1.126 
2014/04/22 23:34:14 reavertm Exp $
+
+  22 Apr 2014; Maciej Mrozowski 
+  akonadiconsole-4.13.0.ebuild:
+  Drop baloo/baloo-widgets dependency (not needed at all).
 
   22 Apr 2014; Johannes Huber  akonadiconsole-4.13.0.ebuild:
   Drop app-office/akonadi-server[soprano(-)], bug #508356.






[gentoo-commits] gentoo-x86 commit in kde-base/kwalletd: kwalletd-4.13.0.ebuild ChangeLog

2014-04-22 Thread Maciej Mrozowski (reavertm)
reavertm14/04/22 22:57:02

  Modified: kwalletd-4.13.0.ebuild ChangeLog
  Log:
  Drop semantic-desktop USE flag and make kdepimlibs mandatory dependency due 
to GPG support.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
B1E955DB)

Revision  ChangesPath
1.3  kde-base/kwalletd/kwalletd-4.13.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/kwalletd/kwalletd-4.13.0.ebuild?rev=1.3&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/kwalletd/kwalletd-4.13.0.ebuild?rev=1.3&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/kwalletd/kwalletd-4.13.0.ebuild?r1=1.2&r2=1.3

Index: kwalletd-4.13.0.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/kde-base/kwalletd/kwalletd-4.13.0.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- kwalletd-4.13.0.ebuild  17 Apr 2014 00:43:12 -  1.2
+++ kwalletd-4.13.0.ebuild  22 Apr 2014 22:57:02 -  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/kde-base/kwalletd/kwalletd-4.13.0.ebuild,v 
1.2 2014/04/17 00:43:12 johu Exp $
+# $Header: /var/cvsroot/gentoo-x86/kde-base/kwalletd/kwalletd-4.13.0.ebuild,v 
1.3 2014/04/22 22:57:02 reavertm Exp $
 
 EAPI=5
 
@@ -9,24 +9,13 @@
 
 DESCRIPTION="KDE Password Server"
 KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~x86-fbsd ~amd64-linux ~x86-linux"
-IUSE="debug semantic-desktop"
+IUSE="debug"
 
 DEPEND="
-   semantic-desktop? (
-   app-crypt/gpgme
-   $(add_kdebase_dep kdepimlibs)
-   )
+   app-crypt/gpgme
+   $(add_kdebase_dep kdepimlibs)
 "
 RDEPEND="${DEPEND}"
 
 RESTRICT="test"
 # testpamopen crashes with a buffer overflow (__fortify_fail)
-
-src_configure() {
-   local mycmakeargs=(
-   $(cmake-utils_use_find_package semantic-desktop Gpgme)
-   $(cmake-utils_use_find_package semantic-desktop QGpgme)
-   )
-
-   kde4-base_src_configure
-}



1.204kde-base/kwalletd/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/kwalletd/ChangeLog?rev=1.204&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/kwalletd/ChangeLog?rev=1.204&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/kwalletd/ChangeLog?r1=1.203&r2=1.204

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/kde-base/kwalletd/ChangeLog,v
retrieving revision 1.203
retrieving revision 1.204
diff -u -r1.203 -r1.204
--- ChangeLog   17 Apr 2014 00:43:12 -  1.203
+++ ChangeLog   22 Apr 2014 22:57:02 -  1.204
@@ -1,6 +1,10 @@
 # ChangeLog for kde-base/kwalletd
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/kde-base/kwalletd/ChangeLog,v 1.203 
2014/04/17 00:43:12 johu Exp $
+# $Header: /var/cvsroot/gentoo-x86/kde-base/kwalletd/ChangeLog,v 1.204 
2014/04/22 22:57:02 reavertm Exp $
+
+  22 Apr 2014; Maciej Mrozowski  kwalletd-4.13.0.ebuild:
+  Drop semantic-desktop USE flag and make kdepimlibs mandatory dependency due 
to
+  GPG support.
 
   16 Apr 2014; Johannes Huber  kwalletd-4.13.0.ebuild:
   Restore KEYWORDS for KDE SC 4.13.0






[gentoo-commits] gentoo-x86 commit in dev-util/ddd: ddd-3.3.12-r4.ebuild ChangeLog ddd-3.3.12-r1.ebuild ddd-3.3.12-r2.ebuild

2014-04-07 Thread Maciej Mrozowski (reavertm)
reavertm14/04/08 00:48:03

  Modified: ChangeLog
  Added:ddd-3.3.12-r4.ebuild
  Removed:  ddd-3.3.12-r1.ebuild ddd-3.3.12-r2.ebuild
  Log:
  Add tinfo as termcap-compatible library. Patch by Jeroen Roovers. Bug 458186. 
Remove old.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
B1E955DB)

Revision  ChangesPath
1.76 dev-util/ddd/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/ddd/ChangeLog?rev=1.76&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/ddd/ChangeLog?rev=1.76&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/ddd/ChangeLog?r1=1.75&r2=1.76

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-util/ddd/ChangeLog,v
retrieving revision 1.75
retrieving revision 1.76
diff -u -r1.75 -r1.76
--- ChangeLog   21 Feb 2013 16:12:26 -  1.75
+++ ChangeLog   8 Apr 2014 00:48:03 -   1.76
@@ -1,6 +1,13 @@
 # ChangeLog for dev-util/ddd
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/ddd/ChangeLog,v 1.75 2013/02/21 
16:12:26 ago Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-util/ddd/ChangeLog,v 1.76 2014/04/08 
00:48:03 reavertm Exp $
+
+*ddd-3.3.12-r4 (08 Apr 2014)
+
+  08 Apr 2014; Maciej Mrozowski  +ddd-3.3.12-r4.ebuild,
+  +files/ddd-3.3.12-tinfo.patch, -ddd-3.3.12-r1.ebuild, -ddd-3.3.12-r2.ebuild:
+  Add tinfo as termcap-compatible library. Patch by Jeroen Roovers. Bug 458186.
+  Remove old.
 
   21 Feb 2013; Agostino Sarubbo  ddd-3.3.12-r3.ebuild:
   Stable for sparc, wrt bug #456630



1.1  dev-util/ddd/ddd-3.3.12-r4.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/ddd/ddd-3.3.12-r4.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/ddd/ddd-3.3.12-r4.ebuild?rev=1.1&content-type=text/plain

Index: ddd-3.3.12-r4.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/ddd/ddd-3.3.12-r4.ebuild,v 1.1 
2014/04/08 00:48:03 reavertm Exp $

EAPI="4"

inherit autotools-utils eutils

DESCRIPTION="Graphical front-end for command-line debuggers"
HOMEPAGE="http://www.gnu.org/software/ddd";
SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"

LICENSE="GPL-3 LGPL-3 FDL-1.1"
KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux"
SLOT="0"
IUSE="+gnuplot readline"

COMMON_DEPEND="
sys-devel/gdb
sys-libs/ncurses
x11-libs/libX11
x11-libs/libXaw
x11-libs/libXmu
x11-libs/libXpm
x11-libs/libXt
>=x11-libs/motif-2.3:0
ppc? ( dev-libs/elfutils )
ppc64? ( dev-libs/elfutils )
readline? ( sys-libs/readline )
"
DEPEND="${COMMON_DEPEND}
x11-proto/xproto
"
RDEPEND="${COMMON_DEPEND}
x11-apps/xfontsel
gnuplot? ( sci-visualization/gnuplot )
"

RESTRICT="test"

PATCHES=(
"${FILESDIR}/${P}-gcc44.patch"
"${FILESDIR}/${P}-gdb-disassembler-bug.patch"
"${FILESDIR}/${PN}-3.3.12-man.patch"
"${FILESDIR}/${PN}-3.3.12-tinfo.patch"
)

DOCS=(
AUTHORS CREDITS INSTALL NEWS PROBLEMS README TIPS TODO
doc/ddd{-paper.ps,.pdf,-themes.pdf}
)

AUTOTOOLS_AUTORECONF=1

src_configure() {
local myeconfargs=(
--disable-static
$(use_with readline)
)
autotools-utils_src_configure
}

src_install() {
# Remove app defaults
rm -f "${S}"/ddd/Ddd

# Install ddd distribution
autotools-utils_src_install

# Install application icon
doicon "${S}"/icons/ddd.xpm
}

pkg_postinst() {
if ! use gnuplot; then
echo
elog "To enable data visualization in DDD, install 
sci-visualization/gnuplot,"
elog "or re-emerge DDD with gnuplot USE flag (recommended)."
elog "For flat file package.use layout:"
elog "   echo '${CATEGORY}/${PN} gnuplot' >> 
/etc/portage/package.use && emerge -va gnuplot"
elog "For directory package.use layout:"
elog "   echo '${CATEGORY}/${PN} gnuplot' > 
/etc/portage/package.use/ddd && emerge -va gnuplot"
fi
echo
elog "To be able to debug java, bash, perl or python scripts within 
DDD, install respectively:"
elog "virtual/jdk"
elog "app-shells/bashdb"
elog "dev-lang/perl"
elog "dev-python/pydb"
echo
}






[gentoo-commits] gentoo-x86 commit in dev-util/ddd/files: ddd-3.3.12-tinfo.patch

2014-04-07 Thread Maciej Mrozowski (reavertm)
reavertm14/04/08 00:48:03

  Added:ddd-3.3.12-tinfo.patch
  Log:
  Add tinfo as termcap-compatible library. Patch by Jeroen Roovers. Bug 458186. 
Remove old.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
B1E955DB)

Revision  ChangesPath
1.1  dev-util/ddd/files/ddd-3.3.12-tinfo.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/ddd/files/ddd-3.3.12-tinfo.patch?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/ddd/files/ddd-3.3.12-tinfo.patch?rev=1.1&content-type=text/plain

Index: ddd-3.3.12-tinfo.patch
===
--- a/configure.ac
+++ b/configure.ac
@@ -360,7 +360,7 @@
 dnl
 _termlib="${ddd_termlib}"
 if test "x${ddd_termlib}" = x; then
-  _termlib="mytinfo ncurses curses termcap terminfo termlib"
+  _termlib="mytinfo ncurses tinfo curses termcap terminfo termlib"
 fi
 _termlib_path=
 if test x"${ddd_termlib_libraries_path}" != x; then






[gentoo-commits] gentoo-x86 commit in games-simulation/flightgear: metadata.xml flightgear-3.0.0.ebuild ChangeLog

2014-03-26 Thread Maciej Mrozowski (reavertm)
reavertm14/03/27 02:40:48

  Modified: metadata.xml ChangeLog
  Added:flightgear-3.0.0.ebuild
  Log:
  Version bump, bug 502246.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
B1E955DB)

Revision  ChangesPath
1.9  games-simulation/flightgear/metadata.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/flightgear/metadata.xml?rev=1.9&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/flightgear/metadata.xml?rev=1.9&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/flightgear/metadata.xml?r1=1.8&r2=1.9

Index: metadata.xml
===
RCS file: /var/cvsroot/gentoo-x86/games-simulation/flightgear/metadata.xml,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- metadata.xml23 Nov 2013 02:20:34 -  1.8
+++ metadata.xml27 Mar 2014 02:40:48 -  1.9
@@ -7,6 +7,7 @@
Maciej Mrozowski
 
 
+   Enable screensaver DBus interaction
Enables standalone lightweight 2D-panel rendering 
utility
Enables JSBSim Flight Dynamics Model 
(default)
Enables deprecated Flight Dynamics Models (LaRCsim, 
UIUC)



1.68 games-simulation/flightgear/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/flightgear/ChangeLog?rev=1.68&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/flightgear/ChangeLog?rev=1.68&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/flightgear/ChangeLog?r1=1.67&r2=1.68

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/games-simulation/flightgear/ChangeLog,v
retrieving revision 1.67
retrieving revision 1.68
diff -u -r1.67 -r1.68
--- ChangeLog   12 Dec 2013 05:15:24 -  1.67
+++ ChangeLog   27 Mar 2014 02:40:48 -  1.68
@@ -1,6 +1,12 @@
 # ChangeLog for games-simulation/flightgear
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-simulation/flightgear/ChangeLog,v 
1.67 2013/12/12 05:15:24 reavertm Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/games-simulation/flightgear/ChangeLog,v 
1.68 2014/03/27 02:40:48 reavertm Exp $
+
+*flightgear-3.0.0 (27 Mar 2014)
+
+  27 Mar 2014; Maciej Mrozowski  +flightgear-3.0.0.ebuild,
+  metadata.xml:
+  Version bump, bug 502246.
 
 *flightgear-2.12.1 (12 Dec 2013)
 



1.1  games-simulation/flightgear/flightgear-3.0.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/flightgear/flightgear-3.0.0.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/flightgear/flightgear-3.0.0.ebuild?rev=1.1&content-type=text/plain

Index: flightgear-3.0.0.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/games-simulation/flightgear/flightgear-3.0.0.ebuild,v 
1.1 2014/03/27 02:40:48 reavertm Exp $

EAPI=5

inherit games cmake-utils

DESCRIPTION="Open Source Flight Simulator"
HOMEPAGE="http://www.flightgear.org/";
SRC_URI="mirror://flightgear/Source/${P}.tar.bz2"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="dbus debug jpeg +jsbsim oldfdm test +udev +utils +yasim"

COMMON_DEPEND="
dev-db/sqlite:3
>=dev-games/openscenegraph-3.0.1[png]
~dev-games/simgear-${PV}[jpeg?]
media-libs/openal
sys-libs/zlib
x11-libs/libX11
dbus? ( >=sys-apps/dbus-1.6.18-r1 )
udev? ( virtual/udev )
utils? (
media-libs/freeglut
media-libs/libpng
virtual/opengl
)
"
# Some entries below are just buildsystem bugs (jpeg) or
# deps unconditionally inherited from static version of simgear
DEPEND="${COMMON_DEPEND}
>=dev-libs/boost-1.44
>=media-libs/plib-1.8.5
jpeg? ( virtual/jpeg )
"
RDEPEND="${COMMON_DEPEND}
~games-simulation/${PN}-data-${PV}
"

DOCS=(AUTHORS ChangeLog NEWS README Thanks)

src_configure() {
local mycmakeargs=(
-DCMAKE_INSTALL_PREFIX=${GAMES_PREFIX}
-DENABLE_FGADMIN=OFF
-DENABLE_PROFILE=OFF
-DENABLE_RTI=OFF
-DFG_DATA_DIR="${GAMES_DATADIR}"/${PN}
-DSIMGEAR_SHARED=ON
-DSP_FDMS=OFF
-DSYSTEM_SQLITE=ON
$(cmake-utils_use_use dbus)
$(cmake-utils_use jpeg JPEG_FACTORY)
$(cmake-utils_use_enable jsbsim)
$(cmake-utils_use_enable oldfdm LARCSIM)

[gentoo-commits] gentoo-x86 commit in games-simulation/flightgear-data: flightgear-data-3.0.0.ebuild ChangeLog

2014-03-26 Thread Maciej Mrozowski (reavertm)
reavertm14/03/27 02:39:09

  Modified: ChangeLog
  Added:flightgear-data-3.0.0.ebuild
  Log:
  Version bump, bug 502246.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
B1E955DB)

Revision  ChangesPath
1.6  games-simulation/flightgear-data/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/games-simulation/flightgear-data/ChangeLog,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- ChangeLog   12 Dec 2013 05:14:47 -  1.5
+++ ChangeLog   27 Mar 2014 02:39:09 -  1.6
@@ -1,6 +1,12 @@
 # ChangeLog for games-simulation/flightgear-data
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: 
/var/cvsroot/gentoo-x86/games-simulation/flightgear-data/ChangeLog,v 1.5 
2013/12/12 05:14:47 reavertm Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: 
/var/cvsroot/gentoo-x86/games-simulation/flightgear-data/ChangeLog,v 1.6 
2014/03/27 02:39:09 reavertm Exp $
+
+*flightgear-data-3.0.0 (27 Mar 2014)
+
+  27 Mar 2014; Maciej Mrozowski 
+  +flightgear-data-3.0.0.ebuild:
+  Version bump, bug 502246.
 
 *flightgear-data-2.12.1 (12 Dec 2013)
 



1.1  
games-simulation/flightgear-data/flightgear-data-3.0.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/flightgear-data/flightgear-data-3.0.0.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/flightgear-data/flightgear-data-3.0.0.ebuild?rev=1.1&content-type=text/plain

Index: flightgear-data-3.0.0.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/games-simulation/flightgear-data/flightgear-data-3.0.0.ebuild,v
 1.1 2014/03/27 02:39:09 reavertm Exp $

EAPI=5

inherit games

DESCRIPTION="FlightGear data files"
HOMEPAGE="http://www.flightgear.org/";
SRC_URI="mirror://flightgear/Shared/FlightGear-data-${PV}.tar.bz2"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE=""

# data files split to separate package since 2.10.0
RDEPEND="
!

[gentoo-commits] gentoo-x86 commit in dev-games/simgear: metadata.xml simgear-3.0.0.ebuild ChangeLog

2014-03-26 Thread Maciej Mrozowski (reavertm)
reavertm14/03/27 02:37:08

  Modified: metadata.xml ChangeLog
  Added:simgear-3.0.0.ebuild
  Log:
  Version bump, bug 502246.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
B1E955DB)

Revision  ChangesPath
1.3  dev-games/simgear/metadata.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/simgear/metadata.xml?rev=1.3&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/simgear/metadata.xml?rev=1.3&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/simgear/metadata.xml?r1=1.2&r2=1.3

Index: metadata.xml
===
RCS file: /var/cvsroot/gentoo-x86/dev-games/simgear/metadata.xml,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- metadata.xml16 Oct 2011 02:25:30 -  1.2
+++ metadata.xml27 Mar 2014 02:37:08 -  1.3
@@ -9,9 +9,8 @@
 
 SimGear is a set of open-source libraries designed to be used as building 
blocks for 
 quickly assembling 3d simulations, games, and visualization applications.
-
-The purpose of this project is to develop open-source libraries and
-building blocks to assist with rapid construction/prototyping of 3d
-simulation, game, and visualization software.
 
+
+   Enables terrasync scenery downloader
+
 



1.63 dev-games/simgear/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/simgear/ChangeLog?rev=1.63&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/simgear/ChangeLog?rev=1.63&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/simgear/ChangeLog?r1=1.62&r2=1.63

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-games/simgear/ChangeLog,v
retrieving revision 1.62
retrieving revision 1.63
diff -u -r1.62 -r1.63
--- ChangeLog   12 Dec 2013 05:13:54 -  1.62
+++ ChangeLog   27 Mar 2014 02:37:08 -  1.63
@@ -1,6 +1,12 @@
 # ChangeLog for dev-games/simgear
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-games/simgear/ChangeLog,v 1.62 
2013/12/12 05:13:54 reavertm Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-games/simgear/ChangeLog,v 1.63 
2014/03/27 02:37:08 reavertm Exp $
+
+*simgear-3.0.0 (27 Mar 2014)
+
+  27 Mar 2014; Maciej Mrozowski  +simgear-3.0.0.ebuild,
+  metadata.xml:
+  Version bump, bug 502246.
 
 *simgear-2.12.1 (12 Dec 2013)
 



1.1  dev-games/simgear/simgear-3.0.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/simgear/simgear-3.0.0.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/simgear/simgear-3.0.0.ebuild?rev=1.1&content-type=text/plain

Index: simgear-3.0.0.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-games/simgear/simgear-3.0.0.ebuild,v 1.1 
2014/03/27 02:37:08 reavertm Exp $

EAPI=5

inherit eutils cmake-utils

DESCRIPTION="Development library for simulation games"
HOMEPAGE="http://www.simgear.org/";
SRC_URI="http://mirrors.ibiblio.org/pub/mirrors/simgear/ftp/Source/${P}.tar.bz2";

LICENSE="GPL-2"
KEYWORDS="~amd64 ~ppc ~x86"
SLOT="0"
IUSE="debug jpeg subversion test"

COMMON_DEPEND="
dev-libs/expat
>=dev-games/openscenegraph-3.0.1
media-libs/openal
sys-libs/zlib
virtual/opengl
jpeg? ( virtual/jpeg )
"
DEPEND="${COMMON_DEPEND}
>=dev-libs/boost-1.44
"
RDEPEND="${COMMON_DEPEND}
subversion? ( dev-vcs/subversion )
"

DOCS=(AUTHORS ChangeLog NEWS README Thanks)

src_configure() {
local mycmakeargs=(
-DENABLE_RTI=OFF
-DENABLE_SOUND=ON
-DSIMGEAR_HEADLESS=OFF
-DSIMGEAR_SHARED=ON
-DSYSTEM_EXPAT=ON
$(cmake-utils_use jpeg JPEG_FACTORY)
$(cmake-utils_use_enable test TESTS)
)
cmake-utils_src_configure
}