blob: 35b7260770c2b22f1d058047f392692e29a41d0a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
inherit cernlib
DESCRIPTION="CERN's Physics Analysis Workstation data analysis program"
HOMEPAGE="http://wwwasd.web.cern.ch/wwwasd/paw/index.html"
DEPEND="x11-libs/xbae"
src_unpack() {
cernlib_unpack
# fix some path stuff and collision for comis.h, already installed by cernlib
sed -i \
-e '/comis.h/d' \
-e "s/g77/${FORTRANC}/g" \
"${S}"/debian/add-ons/Makefile || die "sed failed"
cernlib_patch
}
|