You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/x11-misc/fracplanet/fracplanet-0.5.1.ebuild

48 lines
900 B

# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit qmake-utils
DESCRIPTION="Fractal planet and terrain generator"
HOMEPAGE="
http://www.bottlenose.net/share/fracplanet/index.htm
https://sourceforge.net/projects/fracplanet/
"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
RDEPEND="
dev-libs/boost:=
dev-qt/qtcore:5
dev-qt/qtgui:5
dev-qt/qtopengl:5
dev-qt/qtwidgets:5
virtual/glu
virtual/opengl
"
DEPEND="
${RDEPEND}
dev-libs/libxslt
"
HTML_DOCS=( fracplanet.{htm,css} )
src_configure() {
eqmake5 fracplanet.pro
}
src_compile() {
xsltproc -stringparam version ${PV} -html htm_to_qml.xsl fracplanet.htm \
| sed 's/"/\\"/g' | sed 's/^/"/g' | sed 's/$/\\n"/g'> usage_text.h || die
default
}
src_install() {
dobin ${PN}
doman man/man1/${PN}.1
einstalldocs
}