From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id BB1EC13800E for ; Tue, 31 Jul 2012 23:50:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D55F2E05F2; Tue, 31 Jul 2012 23:50:36 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 9E6BCE05F2 for ; Tue, 31 Jul 2012 23:50:36 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D12DD1B401F for ; Tue, 31 Jul 2012 23:50:35 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 8D8CCE543B for ; Tue, 31 Jul 2012 23:50:34 +0000 (UTC) From: "Flammie Pirinen" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Flammie Pirinen" Message-ID: <1343778322.052328668bc99a72b6b383e7517456c08c0bd4cd.flammie@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sci-misc/foma/ X-VCS-Repository: proj/sci X-VCS-Files: sci-misc/foma/ChangeLog sci-misc/foma/foma-0.9.16_alpha.ebuild X-VCS-Directories: sci-misc/foma/ X-VCS-Committer: flammie X-VCS-Committer-Name: Flammie Pirinen X-VCS-Revision: 052328668bc99a72b6b383e7517456c08c0bd4cd X-VCS-Branch: master Date: Tue, 31 Jul 2012 23:50:34 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 2470014e-4bdf-4768-b532-81b9662c4dfd X-Archives-Hash: d7b806781e04c04cbe0405ce7954ea6d commit: 052328668bc99a72b6b383e7517456c08c0bd4cd Author: Flammie Pirinen gentoo org> AuthorDate: Tue Jul 31 23:45:22 2012 +0000 Commit: Flammie Pirinen gentoo org> CommitDate: Tue Jul 31 23:45:22 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=05232866 Bump foma to version 0.9.16alpha. (Portage version: 2.1.10.65/git/Linux i686, unsigned Manifest commit) --- sci-misc/foma/ChangeLog | 7 ++++- sci-misc/foma/foma-0.9.16_alpha.ebuild | 47 ++++++++++++++++++++++++++++++++ 2 files changed, 53 insertions(+), 1 deletions(-) diff --git a/sci-misc/foma/ChangeLog b/sci-misc/foma/ChangeLog index 4918b47..f5af3ae 100644 --- a/sci-misc/foma/ChangeLog +++ b/sci-misc/foma/ChangeLog @@ -1,7 +1,12 @@ # ChangeLog for sci-misc/foma -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 # $Header: $ +*foma-0.9.16_alpha (31 Jul 2012) + + 31 Jul 2012; Flammie Pirinen +foma-0.9.16_alpha.ebuild: + Bump foma to version 0.9.16alpha, install headers + 25 Oct 2011; Justin Lecher metadata.xml: Removed no-herd from herd tag in metadata.xml diff --git a/sci-misc/foma/foma-0.9.16_alpha.ebuild b/sci-misc/foma/foma-0.9.16_alpha.ebuild new file mode 100644 index 0000000..81c0503 --- /dev/null +++ b/sci-misc/foma/foma-0.9.16_alpha.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=4 + +MY_P=${P/_alpha/alpha} + +DESCRIPTION="Finite state toolkit compatible with Xerox tools" +HOMEPAGE="http://code.google.com/p/foma/" +SRC_URI="http://${PN}.googlecode.com/files/${MY_P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86" +IUSE="" + +RDEPEND=" + sys-libs/libtermcap-compat + sys-libs/readline" +DEPEND="${RDEPEND} + >=sys-devel/bison-2.3 + >=sys-devel/flex-2.5.35" + +S="${WORKDIR}/${PN}" + +src_prepare() { + sed \ + -e "s/^CFLAGS =/CFLAGS = ${CFLAGS} -fPIC/" \ + -e 's/ltermcap/lcurses/' \ + -e 's/ldconfig/true/g' \ + -i Makefile || die +} + +src_compile() { + emake + emake libfoma +} + +src_install() { + # since install target doesn't have DESTDIR + dobin foma flookup cgflookup + dolib.so libfoma.so.${PV/_alpha/} + insinto /usr/include + doins foma.h fomalib.h fomalibconf.h + dodoc README README.symbols +}