diff options
Diffstat (limited to 'sci-chemistry/gabedit/gabedit-2.3.9.ebuild')
-rw-r--r-- | sci-chemistry/gabedit/gabedit-2.3.9.ebuild | 63 |
1 files changed, 0 insertions, 63 deletions
diff --git a/sci-chemistry/gabedit/gabedit-2.3.9.ebuild b/sci-chemistry/gabedit/gabedit-2.3.9.ebuild deleted file mode 100644 index b2fdb43a511f..000000000000 --- a/sci-chemistry/gabedit/gabedit-2.3.9.ebuild +++ /dev/null @@ -1,63 +0,0 @@ -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/gabedit/gabedit-2.3.9.ebuild,v 1.1 2011/07/24 09:09:47 jlec Exp $ - -EAPI=4 - -inherit toolchain-funcs versionator - -MY_PN=${PN/g/G} -MY_PV=$(delete_all_version_separators) -MY_P="${MY_PN}Src${MY_PV}" - -DESCRIPTION="GUI for computational chemistry packages" -HOMEPAGE="http://gabedit.sourceforge.net/" -SRC_URI="mirror://sourceforge/${PN}/GabeditDevloppment/${MY_PN}${MY_PV}/${MY_P}.tar.gz" - -SLOT="0" -LICENSE="as-is" -KEYWORDS="~amd64 ~x86" -IUSE="openmp" - -RDEPEND=" - dev-libs/glib:2 - x11-libs/cairo - x11-libs/gdk-pixbuf:2 - x11-libs/gtk+:2 - x11-libs/gtkglext - x11-libs/gl2ps - x11-libs/pango - virtual/opengl - virtual/glu" -DEPEND="${RDEPEND} - dev-util/pkgconfig" - -S=${WORKDIR}/${MY_P} - -src_prepare() { - tc-export CC - sed -i "/rmdir tmp/d" "${S}"/Makefile - sed \ - -e "/GTK_DISABLE_DEPRECATED/s:define:undef:g" \ - -i "${S}/Config.h" || die - sed -e 's:-g::g' -i Makefile || die - cp "${FILESDIR}"/CONFIG.Gentoo "${S}"/CONFIG - - if use openmp && tc-has-openmp; then - cat <<- EOF >> "${S}/CONFIG" - OMPLIB=-fopenmp - OMPCFLAGS=-DENABLE_OMP -fopenmp - EOF - fi - echo "COMMONCFLAGS = ${CFLAGS} -DENABLE_DEPRECATED \$(OMPCFLAGS) \$(DRAWGEOMGL)" >> CONFIG -} - -src_compile() { - emake clean - emake external_gl2ps=1 -} - -src_install() { - dobin ${PN} - dodoc ChangeLog -} |