diff options
author | Justin Lecher <jlec@gentoo.org> | 2012-04-28 08:04:55 +0000 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2012-04-28 08:04:55 +0000 |
commit | 9d4e82cd4c78dbebe31329d11d63d109ec97d562 (patch) | |
tree | 41d91fb0b20690dc1263660e90bc42d1c21a858a /sci-chemistry | |
parent | Mask dev-ruby/facets for removal. (diff) | |
download | gentoo-2-9d4e82cd4c78dbebe31329d11d63d109ec97d562.tar.gz gentoo-2-9d4e82cd4c78dbebe31329d11d63d109ec97d562.tar.bz2 gentoo-2-9d4e82cd4c78dbebe31329d11d63d109ec97d562.zip |
sci-chemistry/imosflm: Dropped old
(Portage version: 2.2.0_alpha101/cvs/Linux x86_64)
Diffstat (limited to 'sci-chemistry')
-rw-r--r-- | sci-chemistry/imosflm/ChangeLog | 7 | ||||
-rw-r--r-- | sci-chemistry/imosflm/imosflm-1.0.4.ebuild | 75 |
2 files changed, 5 insertions, 77 deletions
diff --git a/sci-chemistry/imosflm/ChangeLog b/sci-chemistry/imosflm/ChangeLog index e2a7df815c50..0a6993b998a4 100644 --- a/sci-chemistry/imosflm/ChangeLog +++ b/sci-chemistry/imosflm/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sci-chemistry/imosflm -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/imosflm/ChangeLog,v 1.10 2011/12/11 09:14:36 phajdan.jr Exp $ +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/imosflm/ChangeLog,v 1.11 2012/04/28 08:04:55 jlec Exp $ + + 28 Apr 2012; Justin Lecher <jlec@gentoo.org> -imosflm-1.0.4.ebuild: + Dropped old 11 Dec 2011; Pawel Hajdan jr <phajdan.jr@gentoo.org> imosflm-1.0.5.ebuild: x86 stable wrt bug #352051 diff --git a/sci-chemistry/imosflm/imosflm-1.0.4.ebuild b/sci-chemistry/imosflm/imosflm-1.0.4.ebuild deleted file mode 100644 index 791b9bcce6fb..000000000000 --- a/sci-chemistry/imosflm/imosflm-1.0.4.ebuild +++ /dev/null @@ -1,75 +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/imosflm/imosflm-1.0.4.ebuild,v 1.8 2011/10/16 12:26:02 ssuominen Exp $ - -EAPI="3" - -inherit eutils toolchain-funcs versionator - -MY_PV="$(delete_all_version_separators ${PV})" - -DESCRIPTION="A new GUI for the Mosflm crystallographic data processing tool" -HOMEPAGE="http://www.mrc-lmb.cam.ac.uk/harry/imosflm" -SRC_URI="${HOMEPAGE}/ver${MY_PV}/downloads/${P}.zip" - -LICENSE="ccp4" -SLOT="0" -KEYWORDS="amd64 ~ppc ~x86 ~amd64-linux ~x86-linux" -IUSE="" - -RDEPEND=" - dev-lang/tcl - >=dev-tcltk/itcl-3.3 - >=dev-tcltk/itk-3.3 - >=dev-tcltk/iwidgets-4 - >=dev-tcltk/tdom-0.8 - >=dev-tcltk/tkimg-1.3 - >=dev-tcltk/tktreectrl-2.1 - dev-tcltk/anigif - dev-tcltk/combobox - dev-tcltk/tablelist - >=sci-chemistry/mosflm-7.0.4" -DEPEND="app-arch/unzip" - -S="${WORKDIR}"/${PN} - -src_prepare() { - epatch \ - "${FILESDIR}"/${PV}-tk.patch \ - "${FILESDIR}"/${PV}-impl-dec.patch -} - -src_compile() { - cd c - - objs="tkImageLoadDLL.o tkImageLoad.o" - libs="-ltclstub -ltkstub" - config="-fPIC -DUSE_TCL_STUBS -DTK_USE_STUBS" - ldextra="-shared" - - for file in ${objs}; do - einfo "$(tc-getCC) -c ${CFLAGS} ${config} ${file/.o/.c} -o ${file}" - $(tc-getCC) -c ${CFLAGS} ${config} ${file/.o/.c} -o ${file} - done - - einfo "$(tc-getCC) ${LDFLAGS} ${ldextra} ${objs} -o tkImageLoad.so ${libs}" - $(tc-getCC) ${LDFLAGS} ${ldextra} ${objs} -o tkImageLoad.so ${libs} -} - -src_install(){ - rm -rf lib/{*.so,anigif,combobox} - - insinto /usr/$(get_libdir)/${PN} - doins -r "${S}"/{src,bitmaps,lib} - fperms 775 /usr/$(get_libdir)/${PN}/src/imosflm - - dolib.so c/tkImageLoad.so - - cat >> "${T}"/23imosflm <<- EOF - IMOSFLM_VERSION="${PV}" - EOF - - doenvd "${T}"/23imosflm - - make_wrapper imosflm /usr/$(get_libdir)/${PN}/src/imosflm -} |