diff options
author | Alexis Ballier <aballier@gentoo.org> | 2013-06-25 21:48:33 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2013-06-25 21:48:33 +0000 |
commit | 14b8e1e8b0b27c37eca175c42a1a74a4920ab149 (patch) | |
tree | d9ea4a75ba2ca5179823fd1a2f2d75667a3a72a6 /app-text/xdvipdfmx | |
parent | remove old (diff) | |
download | gentoo-2-14b8e1e8b0b27c37eca175c42a1a74a4920ab149.tar.gz gentoo-2-14b8e1e8b0b27c37eca175c42a1a74a4920ab149.tar.bz2 gentoo-2-14b8e1e8b0b27c37eca175c42a1a74a4920ab149.zip |
remove old
(Portage version: 2.2.0_alpha185/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
Diffstat (limited to 'app-text/xdvipdfmx')
-rw-r--r-- | app-text/xdvipdfmx/ChangeLog | 7 | ||||
-rw-r--r-- | app-text/xdvipdfmx/files/xdvipdfmx-0.4-ft2-internals.patch | 58 | ||||
-rw-r--r-- | app-text/xdvipdfmx/xdvipdfmx-0.4.ebuild | 38 | ||||
-rw-r--r-- | app-text/xdvipdfmx/xdvipdfmx-0.7.8_p20100722.ebuild | 44 | ||||
-rw-r--r-- | app-text/xdvipdfmx/xdvipdfmx-0.7.8_p20110705.ebuild | 47 |
5 files changed, 6 insertions, 188 deletions
diff --git a/app-text/xdvipdfmx/ChangeLog b/app-text/xdvipdfmx/ChangeLog index 8232fadb717f..5f8c079b9658 100644 --- a/app-text/xdvipdfmx/ChangeLog +++ b/app-text/xdvipdfmx/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-text/xdvipdfmx # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/xdvipdfmx/ChangeLog,v 1.69 2013/04/25 21:25:54 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/xdvipdfmx/ChangeLog,v 1.70 2013/06/25 21:48:32 aballier Exp $ + + 25 Jun 2013; Alexis Ballier <aballier@gentoo.org> -xdvipdfmx-0.4.ebuild, + -xdvipdfmx-0.7.8_p20100722.ebuild, -xdvipdfmx-0.7.8_p20110705.ebuild, + -files/xdvipdfmx-0.4-ft2-internals.patch: + remove old 25 Apr 2013; Agostino Sarubbo <ago@gentoo.org> xdvipdfmx-0.7.8_p20120701.ebuild: diff --git a/app-text/xdvipdfmx/files/xdvipdfmx-0.4-ft2-internals.patch b/app-text/xdvipdfmx/files/xdvipdfmx-0.4-ft2-internals.patch deleted file mode 100644 index 84f7d5664c1d..000000000000 --- a/app-text/xdvipdfmx/files/xdvipdfmx-0.4-ft2-internals.patch +++ /dev/null @@ -1,58 +0,0 @@ -Index: src/dvi.c -=================================================================== ---- src/dvi.c (revision 92) -+++ src/dvi.c (revision 93) -@@ -1901,6 +1901,9 @@ - } - } - -+/* globals initialized by fontmap.c when it opens freetype */ -+extern FT_Int ft_major, ft_minor, ft_patch; -+ - static void - do_glyph_array (int yLocsPresent) - { -@@ -1938,8 +1941,10 @@ - glyph_id = get_buffered_unsigned_pair(); /* freetype glyph index */ - if (glyph_id < font->ft_face->num_glyphs) { - if (font->glyph_widths[glyph_id] == 0xffff) { -- if (FT_IS_SFNT(font->ft_face)) { -- /* CFF driver of freetype does not set vertical metrics correctly, -+ if (FT_IS_SFNT(font->ft_face) -+ && ((ft_major < 2) || ((ft_major == 2) && (ft_minor < 2)))) { -+ /* prior to version 2.2.0, -+ CFF driver of freetype does not set vertical metrics correctly, - so we'll read the metrics directly */ - TT_HoriHeader *dir_hea; /* vhea structure is identical */ - dir_hea = FT_Get_Sfnt_Table(font->ft_face, (font->layout_dir == 0) -Index: src/fontmap.c -=================================================================== ---- src/fontmap.c (revision 92) -+++ src/fontmap.c (revision 93) -@@ -1070,6 +1070,10 @@ - return error; - } - -+FT_Int ft_major; /* global so that dvi.c can check the version */ -+FT_Int ft_minor; -+FT_Int ft_patch; -+ - int - pdf_load_native_font (const char *ps_name, - const char *fam_name, const char *sty_name, -@@ -1085,6 +1089,7 @@ - WARN("FreeType initialization failed."); - return error; - } -+ FT_Library_Version(ftLib, &ft_major, &ft_minor, &ft_patch); - sInitialized = 1; - } - -@@ -1139,6 +1144,7 @@ - WARN("FreeType initialization failed."); - return error; - } -+ FT_Library_Version(ftLib, &ft_major, &ft_minor, &ft_patch); - sInitialized = 1; - } - diff --git a/app-text/xdvipdfmx/xdvipdfmx-0.4.ebuild b/app-text/xdvipdfmx/xdvipdfmx-0.4.ebuild deleted file mode 100644 index 8d6756e5b2f3..000000000000 --- a/app-text/xdvipdfmx/xdvipdfmx-0.4.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# 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.4.ebuild,v 1.11 2010/06/12 16:20:21 aballier Exp $ - -inherit eutils - -DESCRIPTION="Extended dvipdfmx for use with XeTeX and other unicode TeXs." -HOMEPAGE="http://scripts.sil.org/svn-view/xdvipdfmx/" -SRC_URI="http://scripts.sil.org/svn-view/xdvipdfmx/TAGS/${P}.tar.gz" - -LICENSE="GPL-2-with-linking-exception" -SLOT="0" -KEYWORDS="alpha amd64 hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd" -IUSE="" - -DEPEND=">=media-libs/freetype-2.0 virtual/latex-base" - -src_unpack() { - unpack ${A} - cd "${S}" - - epatch "${FILESDIR}/${P}-ft2-internals.patch" -} - -src_compile() { - chmod +x configure -# sh ./configure --prefix=/usr \ - econf \ - --with-ft2lib=/usr/lib/libfreetype.so \ - --with-ft2include=/usr/include/freetype2 || die "econf failed" - - emake || die "emake failed" -} - -src_install() { - emake DESTDIR="${D}" install || die "Install failed" - dodoc README doc/tug2003.pdf doc/CJK-CID.txt doc/images/dvipdfm-cjk.png doc/images/dvipdfmx-logo.png doc/images/rightarrow.png doc/images/right_triangle.png doc/images/dvipdfmx.png TODO BUGS AUTHORS -} diff --git a/app-text/xdvipdfmx/xdvipdfmx-0.7.8_p20100722.ebuild b/app-text/xdvipdfmx/xdvipdfmx-0.7.8_p20100722.ebuild deleted file mode 100644 index f0c0596b1ef6..000000000000 --- a/app-text/xdvipdfmx/xdvipdfmx-0.7.8_p20100722.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2012 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.15 2012/05/04 03:33:12 jdhore 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="alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~x86-fbsd" -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} - virtual/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 -} diff --git a/app-text/xdvipdfmx/xdvipdfmx-0.7.8_p20110705.ebuild b/app-text/xdvipdfmx/xdvipdfmx-0.7.8_p20110705.ebuild deleted file mode 100644 index d7205d7bca65..000000000000 --- a/app-text/xdvipdfmx/xdvipdfmx-0.7.8_p20110705.ebuild +++ /dev/null @@ -1,47 +0,0 @@ -# Copyright 1999-2012 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_p20110705.ebuild,v 1.11 2012/12/07 23:10:56 ago 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="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~amd64-fbsd ~x86-fbsd" -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} - virtual/pkgconfig" -# for dvipdfmx.cfg -RDEPEND="${RDEPEND} - app-text/dvipdfmx" - -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 -} |