diff options
Diffstat (limited to 'media-libs/plotutils/plotutils-2.4.1-r3.ebuild')
-rw-r--r-- | media-libs/plotutils/plotutils-2.4.1-r3.ebuild | 82 |
1 files changed, 82 insertions, 0 deletions
diff --git a/media-libs/plotutils/plotutils-2.4.1-r3.ebuild b/media-libs/plotutils/plotutils-2.4.1-r3.ebuild new file mode 100644 index 000000000000..6e894b172b2d --- /dev/null +++ b/media-libs/plotutils/plotutils-2.4.1-r3.ebuild @@ -0,0 +1,82 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-libs/plotutils/plotutils-2.4.1-r3.ebuild,v 1.1 2004/04/26 10:05:59 lanius Exp $ + +IUSE="X" + +inherit libtool + +#The plotutils package contains extra X fonts. These fonts are not installed +#in the current ebuild. The commented out ebuild lines below are for future +#reference when this ebuild may be updated to install the fonts. +#NOTE: The current method does not play nice with X and sandbox. Most of the +#font installation procedures should probably be moved to pkg_postinst. +#See Bug# 30 at http://bugs.gentoo.org/show_bug.cgi?id=30 + +DESCRIPTION="a powerful C/C++ function library for exporting 2-D vector graphics" +SRC_URI="ftp://ftp.gnu.org/gnu/plotutils/${P}.tar.gz" +HOMEPAGE="http://www.gnu.org/software/plotutils/" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~x86 ~ppc ~sparc ~alpha ~amd64 ~ia64" + +DEPEND="media-libs/libpng + X? ( virtual/x11 )" + + +# Filter out k6 from the CFLAGS +export CFLAGS="${CFLAGS/k6-3/i586}" +export CFLAGS="${CFLAGS/k6-2/i586}" +export CFLAGS="${CFLAGS/k6/i586}" +export CXXFLAGS="${CFLAGS}" + +src_unpack() { + unpack ${A} + cd ${S} + epatch ${FILESDIR}/plotutils-2.4.1-gentoo.patch + epatch ${FILESDIR}/plotutils-2.4.1-rangecheck.patch +} + +src_compile() { + elibtoolize + + #enable build of C++ version + local myconf="--enable-libplotter" + + #The following two additional configure options may be of interest + #to users with specific printers, i.e. HP LaserJets with PCL 5 or HP-GL/2. + #Not sure if enabling screws the pooch for those without these printers. + #--enable-ps-fonts-in-pcl --enable-lj-fonts-in-ps + + use X \ + && myconf="${myconf} --with-x --enable-libxmi" \ + || myconf="${myconf} --without-x" + + econf ${myconf} || die "./configure failed" + emake || die "Parallel Make Failed" +} + +src_install () { + einstall \ + datadir=${D}/usr/share || die "Installation Failed" + + dodoc AUTHORS COMPAT COPYING ChangeLog INSTALL* \ + KNOWN_BUGS NEWS ONEWS PROBLEMS README THANKS TODO +} + +pkg_postinst() { + if [ 'use X' ] ; then + einfo "There are extra fonts available in plotutils package." + einfo "The current ebuild does not install them for you." + einfo "You may want to do so, but you will have to do it" + einfo "manually. You are on your own for now." + einfo "See /usr/share/doc/${P}/INSTALL.fonts" + einfo "" + einfo "If you manually install the extra fonts and use the" + einfo "program xfig, you might want to recompile to take" + einfo "advantage of the additional ps fonts." + einfo "Also, it is possible to enable ghostscript and possibly" + einfo "your printer to use the HP fonts." + fi +} |