# Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 # $Header: $ # Short one-line description of this package. DESCRIPTION="fig2ps is a perl script which converts xfig files to postscript or PDF, processing text with LaTeX." # Homepage, not used by Portage directly but handy for developer reference HOMEPAGE="http://fig2ps.sourceforge.net/" # Point to any required sources; these will be automatically downloaded by # Portage. SRC_URI="mirror://sourceforge/fig2ps/fig2ps_${PV}.tar.gz" # License of the package. This must match the name of file(s) in # /usr/portage/licenses/. For complex license combination see the developer # docs on gentoo.org for details. LICENSE="GPL" SLOT="0" KEYWORDS="~x86" # Comprehensive list of any and all USE flags leveraged in the ebuild, # with the exception of any ARCH specific flags, i.e. "ppc", "sparc", # "x86" and "alpha". This is a required variable. If the # ebuild doesn't use any USE flags, set to "". IUSE="" # according to README for fig2ps DEPEND=">=dev-lang/perl-5.8 app-text/tetex app-text/ghostscript media-gfx/transfig" # Run-time dependencies, same as DEPEND if RDEPEND isn't defined: #RDEPEND="" # Source directory; the dir where the sources can be found (automatically # unpacked) inside ${WORKDIR}. S will get a default setting of ${WORKDIR}/${P} # if you omit this line. #S=${WORKDIR}/${P} #src_compile() { #} src_install() { make install DESTDIR=${D} || die }