diff options
Diffstat (limited to 'media-gfx/epix/epix-1.0.0.ebuild')
-rw-r--r-- | media-gfx/epix/epix-1.0.0.ebuild | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/media-gfx/epix/epix-1.0.0.ebuild b/media-gfx/epix/epix-1.0.0.ebuild new file mode 100644 index 000000000000..b9fb31eb683b --- /dev/null +++ b/media-gfx/epix/epix-1.0.0.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2004 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.1 2004/12/24 01:12:57 ribosome 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 +} |