public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in sci-mathematics/geomview: ChangeLog geomview-1.9.4.ebuild
@ 2007-09-25 13:39 Markus Dittrich (markusle)
  0 siblings, 0 replies; 2+ messages in thread
From: Markus Dittrich (markusle) @ 2007-09-25 13:39 UTC (permalink / raw
  To: gentoo-commits

markusle    07/09/25 13:39:20

  Modified:             ChangeLog
  Added:                geomview-1.9.4.ebuild
  Log:
  Version bump (see bug #193722).
  (Portage version: 2.1.3.9)

Revision  Changes    Path
1.8                  sci-mathematics/geomview/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/geomview/ChangeLog?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/geomview/ChangeLog?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/geomview/ChangeLog?r1=1.7&r2=1.8

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-mathematics/geomview/ChangeLog,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- ChangeLog	9 Jul 2007 01:33:37 -0000	1.7
+++ ChangeLog	25 Sep 2007 13:39:19 -0000	1.8
@@ -1,6 +1,11 @@
 # ChangeLog for sci-mathematics/geomview
 # Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/geomview/ChangeLog,v 1.7 2007/07/09 01:33:37 nerdboy Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/geomview/ChangeLog,v 1.8 2007/09/25 13:39:19 markusle Exp $
+
+*geomview-1.9.4 (25 Sep 2007)
+
+  25 Sep 2007; Markus Dittrich <markusle@gentoo.org> +geomview-1.9.4.ebuild:
+  Version bump (see bug #193722).
 
   09 Jul 2007; Steve Arnold <nerdboy@gentoo.org> geomview-1.9.2.ebuild:
   removed extra postinst



1.1                  sci-mathematics/geomview/geomview-1.9.4.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/geomview/geomview-1.9.4.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/geomview/geomview-1.9.4.ebuild?rev=1.1&content-type=text/plain

Index: geomview-1.9.4.ebuild
===================================================================
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/geomview/geomview-1.9.4.ebuild,v 1.1 2007/09/25 13:39:19 markusle Exp $

inherit eutils flag-o-matic fdo-mime

DESCRIPTION="Interactive Geometry Viewer"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
HOMEPAGE="http://geomview.sourceforge.net"

KEYWORDS="~amd64 ~ppc ~sparc ~x86"
LICENSE="LGPL-2.1"
SLOT="0"
IUSE="avg bzip2 debug emacs netpbm pdf zlib"

DEPEND="zlib? ( sys-libs/zlib )
	virtual/motif
	virtual/opengl"

RDEPEND="${DEPEND}
	netpbm? ( >=media-libs/netpbm-10.37.0 )
	bzip2? ( app-arch/bzip2 )
	app-arch/gzip
	pdf? ( || ( app-text/xpdf
		kde-base/kpdf
		kde-base/kghostview
		app-text/gv
		app-text/gsview
		app-text/epdfview
		app-text/acroread )
		)
	virtual/w3m"

S="${WORKDIR}/${P/_/-}"

src_compile() {
	# GNU standard is /usr/share/doc/${PN}, so override this; also note
	# that motion averaging is still experimental.
	if use pdf; then
	    local myconf="--docdir=/usr/share/doc/${PF}"
	else
	    local myconf="--docdir=/usr/share/doc/${PF} --without-pdfviewer"
	fi

	econf ${myconf} $(use_enable debug d1debug) $(use_with zlib) \
	    $(use_enable avg motion-averaging) \
	    || die "could not configure"

	emake || die "make failed"
}

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

	doicon "${FILESDIR}"/geomview.png
	make_desktop_entry geomview "GeomView ${PV}" \
	    "/usr/share/pixmaps/geomview.png" \
	    "Science;Math;Education"

	dodoc AUTHORS ChangeLog NEWS INSTALL.Geomview

	if ! use pdf; then
	    rm "${D}"/usr/share/doc/${PF}/${PN}.pdf
	fi

	if use emacs; then
	    insinto /usr/share/geomview
	    doins "${FILESDIR}"/gvcl-mode.el || die
	fi
}

pkg_postinst() {
	fdo-mime_desktop_database_update

	elog "GeomView expects you to have both Firefox and Xpdf installed for"
	elog "viewing the documentation (this can be changed at runtime)."
	elog ""
	elog "The w3m virtual should handle the HTML browser part, and if"
	elog "you wish to use an alternate PDF viewer, feel free to remove"
	elog "xpdf and use the viewer of your choice (see the docs for how"
	elog "to setup the \'(ui-pdf-viewer VIEWER)\' GCL-command)."
	elog ""
	elog "If you use emacs, enable the corresponding use flag and check"
	elog "out the provided mode file for editing the GeomView command"
	elog "language (courtesy of Claus-Justus Heine).  Incorporating it"
	elog "into your emacs configuration is left as an exercise..."
	elog ""
}

pkg_postrm() {
	fdo-mime_desktop_database_update
}



-- 
gentoo-commits@gentoo.org mailing list



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

* [gentoo-commits] gentoo-x86 commit in sci-mathematics/geomview: ChangeLog geomview-1.9.4.ebuild
@ 2014-11-06 22:58 Andreas HAttel (dilfridge)
  0 siblings, 0 replies; 2+ messages in thread
From: Andreas HAttel (dilfridge) @ 2014-11-06 22:58 UTC (permalink / raw
  To: gentoo-commits

dilfridge    14/11/06 22:58:42

  Modified:             ChangeLog
  Removed:              geomview-1.9.4.ebuild
  Log:
  Drop old EAPI=1 version
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key EBE6A336BE19039C!)

Revision  Changes    Path
1.20                 sci-mathematics/geomview/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/geomview/ChangeLog?rev=1.20&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/geomview/ChangeLog?rev=1.20&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/geomview/ChangeLog?r1=1.19&r2=1.20

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-mathematics/geomview/ChangeLog,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -r1.19 -r1.20
--- ChangeLog	25 Mar 2014 05:49:23 -0000	1.19
+++ ChangeLog	6 Nov 2014 22:58:42 -0000	1.20
@@ -1,6 +1,10 @@
 # ChangeLog for sci-mathematics/geomview
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/geomview/ChangeLog,v 1.19 2014/03/25 05:49:23 grozin Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/geomview/ChangeLog,v 1.20 2014/11/06 22:58:42 dilfridge Exp $
+
+  06 Nov 2014; Andreas K. Huettel <dilfridge@gentoo.org>
+  -geomview-1.9.4.ebuild:
+  Drop old EAPI=1 version
 
 *geomview-1.9.5 (25 Mar 2014)
 





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

end of thread, other threads:[~2014-11-06 22:58 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-09-25 13:39 [gentoo-commits] gentoo-x86 commit in sci-mathematics/geomview: ChangeLog geomview-1.9.4.ebuild Markus Dittrich (markusle)
  -- strict thread matches above, loose matches on Subject: below --
2014-11-06 22:58 Andreas HAttel (dilfridge)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox