public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in app-text/active-dvi: ChangeLog active-dvi-1.7.3.ebuild
@ 2008-06-07 20:39 Alexis Ballier (aballier)
  0 siblings, 0 replies; 4+ messages in thread
From: Alexis Ballier (aballier) @ 2008-06-07 20:39 UTC (permalink / raw
  To: gentoo-commits

aballier    08/06/07 20:39:54

  Modified:             ChangeLog
  Added:                active-dvi-1.7.3.ebuild
  Log:
  Version bump for bug #225005, give it ocamlopt optional support, fix bug #174232, and add ~amd64
  (Portage version: 2.1.5.4)

Revision  Changes    Path
1.18                 app-text/active-dvi/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/active-dvi/ChangeLog?rev=1.18&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/active-dvi/ChangeLog?rev=1.18&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/active-dvi/ChangeLog?r1=1.17&r2=1.18

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-text/active-dvi/ChangeLog,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- ChangeLog	5 Jun 2008 15:42:19 -0000	1.17
+++ ChangeLog	7 Jun 2008 20:39:53 -0000	1.18
@@ -1,6 +1,13 @@
 # ChangeLog for app-text/active-dvi
 # Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/active-dvi/ChangeLog,v 1.17 2008/06/05 15:42:19 opfer Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/active-dvi/ChangeLog,v 1.18 2008/06/07 20:39:53 aballier Exp $
+
+*active-dvi-1.7.3 (07 Jun 2008)
+
+  07 Jun 2008; Alexis Ballier <aballier@gentoo.org>
+  +files/active-dvi-1.7.3-asneeded.patch, +active-dvi-1.7.3.ebuild:
+  Version bump for bug #225005, give it ocamlopt optional support, fix bug
+  #174232, and add ~amd64
 
   05 Jun 2008; Christian Faulhammer <opfer@gentoo.org>
   active-dvi-1.6.0-r1.ebuild:



1.1                  app-text/active-dvi/active-dvi-1.7.3.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/active-dvi/active-dvi-1.7.3.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/active-dvi/active-dvi-1.7.3.ebuild?rev=1.1&content-type=text/plain

Index: active-dvi-1.7.3.ebuild
===================================================================
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/active-dvi/active-dvi-1.7.3.ebuild,v 1.1 2008/06/07 20:39:53 aballier Exp $

EAPI=1

inherit eutils autotools

MY_PN=${PN/ctive-/}
MY_P=${MY_PN}-${PV}
S=${WORKDIR}/${MY_P}

DESCRIPTION="A DVI previewer and a presenter for slides written in LaTeX"
SRC_URI="http://pauillac.inria.fr/advi/${MY_P}.tar.gz"
HOMEPAGE="http://pauillac.inria.fr/advi/"
LICENSE="LGPL-2.1"

IUSE="+ocamlopt tk"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"

RDEPEND=">=dev-lang/ocaml-3.10.0
	>=dev-ml/camlimages-2.20-r1
	virtual/latex-base
	virtual/ghostscript
	x11-libs/libXinerama"
DEPEND="${RDEPEND}
	x11-proto/xineramaproto"

DOCS="README TODO"

pkg_setup() {
	# warn those who have USE="tk" but no ocaml tk support
	# because we cant force ocaml to be build with tk.
	if use tk; then
		if [ ! -d /usr/lib/ocaml/labltk ]; then
			echo ""
			ewarn "You have requested tk support, but it appears"
			ewarn "your ocaml wasnt compiled with tk support, "
			ewarn "so it can't be included for active-dvi."
			echo ""
			ewarn "Please stop this build, and emerge ocaml with "
			ewarn "USE=\"tk\" ocaml"
			ewarn "before emerging active-dvi if you want tk support."
			echo ""
			# give the user some time to read this, but leave the
			# choice up to them
			epause 8
		fi
	fi
	if use ocamlopt && ! built_with_use --missing true dev-lang/ocaml ocamlopt; then
		eerror "In order to build ${PN} with native code support from ocaml"
		eerror "You first need to have a native code ocaml compiler."
		eerror "You need to install dev-lang/ocaml with ocamlopt useflag on."
		die "Please install ocaml with ocamlopt useflag"
	fi
}

src_unpack() {
	unpack ${A}
	cd "${S}"
	epatch "${FILESDIR}/${P}-asneeded.patch"
	AT_M4DIR="." eautoreconf
}

src_compile() {
	export ADVI_LOC="/usr/share/texmf/tex/latex/advi"
	econf $(use_enable ocamlopt native-program)
	emake || die "emake failed"
	cd doc
	VARTEXFONTS="${T}/fonts" emake splash.dvi scratch_write_splash.dvi scratch_draw_splash.dvi || die "failed to create documentation"
}

src_install() {
	emake DESTDIR="${D}" install || die

	# now install the documentation
	dodoc ${DOCS}
	cd "${S}"/doc
	dohtml *.{jpg,gif,css,html}
	insinto /usr/share/doc/${PF}
	doins manual.{dvi,pdf,ps} || die "failed to install documentation"
	# and the manual page
	doman advi.1
	insinto /usr/share/texmf/tex/latex/advi
	doins splash.dvi scratch_write_splash.dvi scratch_draw_splash.dvi || die "failed to install splashes"
	export STRIP_MASK="*/bin/advi.byt"
}

pkg_postinst() {
	einfo "Running texhash to complete installation.."
	texhash
}

pkg_postrm() {
	einfo "Running texhash to complete installation.."
	texhash
}



-- 
gentoo-commits@lists.gentoo.org mailing list



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

* [gentoo-commits] gentoo-x86 commit in app-text/active-dvi: ChangeLog active-dvi-1.7.3.ebuild
@ 2009-03-07 14:09 Thomas Anderson (gentoofan23)
  0 siblings, 0 replies; 4+ messages in thread
From: Thomas Anderson (gentoofan23) @ 2009-03-07 14:09 UTC (permalink / raw
  To: gentoo-commits

gentoofan23    09/03/07 14:09:07

  Modified:             ChangeLog active-dvi-1.7.3.ebuild
  Log:
  Transition to eapi 2 use deps

Revision  Changes    Path
1.27                 app-text/active-dvi/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/active-dvi/ChangeLog?rev=1.27&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/active-dvi/ChangeLog?rev=1.27&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/active-dvi/ChangeLog?r1=1.26&r2=1.27

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-text/active-dvi/ChangeLog,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -r1.26 -r1.27
--- ChangeLog	5 Oct 2008 10:33:16 -0000	1.26
+++ ChangeLog	7 Mar 2009 14:09:07 -0000	1.27
@@ -1,6 +1,10 @@
 # ChangeLog for app-text/active-dvi
-# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/active-dvi/ChangeLog,v 1.26 2008/10/05 10:33:16 aballier Exp $
+# Copyright 2000-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-text/active-dvi/ChangeLog,v 1.27 2009/03/07 14:09:07 gentoofan23 Exp $
+
+  07 Mar 2009; Thomas Anderson <gentoofan23@gentoo.org>
+  active-dvi-1.7.3.ebuild:
+  Transition to eapi 2 use deps
 
   05 Oct 2008; Alexis Ballier <aballier@gentoo.org> active-dvi-1.7.3.ebuild:
   Add missing findlib dep, thanks Patrick, bug #239607



1.8                  app-text/active-dvi/active-dvi-1.7.3.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/active-dvi/active-dvi-1.7.3.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/active-dvi/active-dvi-1.7.3.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/active-dvi/active-dvi-1.7.3.ebuild?r1=1.7&r2=1.8

Index: active-dvi-1.7.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-text/active-dvi/active-dvi-1.7.3.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- active-dvi-1.7.3.ebuild	5 Oct 2008 10:33:16 -0000	1.7
+++ active-dvi-1.7.3.ebuild	7 Mar 2009 14:09:07 -0000	1.8
@@ -1,8 +1,8 @@
-# Copyright 1999-2008 Gentoo Foundation
+# Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/active-dvi/active-dvi-1.7.3.ebuild,v 1.7 2008/10/05 10:33:16 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/active-dvi/active-dvi-1.7.3.ebuild,v 1.8 2009/03/07 14:09:07 gentoofan23 Exp $
 
-EAPI=1
+EAPI="2"
 
 inherit eutils autotools
 
@@ -19,7 +19,7 @@
 SLOT="0"
 KEYWORDS="~amd64 ~ppc x86"
 
-RDEPEND=">=dev-lang/ocaml-3.10.0
+RDEPEND=">=dev-lang/ocaml-3.10.0[ocamlopt?,tk?]
 	>=dev-ml/camlimages-2.20-r2
 	virtual/latex-base
 	virtual/ghostscript
@@ -32,33 +32,6 @@
 
 DOCS="README TODO"
 
-pkg_setup() {
-	# warn those who have USE="tk" but no ocaml tk support
-	# because we cant force ocaml to be build with tk.
-	if use tk; then
-		if [ ! -d /usr/lib/ocaml/labltk ]; then
-			echo ""
-			ewarn "You have requested tk support, but it appears"
-			ewarn "your ocaml wasnt compiled with tk support, "
-			ewarn "so it can't be included for active-dvi."
-			echo ""
-			ewarn "Please stop this build, and emerge ocaml with "
-			ewarn "USE=\"tk\" ocaml"
-			ewarn "before emerging active-dvi if you want tk support."
-			echo ""
-			# give the user some time to read this, but leave the
-			# choice up to them
-			epause 8
-		fi
-	fi
-	if use ocamlopt && ! built_with_use --missing true dev-lang/ocaml ocamlopt; then
-		eerror "In order to build ${PN} with native code support from ocaml"
-		eerror "You first need to have a native code ocaml compiler."
-		eerror "You need to install dev-lang/ocaml with ocamlopt useflag on."
-		die "Please install ocaml with ocamlopt useflag"
-	fi
-}
-
 src_unpack() {
 	unpack ${A}
 	cd "${S}"
@@ -66,9 +39,12 @@
 	AT_M4DIR="." eautoreconf
 }
 
-src_compile() {
+src_configure() {
 	export ADVI_LOC="/usr/share/texmf/tex/latex/advi"
 	econf $(use_enable ocamlopt native-program)
+}
+
+src_compile() {
 	emake || die "emake failed"
 	cd doc
 	VARTEXFONTS="${T}/fonts" emake splash.dvi scratch_write_splash.dvi scratch_draw_splash.dvi || die "failed to create documentation"






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

* [gentoo-commits] gentoo-x86 commit in app-text/active-dvi: ChangeLog active-dvi-1.7.3.ebuild
@ 2009-05-30  7:08 Ulrich Mueller (ulm)
  0 siblings, 0 replies; 4+ messages in thread
From: Ulrich Mueller (ulm) @ 2009-05-30  7:08 UTC (permalink / raw
  To: gentoo-commits

ulm         09/05/30 07:08:07

  Modified:             ChangeLog active-dvi-1.7.3.ebuild
  Log:
  Remove app-text/tetex from dependencies, bug 227443.
  (Portage version: 2.2_rc33/cvs/Linux i686)

Revision  Changes    Path
1.28                 app-text/active-dvi/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/active-dvi/ChangeLog?rev=1.28&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/active-dvi/ChangeLog?rev=1.28&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/active-dvi/ChangeLog?r1=1.27&r2=1.28

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-text/active-dvi/ChangeLog,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -r1.27 -r1.28
--- ChangeLog	7 Mar 2009 14:09:07 -0000	1.27
+++ ChangeLog	30 May 2009 07:08:07 -0000	1.28
@@ -1,6 +1,10 @@
 # ChangeLog for app-text/active-dvi
-# Copyright 2000-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/active-dvi/ChangeLog,v 1.27 2009/03/07 14:09:07 gentoofan23 Exp $
+# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-text/active-dvi/ChangeLog,v 1.28 2009/05/30 07:08:07 ulm Exp $
+
+  30 May 2009; Ulrich Mueller <ulm@gentoo.org> active-dvi-1.7.3.ebuild:
+  Remove app-text/tetex from dependencies, bug 227443. Move epatch to
+  src_prepare to make repoman happy.
 
   07 Mar 2009; Thomas Anderson <gentoofan23@gentoo.org>
   active-dvi-1.7.3.ebuild:



1.9                  app-text/active-dvi/active-dvi-1.7.3.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/active-dvi/active-dvi-1.7.3.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/active-dvi/active-dvi-1.7.3.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/active-dvi/active-dvi-1.7.3.ebuild?r1=1.8&r2=1.9

Index: active-dvi-1.7.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-text/active-dvi/active-dvi-1.7.3.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- active-dvi-1.7.3.ebuild	7 Mar 2009 14:09:07 -0000	1.8
+++ active-dvi-1.7.3.ebuild	30 May 2009 07:08:07 -0000	1.9
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/active-dvi/active-dvi-1.7.3.ebuild,v 1.8 2009/03/07 14:09:07 gentoofan23 Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/active-dvi/active-dvi-1.7.3.ebuild,v 1.9 2009/05/30 07:08:07 ulm Exp $
 
 EAPI="2"
 
@@ -25,16 +25,15 @@
 	virtual/ghostscript
 	x11-libs/libXinerama"
 DEPEND="${RDEPEND}
-	|| ( ( dev-texlive/texlive-pstricks dev-texlive/texlive-pictures ) app-text/tetex app-text/ptex )
+	|| ( ( dev-texlive/texlive-pstricks dev-texlive/texlive-pictures )
+		app-text/ptex )
 	x11-proto/xineramaproto
 	dev-ml/findlib
 	dev-tex/hevea"
 
 DOCS="README TODO"
 
-src_unpack() {
-	unpack ${A}
-	cd "${S}"
+src_prepare() {
 	epatch "${FILESDIR}/${P}-asneeded.patch"
 	AT_M4DIR="." eautoreconf
 }






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

* [gentoo-commits] gentoo-x86 commit in app-text/active-dvi: ChangeLog active-dvi-1.7.3.ebuild
@ 2009-08-04  7:34 Alexis Ballier (aballier)
  0 siblings, 0 replies; 4+ messages in thread
From: Alexis Ballier (aballier) @ 2009-08-04  7:34 UTC (permalink / raw
  To: gentoo-commits

aballier    09/08/04 07:34:54

  Modified:             ChangeLog
  Removed:              active-dvi-1.7.3.ebuild
  Log:
  remove old
  (Portage version: 2.2_rc35/cvs/Linux x86_64)

Revision  Changes    Path
1.31                 app-text/active-dvi/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/active-dvi/ChangeLog?rev=1.31&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/active-dvi/ChangeLog?rev=1.31&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/active-dvi/ChangeLog?r1=1.30&r2=1.31

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-text/active-dvi/ChangeLog,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -r1.30 -r1.31
--- ChangeLog	29 Jul 2009 21:17:46 -0000	1.30
+++ ChangeLog	4 Aug 2009 07:34:54 -0000	1.31
@@ -1,6 +1,10 @@
 # ChangeLog for app-text/active-dvi
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/active-dvi/ChangeLog,v 1.30 2009/07/29 21:17:46 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/active-dvi/ChangeLog,v 1.31 2009/08/04 07:34:54 aballier Exp $
+
+  04 Aug 2009; Alexis Ballier <aballier@gentoo.org>
+  -active-dvi-1.7.3.ebuild:
+  remove old
 
   29 Jul 2009; Markus Meier <maekke@gentoo.org> active-dvi-1.7.3-r1.ebuild:
   x86 stable, bug #276235






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

end of thread, other threads:[~2009-08-04  7:34 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-05-30  7:08 [gentoo-commits] gentoo-x86 commit in app-text/active-dvi: ChangeLog active-dvi-1.7.3.ebuild Ulrich Mueller (ulm)
  -- strict thread matches above, loose matches on Subject: below --
2009-08-04  7:34 Alexis Ballier (aballier)
2009-03-07 14:09 Thomas Anderson (gentoofan23)
2008-06-07 20:39 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