summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMikle Kolyada <zlogene@gentoo.org>2019-10-25 14:01:02 +0300
committerMikle Kolyada <zlogene@gentoo.org>2019-10-25 14:01:02 +0300
commit4b7c91a05d0495830cfd34b8e85b6533745064a9 (patch)
tree076f96dce635d6617645a65b71482a7548633ef1 /app-text/epspdf/epspdf-0.6.0.ebuild
parentdev-tex/circuit_macros: Drop old (diff)
downloadgentoo-4b7c91a05d0495830cfd34b8e85b6533745064a9.tar.gz
gentoo-4b7c91a05d0495830cfd34b8e85b6533745064a9.tar.bz2
gentoo-4b7c91a05d0495830cfd34b8e85b6533745064a9.zip
app-text/epspdf: port to EAPI=7
Package-Manager: Portage-2.3.76, Repoman-2.3.16 Signed-off-by: Mikle Kolyada <zlogene@gentoo.org>
Diffstat (limited to 'app-text/epspdf/epspdf-0.6.0.ebuild')
-rw-r--r--app-text/epspdf/epspdf-0.6.0.ebuild48
1 files changed, 0 insertions, 48 deletions
diff --git a/app-text/epspdf/epspdf-0.6.0.ebuild b/app-text/epspdf/epspdf-0.6.0.ebuild
deleted file mode 100644
index 91e89b55123a..000000000000
--- a/app-text/epspdf/epspdf-0.6.0.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-
-inherit texlive-common eutils
-
-DESCRIPTION="GUI and command-line converter for [e]ps and pdf"
-HOMEPAGE="http://tex.aanhet.net/epspdf/"
-SRC_URI="http://tex.aanhet.net/epspdf/${PN}.${PV}.tgz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 s390 sh sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
-IUSE="doc tk"
-
-DEPEND=""
-RDEPEND="!<dev-texlive/texlive-pictures-2011-r1
- >=dev-texlive/texlive-basic-2011
- app-text/ghostscript-gpl
- tk? ( dev-lang/tk )"
-
-S=${WORKDIR}/${PN}
-INSTALLDIR=/usr/share/${PN}
-FILES="epspdf.tlu"
-TKFILES="epspdf.help epspdf.ico epspdftk.tcl"
-
-src_install() {
- dodir ${INSTALLDIR}
- cp -p ${FILES} "${ED}/${INSTALLDIR}" || die
- if use tk ; then
- cp -p ${TKFILES} "${ED}/${INSTALLDIR}" || die
- fi
- dobin_texmf_scripts "${PN}/epspdf.tlu"
- use tk && dobin_texmf_scripts "${PN}/epspdftk.tcl"
-
- doinfo doc/epspdf.info
- dodoc doc/Changelog
- if use doc ; then
- dodoc doc/epspdf.pdf
- dohtml -r doc
- fi
-
- # give it a .desktop
- if use tk; then
- make_desktop_entry epspdftk epspdftk "${INSTALLDIR}/epspdf.ico" "Graphics;ImageProcessing"
- fi
-}