diff options
author | Patrick Kursawe <phosphan@gentoo.org> | 2004-03-22 11:23:17 +0000 |
---|---|---|
committer | Patrick Kursawe <phosphan@gentoo.org> | 2004-03-22 11:23:17 +0000 |
commit | 4d2d0cd045ace1e881f6b5e11a49ea7a7d2eabcd (patch) | |
tree | 56000cbf87b2d8f851fd736131cac802d3b316e3 /dev-lang/R | |
parent | Initial import (diff) | |
download | historical-4d2d0cd045ace1e881f6b5e11a49ea7a7d2eabcd.tar.gz historical-4d2d0cd045ace1e881f6b5e11a49ea7a7d2eabcd.tar.bz2 historical-4d2d0cd045ace1e881f6b5e11a49ea7a7d2eabcd.zip |
Fixing bug #40100 (problems with newer Xfree)
Diffstat (limited to 'dev-lang/R')
-rw-r--r-- | dev-lang/R/ChangeLog | 5 | ||||
-rw-r--r-- | dev-lang/R/Manifest | 4 | ||||
-rw-r--r-- | dev-lang/R/R-1.8.1.ebuild | 11 |
3 files changed, 14 insertions, 6 deletions
diff --git a/dev-lang/R/ChangeLog b/dev-lang/R/ChangeLog index f7069ea6e8e0..bf4d561c0b61 100644 --- a/dev-lang/R/ChangeLog +++ b/dev-lang/R/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-lang/R # Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/R/ChangeLog,v 1.15 2004/02/25 07:25:48 phosphan Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/R/ChangeLog,v 1.16 2004/03/22 11:23:17 phosphan Exp $ + + 22 Mar 2004; Patrick Kursawe <phosphan@gentoo.org> R-1.8.1.ebuild: + Fixing bug #40100 (problems with newer Xfree) 25 Feb 2004; Patrick Kursawe <phosphan@gentoo.org> R-1.4.1-r1.ebuild, R-1.4.1.ebuild, R-1.5.1.ebuild, R-1.6.1.ebuild, R-1.6.2.ebuild, diff --git a/dev-lang/R/Manifest b/dev-lang/R/Manifest index c969a9eb6ff5..73f3154017d9 100644 --- a/dev-lang/R/Manifest +++ b/dev-lang/R/Manifest @@ -1,5 +1,5 @@ -MD5 15a67486332f409927e50b4cf2bce63d R-1.8.1.ebuild 2936 -MD5 99b5cffe357609be5cdeaef7456a2157 ChangeLog 3084 +MD5 00a7c6e61ee04b0a27686413a8baedae R-1.8.1.ebuild 3098 +MD5 0bc25bbcdb80eb5415a8e545bd63c202 ChangeLog 3202 MD5 8c623e53daafa025137077c6b65815bd metadata.xml 156 MD5 887d265368acf8b257a9830d5d52f6a5 R-1.8.0.ebuild 2933 MD5 44015fe4137f1326769e89f2c2c2eda7 files/R-logo.png 4867 diff --git a/dev-lang/R/R-1.8.1.ebuild b/dev-lang/R/R-1.8.1.ebuild index 7a43c31a6d2d..bbed92a564dc 100644 --- a/dev-lang/R/R-1.8.1.ebuild +++ b/dev-lang/R/R-1.8.1.ebuild @@ -1,11 +1,9 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/R/R-1.8.1.ebuild,v 1.2 2004/03/01 04:55:10 jhuebel Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/R/R-1.8.1.ebuild,v 1.3 2004/03/22 11:23:17 phosphan Exp $ IUSE="atlas X tcltk gnome" -S=${WORKDIR}/${P} - DESCRIPTION="R is GNU S - A language and environment for statistical computing and graphics." SRC_URI="http://cran.r-project.org/src/base/${P}.tgz" @@ -38,6 +36,13 @@ SLOT="0" LICENSE="GPL-2 LGPL-2.1" KEYWORDS="~x86 ~sparc ~ppc ~amd64" +src_unpack() { + unpack ${A} + cd ${S} + sed -e 's/^#define NeedFunctionPrototypes 0/#define NeedFunctionPrototypes 1/' \ + -i src/modules/X11/dataentry.c || die "sed failed" +} + src_compile() { local myconf="--enable-R-profiling --enable-R-shlib --with-readline" |