diff options
author | Ctibor <ctibor.brancik@seznam.cz> | 2014-05-14 19:56:30 +0200 |
---|---|---|
committer | Ctibor <ctibor.brancik@seznam.cz> | 2014-05-14 19:56:30 +0200 |
commit | 4aab0853805d077ca839c2754a45ca8195b896ac (patch) | |
tree | 504d85bf47da185dd0a2a4765cd6772fb16fd9f2 | |
parent | d8a055490de27e76e7b3590b0c7bbf6766d19515 (diff) | |
download | brancik-overlay-4aab0853805d077ca839c2754a45ca8195b896ac.tar.gz brancik-overlay-4aab0853805d077ca839c2754a45ca8195b896ac.tar.bz2 |
Forgot to git add. Fixing now. Move along.
-rw-r--r-- | x11-libs/libqglviewer/libqglviewer-2.5.2.ebuild | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/x11-libs/libqglviewer/libqglviewer-2.5.2.ebuild b/x11-libs/libqglviewer/libqglviewer-2.5.2.ebuild new file mode 100644 index 0000000..64f1599 --- /dev/null +++ b/x11-libs/libqglviewer/libqglviewer-2.5.2.ebuild @@ -0,0 +1,54 @@ +# 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 +} |