diff options
author | Justin Lecher <jlec@gentoo.org> | 2012-03-04 11:31:15 +0100 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2012-03-04 11:31:15 +0100 |
commit | e30b4c139db3db8f0fc6d3086d21896f12238960 (patch) | |
tree | d463efef799b1c93fd6222ce0699764c7ca21271 /sci-chemistry/openbabel-perl | |
parent | Block pypy usage (diff) | |
download | sci-e30b4c139db3db8f0fc6d3086d21896f12238960.tar.gz sci-e30b4c139db3db8f0fc6d3086d21896f12238960.tar.bz2 sci-e30b4c139db3db8f0fc6d3086d21896f12238960.zip |
Moved to tree
Diffstat (limited to 'sci-chemistry/openbabel-perl')
-rw-r--r-- | sci-chemistry/openbabel-perl/ChangeLog | 10 | ||||
-rw-r--r-- | sci-chemistry/openbabel-perl/Manifest | 1 | ||||
-rw-r--r-- | sci-chemistry/openbabel-perl/files/openbabel-perl-2.3.1-makefile.patch | 9 | ||||
-rw-r--r-- | sci-chemistry/openbabel-perl/metadata.xml | 12 | ||||
-rw-r--r-- | sci-chemistry/openbabel-perl/openbabel-perl-2.3.1.ebuild | 69 |
5 files changed, 0 insertions, 101 deletions
diff --git a/sci-chemistry/openbabel-perl/ChangeLog b/sci-chemistry/openbabel-perl/ChangeLog deleted file mode 100644 index b6a2102a8..000000000 --- a/sci-chemistry/openbabel-perl/ChangeLog +++ /dev/null @@ -1,10 +0,0 @@ -# ChangeLog for sci-chemistry/openbabel-perl -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: $ - -*openbabel-perl-2.3.1 (10 Nov 2011) - - 10 Nov 2011; Reinis Danne <rei4dan@gmail.com> +openbabel-perl-2.3.1.ebuild, - +files/openbabel-perl-2.3.1-makefile.patch, +metadata.xml: - Version bump to 2.3.1 - diff --git a/sci-chemistry/openbabel-perl/Manifest b/sci-chemistry/openbabel-perl/Manifest deleted file mode 100644 index 2a3fd3b65..000000000 --- a/sci-chemistry/openbabel-perl/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST openbabel-2.3.1.tar.gz 20142960 RMD160 da4d240a92942dbf9dcf999187336d69d7ef8f5c SHA1 b2dd1638eaf7e6d350110b1561aeb23b03552846 SHA256 9e2e8bc9af585ee7e4a03720e3d7b82ef567aa17fdeeea48cc213a3035ced7a3 diff --git a/sci-chemistry/openbabel-perl/files/openbabel-perl-2.3.1-makefile.patch b/sci-chemistry/openbabel-perl/files/openbabel-perl-2.3.1-makefile.patch deleted file mode 100644 index 88248b443..000000000 --- a/sci-chemistry/openbabel-perl/files/openbabel-perl-2.3.1-makefile.patch +++ /dev/null @@ -1,9 +0,0 @@ ---- scripts/perl/Makefile.PL -+++ scripts/perl/Makefile.PL -@@ -37,5 +37,6 @@ 'LDFROM' => $ldfrom, - 'CC' => $CC, - 'LD' => '$(CC)', - 'INC' => '-I../../include -I'.$cmakesrcdir.'/include', -+ 'DESTDIR' => @ENV{"D"}, - 'OBJECT' => 'openbabel-perl.o' - ); diff --git a/sci-chemistry/openbabel-perl/metadata.xml b/sci-chemistry/openbabel-perl/metadata.xml deleted file mode 100644 index 433cfe800..000000000 --- a/sci-chemistry/openbabel-perl/metadata.xml +++ /dev/null @@ -1,12 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <herd>sci-chemistry</herd> - <longdescription> - OpenBabel is a chemical toolbox designed to speak the many languages of - chemical data. It's an open, collaborative project allowing anyone to - search, convert, analyze, or store data from molecular modeling, chemistry, - solid-state materials, biochemistry, or related areas. This package enables - to access OpenBabel library from Python programs. - </longdescription> -</pkgmetadata> diff --git a/sci-chemistry/openbabel-perl/openbabel-perl-2.3.1.ebuild b/sci-chemistry/openbabel-perl/openbabel-perl-2.3.1.ebuild deleted file mode 100644 index 96f267f2e..000000000 --- a/sci-chemistry/openbabel-perl/openbabel-perl-2.3.1.ebuild +++ /dev/null @@ -1,69 +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/openbabel-perl/openbabel-perl-2.3.0.ebuild,v 1.3 2011/03/29 06:00:42 jlec Exp $ - -EAPI="3" - -inherit cmake-utils eutils perl-module - -DESCRIPTION="Perl bindings for OpenBabel" -HOMEPAGE="http://openbabel.sourceforge.net/" -SRC_URI="mirror://sourceforge/openbabel/openbabel-${PV}.tar.gz" - -KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" -SLOT="0" -LICENSE="GPL-2" -IUSE="" - -RDEPEND=" - dev-lang/perl - ~sci-chemistry/openbabel-${PV}" -DEPEND="${RDEPEND} - >=dev-lang/swig-2 - dev-util/cmake" - -S="${WORKDIR}/openbabel-${PV}" - -src_prepare() { - epatch \ - "${FILESDIR}/${P}-makefile.patch" -} - -src_configure() { - local mycmakeargs="-DPERL_BINDINGS=ON" - mycmakeargs="${mycmakeargs} - -DRUN_SWIG=ON" - cmake-utils_src_configure -} - -src_compile() { - cd "${WORKDIR}/${P}_build/scripts" - perl-module_src_prep - perl-module_src_compile -} - -src_test() { - cd "${WORKDIR}/${P}_build/scripts" - emake test || die "make test failed" -} - -src_install() { - cd "${WORKDIR}/${P}_build/scripts/perl" - perl-module_src_install -} - -pkg_preinst() { - perl-module_pkg_preinst -} - -pkg_postinst() { - perl-module_pkg_postinst -} - -pkg_prerm() { - perl-module_pkg_prerm -} - -pkg_postrm() { - perl-module_pkg_postrm -} |