summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrey Grozin <grozin@gentoo.org>2012-01-08 12:13:52 +0000
committerAndrey Grozin <grozin@gentoo.org>2012-01-08 12:13:52 +0000
commit7360817354637b41c8164b5b24bd77fe3268e3a1 (patch)
treeefd2014e556a5e3e5a72ebc65136a2d7be56c00a /dev-lisp/clozurecl
parentupdate the cache only with USE X (diff)
downloadgentoo-2-7360817354637b41c8164b5b24bd77fe3268e3a1.tar.gz
gentoo-2-7360817354637b41c8164b5b24bd77fe3268e3a1.tar.bz2
gentoo-2-7360817354637b41c8164b5b24bd77fe3268e3a1.zip
Fix a compilation problem
(Portage version: 2.2.0_alpha84/cvs/Linux i686)
Diffstat (limited to 'dev-lisp/clozurecl')
-rw-r--r--dev-lisp/clozurecl/ChangeLog7
-rw-r--r--dev-lisp/clozurecl/clozurecl-1.7.ebuild11
2 files changed, 10 insertions, 8 deletions
diff --git a/dev-lisp/clozurecl/ChangeLog b/dev-lisp/clozurecl/ChangeLog
index b362c986a189..4fb3f042f460 100644
--- a/dev-lisp/clozurecl/ChangeLog
+++ b/dev-lisp/clozurecl/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for dev-lisp/clozurecl
-# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lisp/clozurecl/ChangeLog,v 1.5 2011/08/04 09:35:20 grozin Exp $
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-lisp/clozurecl/ChangeLog,v 1.6 2012/01/08 12:13:52 grozin Exp $
+
+ 08 Jan 2012; Andrey Grozin <grozin@gentoo.org> clozurecl-1.7.ebuild:
+ Fix a compilation problem
*clozurecl-1.7 (04 Aug 2011)
diff --git a/dev-lisp/clozurecl/clozurecl-1.7.ebuild b/dev-lisp/clozurecl/clozurecl-1.7.ebuild
index 3a3fb2179577..db27586fa3a8 100644
--- a/dev-lisp/clozurecl/clozurecl-1.7.ebuild
+++ b/dev-lisp/clozurecl/clozurecl-1.7.ebuild
@@ -1,6 +1,6 @@
-# Copyright 1999-2011 Gentoo Foundation
+# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lisp/clozurecl/clozurecl-1.7.ebuild,v 1.1 2011/08/04 09:35:20 grozin Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lisp/clozurecl/clozurecl-1.7.ebuild,v 1.2 2012/01/08 12:13:52 grozin Exp $
EAPI=3
inherit eutils
@@ -27,10 +27,6 @@ S="${WORKDIR}"/${MY_P}
ENVD="${T}"/50ccl
-src_prepare() {
- find "${S}" -type d -name .svn -exec rm -rf {} ';' &>/dev/null
-}
-
src_configure() {
if use x86; then
CCL_RUNTIME=lx86cl; CCL_HEADERS=x86-headers
@@ -49,6 +45,9 @@ src_compile() {
# remove non-owner write permissions on the full-image
chmod go-w ${CCL_RUNTIME}{,.image}
+
+ # remove .svn directories
+ find "${S}" -type d -name .svn -exec rm -rf {} ';' &>/dev/null
}
src_install() {