public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-tex/hevea: hevea-2.03.ebuild ChangeLog
@ 2013-03-10  9:55 Alexis Ballier (aballier)
  0 siblings, 0 replies; 6+ messages in thread
From: Alexis Ballier (aballier) @ 2013-03-10  9:55 UTC (permalink / raw
  To: gentoo-commits

aballier    13/03/10 09:55:02

  Modified:             ChangeLog
  Added:                hevea-2.03.ebuild
  Log:
  version bump
  
  (Portage version: 2.2.0_alpha166/cvs/Linux x86_64, signed Manifest commit with key 160F534A)

Revision  Changes    Path
1.38                 dev-tex/hevea/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-tex/hevea/ChangeLog,v
retrieving revision 1.37
retrieving revision 1.38
diff -u -r1.37 -r1.38
--- ChangeLog	10 Mar 2013 09:51:04 -0000	1.37
+++ ChangeLog	10 Mar 2013 09:55:02 -0000	1.38
@@ -1,6 +1,11 @@
 # ChangeLog for dev-tex/hevea
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-tex/hevea/ChangeLog,v 1.37 2013/03/10 09:51:04 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-tex/hevea/ChangeLog,v 1.38 2013/03/10 09:55:02 aballier Exp $
+
+*hevea-2.03 (10 Mar 2013)
+
+  10 Mar 2013; Alexis Ballier <aballier@gentoo.org> +hevea-2.03.ebuild:
+  version bump
 
   10 Mar 2013; Alexis Ballier <aballier@gentoo.org> hevea-2.02.ebuild:
   eapi5: slot dep on ocaml



1.1                  dev-tex/hevea/hevea-2.03.ebuild

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

Index: hevea-2.03.ebuild
===================================================================
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-tex/hevea/hevea-2.03.ebuild,v 1.1 2013/03/10 09:55:02 aballier Exp $

EAPI=5

inherit eutils multilib

IUSE="+ocamlopt"

DESCRIPTION="HeVeA is a quite complete and fast LaTeX to HTML translator"
HOMEPAGE="http://hevea.inria.fr/"
SRC_URI="http://hevea.inria.fr/distri/${P}.tar.gz"

LICENSE="QPL"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86"

DEPEND=">=dev-lang/ocaml-3.12:=[ocamlopt?]"
RDEPEND="${DEPEND}"

src_compile() {
	rm -f config.sh
	emake PREFIX=/usr DESTDIR="${D}" LIBDIR="/usr/$(get_libdir)/hevea" LATEXLIBDIR="/usr/share/texmf-site/tex/latex/hevea" config.sh || die "Failed to create config.sh"
	if use ocamlopt; then
		emake PREFIX=/usr || die "Failed to build native code binaries"
	else
		emake PREFIX=/usr TARGET=byte || die "Failed to build bytecode binaries"
	fi
}

src_install() {
	if use ocamlopt; then
		emake DESTDIR="${D}" PREFIX=/usr install || die "Install failed"
	else
		emake DESTDIR="${D}" PREFIX=/usr TARGET=byte install || die "Install failed"
	fi

	dodoc README CHANGES
}

# If texmf-update is present this means we have a latex install; update it so
# that hevea.sty can be found
# Do not (r)depend on latex though because hevea does not need it itself
# If latex is installed later, it will see hevea.sty

pkg_postinst() {
	if [ "$ROOT" = "/" ] && [ -x /usr/sbin/texmf-update ] ; then
		/usr/sbin/texmf-update
	fi
}

pkg_postrm() {
	if [ "$ROOT" = "/" ] && [ -x /usr/sbin/texmf-update ] ; then
		/usr/sbin/texmf-update
	fi
}





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

* [gentoo-commits] gentoo-x86 commit in dev-tex/hevea: hevea-2.03.ebuild ChangeLog
@ 2013-05-19  9:57 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 6+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-05-19  9:57 UTC (permalink / raw
  To: gentoo-commits

ago         13/05/19 09:57:35

  Modified:             hevea-2.03.ebuild ChangeLog
  Log:
  Stable for amd64, wrt bug #470480
  
  (Portage version: 2.1.11.63/cvs/Linux x86_64, RepoMan options: --include-arches="amd64", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.2                  dev-tex/hevea/hevea-2.03.ebuild

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

Index: hevea-2.03.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-tex/hevea/hevea-2.03.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- hevea-2.03.ebuild	10 Mar 2013 09:55:02 -0000	1.1
+++ hevea-2.03.ebuild	19 May 2013 09:57:35 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-tex/hevea/hevea-2.03.ebuild,v 1.1 2013/03/10 09:55:02 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-tex/hevea/hevea-2.03.ebuild,v 1.2 2013/05/19 09:57:35 ago Exp $
 
 EAPI=5
 
@@ -14,7 +14,7 @@
 
 LICENSE="QPL"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="amd64 ~ppc ~ppc64 ~sparc ~x86"
 
 DEPEND=">=dev-lang/ocaml-3.12:=[ocamlopt?]"
 RDEPEND="${DEPEND}"



1.44                 dev-tex/hevea/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-tex/hevea/ChangeLog,v
retrieving revision 1.43
retrieving revision 1.44
diff -u -r1.43 -r1.44
--- ChangeLog	15 Mar 2013 10:19:27 -0000	1.43
+++ ChangeLog	19 May 2013 09:57:35 -0000	1.44
@@ -1,6 +1,9 @@
 # ChangeLog for dev-tex/hevea
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-tex/hevea/ChangeLog,v 1.43 2013/03/15 10:19:27 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-tex/hevea/ChangeLog,v 1.44 2013/05/19 09:57:35 ago Exp $
+
+  19 May 2013; Agostino Sarubbo <ago@gentoo.org> hevea-2.03.ebuild:
+  Stable for amd64, wrt bug #470480
 
   15 Mar 2013; Alexis Ballier <aballier@gentoo.org> -hevea-2.00.ebuild:
   remove old





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

* [gentoo-commits] gentoo-x86 commit in dev-tex/hevea: hevea-2.03.ebuild ChangeLog
@ 2013-05-20  8:43 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 6+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-05-20  8:43 UTC (permalink / raw
  To: gentoo-commits

ago         13/05/20 08:43:39

  Modified:             hevea-2.03.ebuild ChangeLog
  Log:
  Stable for x86, wrt bug #470480
  
  (Portage version: 2.1.11.63/cvs/Linux x86_64, RepoMan options: --include-arches="x86", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.3                  dev-tex/hevea/hevea-2.03.ebuild

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

Index: hevea-2.03.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-tex/hevea/hevea-2.03.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- hevea-2.03.ebuild	19 May 2013 09:57:35 -0000	1.2
+++ hevea-2.03.ebuild	20 May 2013 08:43:39 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-tex/hevea/hevea-2.03.ebuild,v 1.2 2013/05/19 09:57:35 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-tex/hevea/hevea-2.03.ebuild,v 1.3 2013/05/20 08:43:39 ago Exp $
 
 EAPI=5
 
@@ -14,7 +14,7 @@
 
 LICENSE="QPL"
 SLOT="0"
-KEYWORDS="amd64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="amd64 ~ppc ~ppc64 ~sparc x86"
 
 DEPEND=">=dev-lang/ocaml-3.12:=[ocamlopt?]"
 RDEPEND="${DEPEND}"



1.45                 dev-tex/hevea/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-tex/hevea/ChangeLog,v
retrieving revision 1.44
retrieving revision 1.45
diff -u -r1.44 -r1.45
--- ChangeLog	19 May 2013 09:57:35 -0000	1.44
+++ ChangeLog	20 May 2013 08:43:39 -0000	1.45
@@ -1,6 +1,9 @@
 # ChangeLog for dev-tex/hevea
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-tex/hevea/ChangeLog,v 1.44 2013/05/19 09:57:35 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-tex/hevea/ChangeLog,v 1.45 2013/05/20 08:43:39 ago Exp $
+
+  20 May 2013; Agostino Sarubbo <ago@gentoo.org> hevea-2.03.ebuild:
+  Stable for x86, wrt bug #470480
 
   19 May 2013; Agostino Sarubbo <ago@gentoo.org> hevea-2.03.ebuild:
   Stable for amd64, wrt bug #470480





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

* [gentoo-commits] gentoo-x86 commit in dev-tex/hevea: hevea-2.03.ebuild ChangeLog
@ 2013-05-20 12:45 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 6+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-05-20 12:45 UTC (permalink / raw
  To: gentoo-commits

ago         13/05/20 12:45:51

  Modified:             hevea-2.03.ebuild ChangeLog
  Log:
  Stable for ppc, wrt bug #470480
  
  (Portage version: 2.1.11.63/cvs/Linux ppc64, RepoMan options: --include-arches="ppc", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.4                  dev-tex/hevea/hevea-2.03.ebuild

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

Index: hevea-2.03.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-tex/hevea/hevea-2.03.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- hevea-2.03.ebuild	20 May 2013 08:43:39 -0000	1.3
+++ hevea-2.03.ebuild	20 May 2013 12:45:51 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-tex/hevea/hevea-2.03.ebuild,v 1.3 2013/05/20 08:43:39 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-tex/hevea/hevea-2.03.ebuild,v 1.4 2013/05/20 12:45:51 ago Exp $
 
 EAPI=5
 
@@ -14,7 +14,7 @@
 
 LICENSE="QPL"
 SLOT="0"
-KEYWORDS="amd64 ~ppc ~ppc64 ~sparc x86"
+KEYWORDS="amd64 ppc ~ppc64 ~sparc x86"
 
 DEPEND=">=dev-lang/ocaml-3.12:=[ocamlopt?]"
 RDEPEND="${DEPEND}"



1.46                 dev-tex/hevea/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-tex/hevea/ChangeLog,v
retrieving revision 1.45
retrieving revision 1.46
diff -u -r1.45 -r1.46
--- ChangeLog	20 May 2013 08:43:39 -0000	1.45
+++ ChangeLog	20 May 2013 12:45:51 -0000	1.46
@@ -1,6 +1,9 @@
 # ChangeLog for dev-tex/hevea
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-tex/hevea/ChangeLog,v 1.45 2013/05/20 08:43:39 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-tex/hevea/ChangeLog,v 1.46 2013/05/20 12:45:51 ago Exp $
+
+  20 May 2013; Agostino Sarubbo <ago@gentoo.org> hevea-2.03.ebuild:
+  Stable for ppc, wrt bug #470480
 
   20 May 2013; Agostino Sarubbo <ago@gentoo.org> hevea-2.03.ebuild:
   Stable for x86, wrt bug #470480





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

* [gentoo-commits] gentoo-x86 commit in dev-tex/hevea: hevea-2.03.ebuild ChangeLog
@ 2013-05-25  8:04 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 6+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-05-25  8:04 UTC (permalink / raw
  To: gentoo-commits

ago         13/05/25 08:04:25

  Modified:             hevea-2.03.ebuild ChangeLog
  Log:
  Stable for sparc, wrt bug #470480
  
  (Portage version: 2.1.11.63/cvs/Linux ppc64, RepoMan options: --include-arches="sparc", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.5                  dev-tex/hevea/hevea-2.03.ebuild

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

Index: hevea-2.03.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-tex/hevea/hevea-2.03.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- hevea-2.03.ebuild	20 May 2013 12:45:51 -0000	1.4
+++ hevea-2.03.ebuild	25 May 2013 08:04:25 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-tex/hevea/hevea-2.03.ebuild,v 1.4 2013/05/20 12:45:51 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-tex/hevea/hevea-2.03.ebuild,v 1.5 2013/05/25 08:04:25 ago Exp $
 
 EAPI=5
 
@@ -14,7 +14,7 @@
 
 LICENSE="QPL"
 SLOT="0"
-KEYWORDS="amd64 ppc ~ppc64 ~sparc x86"
+KEYWORDS="amd64 ppc ~ppc64 sparc x86"
 
 DEPEND=">=dev-lang/ocaml-3.12:=[ocamlopt?]"
 RDEPEND="${DEPEND}"



1.47                 dev-tex/hevea/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-tex/hevea/ChangeLog,v
retrieving revision 1.46
retrieving revision 1.47
diff -u -r1.46 -r1.47
--- ChangeLog	20 May 2013 12:45:51 -0000	1.46
+++ ChangeLog	25 May 2013 08:04:25 -0000	1.47
@@ -1,6 +1,9 @@
 # ChangeLog for dev-tex/hevea
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-tex/hevea/ChangeLog,v 1.46 2013/05/20 12:45:51 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-tex/hevea/ChangeLog,v 1.47 2013/05/25 08:04:25 ago Exp $
+
+  25 May 2013; Agostino Sarubbo <ago@gentoo.org> hevea-2.03.ebuild:
+  Stable for sparc, wrt bug #470480
 
   20 May 2013; Agostino Sarubbo <ago@gentoo.org> hevea-2.03.ebuild:
   Stable for ppc, wrt bug #470480





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

* [gentoo-commits] gentoo-x86 commit in dev-tex/hevea: hevea-2.03.ebuild ChangeLog
@ 2013-06-14 20:12 Alexis Ballier (aballier)
  0 siblings, 0 replies; 6+ messages in thread
From: Alexis Ballier (aballier) @ 2013-06-14 20:12 UTC (permalink / raw
  To: gentoo-commits

aballier    13/06/14 20:12:18

  Modified:             hevea-2.03.ebuild ChangeLog
  Log:
  rdepend on tl-latexextra for comment.sty by Alexey Shmalko, bug #472660
  
  (Portage version: 2.2.0_alpha179/cvs/Linux x86_64, signed Manifest commit with key 160F534A)

Revision  Changes    Path
1.6                  dev-tex/hevea/hevea-2.03.ebuild

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

Index: hevea-2.03.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-tex/hevea/hevea-2.03.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- hevea-2.03.ebuild	25 May 2013 08:04:25 -0000	1.5
+++ hevea-2.03.ebuild	14 Jun 2013 20:12:18 -0000	1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-tex/hevea/hevea-2.03.ebuild,v 1.5 2013/05/25 08:04:25 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-tex/hevea/hevea-2.03.ebuild,v 1.6 2013/06/14 20:12:18 aballier Exp $
 
 EAPI=5
 
@@ -17,7 +17,8 @@
 KEYWORDS="amd64 ppc ~ppc64 sparc x86"
 
 DEPEND=">=dev-lang/ocaml-3.12:=[ocamlopt?]"
-RDEPEND="${DEPEND}"
+RDEPEND="${DEPEND}
+	dev-texlive/texlive-latexextra"
 
 src_compile() {
 	rm -f config.sh



1.49                 dev-tex/hevea/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-tex/hevea/ChangeLog,v
retrieving revision 1.48
retrieving revision 1.49
diff -u -r1.48 -r1.49
--- ChangeLog	14 Jun 2013 20:08:05 -0000	1.48
+++ ChangeLog	14 Jun 2013 20:12:18 -0000	1.49
@@ -1,6 +1,9 @@
 # ChangeLog for dev-tex/hevea
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-tex/hevea/ChangeLog,v 1.48 2013/06/14 20:08:05 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-tex/hevea/ChangeLog,v 1.49 2013/06/14 20:12:18 aballier Exp $
+
+  14 Jun 2013; Alexis Ballier <aballier@gentoo.org> hevea-2.03.ebuild:
+  rdepend on tl-latexextra for comment.sty by Alexey Shmalko, bug #472660
 
   14 Jun 2013; Alexis Ballier <aballier@gentoo.org> -hevea-2.02.ebuild:
   remove old





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

end of thread, other threads:[~2013-06-14 20:12 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-05-25  8:04 [gentoo-commits] gentoo-x86 commit in dev-tex/hevea: hevea-2.03.ebuild ChangeLog Agostino Sarubbo (ago)
  -- strict thread matches above, loose matches on Subject: below --
2013-06-14 20:12 Alexis Ballier (aballier)
2013-05-20 12:45 Agostino Sarubbo (ago)
2013-05-20  8:43 Agostino Sarubbo (ago)
2013-05-19  9:57 Agostino Sarubbo (ago)
2013-03-10  9:55 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