diff options
Diffstat (limited to 'sci-libs/gts/gts-20100321-r2.ebuild')
-rw-r--r-- | sci-libs/gts/gts-20100321-r2.ebuild | 54 |
1 files changed, 0 insertions, 54 deletions
diff --git a/sci-libs/gts/gts-20100321-r2.ebuild b/sci-libs/gts/gts-20100321-r2.ebuild deleted file mode 100644 index 54bd6719f307..000000000000 --- a/sci-libs/gts/gts-20100321-r2.ebuild +++ /dev/null @@ -1,54 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/gts/gts-20100321-r2.ebuild,v 1.5 2012/01/05 18:58:00 jlec Exp $ - -EAPI=2 - -inherit eutils fortran-2 autotools - -DESCRIPTION="GNU Triangulated Surface Library" -HOMEPAGE="http://gts.sourceforge.net/" -SRC_URI="mirror://gentoo/${P}.tar.gz" - -SLOT="0" -LICENSE="LGPL-2" -KEYWORDS="~amd64 ~ppc ~x86" -IUSE="doc examples test" - -RDEPEND=" - virtual/fortran - - dev-libs/glib:2 - !<=sci-chemistry/apbs-1.3-r1[tools] - !<=sci-chemistry/ccp4-apps-6.1.3-r2" -DEPEND="${RDEPEND} - dev-util/pkgconfig - test? ( media-libs/netpbm )" - -# tests are failing -RESTRICT="test" - -S="${WORKDIR}"/${PN}-snapshot-100321 - -src_prepare() { - chmod +x test/*/*.sh - epatch "${FILESDIR}"/${P}-examples.patch - eautoreconf -} - -src_install() { - emake DESTDIR="${D}" install || die "emake install failed" - mv "${D}"/usr/bin/{,gts-}split || die - mv "${D}"/usr/bin/{,gts-}merge || die - dodoc AUTHORS ChangeLog NEWS README THANKS TODO || die - - if use examples; then - insinto /usr/share/doc/${PF}/examples - doins examples/*.c || die "Failed to install examples" - fi - - # install additional docs - if use doc; then - dohtml doc/html/* || die - fi -} |