# Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/app-text/a2ps/a2ps-4.13b-r4.ebuild,v 1.16 2004/06/24 22:26:44 agriffis Exp $ inherit gnuconfig S=${WORKDIR}/${P/b/} DESCRIPTION="Any to PostScript filter" SRC_URI="ftp://ftp.enst.fr/pub/unix/a2ps/${P}.tar.gz" HOMEPAGE="http://www-inf.enst.fr/~demaille/a2ps/" SLOT="0" LICENSE="GPL-2" KEYWORDS="x86 ppc sparc alpha" IUSE="nls tetex" DEPEND=">=dev-util/gperf-2.7.2 virtual/ghostscript >=app-text/psutils-1.17 tetex? ( virtual/tetex )" RDEPEND="${DEPEND} nls? ( sys-devel/gettext )" src_unpack() { unpack ${A} if use alpha; then gnuconfig_update || die "gnuconfig_update failed" fi } src_compile() { econf --sysconfdir=/etc/a2ps \ --includedir=/usr/include \ `use_enable nls` || die "econf failed" emake || die "emake failed" } src_install() { dodir /usr/share/emacs/site-lisp einstall \ sysconfdir=${D}/etc/a2ps \ includedir=${D}/usr/include \ lispdir=${D}/usr/share/emacs/site-lisp \ || die "einstall failed" dodoc ANNOUNCE AUTHORS ChangeLog FAQ NEWS README THANKS TODO }