diff options
author | Justin Lecher <jlec@gentoo.org> | 2012-10-18 21:33:45 +0000 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2012-10-18 21:33:45 +0000 |
commit | 37ff8af61e84ea90c46237bdcb109e1941783821 (patch) | |
tree | b1252c92465759e643532a23fbf5f0daaaf61f44 /sci-libs/cbflib/cbflib-0.9.2.2.ebuild | |
parent | sci-libs/buddy: Remove virtual/fortran and always call fortran-2_pkg_setup as... (diff) | |
download | historical-37ff8af61e84ea90c46237bdcb109e1941783821.tar.gz historical-37ff8af61e84ea90c46237bdcb109e1941783821.tar.bz2 historical-37ff8af61e84ea90c46237bdcb109e1941783821.zip |
sci-libs/cbflib: Remove virtual/fortran and always call fortran-2_pkg_setup as intend by the updated fortran-2.eclass
Package-Manager: portage-2.2.0_alpha141/cvs/Linux x86_64
Manifest-Sign-Key: 0x8009D6F070EB7916
Diffstat (limited to 'sci-libs/cbflib/cbflib-0.9.2.2.ebuild')
-rw-r--r-- | sci-libs/cbflib/cbflib-0.9.2.2.ebuild | 71 |
1 files changed, 0 insertions, 71 deletions
diff --git a/sci-libs/cbflib/cbflib-0.9.2.2.ebuild b/sci-libs/cbflib/cbflib-0.9.2.2.ebuild deleted file mode 100644 index dfb6fa6f21fd..000000000000 --- a/sci-libs/cbflib/cbflib-0.9.2.2.ebuild +++ /dev/null @@ -1,71 +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/cbflib/cbflib-0.9.2.2.ebuild,v 1.3 2012/02/17 19:37:14 xarthisius Exp $ - -EAPI=4 - -inherit eutils flag-o-matic fortran-2 toolchain-funcs - -MY_P1="CBFlib-${PV}" -#MY_P2="CBFlib_${PV}" -MY_P2="CBFlib_0.9.2" - -DESCRIPTION="Library providing a simple mechanism for accessing CBF files and imgCIF files" -HOMEPAGE="http://www.bernstein-plus-sons.com/software/CBF/" -SRC_URI="mirror://sourceforge/${PN}/${MY_P1}.tar.gz - test? ( - mirror://sourceforge/${PN}/${MY_P2}_Data_Files_Input.tar.gz - mirror://sourceforge/${PN}/${MY_P2}_Data_Files_Output.tar.gz - )" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux" -IUSE="doc test" - -DEPEND="virtual/fortran" -RDEPEND="${DEPEND}" -#test? ( sys-process/time )" - -S=${WORKDIR}/${MY_P1} - -src_prepare(){ - rm -rf Py* drel* dRel* ply* - epatch "${FILESDIR}"/${PV}-Makefile.patch - cp Makefile_LINUX_gcc42 Makefile - - append-fflags -fno-range-check - append-cflags -D_USE_XOPEN_EXTENDED -DCBF_DONT_USE_LONG_LONG - - sed \ - -e "s|^CC.*$|CC = $(tc-getCC)|" \ - -e "s|^C++.*$|C++ = $(tc-getCXX)|" \ - -e "s|C++|CXX|g" \ - -e "s|^CFLAGS.*$|CFLAGS = ${CFLAGS}|" \ - -e "s|^F90C.*$|F90C = $(tc-getFC)|" \ - -e "s|^F90FLAGS.*$|F90FLAGS = ${FFLAGS}|" \ - -e "s|^SOLDFLAGS.*$|SOLDFLAGS = -shared ${LDFLAGS}|g" \ - -e "s| /bin| ${EPREFIX}/bin|g" \ - -e "s|/usr|${EPREFIX}/usr|g" \ - -i Makefile || die -} - -src_compile() { - emake -j1 shared -} - -src_test(){ - emake -j1 basic -} - -src_install() { - insinto /usr/include/${PN} - doins include/*.h - - dolib.so solib/lib* - - dodoc README - if use doc; then - dohtml -r README.html html_graphics doc - fi -} |