pinkbyte 14/09/04 10:08:32 Modified: ChangeLog Added: gforth-0.7.3.ebuild Removed: gforth-0.7.0.ebuild Log: Version bump, fix bugs #414967, #426980 and #498032. Drop old and broken version (Portage version: 2.2.12-r1/cvs/Linux x86_64, signed Manifest commit with key 0x1F357D42)
Revision Changes Path 1.39 dev-lang/gforth/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/gforth/ChangeLog?rev=1.39&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/gforth/ChangeLog?rev=1.39&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/gforth/ChangeLog?r1=1.38&r2=1.39 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-lang/gforth/ChangeLog,v retrieving revision 1.38 retrieving revision 1.39 diff -u -r1.38 -r1.39 --- ChangeLog 2 Sep 2014 15:30:17 -0000 1.38 +++ ChangeLog 4 Sep 2014 10:08:32 -0000 1.39 @@ -1,6 +1,13 @@ # ChangeLog for dev-lang/gforth # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/gforth/ChangeLog,v 1.38 2014/09/02 15:30:17 pacho Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/gforth/ChangeLog,v 1.39 2014/09/04 10:08:32 pinkbyte Exp $ + +*gforth-0.7.3 (04 Sep 2014) + + 04 Sep 2014; Sergey Popov <[email protected]> -gforth-0.7.0.ebuild, + +gforth-0.7.3.ebuild: + Version bump, fix bugs #414967, #426980 and #498032. Drop old and broken + version 02 Sep 2014; Pacho Ramos <[email protected]> metadata.xml: Carsten will take care of this 1.1 dev-lang/gforth/gforth-0.7.3.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/gforth/gforth-0.7.3.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/gforth/gforth-0.7.3.ebuild?rev=1.1&content-type=text/plain Index: gforth-0.7.3.ebuild =================================================================== # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-lang/gforth/gforth-0.7.3.ebuild,v 1.1 2014/09/04 10:08:32 pinkbyte Exp $ EAPI=5 inherit elisp-common eutils DESCRIPTION="GNU Forth is a fast and portable implementation of the ANSI Forth language" HOMEPAGE="http://www.gnu.org/software/gforth" SRC_URI="mirror://gnu/gforth/${P}.tar.gz" LICENSE="GPL-3" SLOT="0" KEYWORDS="~amd64 ~ppc ~x86 ~x86-fbsd ~x86-freebsd ~x86-linux ~ppc-macos ~sparc-solaris" IUSE="emacs" DEPEND="dev-libs/ffcall emacs? ( virtual/emacs )" RDEPEND="${DEPEND}" SITEFILE="50${PN}-gentoo.el" src_prepare() { epatch "${FILESDIR}/${PN}-0.7.0-make-elc.patch" epatch_user } src_configure() { # May want to add a USE flag for --enable-force-cdiv, if necessary # At this point I do not know when that is appropriate, and I don't # want to add an ebuild-specific USE flag without understanding. econf \ --without-check \ $(use emacs || echo "--without-lispdir") } src_compile() { # Parallel make breaks here emake -j1 || die "emake failed" } src_install() { emake DESTDIR="${D}" install dodoc AUTHORS BUGS ChangeLog NEWS* README* ToDo doc/glossaries.doc doc/*.ps if use emacs; then elisp-install ${PN} gforth.el gforth.elc elisp-site-file-install "${FILESDIR}/${SITEFILE}" fi } pkg_postinst() { use emacs && elisp-site-regen } pkg_postrm() { use emacs && elisp-site-regen }
