From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1QJZPD-0005rt-DI for garchives@archives.gentoo.org; Mon, 09 May 2011 22:58:23 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9AB011C009; Mon, 9 May 2011 22:58:16 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 6D5F21C009 for ; Mon, 9 May 2011 22:58:16 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id DCD1F1BC01B for ; Mon, 9 May 2011 22:58:15 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 39AC780504 for ; Mon, 9 May 2011 22:58:15 +0000 (UTC) From: "Flammie Pirinen" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Flammie Pirinen" Message-ID: 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.14_alpha.ebuild X-VCS-Directories: sci-misc/foma/ X-VCS-Committer: flammie X-VCS-Committer-Name: Flammie Pirinen X-VCS-Revision: f6a5ac32d4b1c8d68df83f6e182939dbceda5676 Date: Mon, 9 May 2011 22:58:15 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: X-Archives-Hash: 0a5b46ba9ed43b5cf7b57c43f9152499 commit: f6a5ac32d4b1c8d68df83f6e182939dbceda5676 Author: Flammie Pirinen gentoo org> AuthorDate: Mon May 9 22:58:04 2011 +0000 Commit: Flammie Pirinen gentoo org> CommitDate: Mon May 9 22:58:04 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/sci.git;a=3Dc= ommit;h=3Df6a5ac32 Version bump. (Portage version: 2.1.9.42/git/Linux i686, unsigned Manifest commit) --- sci-misc/foma/ChangeLog | 7 ++++- sci-misc/foma/foma-0.9.14_alpha.ebuild | 47 ++++++++++++++++++++++++++= ++++++ 2 files changed, 53 insertions(+), 1 deletions(-) diff --git a/sci-misc/foma/ChangeLog b/sci-misc/foma/ChangeLog index 98e8006..e97a7c4 100644 --- a/sci-misc/foma/ChangeLog +++ b/sci-misc/foma/ChangeLog @@ -1,7 +1,12 @@ # ChangeLog for sci-misc/foma -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 # $Header: $ =20 +*foma-0.9.14_alpha (09 May 2011) + + 09 May 2011; +foma-0.9.14_alpha.ebuild: + Version bump + *foma-0.9.4_alpha (16 Jan 2009) =20 16 Jan 2009; Flammie Pirinen +foma_0.9.4_alpha.eb= uild: diff --git a/sci-misc/foma/foma-0.9.14_alpha.ebuild b/sci-misc/foma/foma-= 0.9.14_alpha.ebuild new file mode 100644 index 0000000..93616ab --- /dev/null +++ b/sci-misc/foma/foma-0.9.14_alpha.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +MY_P=3D${P/_alpha/alpha} + +DESCRIPTION=3D"Finite state toolkit compatible with Xerox tools" + +HOMEPAGE=3D"http://foma.sf.net/" + +SRC_URI=3D"http://dingo.sbs.arizona.edu/~mhulden/${MY_P}.tar.gz" + +LICENSE=3D"GPL-2" + +SLOT=3D"0" + +KEYWORDS=3D"~x86" + +IUSE=3D"" + +DEPEND=3D">=3Dsys-devel/bison-2.3 + >=3Dsys-devel/flex-2.5.35 + sys-libs/readline + sys-libs/libtermcap-compat" + +RDEPEND=3D"${DEPEND}" + +S=3D"${WORKDIR}/${PN}" + +src_unpack() { + unpack ${A} + cd ${S} + sed -i -e "s/^CFLAGS =3D/CFLAGS =3D ${CFLAGS} -fPIC/" \ + -e 's/ltermcap/lcurses/' \ + -e 's/ldconfig/true/g' Makefile +} + +src_compile() { + emake || die "make failed" + emake libfoma || die "library failed" +} + +src_install() { + dobin foma || die "installing binaries failed" + dolib.so libfoma.so.0.9.14 + dodoc README README.symbols || die "installing docs failed" +}