summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexis Ballier <aballier@gentoo.org>2013-07-06 00:53:26 +0000
committerAlexis Ballier <aballier@gentoo.org>2013-07-06 00:53:26 +0000
commit70c61b987dde4d946272bdcd11d2e2c01f0599e4 (patch)
tree5b96bff06e3eeec65b18fdd1a0167942f94508b1 /dev-tex
parenthonour TEXMF from latex-package.eclass (diff)
downloadgentoo-2-70c61b987dde4d946272bdcd11d2e2c01f0599e4.tar.gz
gentoo-2-70c61b987dde4d946272bdcd11d2e2c01f0599e4.tar.bz2
gentoo-2-70c61b987dde4d946272bdcd11d2e2c01f0599e4.zip
revbump to make sure everyone gets the texmf change
(Portage version: 2.2.0_alpha186/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
Diffstat (limited to 'dev-tex')
-rw-r--r--dev-tex/dvipost/ChangeLog7
-rw-r--r--dev-tex/dvipost/dvipost-1.1-r2.ebuild39
2 files changed, 45 insertions, 1 deletions
diff --git a/dev-tex/dvipost/ChangeLog b/dev-tex/dvipost/ChangeLog
index 53b4aac767fb..b6503b5ba6f0 100644
--- a/dev-tex/dvipost/ChangeLog
+++ b/dev-tex/dvipost/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for dev-tex/dvipost
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-tex/dvipost/ChangeLog,v 1.31 2013/07/06 00:51:10 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-tex/dvipost/ChangeLog,v 1.32 2013/07/06 00:53:26 aballier Exp $
+
+*dvipost-1.1-r2 (06 Jul 2013)
+
+ 06 Jul 2013; Alexis Ballier <aballier@gentoo.org> +dvipost-1.1-r2.ebuild:
+ revbump to make sure everyone gets the texmf change
06 Jul 2013; Alexis Ballier <aballier@gentoo.org> dvipost-1.1-r1.ebuild:
honour TEXMF from latex-package.eclass
diff --git a/dev-tex/dvipost/dvipost-1.1-r2.ebuild b/dev-tex/dvipost/dvipost-1.1-r2.ebuild
new file mode 100644
index 000000000000..b798f3ccbedc
--- /dev/null
+++ b/dev-tex/dvipost/dvipost-1.1-r2.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2013 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/dev-tex/dvipost/dvipost-1.1-r2.ebuild,v 1.1 2013/07/06 00:53:26 aballier Exp $
+
+EAPI="2"
+
+inherit latex-package eutils toolchain-funcs
+
+DESCRIPTION="post processor for dvi files"
+HOMEPAGE="http://efeu.cybertec.at/index_en.html"
+SRC_URI="http://efeu.cybertec.at/dist/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x64-macos ~x86-macos"
+IUSE=""
+
+src_prepare() {
+ tc-export CC
+ epatch "${FILESDIR}"/${PV}-ldflags.patch
+}
+
+src_compile() {
+ emake || die
+}
+
+src_install() {
+ dobin dvipost || die
+ dosym dvipost /usr/bin/pptex || die
+ dosym dvipost /usr/bin/pplatex || die
+
+ insinto ${TEXMF}/tex/latex/misc/
+ insopts -m0644
+ doins dvipost.sty || die
+
+ dodoc dvipost.doc CHANGELOG NOTES README || die
+ dohtml dvipost.html || die
+ newman "${S}"/dvipost.man dvipost.1 || die
+}