* [gentoo-commits] gentoo-x86 commit in dev-tex/luatex: ChangeLog luatex-0.74.0.ebuild
@ 2013-01-15 21:21 Alexis Ballier (aballier)
0 siblings, 0 replies; 2+ messages in thread
From: Alexis Ballier (aballier) @ 2013-01-15 21:21 UTC (permalink / raw
To: gentoo-commits
aballier 13/01/15 21:21:20
Modified: ChangeLog
Added: luatex-0.74.0.ebuild
Log:
version bump
(Portage version: 2.2.0_alpha153/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
Revision Changes Path
1.108 dev-tex/luatex/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/luatex/ChangeLog?rev=1.108&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/luatex/ChangeLog?rev=1.108&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/luatex/ChangeLog?r1=1.107&r2=1.108
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-tex/luatex/ChangeLog,v
retrieving revision 1.107
retrieving revision 1.108
diff -u -r1.107 -r1.108
--- ChangeLog 15 Jan 2013 10:40:02 -0000 1.107
+++ ChangeLog 15 Jan 2013 21:21:20 -0000 1.108
@@ -1,6 +1,12 @@
# ChangeLog for dev-tex/luatex
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-tex/luatex/ChangeLog,v 1.107 2013/01/15 10:40:02 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-tex/luatex/ChangeLog,v 1.108 2013/01/15 21:21:20 aballier Exp $
+
+*luatex-0.74.0 (15 Jan 2013)
+
+ 15 Jan 2013; Alexis Ballier <aballier@gentoo.org> +luatex-0.74.0.ebuild,
+ +files/includes.patch:
+ version bump
15 Jan 2013; Agostino Sarubbo <ago@gentoo.org> luatex-0.70.1-r1.ebuild:
Stable for amd64, wrt bug #452018
1.1 dev-tex/luatex/luatex-0.74.0.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/luatex/luatex-0.74.0.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/luatex/luatex-0.74.0.ebuild?rev=1.1&content-type=text/plain
Index: luatex-0.74.0.ebuild
===================================================================
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-tex/luatex/luatex-0.74.0.ebuild,v 1.1 2013/01/15 21:21:20 aballier Exp $
EAPI=4
inherit libtool eutils texlive-common
MY_P=${PN}-beta-${PV}
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/396/1876/${MY_P}-source.tar.bz2
http://foundry.supelec.fr/gf/download/frsrelease/396/1878/${MY_P}-doc.tar.bz2"
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 ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE="doc"
RDEPEND="dev-libs/zziplib
>=media-libs/libpng-1.4
x11-libs/cairo
x11-libs/pixman
>=app-text/poppler-0.12.3-r3[xpdf-headers(+)]
sys-libs/zlib
>=dev-libs/kpathsea-6.0.1_p20110627"
DEPEND="${RDEPEND}
virtual/pkgconfig"
S="${WORKDIR}/${MY_P}/source"
src_prepare() {
epatch "${FILESDIR}/remove-zlib-version-check.patch" \
"${FILESDIR}/includes.patch"
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
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-kpathsea-includes="${EPREFIX}"/usr/include \
--with-system-cairo \
--with-system-pixman \
--with-system-gd \
--with-system-libpng \
--with-system-teckit \
--with-system-zlib \
--with-system-t1lib \
--with-system-xpdf \
--with-system-poppler \
--with-system-zziplib \
--with-system-ptexenc \
--disable-multiplatform
}
src_compile() {
texk/web2c/luatexdir/getluatexsvnversion.sh || die
cd "${WORKDIR}/${MY_P}/source/texk/web2c"
emake luatex
}
src_install() {
cd "${WORKDIR}/${MY_P}/source/texk/web2c"
emake DESTDIR="${D}" bin_PROGRAMS="luatex" SUBDIRS="" nodist_man_MANS="" \
install-exec-am
dodoc "${WORKDIR}/${MY_P}/README" luatexdir/NEWS
cp source/texk/web2c/man
cp man/luatex.man "${T}/luatex.1"
doman "${T}/luatex.1"
use doc && dodoc "${WORKDIR}/${MY_P}/manual/"*.pdf
}
pkg_postinst() {
if ! has_version '>=dev-texlive/texlive-basic-2008' ; then
elog "Note that this package does not install many files, mainly just the"
elog "${PN} executable, which needs other files in order to be"
elog "useful. Please consider installing a recent TeX distribution such as"
elog "TeX Live 2008 or later to take advantage of the full power of"
elog "${PN} ."
fi
efmtutil-sys
}
^ permalink raw reply [flat|nested] 2+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-tex/luatex: ChangeLog luatex-0.74.0.ebuild
@ 2013-07-01 13:24 Alexis Ballier (aballier)
0 siblings, 0 replies; 2+ messages in thread
From: Alexis Ballier (aballier) @ 2013-07-01 13:24 UTC (permalink / raw
To: gentoo-commits
aballier 13/07/01 13:24:46
Modified: ChangeLog
Removed: luatex-0.74.0.ebuild
Log:
remove old
(Portage version: 2.2.0_alpha186/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
Revision Changes Path
1.135 dev-tex/luatex/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/luatex/ChangeLog?rev=1.135&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/luatex/ChangeLog?rev=1.135&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/luatex/ChangeLog?r1=1.134&r2=1.135
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-tex/luatex/ChangeLog,v
retrieving revision 1.134
retrieving revision 1.135
diff -u -r1.134 -r1.135
--- ChangeLog 1 Jul 2013 13:22:33 -0000 1.134
+++ ChangeLog 1 Jul 2013 13:24:46 -0000 1.135
@@ -1,6 +1,9 @@
# ChangeLog for dev-tex/luatex
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-tex/luatex/ChangeLog,v 1.134 2013/07/01 13:22:33 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-tex/luatex/ChangeLog,v 1.135 2013/07/01 13:24:46 aballier Exp $
+
+ 01 Jul 2013; Alexis Ballier <aballier@gentoo.org> -luatex-0.74.0.ebuild:
+ remove old
01 Jul 2013; Alexis Ballier <aballier@gentoo.org> luatex-0.76.0.ebuild:
bump cairo and pixman deps to reflect reality of what is needed
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2013-07-01 13:24 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-01-15 21:21 [gentoo-commits] gentoo-x86 commit in dev-tex/luatex: ChangeLog luatex-0.74.0.ebuild Alexis Ballier (aballier)
-- strict thread matches above, loose matches on Subject: below --
2013-07-01 13:24 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