blob: fa709e3087ddbc0aba1612f87ebbdc51e22e4ce3 (
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
35
36
37
38
39
40
41
42
43
44
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/epix/epix-1.0.0.ebuild,v 1.3 2005/05/09 17:33:37 dholm 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}_complete.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 amd64 ~ppc"
IUSE=""
DEPEND="virtual/tetex"
RDEPEND="app-shells/bash
>=sys-apps/sed-4"
src_compile() {
filter-flags -O1 -O2 -O3 -Os
make CXX="$(tc-getCXX)" CFLAGS="-c -Wall ${CXXFLAGS}" prefix="${D}/usr" all || die "emake failed."
echo > README.gentoo -e "The full documentation is well hidden in the epix*howto.ps.gz-file in the tutorial subdirectory"
}
src_test() {
make CXX="$(tc-getCXX)" CFLAGS="${CFLAGS}" prefix="${D}/usr" test
}
src_install() {
make CXX="$(tc-getCXX)" CFLAGS="${CFLAGS}" prefix="${D}/usr" install || die
dodoc README.gentoo
cd ${D}/usr/share/${PN}
rm notes/COPYING
rm notes/INSTALL
dodoc notes/*
rm -rf notes
insinto /usr/share/doc/${PF}/tutorial
doins tutorial/*
insinto /usr/share/doc/${PF}/tutorial/contrib
doins tutorial/contrib/*
rm -rf tutorial
}
|