diff options
author | Alexis Ballier <aballier@gentoo.org> | 2012-07-26 11:34:56 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2012-07-26 11:34:56 +0000 |
commit | ccef693f58741fd6335381a02d8571b7cce08778 (patch) | |
tree | 5f864f010f9bb3fc489d69f8f6164e2cb1e0c840 /dev-libs/kpathsea/kpathsea-6.1.0_p20120701.ebuild | |
parent | Add patch from upstream to build with kpathsea from TeX Live 2012. (diff) | |
download | historical-ccef693f58741fd6335381a02d8571b7cce08778.tar.gz historical-ccef693f58741fd6335381a02d8571b7cce08778.tar.bz2 historical-ccef693f58741fd6335381a02d8571b7cce08778.zip |
Bump to the TeX Live 2012 version.
Package-Manager: portage-2.2.0_alpha120/cvs/Linux x86_64
Diffstat (limited to 'dev-libs/kpathsea/kpathsea-6.1.0_p20120701.ebuild')
-rw-r--r-- | dev-libs/kpathsea/kpathsea-6.1.0_p20120701.ebuild | 99 |
1 files changed, 99 insertions, 0 deletions
diff --git a/dev-libs/kpathsea/kpathsea-6.1.0_p20120701.ebuild b/dev-libs/kpathsea/kpathsea-6.1.0_p20120701.ebuild new file mode 100644 index 000000000000..a2bbc1bf2319 --- /dev/null +++ b/dev-libs/kpathsea/kpathsea-6.1.0_p20120701.ebuild @@ -0,0 +1,99 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/kpathsea/kpathsea-6.1.0_p20120701.ebuild,v 1.1 2012/07/26 11:34:56 aballier Exp $ + +EAPI=4 + +inherit texlive-common eutils + +TEXMFD_VERSION="4" + +DESCRIPTION="Library implementing generic path searching, configuration, and TeX-specific file searching" +HOMEPAGE="http://tug.org/texlive/" +SRC_URI="mirror://gentoo/texlive-${PV#*_p}-source.tar.xz + mirror://gentoo/${PN}-texmf.d-${TEXMFD_VERSION}.tar.xz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" +IUSE="doc source static-libs" + +DEPEND="!<app-text/texlive-core-2010 + !app-text/ptex" +RDEPEND="${DEPEND}" + +S=${WORKDIR}/texlive-${PV#*_p}-source/texk/${PN} + +TL_VERSION=2012 +EXTRA_TL_MODULES="kpathsea" +EXTRA_TL_DOC_MODULES="kpathsea.doc" + +for i in ${EXTRA_TL_MODULES} ; do + SRC_URI="${SRC_URI} mirror://gentoo/texlive-module-${i}-${TL_VERSION}.tar.xz" +done + +SRC_URI="${SRC_URI} doc? ( " +for i in ${EXTRA_TL_DOC_MODULES} ; do + SRC_URI="${SRC_URI} mirror://gentoo/texlive-module-${i}-${TL_VERSION}.tar.xz" +done +SRC_URI="${SRC_URI} ) " + +src_configure() { + # Too many regexps use A-Z a-z constructs, what causes problems with locales + # that don't have the same alphabetical order than ascii. Bug #347798 + # So we set LC_ALL to C in order to avoid problems. + export LC_ALL=C + + # Disable largefile because it seems to cause problems on big endian 32 bits + # systems... + econf \ + --disable-largefile \ + $(use_enable static-libs static) +} + +src_install() { + emake DESTDIR="${D}" web2cdir="${EPREFIX}/usr/share/texmf/web2c" install + find "${D}" -name '*.la' -delete + + dodir /usr/share # just in case + cp -pR "${WORKDIR}"/texmf "${ED}/usr/share/" || die "failed to install texmf trees" + if use source ; then + cp -pR "${WORKDIR}"/tlpkg "${ED}/usr/share/" || die "failed to install tlpkg files" + fi + + # The default configuration expects it to be world writable, bug #266680 + # People can still change it with texconfig though. + dodir /var/cache/fonts + fperms 1777 /var/cache/fonts + + # Take care of fmtutil.cnf and texmf.cnf + dodir /etc/texmf/{fmtutil.d,texmf.d} + + # 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 "${ED}${TEXMF_PATH}/web2c/texmf.cnf" + + insinto /etc/texmf/texmf.d + doins "${WORKDIR}/texmf.d/"*.cnf + + # Remove fmtutil.cnf, it will be regenerated from /etc/texmf/fmtutil.d files + # by texmf-update + rm -f "${ED}${TEXMF_PATH}/web2c/fmtutil.cnf" + + dosym /etc/texmf/web2c/fmtutil.cnf ${TEXMF_PATH}/web2c/fmtutil.cnf + dosym /etc/texmf/web2c/texmf.cnf ${TEXMF_PATH}/web2c/texmf.cnf + + # Keep it as that's where the formats will go + keepdir /var/lib/texmf + + dodoc BUGS ChangeLog NEWS PROJECTS README +} + +pkg_postinst() { + etexmf-update +} + +pkg_postrm() { + etexmf-update +} |