aballier    14/10/27 08:28:15

  Modified:             ChangeLog
  Added:                bibtex2html-1.98.ebuild
  Log:
  version bump
  
  Signed-off-by: [email protected]
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
160F534A)

Revision  Changes    Path
1.32                 dev-tex/bibtex2html/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-tex/bibtex2html/ChangeLog,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -r1.31 -r1.32
--- ChangeLog   19 Aug 2013 14:02:21 -0000      1.31
+++ ChangeLog   27 Oct 2014 08:28:15 -0000      1.32
@@ -1,6 +1,11 @@
 # ChangeLog for dev-tex/bibtex2html
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-tex/bibtex2html/ChangeLog,v 1.31 
2013/08/19 14:02:21 aballier Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-tex/bibtex2html/ChangeLog,v 1.32 
2014/10/27 08:28:15 aballier Exp $
+
+*bibtex2html-1.98 (27 Oct 2014)
+
+  27 Oct 2014; Alexis Ballier <[email protected]> +bibtex2html-1.98.ebuild:
+  version bump
 
   19 Aug 2013; Alexis Ballier <[email protected]> bibtex2html-1.97.ebuild:
   eapi5 and add := dep on ocaml



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

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

Index: bibtex2html-1.98.ebuild
===================================================================
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-tex/bibtex2html/bibtex2html-1.98.ebuild,v 1.1 
2014/10/27 08:28:15 aballier Exp $

EAPI=5

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
                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
        # For make install
        use ocamlopt || sed -i 's/= opt /= noopt /' Makefile.in
}

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

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




Reply via email to