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-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /usr/local/cvs/epix/epix.ebuild,v 1.1 2005/01/13 14:43:30 hwang 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"
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
}
|