summaryrefslogtreecommitdiff
path: root/x11-libs/libqglviewer/libqglviewer-2.5.2.ebuild
diff options
context:
space:
mode:
Diffstat (limited to 'x11-libs/libqglviewer/libqglviewer-2.5.2.ebuild')
-rw-r--r--x11-libs/libqglviewer/libqglviewer-2.5.2.ebuild55
1 files changed, 0 insertions, 55 deletions
diff --git a/x11-libs/libqglviewer/libqglviewer-2.5.2.ebuild b/x11-libs/libqglviewer/libqglviewer-2.5.2.ebuild
deleted file mode 100644
index ae2c144..0000000
--- a/x11-libs/libqglviewer/libqglviewer-2.5.2.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI=5
-
-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
-}