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 1QaWf7-0003RB-1m for garchives@archives.gentoo.org; Sat, 25 Jun 2011 17:28:53 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7511E1C16B; Sat, 25 Jun 2011 17:22:00 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 32FF31C16A for ; Sat, 25 Jun 2011 17:22:00 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id DCF3D2AC06F for ; Sat, 25 Jun 2011 17:21:59 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 457718003D for ; Sat, 25 Jun 2011 17:21:59 +0000 (UTC) From: "Justin Lecher" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Justin Lecher" Message-ID: <7ad5991809069558c87ea00e62b92ed3d1b22df5.jlec@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sci-mathematics/aribas/ X-VCS-Repository: proj/sci X-VCS-Files: sci-mathematics/aribas/ChangeLog sci-mathematics/aribas/aribas-1.63.ebuild X-VCS-Directories: sci-mathematics/aribas/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: 7ad5991809069558c87ea00e62b92ed3d1b22df5 Date: Sat, 25 Jun 2011 17:21:59 +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: 520d86677f0a2ca644ecc7df71602aa9 commit: 7ad5991809069558c87ea00e62b92ed3d1b22df5 Author: Justin Lecher gentoo org> AuthorDate: Sat Jun 25 13:44:40 2011 +0000 Commit: Justin Lecher gentoo org> CommitDate: Sat Jun 25 13:44:40 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/sci.git;a=3Dc= ommit;h=3D7ad59918 RDEPEND is not explicitly assigned -> fixed (Portage version: 2.2.0_alpha41/git/Linux x86_64, signed Manifest commit = with key 70EB7916) --- sci-mathematics/aribas/ChangeLog | 5 ++++- sci-mathematics/aribas/aribas-1.63.ebuild | 19 ++++++++++--------- 2 files changed, 14 insertions(+), 10 deletions(-) diff --git a/sci-mathematics/aribas/ChangeLog b/sci-mathematics/aribas/Ch= angeLog index 5aff76b..9f1b034 100644 --- a/sci-mathematics/aribas/ChangeLog +++ b/sci-mathematics/aribas/ChangeLog @@ -1,7 +1,10 @@ # ChangeLog for sci-mathematics/aribas -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 # $Header: $ =20 + 25 Jun 2011; Justin Lecher aribas-1.63.ebuild: + RDEPEND is not explicitly assigned -> fixed + *aribas-1.63 (06 Oct 2008) =20 06 Oct 2008; Andrey Grozin +files/64aribas-gentoo.= el, diff --git a/sci-mathematics/aribas/aribas-1.63.ebuild b/sci-mathematics/= aribas/aribas-1.63.ebuild index f4d08e7..fa8af47 100644 --- a/sci-mathematics/aribas/aribas-1.63.ebuild +++ b/sci-mathematics/aribas/aribas-1.63.ebuild @@ -1,6 +1,9 @@ -# Copyright 1999-2008 Gentoo Foundation +# Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ + +EAPI=3D4 + inherit elisp-common versionator =20 DESCRIPTION=3D"Interpreter for big integer and multi-precision floating = point arithmetic" @@ -13,14 +16,12 @@ KEYWORDS=3D"~x86" IUSE=3D"doc emacs examples" =20 DEPEND=3D"emacs? ( virtual/emacs )" +RDEPEND=3D"${DEPEND}" =20 SITEFILE=3D64${PN}-gentoo.el CH_PV=3D$(delete_all_version_separators) =20 -src_unpack() { - unpack ${A} - cd "${S}"/src - +src_prepare() { # Linux x86 assembly piece if use x86; then mv LINUX/arito386.S . @@ -34,9 +35,9 @@ src_unpack() { src_compile() { cd src if use x86; then - emake CFLAGS=3D"-DLiNUX -DPROTO ${CFLAGS}" || die "emake failed" + emake CFLAGS=3D"-DLiNUX -DPROTO ${CFLAGS}" else - emake CC=3Dgcc CFLAGS=3D"-DUNiX -DPROTO ${CFLAGS}" || die "emake faile= d" + emake CC=3Dgcc CFLAGS=3D"-DUNiX -DPROTO ${CFLAGS}" fi =20 if use emacs; then @@ -48,10 +49,10 @@ src_compile() { src_install() { dobin src/${PN} doman doc/*.1 - dodoc CHANGES${CH_PV}.txt || die "dodoc failed" + dodoc CHANGES${CH_PV}.txt =20 if use doc; then - dodoc doc/${PN}.doc doc/${PN}.tut || die "dodoc failed" + dodoc doc/${PN}.doc doc/${PN}.tut fi =20 if use examples; then