public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-tex/bibtex2html: ChangeLog bibtex2html-1.96.ebuild
@ 2010-12-26 14:16 Alexis Ballier (aballier)
  0 siblings, 0 replies; 5+ messages in thread
From: Alexis Ballier (aballier) @ 2010-12-26 14:16 UTC (permalink / raw
  To: gentoo-commits

aballier    10/12/26 14:16:22

  Modified:             ChangeLog
  Added:                bibtex2html-1.96.ebuild
  Log:
  version bump
  
  (Portage version: 2.2.0_alpha10/cvs/Linux x86_64)

Revision  Changes    Path
1.21                 dev-tex/bibtex2html/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-tex/bibtex2html/ChangeLog,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -r1.20 -r1.21
--- ChangeLog	4 Aug 2010 07:38:39 -0000	1.20
+++ ChangeLog	26 Dec 2010 14:16:22 -0000	1.21
@@ -1,6 +1,11 @@
 # ChangeLog for dev-tex/bibtex2html
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-tex/bibtex2html/ChangeLog,v 1.20 2010/08/04 07:38:39 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-tex/bibtex2html/ChangeLog,v 1.21 2010/12/26 14:16:22 aballier Exp $
+
+*bibtex2html-1.96 (26 Dec 2010)
+
+  26 Dec 2010; Alexis Ballier <aballier@gentoo.org> +bibtex2html-1.96.ebuild:
+  version bump
 
 *bibtex2html-1.95 (04 Aug 2010)
 



1.1                  dev-tex/bibtex2html/bibtex2html-1.96.ebuild

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

Index: bibtex2html-1.96.ebuild
===================================================================
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-tex/bibtex2html/bibtex2html-1.96.ebuild,v 1.1 2010/12/26 14:16:22 aballier Exp $

EAPI=2

inherit eutils

IUSE="doc +ocamlopt"

DESCRIPTION="A bibtex to HTML converter"
SRC_URI="http://www.lri.fr/~filliatr/ftp/bibtex2html/${P}.tar.gz"
HOMEPAGE="http://www.lri.fr/~filliatr/bibtex2html/"

SLOT="0"

LICENSE="GPL-2"
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
RESTRICT="test"

# With use doc we need a latex compiler to generate manual.pdf
# hevea is used for manual.html
# manual.tex needs fullpage.sty
DEPEND=">=dev-lang/ocaml-3.10[ocamlopt?]
	doc? ( virtual/latex-base
	|| ( dev-texlive/texlive-latexextra app-text/ptex )
		dev-tex/hevea )"
# We need tex-base for bibtex but also some bibtex styles, so we use latex-base
RDEPEND="virtual/latex-base"

src_prepare() {
	epatch "${FILESDIR}/${PN}-1.88-destdir.patch"
	# Avoid pre-stripped files
	sed -i -e "s/strip/true/" Makefile.in
	# Fix build with ocaml 3.12, bug #331081
	has_version '>=dev-lang/ocaml-3.12' && sed -i 's/lstr/lcamlstr/' Makefile.in
	# For make install
	use ocamlopt || sed -i 's/= opt /= noopt /' Makefile.in
}

src_compile() {
	export VARTEXFONTS="${T}/fonts"
	if use ocamlopt ; then
		emake opt || die
	else
		emake byte || die
	fi
	if use doc; then
		emake doc || die "failed to create doc"
	fi
}

src_install() {
	emake DESTDIR="${D}" install || die "failed to install"
	dodoc README CHANGES
	if use doc; then
		dodoc manual.pdf
		dohtml manual.html
	fi
}






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

* [gentoo-commits] gentoo-x86 commit in dev-tex/bibtex2html: ChangeLog bibtex2html-1.96.ebuild
@ 2011-07-15  8:58 Markos Chandras (hwoarang)
  0 siblings, 0 replies; 5+ messages in thread
From: Markos Chandras (hwoarang) @ 2011-07-15  8:58 UTC (permalink / raw
  To: gentoo-commits

hwoarang    11/07/15 08:58:30

  Modified:             ChangeLog bibtex2html-1.96.ebuild
  Log:
  Stable on amd64 wrt bug #374977
  
  (Portage version: 2.2.0_alpha43/cvs/Linux x86_64)

Revision  Changes    Path
1.23                 dev-tex/bibtex2html/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-tex/bibtex2html/ChangeLog,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -r1.22 -r1.23
--- ChangeLog	21 Jan 2011 00:38:01 -0000	1.22
+++ ChangeLog	15 Jul 2011 08:58:29 -0000	1.23
@@ -1,6 +1,9 @@
 # ChangeLog for dev-tex/bibtex2html
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-tex/bibtex2html/ChangeLog,v 1.22 2011/01/21 00:38:01 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-tex/bibtex2html/ChangeLog,v 1.23 2011/07/15 08:58:29 hwoarang Exp $
+
+  15 Jul 2011; Markos Chandras <hwoarang@gentoo.org> bibtex2html-1.96.ebuild:
+  Stable on amd64 wrt bug #374977
 
   21 Jan 2011; Alexis Ballier <aballier@gentoo.org> -bibtex2html-1.94.ebuild,
   -bibtex2html-1.95.ebuild:



1.2                  dev-tex/bibtex2html/bibtex2html-1.96.ebuild

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

Index: bibtex2html-1.96.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-tex/bibtex2html/bibtex2html-1.96.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- bibtex2html-1.96.ebuild	26 Dec 2010 14:16:22 -0000	1.1
+++ bibtex2html-1.96.ebuild	15 Jul 2011 08:58:29 -0000	1.2
@@ -1,6 +1,6 @@
-# Copyright 1999-2010 Gentoo Foundation
+# Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-tex/bibtex2html/bibtex2html-1.96.ebuild,v 1.1 2010/12/26 14:16:22 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-tex/bibtex2html/bibtex2html-1.96.ebuild,v 1.2 2011/07/15 08:58:29 hwoarang Exp $
 
 EAPI=2
 
@@ -15,7 +15,7 @@
 SLOT="0"
 
 LICENSE="GPL-2"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+KEYWORDS="amd64 ~ppc ~ppc64 ~x86"
 RESTRICT="test"
 
 # With use doc we need a latex compiler to generate manual.pdf






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

* [gentoo-commits] gentoo-x86 commit in dev-tex/bibtex2html: ChangeLog bibtex2html-1.96.ebuild
@ 2011-07-23 11:25 Markus Meier (maekke)
  0 siblings, 0 replies; 5+ messages in thread
From: Markus Meier (maekke) @ 2011-07-23 11:25 UTC (permalink / raw
  To: gentoo-commits

maekke      11/07/23 11:25:58

  Modified:             ChangeLog bibtex2html-1.96.ebuild
  Log:
  x86 stable, bug #374977
  
  (Portage version: 2.1.10.7/cvs/Linux x86_64)

Revision  Changes    Path
1.24                 dev-tex/bibtex2html/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-tex/bibtex2html/ChangeLog,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -r1.23 -r1.24
--- ChangeLog	15 Jul 2011 08:58:29 -0000	1.23
+++ ChangeLog	23 Jul 2011 11:25:58 -0000	1.24
@@ -1,6 +1,9 @@
 # ChangeLog for dev-tex/bibtex2html
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-tex/bibtex2html/ChangeLog,v 1.23 2011/07/15 08:58:29 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-tex/bibtex2html/ChangeLog,v 1.24 2011/07/23 11:25:58 maekke Exp $
+
+  23 Jul 2011; Markus Meier <maekke@gentoo.org> bibtex2html-1.96.ebuild:
+  x86 stable, bug #374977
 
   15 Jul 2011; Markos Chandras <hwoarang@gentoo.org> bibtex2html-1.96.ebuild:
   Stable on amd64 wrt bug #374977



1.3                  dev-tex/bibtex2html/bibtex2html-1.96.ebuild

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

Index: bibtex2html-1.96.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-tex/bibtex2html/bibtex2html-1.96.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- bibtex2html-1.96.ebuild	15 Jul 2011 08:58:29 -0000	1.2
+++ bibtex2html-1.96.ebuild	23 Jul 2011 11:25:58 -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/bibtex2html/bibtex2html-1.96.ebuild,v 1.2 2011/07/15 08:58:29 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-tex/bibtex2html/bibtex2html-1.96.ebuild,v 1.3 2011/07/23 11:25:58 maekke Exp $
 
 EAPI=2
 
@@ -15,7 +15,7 @@
 SLOT="0"
 
 LICENSE="GPL-2"
-KEYWORDS="amd64 ~ppc ~ppc64 ~x86"
+KEYWORDS="amd64 ~ppc ~ppc64 x86"
 RESTRICT="test"
 
 # With use doc we need a latex compiler to generate manual.pdf






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

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

aballier    11/10/05 19:07:15

  Modified:             ChangeLog bibtex2html-1.96.ebuild
  Log:
  remove ptex dep as it is going away
  
  (Portage version: 2.2.0_alpha61/cvs/Linux x86_64)

Revision  Changes    Path
1.26                 dev-tex/bibtex2html/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-tex/bibtex2html/ChangeLog,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -r1.25 -r1.26
--- ChangeLog	24 Jul 2011 16:10:37 -0000	1.25
+++ ChangeLog	5 Oct 2011 19:07:15 -0000	1.26
@@ -1,6 +1,9 @@
 # ChangeLog for dev-tex/bibtex2html
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-tex/bibtex2html/ChangeLog,v 1.25 2011/07/24 16:10:37 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-tex/bibtex2html/ChangeLog,v 1.26 2011/10/05 19:07:15 aballier Exp $
+
+  05 Oct 2011; Alexis Ballier <aballier@gentoo.org> bibtex2html-1.96.ebuild:
+  remove ptex dep as it is going away
 
   24 Jul 2011; Alexis Ballier <aballier@gentoo.org> -bibtex2html-1.80.ebuild:
   remove old



1.4                  dev-tex/bibtex2html/bibtex2html-1.96.ebuild

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

Index: bibtex2html-1.96.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-tex/bibtex2html/bibtex2html-1.96.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- bibtex2html-1.96.ebuild	23 Jul 2011 11:25:58 -0000	1.3
+++ bibtex2html-1.96.ebuild	5 Oct 2011 19:07:15 -0000	1.4
@@ -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/bibtex2html/bibtex2html-1.96.ebuild,v 1.3 2011/07/23 11:25:58 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-tex/bibtex2html/bibtex2html-1.96.ebuild,v 1.4 2011/10/05 19:07:15 aballier Exp $
 
 EAPI=2
 
@@ -23,7 +23,7 @@
 # manual.tex needs fullpage.sty
 DEPEND=">=dev-lang/ocaml-3.10[ocamlopt?]
 	doc? ( virtual/latex-base
-	|| ( dev-texlive/texlive-latexextra app-text/ptex )
+		dev-texlive/texlive-latexextra
 		dev-tex/hevea )"
 # We need tex-base for bibtex but also some bibtex styles, so we use latex-base
 RDEPEND="virtual/latex-base"






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

* [gentoo-commits] gentoo-x86 commit in dev-tex/bibtex2html: ChangeLog bibtex2html-1.96.ebuild
@ 2012-06-12 12:46 Alexis Ballier (aballier)
  0 siblings, 0 replies; 5+ messages in thread
From: Alexis Ballier (aballier) @ 2012-06-12 12:46 UTC (permalink / raw
  To: gentoo-commits

aballier    12/06/12 12:46:57

  Modified:             ChangeLog
  Removed:              bibtex2html-1.96.ebuild
  Log:
  remove old
  
  (Portage version: 2.2.0_alpha110/cvs/Linux x86_64)

Revision  Changes    Path
1.30                 dev-tex/bibtex2html/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-tex/bibtex2html/ChangeLog,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -r1.29 -r1.30
--- ChangeLog	21 May 2012 21:09:36 -0000	1.29
+++ ChangeLog	12 Jun 2012 12:46:57 -0000	1.30
@@ -1,6 +1,9 @@
 # ChangeLog for dev-tex/bibtex2html
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-tex/bibtex2html/ChangeLog,v 1.29 2012/05/21 21:09:36 johu Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-tex/bibtex2html/ChangeLog,v 1.30 2012/06/12 12:46:57 aballier Exp $
+
+  12 Jun 2012; Alexis Ballier <aballier@gentoo.org> -bibtex2html-1.96.ebuild:
+  remove old
 
   21 May 2012; Johannes Huber <johu@gentoo.org> bibtex2html-1.97.ebuild:
   Stable for x86, wrt bug #416537






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

end of thread, other threads:[~2012-06-12 12:47 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-12-26 14:16 [gentoo-commits] gentoo-x86 commit in dev-tex/bibtex2html: ChangeLog bibtex2html-1.96.ebuild Alexis Ballier (aballier)
  -- strict thread matches above, loose matches on Subject: below --
2011-07-15  8:58 Markos Chandras (hwoarang)
2011-07-23 11:25 Markus Meier (maekke)
2011-10-05 19:07 Alexis Ballier (aballier)
2012-06-12 12:46 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