summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--app-text/texlive-core/ChangeLog6
-rw-r--r--app-text/texlive-core/files/texmf-update89
-rw-r--r--app-text/texlive-core/texlive-core-2007-r13.ebuild277
3 files changed, 5 insertions, 367 deletions
diff --git a/app-text/texlive-core/ChangeLog b/app-text/texlive-core/ChangeLog
index fb254c907490..36bab94ee33b 100644
--- a/app-text/texlive-core/ChangeLog
+++ b/app-text/texlive-core/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for app-text/texlive-core
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/texlive-core/ChangeLog,v 1.105 2009/06/10 13:49:17 alexxy Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/texlive-core/ChangeLog,v 1.106 2009/06/20 14:58:15 aballier Exp $
+
+ 20 Jun 2009; Alexis Ballier <aballier@gentoo.org>
+ -texlive-core-2007-r13.ebuild, -files/texmf-update:
+ remove old
10 Jun 2009; Alexey Shvetsov <alexxy@gentoo.org>
texlive-core-2008-r5.ebuild:
diff --git a/app-text/texlive-core/files/texmf-update b/app-text/texlive-core/files/texmf-update
deleted file mode 100644
index 4d15315f640c..000000000000
--- a/app-text/texlive-core/files/texmf-update
+++ /dev/null
@@ -1,89 +0,0 @@
-#!/bin/bash
-#
-# Utility to update Gentoo TeXLive distribution configuration files
-#
-
-echo "Configuring TeXLive ..."
-
-PATH=/bin:/usr/bin
-
-# Fix for all those with altered umask for root
-umask 022
-
-# Make sure we have a correct environment, bug #30432
-# The list of env. vars is taken from the INSTALL file
-for texvar in AFMFONTS BIBINPUTS BSTINPUTS DVILJFONTS DVIPSFONTS \
- DVIPSHEADERS GFFONTS GLYPHFONTS INDEXSTYLE MFBASES MFINPUTS \
- MFPOOL MFTINPUTS MPINPUTS MPMEMS MPPOOL MPSUPPORT OCPINPUTS \
- OFMFONTS OPLFONTS OTPINPUTS OVFFONTS OVPFONTS PKFONTS PSHEADERS \
- T1FONTS T1INPUTS TEXBIB TEXCONFIG TEXDOCS TEXFONTMAPS TEXFONTS \
- TEXFORMATS TEXINDEXSTYLE TEXINPUTS TEXMFCNF TEXMFDBS TEXMFINI \
- TEXPICTS TEXPKS TEXPOOL TEXPSHEADERS TEXSOURCES TFMFONTS TRFONTS \
- VFFONTS XDVIFONTS XDVIVFS ; do
-
- if [ "${!texvar}" ]; then
- if ! $(echo ${!texvar} | grep '^:\|::\|:$' &>/dev/null) ; then
- export ${texvar}="${!texvar}:"
- fi
- fi
-done
-
-if [ "$TEXINPUTS" ]; then
- if $(echo ${TEXINPUTS} | grep '/usr/share/texmf' &>/dev/null) ; then
- export TEXINPUTS=$(echo ${TEXINPUTS} | sed -e 's|/usr/share/texmf/*:\?||g')
- elif $(echo ${TEXINPUTS} | grep '/var/lib/texmf' &>/dev/null) ; then
- export TEXINPUTS=$(echo ${TEXINPUTS} | sed -e 's|/var/lib/texmf/*:\?||g')
- fi
-fi
-
-if [ -d /etc/texmf/texmf.d ]; then
- echo "Generating /etc/texmf/web2c/texmf.cnf from /etc/texmf/texmf.d ..."
- cat /etc/texmf/texmf.d/*.cnf > "/etc/texmf/web2c/texmf.cnf"
-fi
-
-if [ -d /etc/texmf/fmtutil.d ]; then
- echo "Generating /etc/texmf/web2c/fmtutil.cnf from /etc/texmf/fmtutil.d ..."
- cat /etc/texmf/fmtutil.d/*.cnf > "/etc/texmf/web2c/fmtutil.cnf"
-fi
-
-if [ -d /etc/texmf/updmap.d ]; then
- echo "Generating /etc/texmf/web2c/updmap.cfg from /etc/texmf/updmap.d ..."
- cat /etc/texmf/updmap.d/*.cfg > "/etc/texmf/web2c/updmap.cfg"
-fi
-
-if [ -d /etc/texmf/dvips.d ]; then
- echo "Generating /etc/texmf/dvips/config/config.ps from /etc/texmf/dvips.d ..."
- cat /etc/texmf/dvips.d/*.ps > "/etc/texmf/dvips/config/config.ps"
-fi
-
-echo "Generating ls-R files"
-mktexlsr &>/dev/null
-
-# Generate language.dat file, from texlive install-pkg.sh
-X=`kpsewhich language.dat`
-if test -n "$X"; then
- echo "Generating language.dat file"
- cd `dirname $X`
- Z=`pwd`
-
- Y=`kpsewhich language.us`
- cd `dirname $Y`
- cat language.us > $Z/language.dat
- for i in language.*.dat; do
- test -f $i && cat $i >> $Z/language.dat
- done
-fi
-
-echo "Generating format files ..."
-fmtutil-sys --all &>/dev/null
-
-echo "Generating font maps..."
-updmap-sys &>/dev/null
-
-texconfig-sys confall &>/dev/null
-texconfig-sys font rw &>/dev/null
-texconfig-sys font vardir /var/cache/fonts &>/dev/null
-
-echo
-echo "Use 'texconfig font ro' to disable font generation for users"
-echo
diff --git a/app-text/texlive-core/texlive-core-2007-r13.ebuild b/app-text/texlive-core/texlive-core-2007-r13.ebuild
deleted file mode 100644
index 1710887fd8f8..000000000000
--- a/app-text/texlive-core/texlive-core-2007-r13.ebuild
+++ /dev/null
@@ -1,277 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/texlive-core/texlive-core-2007-r13.ebuild,v 1.11 2008/10/06 19:56:29 aballier Exp $
-
-inherit eutils flag-o-matic toolchain-funcs libtool autotools texlive-common
-
-PATCHLEVEL="6"
-TEXMFD_VERSION="2"
-
-DESCRIPTION="A complete TeX distribution"
-HOMEPAGE="http://tug.org/texlive/"
-SLOT="0"
-LICENSE="GPL-2 LPPL-1.3c"
-
-TEXLIVE_BASICBIN_CONTENTS="bin-bibtex bin-dvipsk bin-etex bin-getnonfreefonts bin-gsftopk bin-kpathsea bin-makeindex bin-metafont bin-mfware bin-pdftex bin-tetex bin-tex bin-texconfig lib-regex lib-zlib"
-
-TEXLIVE_BINEXTRA_CONTENTS="bin-bibtex8 bin-chktex bin-ctie bin-cweb bin-dtl bin-dvi2tty bin-dvicopy bin-dvidvi bin-dviljk bin-lacheck bin-patgen bin-pdftools bin-seetexk bin-texdoc bin-texware bin-thumbpdf bin-tie bin-tpic2pdftex bin-vpe bin-web bin-xpdf cweb mkind-english"
-
-TEXLIVE_FONTBIN_CONTENTS="bin-afm2pl bin-fontware bin-ps2pkm fontinst mft"
-
-TEXLIVE_CORE_EXTRA_BUILT_BINARIES="bin-xetex bin-aleph bin-omega"
-
-TEXLIVE_CORE_INCLUDED_TEXMF="${TEXLIVE_BASICBIN_CONTENTS} ${TEXLIVE_FONTBIN_CONTENTS} ${TEXLIVE_BINEXTRA_CONTENTS} ${TEXLIVE_CORE_EXTRA_BUILT_BINARIES}"
-
-SRC_URI="mirror://gentoo/${P}.tar.bz2"
-
-for i in ${TEXLIVE_CORE_INCLUDED_TEXMF}; do
- SRC_URI="${SRC_URI} mirror://gentoo/texlive-module-${i}-${PV}.zip"
-done
-
-# Ship an updated config.ps, see bug #195815 comment 51
-# Or alternatively: http://tug.org/texlive/bugs.html
-SRC_URI="${SRC_URI} mirror://gentoo/${P}-updated-config.ps.bz2"
-
-# Fetch patches
-SRC_URI="${SRC_URI} mirror://gentoo/${PN}-patches-${PATCHLEVEL}.tar.bz2
- mirror://gentoo/${P}-texmf.d-${TEXMFD_VERSION}.tar.bz2"
-
-KEYWORDS="alpha amd64 hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd"
-IUSE="X doc"
-
-MODULAR_X_DEPEND="X? (
- x11-libs/libXmu
- x11-libs/libXp
- x11-libs/libXpm
- x11-libs/libICE
- x11-libs/libSM
- x11-libs/libXaw
- x11-libs/libXfont
- )"
-
-RDEPEND="${MODULAR_X_DEPEND}
- !app-text/ptex
- !app-text/tetex
- !<app-text/texlive-2007
- !app-text/xetex
- !dev-tex/xmltex
- !dev-tex/dvi2tty
- !app-text/dvibook
- sys-libs/zlib
- >=media-libs/libpng-1.2.1
- =media-libs/freetype-2*
- media-libs/fontconfig"
-
-DEPEND="${RDEPEND}
- sys-apps/ed
- sys-devel/flex
- app-arch/unzip"
-
-S="${WORKDIR}"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
-
- EPATCH_SUFFIX="patch" epatch "${WORKDIR}/patches"
-
- sed -i -e "/mktexlsr/,+3d" -e "s/\(updmap-sys\)/\1 --nohash/" \
- Makefile.in || die "sed failed"
-
- elibtoolize
-
- cd libs/teckit
- eautoreconf
-
-# Ship an updated config.ps, see bug #195815 comment 51
-# Or alternatively: http://tug.org/texlive/bugs.html
- cp -f "${WORKDIR}/${P}-updated-config.ps" "${S}/texmf/dvips/config/config.ps"
-}
-
-src_compile() {
- local my_conf
-
- export LC_ALL=C
- tc-export CC CXX
-
- econf --bindir=/usr/bin \
- --datadir="${S}" \
- --with-system-freetype2 \
- --with-freetype2-include=/usr/include \
- --with-system-zlib \
- --with-system-pnglib \
- --without-texinfo \
- --without-dialog \
- --without-texi2html \
- --disable-multiplatform \
- --with-epsfwin \
- --with-mftalkwin \
- --with-regiswin \
- --with-tektronixwin \
- --with-unitermwin \
- --with-ps=gs \
- --without-psutils \
- --without-sam2p \
- --without-t1utils \
- --enable-ipc \
- --without-etex \
- --with-xetex \
- --without-dvipng \
- --without-dvipdfm \
- --without-dvipdfmx \
- --without-xdvipdfmx \
- --without-lcdf-typetools \
- --without-pdfopen \
- --without-ps2eps \
- --without-detex \
- --without-ttf2pk \
- --without-tex4htk \
- --without-cjkutils \
- --without-xdvik --without-oxdvik \
- --enable-shared \
- $(use_with X x) \
- ${my_conf} || die "econf failed"
-
- cd "${S}/libs/icu-xetex"
- emake -j1 texmf=${TEXMF_PATH:-/usr/share/texmf} || die "emake of icu-xetex failed"
- cd "${S}"
- emake texmf=${TEXMF_PATH:-/usr/share/texmf} || die "emake failed"
-
- # Mimic updmap --syncwithtrees to enable only fonts installed
- # Code copied from updmap script
- for i in `egrep '^(Mixed)?Map' "texmf/web2c/updmap.cfg" | sed 's@.* @@'`; do
- texlive-common_is_file_present_in_texmf "$i" || echo "$i"
- done > "${T}/updmap_update"
- {
- sed 's@/@\\/@g; s@^@/^MixedMap[ ]*@; s@$@$/s/^/#! /@' <"${T}/updmap_update"
- sed 's@/@\\/@g; s@^@/^Map[ ]*@; s@$@$/s/^/#! /@' <"${T}/updmap_update"
- } > "${T}/updmap_update2"
- sed -f "${T}/updmap_update2" "texmf/web2c/updmap.cfg" > "${T}/updmap_update3"\
- && cat "${T}/updmap_update3" > "texmf/web2c/updmap.cfg"
-}
-
-src_test() {
- ewarn "Due to modular layout of texlive ebuilds,"
- ewarn "It would not make much sense to use tests into the ebuild"
- ewarn "And tests would fail anyway"
- ewarn "Alternatively you can try to compile any tex file"
- ewarn "Tex warnings should be considered as errors and reported"
- ewarn "You can also run fmtutil-sys --all and check for errors/warnings there"
-}
-
-src_install() {
- insinto /usr/share
- doins -r texmf texmf-dist
-
- dodir ${TEXMF_PATH:-/usr/share/texmf}/web2c
- einstall bindir="${D}/usr/bin" texmf="${D}${TEXMF_PATH:-/usr/share/texmf}" || die "einstall failed"
-
- dosbin "${FILESDIR}/texmf-update"
-
- # When X is disabled mf-nowin doesn't exist but some scripts expect it to
- # exist. Instead, it is called mf, so we symlink it to please everything.
- use X || dosym mf /usr/bin/mf-nowin
-
- docinto texk
- cd "${S}/texk"
- dodoc ChangeLog README
-
- docinto kpathesa
- cd "${S}/texk/kpathsea"
- dodoc BUGS ChangeLog NEWS PROJECTS README
-
- docinto dviljk
- cd "${S}/texk/dviljk"
- dodoc ChangeLog README NEWS
-
- docinto dvipsk
- cd "${S}/texk/dvipsk"
- dodoc ChangeLog README
-
- docinto makeindexk
- cd "${S}/texk/makeindexk"
- dodoc ChangeLog NEWS NOTES README
-
- docinto ps2pkm
- cd "${S}/texk/ps2pkm"
- dodoc ChangeLog README README.14m
-
- docinto web2c
- cd "${S}/texk/web2c"
- dodoc ChangeLog NEWS PROJECTS README
-
- use doc || rm -rf "${D}/usr/share/texmf/doc"
- use doc || rm -rf "${D}/usr/share/texmf-dist/doc"
-
- dodir /var/cache/fonts
-
- dodir /etc/env.d
- echo 'CONFIG_PROTECT_MASK="/etc/texmf/web2c"' > "${D}/etc/env.d/98texlive"
- # populate /etc/texmf
- keepdir /etc/texmf/web2c
-
- # take care of updmap.cfg, fmtutil.cnf and texmf.cnf
- dodir /etc/texmf/{updmap.d,fmtutil.d,texmf.d}
-
- # Remove fmtutil.cnf, it will be regenerated from /etc/texmf/fmtutil.d files
- # by texmf-update
- rm -f "${D}${TEXMF_PATH}/web2c/fmtutil.cnf"
-
- # Remove default texmf.cnf to ship our own, greatly based on texlive dvd's
- # texmf.cnf
- # It will also be generated from /etc/texmf/texmf.d files by texmf-update
- rm -f "${D}${TEXMF_PATH}/web2c/texmf.cnf"
-
- insinto /etc/texmf/texmf.d
- doins "${WORKDIR}/texmf.d/"*.cnf
-
- mv "${D}${TEXMF_PATH}/web2c/updmap.cfg" "${D}/etc/texmf/updmap.d/00updmap.cfg" || die "moving updmap.cfg failed"
-
- # dvips config file
- keepdir /etc/texmf/dvips/config
- dodir /etc/texmf/dvips.d
- mv "${D}${TEXMF_PATH}/dvips/config/config.ps" "${D}/etc/texmf/dvips.d/00${PN}-config.ps" || die "moving config.ps failed"
-
- # Create symlinks from format to engines
- # This will avoid having to call texlinks in texmf-update
- cd "${S}"
- for i in texmf/fmtutil/format*.cnf; do
- [ -f "${i}" ] && etexlinks "${i}"
- done
-
- texlive-common_handle_config_files
-
- keepdir /usr/share/texmf-site
-
- dosym /etc/texmf/web2c/fmtutil.cnf ${TEXMF_PATH}/web2c/fmtutil.cnf
- dosym /etc/texmf/web2c/texmf.cnf ${TEXMF_PATH}/web2c/texmf.cnf
- dosym /etc/texmf/web2c/updmap.cfg ${TEXMF_PATH}/web2c/updmap.cfg
- dosym /etc/texmf/dvips/config/config.ps ${TEXMF_PATH}/dvips/config/config.ps
-
- # the virtex symlink is not installed
- # The links has to be relative, since the targets
- # is not present at this stage and MacOS doesn't
- # like non-existing targets
- dosym tex /usr/bin/virtex
- dosym pdftex /usr/bin/pdfvirtex
-}
-
-pkg_postinst() {
- if [ "$ROOT" = "/" ] ; then
- /usr/sbin/texmf-update
- fi
-
- elog
- elog "If you have configuration files in /etc/texmf to merge,"
- elog "please update them and run /usr/sbin/texmf-update."
- elog
- ewarn "If you are migrating from an older TeX distribution"
- ewarn "Please make sure you have read:"
- ewarn "http://www.gentoo.org/proj/en/tex/texlive-migration-guide.xml"
- ewarn "in order to avoid possible problems"
- elog
- elog "TeXLive has been split in various ebuilds. If you are missing a"
- elog "package to process your TeX documents, you can install"
- elog "dev-tex/texmfind to easily search for them."
- elog
-}