* [gentoo-commits] gentoo-x86 commit in x11-libs/libQGLViewer: ChangeLog libQGLViewer-2.6.0.ebuild
@ 2014-11-25 17:42 Alexis Ballier (aballier)
0 siblings, 0 replies; 3+ messages in thread
From: Alexis Ballier (aballier) @ 2014-11-25 17:42 UTC (permalink / raw
To: gentoo-commits
aballier 14/11/25 17:42:50
Modified: ChangeLog
Added: libQGLViewer-2.6.0.ebuild
Log:
version bump
Signed-off-by: aballier@gentoo.org
(Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
Revision Changes Path
1.5 x11-libs/libQGLViewer/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libQGLViewer/ChangeLog?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libQGLViewer/ChangeLog?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libQGLViewer/ChangeLog?r1=1.4&r2=1.5
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/libQGLViewer/ChangeLog,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- ChangeLog 7 Nov 2014 10:08:37 -0000 1.4
+++ ChangeLog 25 Nov 2014 17:42:50 -0000 1.5
@@ -1,6 +1,11 @@
# ChangeLog for x11-libs/libQGLViewer
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/libQGLViewer/ChangeLog,v 1.4 2014/11/07 10:08:37 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/libQGLViewer/ChangeLog,v 1.5 2014/11/25 17:42:50 aballier Exp $
+
+*libQGLViewer-2.6.0 (25 Nov 2014)
+
+ 25 Nov 2014; Alexis Ballier <aballier@gentoo.org> +libQGLViewer-2.6.0.ebuild:
+ version bump
*libQGLViewer-2.5.4 (07 Nov 2014)
1.1 x11-libs/libQGLViewer/libQGLViewer-2.6.0.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libQGLViewer/libQGLViewer-2.6.0.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libQGLViewer/libQGLViewer-2.6.0.ebuild?rev=1.1&content-type=text/plain
Index: libQGLViewer-2.6.0.ebuild
===================================================================
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-libs/libQGLViewer/libQGLViewer-2.6.0.ebuild,v 1.1 2014/11/25 17:42:50 aballier Exp $
EAPI="5"
inherit qt4-r2 multilib flag-o-matic
DESCRIPTION="C++ library based on Qt that eases the creation of OpenGL 3D viewers"
HOMEPAGE="http://www.libqglviewer.com"
SRC_URI="http://www.libqglviewer.com/src/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~arm"
IUSE="designer examples"
DEPEND="virtual/opengl
dev-qt/qtopengl:4
dev-qt/qtgui:4"
RDEPEND="${DEPEND}
designer? ( dev-qt/designer:4 )"
src_configure() {
append-ldflags "-L${S}/QGLViewer"
sed -e 's#designerPlugin##' -i ${P}.pro || die
use examples || sed -e 's#examples examples/contribs##' -i ${P}.pro || die
eqmake4 ${P}.pro \
PREFIX="${EPREFIX}/usr" \
LIB_DIR="${EPREFIX}/usr/$(get_libdir)" \
DOC_DIR="${EPREFIX}/usr/share/doc/${PF}/html"
if use designer ; then
cd "${S}/designerPlugin"
eqmake4 designerPlugin.pro
fi
}
src_install() {
emake INSTALL_ROOT="${D}" install
dodoc README
if use designer ; then
cd "${S}/designerPlugin"
emake INSTALL_ROOT="${D}" install
fi
if use examples ; then
exeinto /usr/bin/${PN}-examples
doexe $(find "${S}/examples" -type f -executable ! -name '*.vcproj')
fi
}
^ permalink raw reply [flat|nested] 3+ messages in thread
* [gentoo-commits] gentoo-x86 commit in x11-libs/libQGLViewer: ChangeLog libQGLViewer-2.6.0.ebuild
@ 2014-12-08 8:37 Alexis Ballier (aballier)
0 siblings, 0 replies; 3+ messages in thread
From: Alexis Ballier (aballier) @ 2014-12-08 8:37 UTC (permalink / raw
To: gentoo-commits
aballier 14/12/08 08:37:08
Modified: ChangeLog libQGLViewer-2.6.0.ebuild
Log:
add missing virtual/glu dep, bug #531796 by Toralf Förster
Signed-off-by: aballier@gentoo.org
(Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
Revision Changes Path
1.6 x11-libs/libQGLViewer/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libQGLViewer/ChangeLog?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libQGLViewer/ChangeLog?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libQGLViewer/ChangeLog?r1=1.5&r2=1.6
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/libQGLViewer/ChangeLog,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- ChangeLog 25 Nov 2014 17:42:50 -0000 1.5
+++ ChangeLog 8 Dec 2014 08:37:08 -0000 1.6
@@ -1,6 +1,9 @@
# ChangeLog for x11-libs/libQGLViewer
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/libQGLViewer/ChangeLog,v 1.5 2014/11/25 17:42:50 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/libQGLViewer/ChangeLog,v 1.6 2014/12/08 08:37:08 aballier Exp $
+
+ 08 Dec 2014; Alexis Ballier <aballier@gentoo.org> libQGLViewer-2.6.0.ebuild:
+ add missing virtual/glu dep, bug #531796 by Toralf Förster
*libQGLViewer-2.6.0 (25 Nov 2014)
1.2 x11-libs/libQGLViewer/libQGLViewer-2.6.0.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libQGLViewer/libQGLViewer-2.6.0.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libQGLViewer/libQGLViewer-2.6.0.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libQGLViewer/libQGLViewer-2.6.0.ebuild?r1=1.1&r2=1.2
Index: libQGLViewer-2.6.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/libQGLViewer/libQGLViewer-2.6.0.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- libQGLViewer-2.6.0.ebuild 25 Nov 2014 17:42:50 -0000 1.1
+++ libQGLViewer-2.6.0.ebuild 8 Dec 2014 08:37:08 -0000 1.2
@@ -1,6 +1,6 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/libQGLViewer/libQGLViewer-2.6.0.ebuild,v 1.1 2014/11/25 17:42:50 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/libQGLViewer/libQGLViewer-2.6.0.ebuild,v 1.2 2014/12/08 08:37:08 aballier Exp $
EAPI="5"
@@ -16,6 +16,7 @@
IUSE="designer examples"
DEPEND="virtual/opengl
+ virtual/glu
dev-qt/qtopengl:4
dev-qt/qtgui:4"
RDEPEND="${DEPEND}
^ permalink raw reply [flat|nested] 3+ messages in thread
* [gentoo-commits] gentoo-x86 commit in x11-libs/libQGLViewer: ChangeLog libQGLViewer-2.6.0.ebuild
@ 2015-03-20 16:29 Justin Lecher (jlec)
0 siblings, 0 replies; 3+ messages in thread
From: Justin Lecher (jlec) @ 2015-03-20 16:29 UTC (permalink / raw
To: gentoo-commits
jlec 15/03/20 16:29:57
Modified: ChangeLog
Removed: libQGLViewer-2.6.0.ebuild
Log:
Drop old
(Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key B9D4F231BD1558AB!)
Revision Changes Path
1.9 x11-libs/libQGLViewer/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libQGLViewer/ChangeLog?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libQGLViewer/ChangeLog?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libQGLViewer/ChangeLog?r1=1.8&r2=1.9
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/libQGLViewer/ChangeLog,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- ChangeLog 26 Jan 2015 13:21:01 -0000 1.8
+++ ChangeLog 20 Mar 2015 16:29:57 -0000 1.9
@@ -1,6 +1,9 @@
# ChangeLog for x11-libs/libQGLViewer
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/libQGLViewer/ChangeLog,v 1.8 2015/01/26 13:21:01 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/libQGLViewer/ChangeLog,v 1.9 2015/03/20 16:29:57 jlec Exp $
+
+ 20 Mar 2015; Justin Lecher <jlec@gentoo.org> -libQGLViewer-2.6.0.ebuild:
+ Drop old
*libQGLViewer-2.6.1 (26 Jan 2015)
@@ -35,4 +38,3 @@
28 Oct 2014; Alexis Ballier <aballier@gentoo.org> +libQGLViewer-2.5.3.ebuild,
+metadata.xml:
Initial import, adapted from old sunrise ebuild by myself
-
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2015-03-20 16:30 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-12-08 8:37 [gentoo-commits] gentoo-x86 commit in x11-libs/libQGLViewer: ChangeLog libQGLViewer-2.6.0.ebuild Alexis Ballier (aballier)
-- strict thread matches above, loose matches on Subject: below --
2015-03-20 16:29 Justin Lecher (jlec)
2014-11-25 17:42 Alexis Ballier (aballier)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox