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 AA2F41381F1 for ; Mon, 13 Jun 2016 04:59:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8A57EE09B1; Mon, 13 Jun 2016 04:59:00 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 35490E09B1 for ; Mon, 13 Jun 2016 04:59:00 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8876E340139 for ; Mon, 13 Jun 2016 04:58:58 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1F8C4963 for ; Mon, 13 Jun 2016 04:58:53 +0000 (UTC) From: "Jeroen Roovers" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jeroen Roovers" Message-ID: <1465793931.458cb821c68934e737d7e894c2ba73ba66ca70c5.jer@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/cl/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/cl/cl-1.2.1.ebuild dev-libs/cl/cl-9999.ebuild X-VCS-Directories: dev-libs/cl/ X-VCS-Committer: jer X-VCS-Committer-Name: Jeroen Roovers X-VCS-Revision: 458cb821c68934e737d7e894c2ba73ba66ca70c5 X-VCS-Branch: master Date: Mon, 13 Jun 2016 04:58:53 +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: 5f277095-7649-45f8-9e22-c2c63e9c416d X-Archives-Hash: 313d8fc25d4452d166232bf946dacbd4 commit: 458cb821c68934e737d7e894c2ba73ba66ca70c5 Author: Jeroen Roovers gentoo org> AuthorDate: Mon Jun 13 04:58:36 2016 +0000 Commit: Jeroen Roovers gentoo org> CommitDate: Mon Jun 13 04:58:51 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=458cb821 dev-libs/cl: Restore CL_DIR in 1.2.1 (bug #585600 by Oleg). Package-Manager: portage-2.3.0_rc1 dev-libs/cl/cl-1.2.1.ebuild | 2 ++ dev-libs/cl/cl-9999.ebuild | 4 +--- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/dev-libs/cl/cl-1.2.1.ebuild b/dev-libs/cl/cl-1.2.1.ebuild index ec56ff8..75b2edb 100644 --- a/dev-libs/cl/cl-1.2.1.ebuild +++ b/dev-libs/cl/cl-1.2.1.ebuild @@ -33,6 +33,8 @@ src_compile() { } src_install() { + ERLANG_DIR="/usr/$(get_libdir)/erlang/lib" + CL_DIR="${ERLANG_DIR}/${P}" insinto "${CL_DIR}" doins -r ebin src include c_src examples } diff --git a/dev-libs/cl/cl-9999.ebuild b/dev-libs/cl/cl-9999.ebuild index eb12599..382f5b9 100644 --- a/dev-libs/cl/cl-9999.ebuild +++ b/dev-libs/cl/cl-9999.ebuild @@ -3,7 +3,7 @@ # $Header: /var/cvsroot/gentoo-x86/media-libs/esdl/esdl-1.2.ebuild,v 1.1 2013/02/12 14:41:54 george Exp $ EAPI=6 -inherit eutils fixheadtails git-r3 multilib +inherit eutils git-r3 multilib DESCRIPTION="OpenCL bindings for Erlang" HOMEPAGE="https://github.com/tonyrog/cl" @@ -25,10 +25,8 @@ src_compile() { } src_install() { - addpredict /usr/$(get_libdir)/erlang/lib ERLANG_DIR="/usr/$(get_libdir)/erlang/lib" CL_DIR="${ERLANG_DIR}/${P}" - insinto "${CL_DIR}" doins -r ebin src include c_src examples }