blob: 0a92e9e81390a2fb4a921fe6f0689b2580a257a3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-visualization/epix/epix-1.0.24.ebuild,v 1.2 2007/06/11 08:42:11 cryos Exp $
inherit toolchain-funcs flag-o-matic
DESCRIPTION="2- and 3-D plotter for creating images (to be used in LaTeX)"
HOMEPAGE="http://mathcs.holycross.edu/~ahwang/current/ePiX.html"
SRC_URI="http://mathcs.holycross.edu/~ahwang/epix/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~ppc ~x86"
IUSE=""
DEPEND="virtual/tetex"
RDEPEND="app-shells/bash
>=sys-apps/sed-4"
src_unpack() {
unpack ${A}
cd "${S}"
sed -e 's:doc/${PACKAGE_TARNAME}:doc/${PACKAGE_TARNAME}-${PACKAGE_VERSION}:' \
-i configure || die "sed on configure failed"
sed -e "s:stdout:null:" -e "s:stderr:null:" -i epix-lib.sh || \
die "failed to fix epix-lib"
}
src_install() {
make DESTDIR="${D}" install || die "install failed"
}
|