From 56bd759df1d0c750a065b8c845e93d5dfa6b549d Mon Sep 17 00:00:00 2001 From: "Robin H. Johnson" Date: Sat, 8 Aug 2015 13:49:04 -0700 Subject: proj/gentoo: Initial commit MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This commit represents a new era for Gentoo: Storing the gentoo-x86 tree in Git, as converted from CVS. This commit is the start of the NEW history. Any historical data is intended to be grafted onto this point. Creation process: 1. Take final CVS checkout snapshot 2. Remove ALL ChangeLog* files 3. Transform all Manifests to thin 4. Remove empty Manifests 5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$ 5.1. Do not touch files with -kb/-ko keyword flags. Signed-off-by: Robin H. Johnson X-Thanks: Alec Warner - did the GSoC 2006 migration tests X-Thanks: Robin H. Johnson - infra guy, herding this project X-Thanks: Nguyen Thai Ngoc Duy - Former Gentoo developer, wrote Git features for the migration X-Thanks: Brian Harring - wrote much python to improve cvs2svn X-Thanks: Rich Freeman - validation scripts X-Thanks: Patrick Lauer - Gentoo dev, running new 2014 work in migration X-Thanks: Michał Górny - scripts, QA, nagging X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed --- app-text/xdvipdfmx/Manifest | 2 + app-text/xdvipdfmx/metadata.xml | 9 ++++ .../xdvipdfmx/xdvipdfmx-0.7.8_p20120701.ebuild | 50 ++++++++++++++++++++++ .../xdvipdfmx/xdvipdfmx-0.7.9_p20130530.ebuild | 45 +++++++++++++++++++ 4 files changed, 106 insertions(+) create mode 100644 app-text/xdvipdfmx/Manifest create mode 100644 app-text/xdvipdfmx/metadata.xml create mode 100644 app-text/xdvipdfmx/xdvipdfmx-0.7.8_p20120701.ebuild create mode 100644 app-text/xdvipdfmx/xdvipdfmx-0.7.9_p20130530.ebuild (limited to 'app-text/xdvipdfmx') diff --git a/app-text/xdvipdfmx/Manifest b/app-text/xdvipdfmx/Manifest new file mode 100644 index 000000000000..ac982646944e --- /dev/null +++ b/app-text/xdvipdfmx/Manifest @@ -0,0 +1,2 @@ +DIST texlive-20120701-source.tar.xz 131904044 SHA256 9666617d5dac3e82578e696835cc9f251ee0a56d162d86dff08659ac5dcb6c81 SHA512 0e8653aa21094e079900d17256f0768ac5514690a3725d96923d5fdc7633484d611441df1af8c674b38b9ce6a8845a9004976cd00635742dfc6837aa433caf5f WHIRLPOOL 9d570a1bd58cca8baed399ab53eb767c7c3db607c00363ce563e14dfccdd235703c538e6a651aa7f2934adf21f8477775f1547f9e7f3d957b89af644c89bcb57 +DIST texlive-20130530-source.tar.xz 179963948 SHA256 a905832e4c04dd1cb16db4bb7baacb78fbc19682bd33ac2697a3a85ce78d79d4 SHA512 4aa85273a675af2453f09777b7cb348c18add77410d72f562c6586f6814d4e7c34b6f3690e3453020654fb0a265339fcabf590d9155367d52846224499af334c WHIRLPOOL 3affaf25d3936505d971599092964b0f0e97d107d22dbac6a85ad547e1d2726a6a09c5075fecb0c6ff8c88bc1bd09d78f95902f76eb76c608f8a7bc42dd6bc33 diff --git a/app-text/xdvipdfmx/metadata.xml b/app-text/xdvipdfmx/metadata.xml new file mode 100644 index 000000000000..5f5d6bb2fac8 --- /dev/null +++ b/app-text/xdvipdfmx/metadata.xml @@ -0,0 +1,9 @@ + + + + tex + + This package provides the extended xdvi to pdf converter + needed to deal with unicode enabled TeX's. + + diff --git a/app-text/xdvipdfmx/xdvipdfmx-0.7.8_p20120701.ebuild b/app-text/xdvipdfmx/xdvipdfmx-0.7.8_p20120701.ebuild new file mode 100644 index 000000000000..10feaa18dfba --- /dev/null +++ b/app-text/xdvipdfmx/xdvipdfmx-0.7.8_p20120701.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="4" + +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="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris" +IUSE="doc" + +RDEPEND="!=media-libs/libpng-1.2.43-r2:0 + app-text/libpaper" +DEPEND="${RDEPEND} + virtual/pkgconfig" +# for dvipdfmx.cfg +RDEPEND="${RDEPEND} + app-text/dvipdfmx" + +S=${WORKDIR}/texlive-${PV#*_p}-source/texk/${PN} + +src_configure() { + # don't do OSX stuff as it breaks on using long gone freetype funcs + export kpse_cv_have_ApplicationServices=no + + econf \ + --with-system-kpathsea \ + --with-system-zlib \ + --with-system-libpng \ + --with-system-freetype2 +} + +src_install() { + emake DESTDIR="${D}" install + dodoc README TODO BUGS AUTHORS ChangeLog ChangeLog.TL + if use doc ; then + insinto /usr/share/doc/${PF} + doins -r doc + fi +} diff --git a/app-text/xdvipdfmx/xdvipdfmx-0.7.9_p20130530.ebuild b/app-text/xdvipdfmx/xdvipdfmx-0.7.9_p20130530.ebuild new file mode 100644 index 000000000000..2828ece15ddf --- /dev/null +++ b/app-text/xdvipdfmx/xdvipdfmx-0.7.9_p20130530.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="5" + +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="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris" +IUSE="" + +RDEPEND="!=media-libs/libpng-1.2.43-r2:0= + app-text/libpaper" +DEPEND="${RDEPEND} + virtual/pkgconfig" +# for dvipdfmx.cfg +RDEPEND="${RDEPEND} + app-text/dvipdfmx" + +S=${WORKDIR}/texlive-${PV#*_p}-source/texk/${PN} + +src_configure() { + # don't do OSX stuff as it breaks on using long gone freetype funcs + export kpse_cv_have_ApplicationServices=no + + econf \ + --with-system-kpathsea \ + --with-system-zlib \ + --with-system-libpng \ + --with-system-freetype2 +} + +src_install() { + emake DESTDIR="${D}" install + dodoc README AUTHORS ChangeLog +} -- cgit v1.2.3-65-gdbad