# Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ inherit eutils autotools DESCRIPTION="Universal Data Array Visualization" HOMEPAGE="http://udav.sourceforge.net/" LICENSE="GPL-2" SLOT="0" KEYWORDS="~x86" SRC_URI="mirror://sourceforge/${PN}/${P}.tgz" DEPEND="sci-libs/mathgl x11-libs/fltk" #### Remove the following line when moving this ebuild to the main tree! RESTRICT=mirror src_unpack() { unpack ${A} cd "${S}" epatch "${FILESDIR}"/${PN}-fltk.patch eautoreconf } src_compile() { econf || die "econf failed" emake || die "emake failed" } src_install() { emake DESTDIR="${D}" install || die "emake install failed" dodoc README AUTHORS || die "dodoc failed" }