summaryrefslogtreecommitdiff
path: root/x11-libs/libqglviewer/libqglviewer-2.3.1.ebuild
diff options
context:
space:
mode:
authorCtibor <ctibor.brancik@seznam.cz>2014-05-14 19:51:46 +0200
committerCtibor <ctibor.brancik@seznam.cz>2014-05-14 19:51:46 +0200
commitd8a055490de27e76e7b3590b0c7bbf6766d19515 (patch)
treec2163c75bb5230bd2a93cf1a4af0e91c4e26d842 /x11-libs/libqglviewer/libqglviewer-2.3.1.ebuild
parent7136231fc334844e184d675d6d1f1dbd4c96e9c3 (diff)
downloadbrancik-overlay-d8a055490de27e76e7b3590b0c7bbf6766d19515.tar.gz
brancik-overlay-d8a055490de27e76e7b3590b0c7bbf6766d19515.tar.bz2
x11-libs/libqglviewer version bump
Diffstat (limited to 'x11-libs/libqglviewer/libqglviewer-2.3.1.ebuild')
-rw-r--r--x11-libs/libqglviewer/libqglviewer-2.3.1.ebuild54
1 files changed, 0 insertions, 54 deletions
diff --git a/x11-libs/libqglviewer/libqglviewer-2.3.1.ebuild b/x11-libs/libqglviewer/libqglviewer-2.3.1.ebuild
deleted file mode 100644
index 64f1599..0000000
--- a/x11-libs/libqglviewer/libqglviewer-2.3.1.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI="2"
-
-inherit qt4-r2
-
-MY_P="libQGLViewer-${PV}"
-
-DESCRIPTION="Simple 3D viewer class for Qt OpenGL applications"
-HOMEPAGE="http://www.libqglviewer.com"
-SRC_URI="http://www.libqglviewer.com/src/${MY_P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="doc"
-
-DEPEND="virtual/opengl
- dev-qt/qtgui:4"
-RDEPEND="${DEPEND}"
-
-S=${WORKDIR}/${MY_P}/QGLViewer
-
-src_configure() {
- true
-}
-
-src_compile() {
- eqmake4 QGLViewer.pro -o Makefile PREFIX=/usr
- emake || die "emake QGLViewer failed"
-
- cd ../designerPlugin
- eqmake4 designerPlugin.pro -o Makefile \
- INCLUDE_DIR=.. \
- LIB_DIR=../QGLViewer
- emake || die "emake designerPlugin failed"
-}
-
-src_install() {
- INSTALL_ROOT="${D}" emake install_target install_include || die "install QGLViewer failed"
-
- cd ../designerPlugin
- INSTALL_ROOT="${D}" emake install_target || die "install QGLViewer failed"
-
- dodoc ../README || die "installing README failed"
-
- if use doc ; then
- dohtml -r ../doc/* || die "installing html files failed"
- docinto examples
- dodoc ../examples/* || die "installing examples failed"
- fi
-}