# Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/sci-libs/pgplot/pgplot-5.2.2-r2.ebuild,v 1.1 2007/03/09 02:54:50 bicatali Exp $ inherit eutils toolchain-funcs fortran MY_P="${PN}${PV//.}" DESCRIPTION="A C/FORTRAN device-independent graphics library for making simple scientific graphs" HOMEPAGE="http://www.astro.caltech.edu/~tjp/pgplot/" SRC_URI="ftp://ftp.astro.caltech.edu/pub/pgplot/${MY_P}.tar.gz" LICENSE="free-noncomm" SLOT="0" KEYWORDS="~amd64 ~ia64 ~x86" IUSE="doc motif tk" RDEPEND="x11-libs/libX11 media-libs/libpng motif? ( virtual/motif ) tk? ( dev-lang/tk )" DEPEND="${RDEPEND} doc? ( virtual/tetex )" S="${WORKDIR}/${PN}" FORTRAN="g77 gfortran" src_unpack() { fortran_src_unpack ${A} cd "${S}" epatch "${FILESDIR}"/${PN}-drivers.patch epatch "${FILESDIR}"/${PN}-makemake.patch epatch "${FILESDIR}"/${PN}-compile-setup.patch epatch "${FILESDIR}"/${PN}-pgdisp.patch # gfortran does not compile gif, pp and wd drivers # (might change with gfortran 4.2 or 4.3) if [[ "${FORTRANC}" == "gfortran" ]]; then ewarn ewarn "Warning!" elog "gfortran selected: does not yet compile all drivers" elog "disabling gif, wd, and ppd drivers" elog "if you want more drivers, use g77" ewarn sed -i \ -e 's/GIDRIV/! GIDRIV/g' \ -e 's/PPDRIV/! GIDRIV/g' \ -e 's/WDDRIV/! GIDRIV/g' \ drivers.list || die "sed drivers failed" fi # fix pointers for 64 bits if use amd64 -o use ia64; then sed -i \ -e 's/INTEGER PIXMAP/INTEGER*8 PIXMAP/g' \ drivers/{gi,pp,wd}driv.f || die "sed 64bits failed" fi cp sys_linux/g77_gcc.conf local.conf sed -i \ -e "s:FCOMPL=.*:FCOMPL=\"${FORTRANC}\":g" \ -e "s:FFLAGOPT=.*:FFLAGOPT=\"${FFLAGS:- -O2}\":g" \ -e "s:CCOMPL=.*:CCOMPL=\"$(tc-getCC)\":g" \ -e "s:CFLAGOPT=.*:CFLAGOPT=\"${CFLAGS}\":g" \ local.conf || die "sed flags failed" sed -i \ -e "s:/usr/local/pgplot:/usr/$(get_libdir)/pgplot:g" \ -e "s:/usr/local/bin:/usr/bin:g" \ src/grgfil.f makehtml maketex || die "sed path failed" use motif && \ sed -i -e '/XMDRIV/s/!//' drivers.list use tk && \ sed -i -e '/TKDRIV/s/!//' drivers.list } src_compile() { ./makemake "${S}" linux emake -j1 || die "emake failed" # Build C portion make cpg || die "make cpg failed" if use doc; then make pgplot.html || die "make pgplot.html failed" make pgplot-routines.tex || die "make pgplot-routines failed" pdflatex pgplot-routines.tex pdflatex pgplot-routines.tex fi # this just cleans out unneeded files make clean } src_test() { einfo "Testing various demo programs" # i can go to 16 for i in 1 2 3; do make pgdemo${i} # j can also be LATEX CPS... for j in NULL PNG PS CPS LATEX; do local testexe=./test_${j}_${i} echo "./pgdemo${i} < ${testexe} echo "/${j}" >> ${testexe} echo "EOF" >> ${testexe} sh ${testexe} || die "test ${i} failed" done done } src_install() { insinto /usr/$(get_libdir)/pgplot doins grfont.dat grexec.f *.inc rgb.txt # FORTRAN libs dolib.a libpgplot.a dolib.so libpgplot.so dosym libpgplot.so.5 /usr/$(get_libdir)/libpgplot.so dobin pgxwin_server pgdisp # C binding insinto /usr/include doins cpgplot.h dolib.a libcpgplot.a # shared lib: todo eventually in a patch # dolib.so libcpgplot.so # dosym libcpgplot.so.5 /usr/$(get_libdir)/libcpgplot.so if use motif; then doins XmPgplot.h dolib.a libXmPgplot.a fi if use tk; then doins tkpgplot.h dolib.a libtkpgplot.a fi # minimal doc dodoc aaaread.me pgplot.doc newdoc pgdispd/aaaread.me pgdisp.txt if use doc; then dodoc cpg/cpgplot.doc applications/curvefit/curvefit.doc dohtml pgplot.html insinto /usr/share/doc/${PF} doins pgplot-routines.pdf pgplot-routines.tex insinto /usr/share/doc/${PF}/examples doins examples/* cpg/cpgdemo.c insinto /usr/share/doc/${PF}/applications doins -r applications/* if use motif; then insinto /usr/share/doc/${PF}/pgm doins pgmf/* drivers/xmotif/pgmdemo.c fi if use tk; then insinto /usr/share/doc/${PF}/pgtk doins drivers/xtk/pgtkdemo.* fi fi }