diff options
author | Justin Lecher <jlec@gentoo.org> | 2013-08-15 11:05:31 +0000 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2013-08-15 11:05:31 +0000 |
commit | 0a0bbc7cdd912086e456d518e1436b52a0d540b6 (patch) | |
tree | 5ea213f71cdac98a51cd98ffbd5548de5ee9387e /sci-chemistry/pointless | |
parent | Revision bump. Slotted bcmail and bcprov dependencies. (diff) | |
download | gentoo-2-0a0bbc7cdd912086e456d518e1436b52a0d540b6.tar.gz gentoo-2-0a0bbc7cdd912086e456d518e1436b52a0d540b6.tar.bz2 gentoo-2-0a0bbc7cdd912086e456d518e1436b52a0d540b6.zip |
sci-chemistry/pointless: Bump EAPI, drop pointless python.eclass usage
(Portage version: 2.2.0/cvs/Linux x86_64, signed Manifest commit with key B9D4F231BD1558AB!)
Diffstat (limited to 'sci-chemistry/pointless')
-rw-r--r-- | sci-chemistry/pointless/ChangeLog | 8 | ||||
-rw-r--r-- | sci-chemistry/pointless/metadata.xml | 8 | ||||
-rw-r--r-- | sci-chemistry/pointless/pointless-1.6.14-r1.ebuild | 52 |
3 files changed, 63 insertions, 5 deletions
diff --git a/sci-chemistry/pointless/ChangeLog b/sci-chemistry/pointless/ChangeLog index 68046ec3482a..9ee28092c85c 100644 --- a/sci-chemistry/pointless/ChangeLog +++ b/sci-chemistry/pointless/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for sci-chemistry/pointless # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/pointless/ChangeLog,v 1.35 2013/06/19 04:16:10 bicatali Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/pointless/ChangeLog,v 1.36 2013/08/15 11:05:31 jlec Exp $ + +*pointless-1.6.14-r1 (15 Aug 2013) + + 15 Aug 2013; Justin Lecher <jlec@gentoo.org> +pointless-1.6.14-r1.ebuild, + metadata.xml: + Bump EAPI, drop pointless python.eclass usage 19 Jun 2013; Sébastien Fabbro <bicatali@gentoo.org> metadata.xml: Changed herd to sci-chemistry diff --git a/sci-chemistry/pointless/metadata.xml b/sci-chemistry/pointless/metadata.xml index 1837bbc07a6e..ae9ec7c5f6a4 100644 --- a/sci-chemistry/pointless/metadata.xml +++ b/sci-chemistry/pointless/metadata.xml @@ -1,8 +1,8 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> <pkgmetadata> - <herd>sci-chemistry</herd> - <maintainer> - <email>jlec@gentoo.org</email> - </maintainer> + <herd>sci-chemistry</herd> + <maintainer> + <email>jlec@gentoo.org</email> + </maintainer> </pkgmetadata> diff --git a/sci-chemistry/pointless/pointless-1.6.14-r1.ebuild b/sci-chemistry/pointless/pointless-1.6.14-r1.ebuild new file mode 100644 index 000000000000..2d71071f5316 --- /dev/null +++ b/sci-chemistry/pointless/pointless-1.6.14-r1.ebuild @@ -0,0 +1,52 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/pointless/pointless-1.6.14-r1.ebuild,v 1.1 2013/08/15 11:05:31 jlec Exp $ + +EAPI=5 + +inherit eutils fortran-2 multilib toolchain-funcs + +DESCRIPTION="Scores crystallographic Laue and space groups" +HOMEPAGE="ftp://ftp.mrc-lmb.cam.ac.uk/pub/pre/pointless.html" +SRC_URI="ftp://ftp.mrc-lmb.cam.ac.uk/pub/pre/${P}.tar.gz" + +SLOT="0" +LICENSE="ccp4" +KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux" +IUSE="" + +DEPEND=" + sci-chemistry/ccp4-apps + >=sci-libs/ccp4-libs-6.1.3-r10 + sci-libs/clipper + sci-libs/fftw:2.1 + sci-libs/mmdb + >=sci-libs/cctbx-2010.03.29.2334-r3" +RDEPEND="${DEPEND}" + +S="${WORKDIR}" + +src_prepare() { + epatch "${FILESDIR}"/1.5.1-gcc4.4.patch +} + +src_compile() { + emake \ + -f Makefile.make \ + CC=$(tc-getCC) \ + CXX=$(tc-getCXX) \ + CFLAGS="${CFLAGS}" \ + CXXFLAGS="${CXXFLAGS}" \ + LFLAGS="${LDFLAGS}" \ + CLIB="${EPREFIX}/usr/$(get_libdir)" \ + CCTBX_VERSION=2010 \ + ICCP4=-I"${EPREFIX}/usr/include/ccp4" \ + ITBX="-I${EPREFIX}/usr/include" \ + ICLPR="-I${EPREFIX}/$(python_get_sitedir)/" \ + LTBX="-L${EPREFIX}/usr/$(get_libdir)/cctbx/cctbx_build/lib -lcctbx" \ + SLIB="-L${EPREFIX}/usr/$(get_libdir) -lgfortran" +} + +src_install() { + dobin pointless othercell +} |