public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-tex/luatex: luatex-0.70.1.ebuild ChangeLog
@ 2011-07-04 17:42 Alexis Ballier (aballier)
  0 siblings, 0 replies; 11+ messages in thread
From: Alexis Ballier (aballier) @ 2011-07-04 17:42 UTC (permalink / raw
  To: gentoo-commits

aballier    11/07/04 17:42:41

  Modified:             ChangeLog
  Added:                luatex-0.70.1.ebuild
  Log:
  version bump
  
  (Portage version: 2.2.0_alpha43/cvs/Linux x86_64)

Revision  Changes    Path
1.87                 dev-tex/luatex/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/luatex/ChangeLog?rev=1.87&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/luatex/ChangeLog?rev=1.87&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/luatex/ChangeLog?r1=1.86&r2=1.87

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-tex/luatex/ChangeLog,v
retrieving revision 1.86
retrieving revision 1.87
diff -u -r1.86 -r1.87
--- ChangeLog	15 Jun 2011 06:03:47 -0000	1.86
+++ ChangeLog	4 Jul 2011 17:42:41 -0000	1.87
@@ -1,6 +1,11 @@
 # ChangeLog for dev-tex/luatex
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-tex/luatex/ChangeLog,v 1.86 2011/06/15 06:03:47 naota Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-tex/luatex/ChangeLog,v 1.87 2011/07/04 17:42:41 aballier Exp $
+
+*luatex-0.70.1 (04 Jul 2011)
+
+  04 Jul 2011; Alexis Ballier <aballier@gentoo.org> +luatex-0.70.1.ebuild:
+  version bump
 
   15 Jun 2011; Naohiro Aota <naota@gentoo.org> luatex-0.65.0.ebuild:
   Added ~x86-fbsd, bug #345317



1.1                  dev-tex/luatex/luatex-0.70.1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/luatex/luatex-0.70.1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/luatex/luatex-0.70.1.ebuild?rev=1.1&content-type=text/plain

Index: luatex-0.70.1.ebuild
===================================================================
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-tex/luatex/luatex-0.70.1.ebuild,v 1.1 2011/07/04 17:42:41 aballier Exp $

EAPI="2"

inherit libtool eutils

DESCRIPTION="An extended version of pdfTeX using Lua as an embedded scripting language."
HOMEPAGE="http://www.luatex.org/"
SRC_URI="http://foundry.supelec.fr/gf/download/frsrelease/392/1730/${PN}-beta-${PV}.tar.bz2
	http://foundry.supelec.fr/gf/download/frsrelease/392/1732/${PN}-beta-${PV}-doc.tar.bz2"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
IUSE="doc"

RDEPEND="dev-libs/zziplib
	>=media-libs/libpng-1.4
	>=app-text/poppler-0.12.3-r3[xpdf-headers]
	sys-libs/zlib
	>=dev-libs/kpathsea-6.0.1_p20110627"
DEPEND="${RDEPEND}
	dev-util/pkgconfig"

S="${WORKDIR}/${PN}-beta-${PV}/source"
PRELIBS="libs/obsdcompat"
#texk/kpathsea"
#kpathsea_extraconf="--disable-shared --disable-largefile"

src_prepare() {
	S="${S}/build-aux" elibtoolize --shallow
}

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 #244619
	# So we set LC_ALL to C in order to avoid problems.
	export LC_ALL=C

	local myconf
	myconf=""
	#has_version '>=app-text/texlive-core-2009' && myconf="--with-system-kpathsea"

	cd "${S}/texk/web2c"
	econf \
		--disable-cxx-runtime-hack \
		--disable-all-pkgs	\
		--disable-mp		\
		--disable-ptex		\
		--disable-tex		\
		--disable-mf		\
	    --disable-largefile \
		--disable-ipc		\
		--disable-shared	\
		--enable-luatex		\
		--enable-dump-share	\
		--without-mf-x-toolkit \
		--without-x			\
	    --with-system-kpathsea	\
	    --with-system-gd	\
	    --with-system-libpng	\
	    --with-system-teckit \
	    --with-system-zlib \
	    --with-system-t1lib \
		--with-system-xpdf \
		--with-system-poppler \
		--with-system-zziplib \
	    --disable-multiplatform \

	for i in ${PRELIBS} ; do
		einfo "Configuring $i"
		local j=$(basename $i)_extraconf
		local myconf
		eval myconf=\${$j}
		cd "${S}/${i}"
		econf ${myconf}
	done
}

src_compile() {
	texk/web2c/luatexdir/getluatexsvnversion.sh || die
	for i in ${PRELIBS} ; do
		cd "${S}/${i}"
		emake || die "failed to build ${i}"
	done
	cd "${WORKDIR}/${PN}-beta-${PV}/source/texk/web2c"
	emake luatex || die "failed to build luatex"
}

src_install() {
	cd "${WORKDIR}/${PN}-beta-${PV}/source/texk/web2c"
	emake DESTDIR="${D}" bin_PROGRAMS="luatex" SUBDIRS="" nodist_man_MANS="" \
		install-exec-am || die

	dodoc "${WORKDIR}/${PN}-beta-${PV}/README" || die
	doman "${WORKDIR}/texmf/doc/man/man1/"*.1 || die
	if use doc ; then
		dodoc "${WORKDIR}/${PN}-beta-${PV}/manual/"*.pdf || die
		dodoc "${WORKDIR}/texmf/doc/man/man1/"*.pdf || die
	fi
}

pkg_postinst() {
	if ! has_version '>=dev-texlive/texlive-basic-2008' ; then
		elog "Please note that this package does not install much files, mainly the"
		elog "${PN} executable that will need other files in order to be useful.."
		elog "Please consider installing a recent TeX distribution"
		elog "like TeX Live 2008 to get the full power of ${PN}"
	fi
	if [ "$ROOT" = "/" ] && [ -x /usr/bin/fmtutil-sys ] ; then
		einfo "Rebuilding formats"
		/usr/bin/fmtutil-sys --all &> /dev/null
	else
		ewarn "Cannot run fmtutil-sys for some reason."
		ewarn "Your formats might be inconsistent with your installed ${PN} version"
		ewarn "Please try to figure what has happened"
	fi
}






^ permalink raw reply	[flat|nested] 11+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-tex/luatex: luatex-0.70.1.ebuild ChangeLog
@ 2011-08-09 20:50 Markos Chandras (hwoarang)
  0 siblings, 0 replies; 11+ messages in thread
From: Markos Chandras (hwoarang) @ 2011-08-09 20:50 UTC (permalink / raw
  To: gentoo-commits

hwoarang    11/08/09 20:50:01

  Modified:             luatex-0.70.1.ebuild ChangeLog
  Log:
  Stable on amd64 wrt bug #355085
  
  (Portage version: 2.2.0_alpha46/cvs/Linux x86_64)

Revision  Changes    Path
1.2                  dev-tex/luatex/luatex-0.70.1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/luatex/luatex-0.70.1.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/luatex/luatex-0.70.1.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/luatex/luatex-0.70.1.ebuild?r1=1.1&r2=1.2

Index: luatex-0.70.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-tex/luatex/luatex-0.70.1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- luatex-0.70.1.ebuild	4 Jul 2011 17:42:41 -0000	1.1
+++ luatex-0.70.1.ebuild	9 Aug 2011 20:50:00 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-tex/luatex/luatex-0.70.1.ebuild,v 1.1 2011/07/04 17:42:41 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-tex/luatex/luatex-0.70.1.ebuild,v 1.2 2011/08/09 20:50:00 hwoarang Exp $
 
 EAPI="2"
 
@@ -13,7 +13,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
 IUSE="doc"
 
 RDEPEND="dev-libs/zziplib



1.88                 dev-tex/luatex/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/luatex/ChangeLog?rev=1.88&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/luatex/ChangeLog?rev=1.88&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/luatex/ChangeLog?r1=1.87&r2=1.88

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-tex/luatex/ChangeLog,v
retrieving revision 1.87
retrieving revision 1.88
diff -u -r1.87 -r1.88
--- ChangeLog	4 Jul 2011 17:42:41 -0000	1.87
+++ ChangeLog	9 Aug 2011 20:50:00 -0000	1.88
@@ -1,6 +1,9 @@
 # ChangeLog for dev-tex/luatex
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-tex/luatex/ChangeLog,v 1.87 2011/07/04 17:42:41 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-tex/luatex/ChangeLog,v 1.88 2011/08/09 20:50:00 hwoarang Exp $
+
+  09 Aug 2011; Markos Chandras <hwoarang@gentoo.org> luatex-0.70.1.ebuild:
+  Stable on amd64 wrt bug #355085
 
 *luatex-0.70.1 (04 Jul 2011)
 






^ permalink raw reply	[flat|nested] 11+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-tex/luatex: luatex-0.70.1.ebuild ChangeLog
@ 2011-08-12 10:58 Thomas Kahle (tomka)
  0 siblings, 0 replies; 11+ messages in thread
From: Thomas Kahle (tomka) @ 2011-08-12 10:58 UTC (permalink / raw
  To: gentoo-commits

tomka       11/08/12 10:58:14

  Modified:             luatex-0.70.1.ebuild ChangeLog
  Log:
  x86 stable per bug 355085
  
  (Portage version: 2.1.10.10/cvs/Linux i686)

Revision  Changes    Path
1.3                  dev-tex/luatex/luatex-0.70.1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/luatex/luatex-0.70.1.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/luatex/luatex-0.70.1.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/luatex/luatex-0.70.1.ebuild?r1=1.2&r2=1.3

Index: luatex-0.70.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-tex/luatex/luatex-0.70.1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- luatex-0.70.1.ebuild	9 Aug 2011 20:50:00 -0000	1.2
+++ luatex-0.70.1.ebuild	12 Aug 2011 10:58:13 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-tex/luatex/luatex-0.70.1.ebuild,v 1.2 2011/08/09 20:50:00 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-tex/luatex/luatex-0.70.1.ebuild,v 1.3 2011/08/12 10:58:13 tomka Exp $
 
 EAPI="2"
 
@@ -13,7 +13,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd"
 IUSE="doc"
 
 RDEPEND="dev-libs/zziplib



1.89                 dev-tex/luatex/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/luatex/ChangeLog?rev=1.89&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/luatex/ChangeLog?rev=1.89&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/luatex/ChangeLog?r1=1.88&r2=1.89

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-tex/luatex/ChangeLog,v
retrieving revision 1.88
retrieving revision 1.89
diff -u -r1.88 -r1.89
--- ChangeLog	9 Aug 2011 20:50:00 -0000	1.88
+++ ChangeLog	12 Aug 2011 10:58:13 -0000	1.89
@@ -1,6 +1,9 @@
 # ChangeLog for dev-tex/luatex
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-tex/luatex/ChangeLog,v 1.88 2011/08/09 20:50:00 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-tex/luatex/ChangeLog,v 1.89 2011/08/12 10:58:13 tomka Exp $
+
+  12 Aug 2011; Thomas Kahle <tomka@gentoo.org> luatex-0.70.1.ebuild:
+  x86 stable per bug 355085
 
   09 Aug 2011; Markos Chandras <hwoarang@gentoo.org> luatex-0.70.1.ebuild:
   Stable on amd64 wrt bug #355085






^ permalink raw reply	[flat|nested] 11+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-tex/luatex: luatex-0.70.1.ebuild ChangeLog
@ 2011-08-14 17:03 Markus Meier (maekke)
  0 siblings, 0 replies; 11+ messages in thread
From: Markus Meier (maekke) @ 2011-08-14 17:03 UTC (permalink / raw
  To: gentoo-commits

maekke      11/08/14 17:03:51

  Modified:             luatex-0.70.1.ebuild ChangeLog
  Log:
  arm stable, bug #355085
  
  (Portage version: 2.1.10.11/cvs/Linux x86_64)

Revision  Changes    Path
1.5                  dev-tex/luatex/luatex-0.70.1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/luatex/luatex-0.70.1.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/luatex/luatex-0.70.1.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/luatex/luatex-0.70.1.ebuild?r1=1.4&r2=1.5

Index: luatex-0.70.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-tex/luatex/luatex-0.70.1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- luatex-0.70.1.ebuild	12 Aug 2011 15:35:45 -0000	1.4
+++ luatex-0.70.1.ebuild	14 Aug 2011 17:03:51 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-tex/luatex/luatex-0.70.1.ebuild,v 1.4 2011/08/12 15:35:45 xarthisius Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-tex/luatex/luatex-0.70.1.ebuild,v 1.5 2011/08/14 17:03:51 maekke Exp $
 
 EAPI="2"
 
@@ -13,7 +13,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd"
+KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd"
 IUSE="doc"
 
 RDEPEND="dev-libs/zziplib



1.91                 dev-tex/luatex/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/luatex/ChangeLog?rev=1.91&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/luatex/ChangeLog?rev=1.91&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/luatex/ChangeLog?r1=1.90&r2=1.91

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-tex/luatex/ChangeLog,v
retrieving revision 1.90
retrieving revision 1.91
diff -u -r1.90 -r1.91
--- ChangeLog	12 Aug 2011 15:35:45 -0000	1.90
+++ ChangeLog	14 Aug 2011 17:03:51 -0000	1.91
@@ -1,6 +1,9 @@
 # ChangeLog for dev-tex/luatex
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-tex/luatex/ChangeLog,v 1.90 2011/08/12 15:35:45 xarthisius Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-tex/luatex/ChangeLog,v 1.91 2011/08/14 17:03:51 maekke Exp $
+
+  14 Aug 2011; Markus Meier <maekke@gentoo.org> luatex-0.70.1.ebuild:
+  arm stable, bug #355085
 
   12 Aug 2011; Kacper Kowalik <xarthisius@gentoo.org> luatex-0.70.1.ebuild:
   ppc/ppc64 stable wrt #355085






^ permalink raw reply	[flat|nested] 11+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-tex/luatex: luatex-0.70.1.ebuild ChangeLog
@ 2011-09-18 14:26 Raul Porcel (armin76)
  0 siblings, 0 replies; 11+ messages in thread
From: Raul Porcel (armin76) @ 2011-09-18 14:26 UTC (permalink / raw
  To: gentoo-commits

armin76     11/09/18 14:26:58

  Modified:             luatex-0.70.1.ebuild ChangeLog
  Log:
  alpha/ia64/s390/sh/sparc stable wrt #355085
  
  (Portage version: 2.1.10.11/cvs/Linux ia64)

Revision  Changes    Path
1.6                  dev-tex/luatex/luatex-0.70.1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/luatex/luatex-0.70.1.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/luatex/luatex-0.70.1.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/luatex/luatex-0.70.1.ebuild?r1=1.5&r2=1.6

Index: luatex-0.70.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-tex/luatex/luatex-0.70.1.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- luatex-0.70.1.ebuild	14 Aug 2011 17:03:51 -0000	1.5
+++ luatex-0.70.1.ebuild	18 Sep 2011 14:26:58 -0000	1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-tex/luatex/luatex-0.70.1.ebuild,v 1.5 2011/08/14 17:03:51 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-tex/luatex/luatex-0.70.1.ebuild,v 1.6 2011/09/18 14:26:58 armin76 Exp $
 
 EAPI="2"
 
@@ -13,7 +13,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd"
+KEYWORDS="alpha amd64 arm ~hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~x86-fbsd"
 IUSE="doc"
 
 RDEPEND="dev-libs/zziplib



1.92                 dev-tex/luatex/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/luatex/ChangeLog?rev=1.92&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/luatex/ChangeLog?rev=1.92&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/luatex/ChangeLog?r1=1.91&r2=1.92

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-tex/luatex/ChangeLog,v
retrieving revision 1.91
retrieving revision 1.92
diff -u -r1.91 -r1.92
--- ChangeLog	14 Aug 2011 17:03:51 -0000	1.91
+++ ChangeLog	18 Sep 2011 14:26:58 -0000	1.92
@@ -1,6 +1,9 @@
 # ChangeLog for dev-tex/luatex
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-tex/luatex/ChangeLog,v 1.91 2011/08/14 17:03:51 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-tex/luatex/ChangeLog,v 1.92 2011/09/18 14:26:58 armin76 Exp $
+
+  18 Sep 2011; Raúl Porcel <armin76@gentoo.org> luatex-0.70.1.ebuild:
+  alpha/ia64/s390/sh/sparc stable wrt #355085
 
   14 Aug 2011; Markus Meier <maekke@gentoo.org> luatex-0.70.1.ebuild:
   arm stable, bug #355085






^ permalink raw reply	[flat|nested] 11+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-tex/luatex: luatex-0.70.1.ebuild ChangeLog
@ 2011-10-04 17:48 Jeroen Roovers (jer)
  0 siblings, 0 replies; 11+ messages in thread
From: Jeroen Roovers (jer) @ 2011-10-04 17:48 UTC (permalink / raw
  To: gentoo-commits

jer         11/10/04 17:48:09

  Modified:             luatex-0.70.1.ebuild ChangeLog
  Log:
  Stable for HPPA (bug #355085).
  
  (Portage version: 2.2.0_alpha60/cvs/Linux x86_64)

Revision  Changes    Path
1.9                  dev-tex/luatex/luatex-0.70.1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/luatex/luatex-0.70.1.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/luatex/luatex-0.70.1.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/luatex/luatex-0.70.1.ebuild?r1=1.8&r2=1.9

Index: luatex-0.70.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-tex/luatex/luatex-0.70.1.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- luatex-0.70.1.ebuild	28 Sep 2011 23:40:08 -0000	1.8
+++ luatex-0.70.1.ebuild	4 Oct 2011 17:48:09 -0000	1.9
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-tex/luatex/luatex-0.70.1.ebuild,v 1.8 2011/09/28 23:40:08 reavertm Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-tex/luatex/luatex-0.70.1.ebuild,v 1.9 2011/10/04 17:48:09 jer Exp $
 
 EAPI="2"
 
@@ -13,7 +13,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~x86-fbsd"
+KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~x86-fbsd"
 IUSE="doc"
 
 RDEPEND="dev-libs/zziplib



1.95                 dev-tex/luatex/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/luatex/ChangeLog?rev=1.95&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/luatex/ChangeLog?rev=1.95&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/luatex/ChangeLog?r1=1.94&r2=1.95

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-tex/luatex/ChangeLog,v
retrieving revision 1.94
retrieving revision 1.95
diff -u -r1.94 -r1.95
--- ChangeLog	28 Sep 2011 23:40:08 -0000	1.94
+++ ChangeLog	4 Oct 2011 17:48:09 -0000	1.95
@@ -1,6 +1,9 @@
 # ChangeLog for dev-tex/luatex
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-tex/luatex/ChangeLog,v 1.94 2011/09/28 23:40:08 reavertm Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-tex/luatex/ChangeLog,v 1.95 2011/10/04 17:48:09 jer Exp $
+
+  04 Oct 2011; Jeroen Roovers <jer@gentoo.org> luatex-0.70.1.ebuild:
+  Stable for HPPA (bug #355085).
 
   18 Sep 2011; Raúl Porcel <armin76@gentoo.org> luatex-0.70.1.ebuild:
   alpha/ia64/s390/sh/sparc stable wrt #355085






^ permalink raw reply	[flat|nested] 11+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-tex/luatex: luatex-0.70.1.ebuild ChangeLog
@ 2011-10-05 18:10 Alexis Ballier (aballier)
  0 siblings, 0 replies; 11+ messages in thread
From: Alexis Ballier (aballier) @ 2011-10-05 18:10 UTC (permalink / raw
  To: gentoo-commits

aballier    11/10/05 18:10:27

  Modified:             luatex-0.70.1.ebuild ChangeLog
  Log:
  fix build with latest poppler, by Martin von Gagern, bug #384875
  
  (Portage version: 2.2.0_alpha60/cvs/Linux x86_64)

Revision  Changes    Path
1.10                 dev-tex/luatex/luatex-0.70.1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/luatex/luatex-0.70.1.ebuild?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/luatex/luatex-0.70.1.ebuild?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/luatex/luatex-0.70.1.ebuild?r1=1.9&r2=1.10

Index: luatex-0.70.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-tex/luatex/luatex-0.70.1.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- luatex-0.70.1.ebuild	4 Oct 2011 17:48:09 -0000	1.9
+++ luatex-0.70.1.ebuild	5 Oct 2011 18:10:27 -0000	1.10
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-tex/luatex/luatex-0.70.1.ebuild,v 1.9 2011/10/04 17:48:09 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-tex/luatex/luatex-0.70.1.ebuild,v 1.10 2011/10/05 18:10:27 aballier Exp $
 
 EAPI="2"
 
@@ -30,6 +30,7 @@
 #kpathsea_extraconf="--disable-shared --disable-largefile"
 
 src_prepare() {
+	has_version '>=app-text/poppler-0.18.0:0' && epatch "${FILESDIR}/poppler018.patch"
 	S="${S}/build-aux" elibtoolize --shallow
 }
 



1.97                 dev-tex/luatex/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/luatex/ChangeLog?rev=1.97&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/luatex/ChangeLog?rev=1.97&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/luatex/ChangeLog?r1=1.96&r2=1.97

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-tex/luatex/ChangeLog,v
retrieving revision 1.96
retrieving revision 1.97
diff -u -r1.96 -r1.97
--- ChangeLog	5 Oct 2011 17:54:26 -0000	1.96
+++ ChangeLog	5 Oct 2011 18:10:27 -0000	1.97
@@ -1,6 +1,10 @@
 # ChangeLog for dev-tex/luatex
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-tex/luatex/ChangeLog,v 1.96 2011/10/05 17:54:26 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-tex/luatex/ChangeLog,v 1.97 2011/10/05 18:10:27 aballier Exp $
+
+  05 Oct 2011; Alexis Ballier <aballier@gentoo.org> +files/poppler018.patch,
+  luatex-0.70.1.ebuild:
+  fix build with latest poppler, by Martin von Gagern, bug #384875
 
   05 Oct 2011; Alexis Ballier <aballier@gentoo.org> -luatex-0.63.0.ebuild,
   -luatex-0.65.0.ebuild:






^ permalink raw reply	[flat|nested] 11+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-tex/luatex: luatex-0.70.1.ebuild ChangeLog
@ 2012-05-09 13:27 Alexis Ballier (aballier)
  0 siblings, 0 replies; 11+ messages in thread
From: Alexis Ballier (aballier) @ 2012-05-09 13:27 UTC (permalink / raw
  To: gentoo-commits

aballier    12/05/09 13:27:50

  Modified:             luatex-0.70.1.ebuild ChangeLog
  Log:
  keyword ~amd64-fbsd
  
  (Portage version: 2.2.0_alpha102/cvs/Linux x86_64)

Revision  Changes    Path
1.12                 dev-tex/luatex/luatex-0.70.1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/luatex/luatex-0.70.1.ebuild?rev=1.12&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/luatex/luatex-0.70.1.ebuild?rev=1.12&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/luatex/luatex-0.70.1.ebuild?r1=1.11&r2=1.12

Index: luatex-0.70.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-tex/luatex/luatex-0.70.1.ebuild,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- luatex-0.70.1.ebuild	2 May 2012 20:59:41 -0000	1.11
+++ luatex-0.70.1.ebuild	9 May 2012 13:27:50 -0000	1.12
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-tex/luatex/luatex-0.70.1.ebuild,v 1.11 2012/05/02 20:59:41 jdhore Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-tex/luatex/luatex-0.70.1.ebuild,v 1.12 2012/05/09 13:27:50 aballier Exp $
 
 EAPI="2"
 
@@ -13,7 +13,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~x86-fbsd"
+KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~amd64-fbsd ~x86-fbsd"
 IUSE="doc"
 
 RDEPEND="dev-libs/zziplib



1.99                 dev-tex/luatex/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/luatex/ChangeLog?rev=1.99&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/luatex/ChangeLog?rev=1.99&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/luatex/ChangeLog?r1=1.98&r2=1.99

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-tex/luatex/ChangeLog,v
retrieving revision 1.98
retrieving revision 1.99
diff -u -r1.98 -r1.99
--- ChangeLog	2 May 2012 20:59:41 -0000	1.98
+++ ChangeLog	9 May 2012 13:27:50 -0000	1.99
@@ -1,6 +1,9 @@
 # ChangeLog for dev-tex/luatex
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-tex/luatex/ChangeLog,v 1.98 2012/05/02 20:59:41 jdhore Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-tex/luatex/ChangeLog,v 1.99 2012/05/09 13:27:50 aballier Exp $
+
+  09 May 2012; Alexis Ballier <aballier@gentoo.org> luatex-0.70.1.ebuild:
+  keyword ~amd64-fbsd
 
   02 May 2012; Jeff Horelick <jdhore@gentoo.org> luatex-0.70.1.ebuild:
   dev-util/pkgconfig -> virtual/pkgconfig






^ permalink raw reply	[flat|nested] 11+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-tex/luatex: luatex-0.70.1.ebuild ChangeLog
@ 2012-07-09 13:15 Alexis Ballier (aballier)
  0 siblings, 0 replies; 11+ messages in thread
From: Alexis Ballier (aballier) @ 2012-07-09 13:15 UTC (permalink / raw
  To: gentoo-commits

aballier    12/07/09 13:15:20

  Modified:             luatex-0.70.1.ebuild ChangeLog
  Log:
  fix build with poppler 0.20, by Rafał Mużyło, bug #416545
  
  (Portage version: 2.2.0_alpha116/cvs/Linux x86_64)

Revision  Changes    Path
1.13                 dev-tex/luatex/luatex-0.70.1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/luatex/luatex-0.70.1.ebuild?rev=1.13&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/luatex/luatex-0.70.1.ebuild?rev=1.13&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/luatex/luatex-0.70.1.ebuild?r1=1.12&r2=1.13

Index: luatex-0.70.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-tex/luatex/luatex-0.70.1.ebuild,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- luatex-0.70.1.ebuild	9 May 2012 13:27:50 -0000	1.12
+++ luatex-0.70.1.ebuild	9 Jul 2012 13:15:20 -0000	1.13
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-tex/luatex/luatex-0.70.1.ebuild,v 1.12 2012/05/09 13:27:50 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-tex/luatex/luatex-0.70.1.ebuild,v 1.13 2012/07/09 13:15:20 aballier Exp $
 
 EAPI="2"
 
@@ -31,6 +31,7 @@
 
 src_prepare() {
 	has_version '>=app-text/poppler-0.18.0:0' && epatch "${FILESDIR}/poppler018.patch"
+	has_version '>=app-text/poppler-0.20.0:0' && epatch "${FILESDIR}/poppler020.patch"
 	S="${S}/build-aux" elibtoolize --shallow
 }
 



1.100                dev-tex/luatex/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/luatex/ChangeLog?rev=1.100&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/luatex/ChangeLog?rev=1.100&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/luatex/ChangeLog?r1=1.99&r2=1.100

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-tex/luatex/ChangeLog,v
retrieving revision 1.99
retrieving revision 1.100
diff -u -r1.99 -r1.100
--- ChangeLog	9 May 2012 13:27:50 -0000	1.99
+++ ChangeLog	9 Jul 2012 13:15:20 -0000	1.100
@@ -1,6 +1,10 @@
 # ChangeLog for dev-tex/luatex
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-tex/luatex/ChangeLog,v 1.99 2012/05/09 13:27:50 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-tex/luatex/ChangeLog,v 1.100 2012/07/09 13:15:20 aballier Exp $
+
+  09 Jul 2012; Alexis Ballier <aballier@gentoo.org> +files/poppler020.patch,
+  luatex-0.70.1.ebuild:
+  fix build with poppler 0.20, by Rafał Mużyło, bug #416545
 
   09 May 2012; Alexis Ballier <aballier@gentoo.org> luatex-0.70.1.ebuild:
   keyword ~amd64-fbsd






^ permalink raw reply	[flat|nested] 11+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-tex/luatex: luatex-0.70.1.ebuild ChangeLog
@ 2012-07-25  0:36 Christoph Junghans (ottxor)
  0 siblings, 0 replies; 11+ messages in thread
From: Christoph Junghans (ottxor) @ 2012-07-25  0:36 UTC (permalink / raw
  To: gentoo-commits

ottxor      12/07/25 00:36:37

  Modified:             luatex-0.70.1.ebuild ChangeLog
  Log:
  added prefix support (bug #427834)
  
  (Portage version: 2.2.0_alpha120/cvs/Linux i686)

Revision  Changes    Path
1.14                 dev-tex/luatex/luatex-0.70.1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/luatex/luatex-0.70.1.ebuild?rev=1.14&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/luatex/luatex-0.70.1.ebuild?rev=1.14&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/luatex/luatex-0.70.1.ebuild?r1=1.13&r2=1.14

Index: luatex-0.70.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-tex/luatex/luatex-0.70.1.ebuild,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- luatex-0.70.1.ebuild	9 Jul 2012 13:15:20 -0000	1.13
+++ luatex-0.70.1.ebuild	25 Jul 2012 00:36:37 -0000	1.14
@@ -1,8 +1,8 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-tex/luatex/luatex-0.70.1.ebuild,v 1.13 2012/07/09 13:15:20 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-tex/luatex/luatex-0.70.1.ebuild,v 1.14 2012/07/25 00:36:37 ottxor Exp $
 
-EAPI="2"
+EAPI=4
 
 inherit libtool eutils
 
@@ -13,7 +13,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~amd64-fbsd ~x86-fbsd"
+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 ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="doc"
 
 RDEPEND="dev-libs/zziplib
@@ -61,6 +61,7 @@
 		--without-mf-x-toolkit \
 		--without-x			\
 	    --with-system-kpathsea	\
+	    --with-kpathsea-includes="${EPREFIX}"/usr/include \
 	    --with-system-gd	\
 	    --with-system-libpng	\
 	    --with-system-teckit \
@@ -111,9 +112,9 @@
 		elog "Please consider installing a recent TeX distribution"
 		elog "like TeX Live 2008 to get the full power of ${PN}"
 	fi
-	if [ "$ROOT" = "/" ] && [ -x /usr/bin/fmtutil-sys ] ; then
+	if [ "$ROOT" = "/" ] && [ -x "${EPREFIX}"/usr/bin/fmtutil-sys ] ; then
 		einfo "Rebuilding formats"
-		/usr/bin/fmtutil-sys --all &> /dev/null
+		"${EPREFIX}"/usr/bin/fmtutil-sys --all &> /dev/null
 	else
 		ewarn "Cannot run fmtutil-sys for some reason."
 		ewarn "Your formats might be inconsistent with your installed ${PN} version"



1.101                dev-tex/luatex/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/luatex/ChangeLog?rev=1.101&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/luatex/ChangeLog?rev=1.101&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/luatex/ChangeLog?r1=1.100&r2=1.101

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-tex/luatex/ChangeLog,v
retrieving revision 1.100
retrieving revision 1.101
diff -u -r1.100 -r1.101
--- ChangeLog	9 Jul 2012 13:15:20 -0000	1.100
+++ ChangeLog	25 Jul 2012 00:36:37 -0000	1.101
@@ -1,6 +1,9 @@
 # ChangeLog for dev-tex/luatex
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-tex/luatex/ChangeLog,v 1.100 2012/07/09 13:15:20 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-tex/luatex/ChangeLog,v 1.101 2012/07/25 00:36:37 ottxor Exp $
+
+  25 Jul 2012; Christoph Junghans <ottxor@gentoo.org> luatex-0.70.1.ebuild:
+  added prefix support (bug #427834)
 
   09 Jul 2012; Alexis Ballier <aballier@gentoo.org> +files/poppler020.patch,
   luatex-0.70.1.ebuild:
@@ -361,4 +364,3 @@
   +luatex-0.29.0.ebuild:
   Initial import. Standalone version of luatex patched to use poppler. Not
   very useful without TeX Live 2008 but that is a start.
-





^ permalink raw reply	[flat|nested] 11+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-tex/luatex: luatex-0.70.1.ebuild ChangeLog
@ 2012-07-26 10:56 Alexis Ballier (aballier)
  0 siblings, 0 replies; 11+ messages in thread
From: Alexis Ballier (aballier) @ 2012-07-26 10:56 UTC (permalink / raw
  To: gentoo-commits

aballier    12/07/26 10:56:03

  Modified:             luatex-0.70.1.ebuild ChangeLog
  Log:
  Do not include empty headers. They have been removed from TeX Live 2012 kpathsea, fixes build with that version. Patch from upstream.
  
  (Portage version: 2.2.0_alpha120/cvs/Linux x86_64)

Revision  Changes    Path
1.15                 dev-tex/luatex/luatex-0.70.1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/luatex/luatex-0.70.1.ebuild?rev=1.15&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/luatex/luatex-0.70.1.ebuild?rev=1.15&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/luatex/luatex-0.70.1.ebuild?r1=1.14&r2=1.15

Index: luatex-0.70.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-tex/luatex/luatex-0.70.1.ebuild,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- luatex-0.70.1.ebuild	25 Jul 2012 00:36:37 -0000	1.14
+++ luatex-0.70.1.ebuild	26 Jul 2012 10:56:03 -0000	1.15
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-tex/luatex/luatex-0.70.1.ebuild,v 1.14 2012/07/25 00:36:37 ottxor Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-tex/luatex/luatex-0.70.1.ebuild,v 1.15 2012/07/26 10:56:03 aballier Exp $
 
 EAPI=4
 
@@ -32,6 +32,7 @@
 src_prepare() {
 	has_version '>=app-text/poppler-0.18.0:0' && epatch "${FILESDIR}/poppler018.patch"
 	has_version '>=app-text/poppler-0.20.0:0' && epatch "${FILESDIR}/poppler020.patch"
+	epatch "${FILESDIR}/kpathsea2012.patch"
 	S="${S}/build-aux" elibtoolize --shallow
 }
 



1.102                dev-tex/luatex/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/luatex/ChangeLog?rev=1.102&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/luatex/ChangeLog?rev=1.102&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/luatex/ChangeLog?r1=1.101&r2=1.102

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-tex/luatex/ChangeLog,v
retrieving revision 1.101
retrieving revision 1.102
diff -u -r1.101 -r1.102
--- ChangeLog	25 Jul 2012 00:36:37 -0000	1.101
+++ ChangeLog	26 Jul 2012 10:56:03 -0000	1.102
@@ -1,6 +1,11 @@
 # ChangeLog for dev-tex/luatex
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-tex/luatex/ChangeLog,v 1.101 2012/07/25 00:36:37 ottxor Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-tex/luatex/ChangeLog,v 1.102 2012/07/26 10:56:03 aballier Exp $
+
+  26 Jul 2012; Alexis Ballier <aballier@gentoo.org> +files/kpathsea2012.patch,
+  luatex-0.70.1.ebuild:
+  Do not include empty headers. They have been removed from TeX Live 2012
+  kpathsea, fixes build with that version. Patch from upstream.
 
   25 Jul 2012; Christoph Junghans <ottxor@gentoo.org> luatex-0.70.1.ebuild:
   added prefix support (bug #427834)





^ permalink raw reply	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2012-07-26 10:56 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-10-04 17:48 [gentoo-commits] gentoo-x86 commit in dev-tex/luatex: luatex-0.70.1.ebuild ChangeLog Jeroen Roovers (jer)
  -- strict thread matches above, loose matches on Subject: below --
2012-07-26 10:56 Alexis Ballier (aballier)
2012-07-25  0:36 Christoph Junghans (ottxor)
2012-07-09 13:15 Alexis Ballier (aballier)
2012-05-09 13:27 Alexis Ballier (aballier)
2011-10-05 18:10 Alexis Ballier (aballier)
2011-09-18 14:26 Raul Porcel (armin76)
2011-08-14 17:03 Markus Meier (maekke)
2011-08-12 10:58 Thomas Kahle (tomka)
2011-08-09 20:50 Markos Chandras (hwoarang)
2011-07-04 17:42 Alexis Ballier (aballier)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox