grozin      14/03/25 05:49:23

  Modified:             metadata.xml ChangeLog
  Added:                geomview-1.9.5.ebuild
  Log:
  Version bump, thanks to Claus-Justus Heine <[email protected]>, 
#504372
  
  (Portage version: 2.2.8-r1/cvs/Linux i686, signed Manifest commit with key 
0x3AFFCE974D34BD8C!)

Revision  Changes    Path
1.5                  sci-mathematics/geomview/metadata.xml

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

Index: metadata.xml
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-mathematics/geomview/metadata.xml,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- metadata.xml        7 Oct 2012 09:12:07 -0000       1.4
+++ metadata.xml        25 Mar 2014 05:49:23 -0000      1.5
@@ -5,6 +5,7 @@
 <longdescription>Geomview is an interactive geometry viewer and Object 
Oriented Graphics Library (OOGL).</longdescription>
 <use>
   <flag name='avg'>Enable experimental motion averaging technique</flag>
+  <flag name='motionaveraging'>Enable experimental motion averaging 
technique</flag>
   <flag name='netpbm'>Add <pkg>media-libs/netpbm</pkg> support for external
     modules</flag>
 </use>



1.19                 sci-mathematics/geomview/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-mathematics/geomview/ChangeLog,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- ChangeLog   11 Nov 2013 22:16:29 -0000      1.18
+++ ChangeLog   25 Mar 2014 05:49:23 -0000      1.19
@@ -1,6 +1,13 @@
 # ChangeLog for sci-mathematics/geomview
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/geomview/ChangeLog,v 1.18 
2013/11/11 22:16:29 mr_bones_ Exp $
+# 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 $
+
+*geomview-1.9.5 (25 Mar 2014)
+
+  25 Mar 2014; Andrey Grozin <[email protected]> +geomview-1.9.5.ebuild,
+  files/gvcl-mode.el,metadata.xnl:
+  Version bump, thanks to Claus-Justus Heine <[email protected]>,
+  #504372
 
   11 Nov 2013; Michael Sterrett <[email protected]> geomview-1.9.4.ebuild:
   drop gsview which is gtk+:1 only from the list of choices



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

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

Index: geomview-1.9.5.ebuild
===================================================================
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/sci-mathematics/geomview/geomview-1.9.5.ebuild,v 1.1 
2014/03/25 05:49:23 grozin Exp $

EAPI=5

inherit elisp-common eutils flag-o-matic fdo-mime

DESCRIPTION="Interactive Geometry Viewer"
HOMEPAGE="http://geomview.sourceforge.net";
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2
        http://dev.gentoo.org/~jlec/distfiles/geomview.png.tar";
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
LICENSE="LGPL-2.1"
SLOT="0"
IUSE="motionaveraging debug emacs zlib"

DEPEND=">=x11-libs/motif-2.3:0
        virtual/opengl
        emacs? ( virtual/emacs )
        zlib? ( sys-libs/zlib )"
RDEPEND="${DEPEND}
        x11-misc/xdg-utils"

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

SITEFILE=50${PN}-gentoo.el

src_configure() {
        econf --docdir=/usr/share/doc/${PF} \
                --with-htmlbrowser=xdg-open \
                --with-pdfviewer=xdg-open \
                $(use_enable debug d1debug) \
                $(use_with zlib) \
                $(use_enable motionaveraging motion-averaging)
}

src_compile() {
        default
        if use emacs; then
                cp "${FILESDIR}/gvcl-mode.el" "${S}"
                elisp-compile *.el
        fi
}

src_install() {
        emake DESTDIR="${D}" install
        dodoc AUTHORS ChangeLog NEWS INSTALL.Geomview || die
        doicon "${WORKDIR}"/geomview.png || die
        make_desktop_entry ${PN} "GeomView ${PV}" \
                /usr/share/pixmaps/${PN}.png \
                "Science;Math;Education"

        if use emacs; then
                elisp-install ${PN} *.el *.elc
                elisp-site-file-install "${FILESDIR}/${SITEFILE}"
        fi
}

pkg_postinst() {
        fdo-mime_desktop_database_update
        use emacs && elisp-site-regen
}

pkg_postrm() {
        fdo-mime_desktop_database_update
        use emacs && elisp-site-regen
}




Reply via email to