diff options
Diffstat (limited to 'sci-visualization/udav/udav-0.3.2.ebuild')
-rw-r--r-- | sci-visualization/udav/udav-0.3.2.ebuild | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/sci-visualization/udav/udav-0.3.2.ebuild b/sci-visualization/udav/udav-0.3.2.ebuild new file mode 100644 index 000000000..d179b2f80 --- /dev/null +++ b/sci-visualization/udav/udav-0.3.2.ebuild @@ -0,0 +1,34 @@ +# 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" +} |