Note: Due to technical difficulties, the Archives are currently not up to date.
GMANE provides an alternative service for most mailing lists. c.f. bug 424647
List Archive: gentoo-commits
flameeyes 09/03/22 19:06:18
Modified: ChangeLog
Added: ragel-6.4.ebuild
Log:
Version bump; since the new version tremendously simplified the build system, don't sed it around and simply install the binary by hand. Also download the PDF guide with USE=doc instead of building it from the LaTeX sources.
(Portage version: 2.2_rc26/cvs/Linux x86_64)
Revision Changes Path
1.20 dev-util/ragel/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/ragel/ChangeLog?rev=1.20&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/ragel/ChangeLog?rev=1.20&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/ragel/ChangeLog?r1=1.19&r2=1.20
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/ragel/ChangeLog,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -r1.19 -r1.20
--- ChangeLog 14 Dec 2008 16:02:25 -0000 1.19
+++ ChangeLog 22 Mar 2009 19:06:18 -0000 1.20
@@ -1,6 +1,14 @@
# ChangeLog for dev-util/ragel
-# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/ragel/ChangeLog,v 1.19 2008/12/14 16:02:25 aballier Exp $
+# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-util/ragel/ChangeLog,v 1.20 2009/03/22 19:06:18 flameeyes Exp $
+
+*ragel-6.4 (22 Mar 2009)
+
+ 22 Mar 2009; Diego E. Pettenò <flameeyes@g.o> +ragel-6.4.ebuild:
+ Version bump; since the new version tremendously simplified the build
+ system, don't sed it around and simply install the binary by hand. Also
+ download the PDF guide with USE=doc instead of building it from the LaTeX
+ sources.
14 Dec 2008; Alexis Ballier <aballier@g.o> ragel-6.3.ebuild:
typo: textex -> tetex
1.1 dev-util/ragel/ragel-6.4.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/ragel/ragel-6.4.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/ragel/ragel-6.4.ebuild?rev=1.1&content-type=text/plain
Index: ragel-6.4.ebuild
===================================================================
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/ragel/ragel-6.4.ebuild,v 1.1 2009/03/22 19:06:18 flameeyes Exp $
inherit eutils
DESCRIPTION="Compiles finite state machines from regular languages into executable code."
HOMEPAGE="http://www.complang.org/ragel/"
SRC_URI="http://www.complang.org/ragel/${P}.tar.gz
doc? ( http://www.complang.org/ragel/ragel-guide-${PV}.pdf )"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
IUSE="doc vim-syntax"
DEPEND=""
RDEPEND=""
src_compile() {
emake || die "emake failed"
emake -C doc ragel.1 || die "emake manpage failed"
}
src_install() {
dobin ragel/ragel || die "dobin failed"
doman doc/ragel.1 || die "doman failed"
dodoc ChangeLog CREDITS README TODO || die "dodoc failed"
if use doc; then
insinto /usr/share/doc/"${PF}"
newins "${DISTDIR}"/ragel-guide-${PV}.pdf "ragel-guide.pdf" || die "newins ragel-guide failed"
fi
if use vim-syntax; then
insinto /usr/share/vim/vimfiles/syntax
doins ragel.vim || die "doins ragel.vim failed"
fi
}
|
|