# Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/sci-visualization/qtiplot/qtiplot-0.9.7.7-r1.ebuild,v 1.1 2009/09/18 18:40:01 bicatali Exp $ EAPI=2 inherit eutils qt4 fdo-mime python DESCRIPTION="Qt based clone of the Origin plotting package" HOMEPAGE="http://soft.proindependent.com/qtiplot.html" SRC_URI="mirror://berlios/${PN}/${P}.tar.bz2" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="python doc bindist" LANGS="de es fr ja ru sv" for l in ${LANGS}; do IUSE="${IUSE} linguas_${l}" done # qwtplot3d much modified from original upstream # >=x11-libs/qwt-5.3 they are using trunk checkouts CDEPEND=" x11-libs/qt-opengl:4 x11-libs/qt-qt3support:4 x11-libs/qt-assistant:4 x11-libs/qt-svg:4 >=x11-libs/gl2ps-1.3.5 >=dev-cpp/muParser-1.30 >=dev-libs/boost-1.35.0 >=sci-libs/liborigin-20090406:2 !bindist? ( sci-libs/gsl ) bindist? ( build.conf } src_configure() { eqmake4 } src_compile() { emake || die "emake failed" if use doc; then #doxygen Doxyfile || die "api building failed" cd manual emake || die "html docbook building failed" fi } src_install() { emake INSTALL_ROOT="${D}" install || die 'emake install failed' newicon qtiplot_logo.png qtiplot.png make_desktop_entry qtiplot "QtiPlot Scientific Plotting" qtiplot if use doc; then insinto /usr/share/doc/${PF}/html doins -r manual/html/* || die "install manual failed" fi } pkg_postinst() { fdo-mime_desktop_database_update if use doc; then elog "On the first start, do Help -> Choose Help Folder" elog "and select /usr/share/doc/${PF}/html" fi } pkg_postrm() { fdo-mime_desktop_database_update }