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 A1AF41381F3 for ; Sun, 13 Oct 2013 14:56:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 09C7DE095A; Sun, 13 Oct 2013 14:56:20 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 488EDE095A for ; Sun, 13 Oct 2013 14:56:19 +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 3BFAC33EEF4 for ; Sun, 13 Oct 2013 14:56:18 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id E1FABE5308 for ; Sun, 13 Oct 2013 14:56:16 +0000 (UTC) From: "Justin Lecher" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Justin Lecher" Message-ID: <1381673335.fe7bb2f74c810fecdb19635262118d656f398176.jlec@gentoo> Subject: [gentoo-commits] proj/betagarden:master commit in: dev-lang/opal/ X-VCS-Repository: proj/betagarden X-VCS-Files: dev-lang/opal/ChangeLog dev-lang/opal/metadata.xml dev-lang/opal/opal-2.3n.ebuild X-VCS-Directories: dev-lang/opal/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: fe7bb2f74c810fecdb19635262118d656f398176 X-VCS-Branch: master Date: Sun, 13 Oct 2013 14:56:16 +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: 7f248bb0-b3f9-4790-89dc-dbcafaf9a2f3 X-Archives-Hash: b254e11917ad01e26bed29c038b8489b commit: fe7bb2f74c810fecdb19635262118d656f398176 Author: Justin Lecher gentoo org> AuthorDate: Sun Oct 13 14:08:55 2013 +0000 Commit: Justin Lecher gentoo org> CommitDate: Sun Oct 13 14:08:55 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/betagarden.git;a=commit;h=fe7bb2f7 dev-lang/opal: QA fixes Package-Manager: portage-2.2.7 --- dev-lang/opal/ChangeLog | 5 ++++- dev-lang/opal/metadata.xml | 6 +++--- dev-lang/opal/opal-2.3n.ebuild | 24 +++++++++++------------- 3 files changed, 18 insertions(+), 17 deletions(-) diff --git a/dev-lang/opal/ChangeLog b/dev-lang/opal/ChangeLog index 1c354a2..90a4023 100644 --- a/dev-lang/opal/ChangeLog +++ b/dev-lang/opal/ChangeLog @@ -1,7 +1,10 @@ # ChangeLog for dev-lang/opal -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 # $Header: $ + 13 Oct 2013; Justin Lecher opal-2.3n.ebuild, metadata.xml: + QA fixes + 27 Oct 2011; Justin Lecher metadata.xml: Removed no-herd from herd tag in metadata.xml diff --git a/dev-lang/opal/metadata.xml b/dev-lang/opal/metadata.xml index bad5863..9d2ebf6 100644 --- a/dev-lang/opal/metadata.xml +++ b/dev-lang/opal/metadata.xml @@ -1,7 +1,7 @@ - - rbu@gentoo.org - + + rbu@gentoo.org + diff --git a/dev-lang/opal/opal-2.3n.ebuild b/dev-lang/opal/opal-2.3n.ebuild index d6aa7fc..136d855 100644 --- a/dev-lang/opal/opal-2.3n.ebuild +++ b/dev-lang/opal/opal-2.3n.ebuild @@ -1,10 +1,10 @@ -# Copyright 1999-2010 Gentoo Foundation +# Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ -EAPI="2" +EAPI=5 -inherit eutils autotools +inherit eutils MY_P=ocs-${PV} @@ -15,14 +15,13 @@ SRC_URI="http://projects.uebb.tu-berlin.de/opal/trac/raw-attachment/wiki/OCS/${M LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~sparc ~x86" - IUSE="X doc +tk +tcl" -DEPEND=">=sys-libs/readline-4.3-r5 +DEPEND=" >=sys-libs/ncurses-5.4-r5 - doc? ( >=app-text/tetex-2 ) - tk? ( >=dev-lang/tcl-8.4.6 ) - tcl? ( >=dev-lang/tk-8.4.6-r1 ) + >=sys-libs/readline-4.3-r5 + tk? ( >=dev-lang/tcl-8.4.6 ) + tcl? ( >=dev-lang/tk-8.4.6-r1 ) " S="${WORKDIR}/${MY_P}" @@ -36,18 +35,17 @@ src_configure() { --enable-dynamic \ --disable-absolute-pathes \ --enable-reflections \ - --prefix="${D}/usr" \ - || die "./configure failed" + --prefix="${D}/usr" } src_compile() { - : + : } src_install() { # chmod: /var <-- Prevent access violation addpredict /var - mkdir -p "${D}/usr/" + mkdir -p "${D}/usr/" || die - emake -j1 install || die "make failed" + emake -j1 install }