summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexis Ballier <aballier@gentoo.org>2010-10-24 14:30:26 +0000
committerAlexis Ballier <aballier@gentoo.org>2010-10-24 14:30:26 +0000
commit8431debac07e5525e5dbbf8e2eda2f70d61cdd5a (patch)
tree9ed65c147a0e57f301baa64416f3b3bdb3b60b8e
parentstable ppc, bug 342323 (diff)
downloadgentoo-2-8431debac07e5525e5dbbf8e2eda2f70d61cdd5a.tar.gz
gentoo-2-8431debac07e5525e5dbbf8e2eda2f70d61cdd5a.tar.bz2
gentoo-2-8431debac07e5525e5dbbf8e2eda2f70d61cdd5a.zip
Bump it to the TeX Live 2010 version so that we can remove it from texlive-core
(Portage version: 2.2.0_alpha1/cvs/Linux x86_64)
-rw-r--r--app-text/xdvipdfmx/ChangeLog9
-rw-r--r--app-text/xdvipdfmx/xdvipdfmx-0.7.8_p20100722.ebuild44
2 files changed, 52 insertions, 1 deletions
diff --git a/app-text/xdvipdfmx/ChangeLog b/app-text/xdvipdfmx/ChangeLog
index 824c476380e7..ea23d876bd57 100644
--- a/app-text/xdvipdfmx/ChangeLog
+++ b/app-text/xdvipdfmx/ChangeLog
@@ -1,6 +1,13 @@
# ChangeLog for app-text/xdvipdfmx
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/xdvipdfmx/ChangeLog,v 1.30 2010/06/12 16:20:21 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/xdvipdfmx/ChangeLog,v 1.31 2010/10/24 14:30:26 aballier Exp $
+
+*xdvipdfmx-0.7.8_p20100722 (24 Oct 2010)
+
+ 24 Oct 2010; Alexis Ballier <aballier@gentoo.org>
+ +xdvipdfmx-0.7.8_p20100722.ebuild:
+ Bump it to the TeX Live 2010 version so that we can remove it from
+ texlive-core
12 Jun 2010; Alexis Ballier <aballier@gentoo.org> xdvipdfmx-0.4.ebuild:
fix description, by Nick Bowler <nbowler@draconx.ca>, bug #304049
diff --git a/app-text/xdvipdfmx/xdvipdfmx-0.7.8_p20100722.ebuild b/app-text/xdvipdfmx/xdvipdfmx-0.7.8_p20100722.ebuild
new file mode 100644
index 000000000000..b1d6f5ce82a2
--- /dev/null
+++ b/app-text/xdvipdfmx/xdvipdfmx-0.7.8_p20100722.ebuild
@@ -0,0 +1,44 @@
+# Copyright 1999-2010 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/app-text/xdvipdfmx/xdvipdfmx-0.7.8_p20100722.ebuild,v 1.1 2010/10/24 14:30:26 aballier Exp $
+
+EAPI="3"
+
+DESCRIPTION="Extended dvipdfmx for use with XeTeX and other unicode TeXs."
+HOMEPAGE="http://scripts.sil.org/svn-view/xdvipdfmx/
+ http://tug.org/texlive/"
+SRC_URI="mirror://gentoo/texlive-${PV#*_p}-source.tar.xz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="doc"
+
+RDEPEND="!<app-text/texlive-core-2010
+ dev-libs/kpathsea
+ sys-libs/zlib
+ media-libs/freetype:2
+ media-libs/fontconfig
+ >=media-libs/libpng-1.2.43-r2:0
+ app-text/libpaper"
+DEPEND="${RDEPEND}
+ dev-util/pkgconfig"
+
+S=${WORKDIR}/texlive-${PV#*_p}-source/texk/${PN}
+
+src_configure() {
+ econf \
+ --with-system-kpathsea \
+ --with-system-zlib \
+ --with-system-libpng \
+ --with-system-freetype2
+}
+
+src_install() {
+ emake DESTDIR="${D}" install || die "Install failed"
+ dodoc README TODO BUGS AUTHORS ChangeLog ChangeLog.TL || die
+ if use doc ; then
+ insinto /usr/share/doc/${PF}
+ doins -r doc || die
+ fi
+}