summaryrefslogtreecommitdiff
path: root/sci-physics/heppdt
diff options
context:
space:
mode:
authorGerhard Bräunlich <wippbox@gmx.net>2016-11-12 16:32:46 +0100
committerDavid Seifert <soap@gentoo.org>2016-11-14 08:24:42 +0100
commitf4835618de5db043b87f72c24cb306a8781a9c33 (patch)
treefce98c48f63846a2dfe96e5e324ed957de2bd51d /sci-physics/heppdt
parent0d13a852787db232a3699632b3f6d4004a1c1738 (diff)
downloadgentoo-f4835618de5db043b87f72c24cb306a8781a9c33.tar.gz
gentoo-f4835618de5db043b87f72c24cb306a8781a9c33.tar.xz
sci-physics/heppdt: Removing EAPI 4 version 3.04.01
Package-Manager: portage-2.3.0 Closes: https://github.com/gentoo/gentoo/pull/2824 Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'sci-physics/heppdt')
-rw-r--r--sci-physics/heppdt/heppdt-3.04.01.ebuild50
1 files changed, 0 insertions, 50 deletions
diff --git a/sci-physics/heppdt/heppdt-3.04.01.ebuild b/sci-physics/heppdt/heppdt-3.04.01.ebuild
deleted file mode 100644
index e2f5d2b715d..00000000000
--- a/sci-physics/heppdt/heppdt-3.04.01.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=4
-inherit autotools
-
-MYP=HepPDT-${PV}
-
-DESCRIPTION="Data about each particle from the Review of Particle Properties"
-HOMEPAGE="http://lcgapp.cern.ch/project/simu/HepPDT/"
-SRC_URI="${HOMEPAGE}/download/${MYP}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux"
-IUSE="doc examples static-libs"
-
-RDEPEND=""
-DEPEND="${RDEPEND}"
-
-S="${WORKDIR}/${MYP}"
-
-src_prepare() {
- # respect user flags
- sed -i \
- -e '/AC_SUBST(AM_CXXFLAGS)/d' \
- configure.ac || die
- # directories
- sed -i \
- -e 's:$(prefix)/data:$(datadir)/${PN}:g' \
- data/Makefile.am || die
- eautoreconf
-}
-
-src_configure() {
- econf $(use_enable static-libs static)
-}
-
-src_test() {
- LD_LIBRARY_PATH="${S}/src/HepPDT:${S}/src/HepPID" \
- emake check MY_LD=-L SHEXT=so
-}
-
-src_install() {
- default
- use doc && mv "${ED}"usr/doc/* "${ED}"usr/share/doc/${PF}/
- use examples && mv "${ED}"usr/examples "${ED}"usr/share/doc/${PF}/
- rm -r "${ED}"usr/{doc,examples}
-}