floppym     14/06/10 01:22:13

  Modified:             ChangeLog
  Added:                global-6.2.12.ebuild global-6.3.ebuild
  Log:
  Version bumps (bug #512832). Ebuilds by Arfrever.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
0BBEEA1FEA4843A4)

Revision  Changes    Path
1.126                dev-util/global/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/global/ChangeLog?rev=1.126&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/global/ChangeLog?rev=1.126&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/global/ChangeLog?r1=1.125&r2=1.126

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/global/ChangeLog,v
retrieving revision 1.125
retrieving revision 1.126
diff -u -r1.125 -r1.126
--- ChangeLog   8 Jun 2014 11:11:06 -0000       1.125
+++ ChangeLog   10 Jun 2014 01:22:13 -0000      1.126
@@ -1,6 +1,13 @@
 # ChangeLog for dev-util/global
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/global/ChangeLog,v 1.125 
2014/06/08 11:11:06 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/global/ChangeLog,v 1.126 
2014/06/10 01:22:13 floppym Exp $
+
+*global-6.3 (10 Jun 2014)
+*global-6.2.12 (10 Jun 2014)
+
+  10 Jun 2014; Mike Gilbert <[email protected]> +global-6.2.12.ebuild,
+  +global-6.3.ebuild:
+  Version bumps (bug #512832). Ebuilds by Arfrever.
 
   08 Jun 2014; Agostino Sarubbo <[email protected]> global-6.2.11.ebuild:
   Stable for ppc, wrt bug #512456



1.1                  dev-util/global/global-6.2.12.ebuild

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

Index: global-6.2.12.ebuild
===================================================================
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/global/global-6.2.12.ebuild,v 1.1 
2014/06/10 01:22:13 floppym Exp $

EAPI="5"

inherit autotools elisp-common eutils

DESCRIPTION="GNU Global is a tag system to find the locations of a specified 
object in various sources."
HOMEPAGE="http://www.gnu.org/software/global/global.html";
SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"

LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86 ~x86-fbsd"
IUSE="doc emacs vim"

RDEPEND="sys-devel/libtool
        sys-libs/ncurses
        emacs? ( virtual/emacs )
        vim? ( || ( app-editors/vim app-editors/gvim ) )"
DEPEND="${DEPEND}
        doc? ( app-text/texi2html sys-apps/texinfo )"

SITEFILE="50gtags-gentoo.el"

src_prepare() {
        epatch "${FILESDIR}/${PN}-6.2.9-tinfo.patch"
        eautoreconf
}

src_configure() {
        econf "$(use_with emacs lispdir "${SITELISP}/${PN}")"
}

src_compile() {
        if use doc; then
                texi2pdf -q -o doc/global.pdf doc/global.texi
                texi2html -o doc/global.html doc/global.texi
        fi

        if use emacs; then
                elisp-compile *.el
        fi

        emake
}

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

        if use doc; then
                dohtml doc/global.html
                dodoc doc/global.pdf
        fi

        dodoc AUTHORS FAQ NEWS README THANKS

        insinto /etc
        doins gtags.conf

        if use vim; then
                insinto /usr/share/vim/vimfiles/plugin
                doins gtags.vim
        fi

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

        prune_libtool_files
}

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

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



1.1                  dev-util/global/global-6.3.ebuild

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

Index: global-6.3.ebuild
===================================================================
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/global/global-6.3.ebuild,v 1.1 
2014/06/10 01:22:13 floppym Exp $

EAPI="5"

inherit autotools elisp-common eutils

DESCRIPTION="GNU Global is a tag system to find the locations of a specified 
object in various sources."
HOMEPAGE="http://www.gnu.org/software/global/global.html";
SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"

LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86 ~x86-fbsd"
IUSE="doc emacs vim"

RDEPEND="sys-devel/libtool
        sys-libs/ncurses
        emacs? ( virtual/emacs )
        vim? ( || ( app-editors/vim app-editors/gvim ) )"
DEPEND="${DEPEND}
        doc? ( app-text/texi2html sys-apps/texinfo )"

SITEFILE="50gtags-gentoo.el"

src_prepare() {
        epatch "${FILESDIR}/${PN}-6.2.9-tinfo.patch"
        eautoreconf
}

src_configure() {
        econf "$(use_with emacs lispdir "${SITELISP}/${PN}")"
}

src_compile() {
        if use doc; then
                texi2pdf -q -o doc/global.pdf doc/global.texi
                texi2html -o doc/global.html doc/global.texi
        fi

        if use emacs; then
                elisp-compile *.el
        fi

        emake
}

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

        if use doc; then
                dohtml doc/global.html
                dodoc doc/global.pdf
        fi

        dodoc AUTHORS FAQ NEWS README THANKS

        insinto /etc
        doins gtags.conf

        if use vim; then
                insinto /usr/share/vim/vimfiles/plugin
                doins gtags.vim
        fi

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

        prune_libtool_files
}

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

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




Reply via email to