diff options
author | Victor Ostorga <vostorga@gentoo.org> | 2010-05-06 16:11:07 +0000 |
---|---|---|
committer | Victor Ostorga <vostorga@gentoo.org> | 2010-05-06 16:11:07 +0000 |
commit | 8d1d3b8b71635d99e9f7c83708b5aa23aa492402 (patch) | |
tree | 5a8c487f7367e738226bbb267a2a764947723b14 | |
parent | Version bump, using econf in place of ./configure, fixes bundled copies of li... (diff) | |
download | gentoo-2-8d1d3b8b71635d99e9f7c83708b5aa23aa492402.tar.gz gentoo-2-8d1d3b8b71635d99e9f7c83708b5aa23aa492402.tar.bz2 gentoo-2-8d1d3b8b71635d99e9f7c83708b5aa23aa492402.zip |
Specifying EAPI version, dropping redundant econf option, using emake install
(Portage version: 2.1.8.3/cvs/Linux i686)
-rw-r--r-- | dev-lang/gnu-smalltalk/ChangeLog | 7 | ||||
-rw-r--r-- | dev-lang/gnu-smalltalk/gnu-smalltalk-3.2.ebuild | 7 |
2 files changed, 10 insertions, 4 deletions
diff --git a/dev-lang/gnu-smalltalk/ChangeLog b/dev-lang/gnu-smalltalk/ChangeLog index 859f9c52ec9f..d04b79849225 100644 --- a/dev-lang/gnu-smalltalk/ChangeLog +++ b/dev-lang/gnu-smalltalk/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-lang/gnu-smalltalk # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/gnu-smalltalk/ChangeLog,v 1.41 2010/05/06 15:50:59 vostorga Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/gnu-smalltalk/ChangeLog,v 1.42 2010/05/06 16:11:07 vostorga Exp $ + + 06 May 2010; Víctor Ostorga <vostorga@gentoo.org> + gnu-smalltalk-3.2.ebuild: + Specifying EAPI version, dropping redundant econf option, using emake + install *gnu-smalltalk-3.2 (06 May 2010) diff --git a/dev-lang/gnu-smalltalk/gnu-smalltalk-3.2.ebuild b/dev-lang/gnu-smalltalk/gnu-smalltalk-3.2.ebuild index 5e6cfd90a2d6..3b3a33c5a15c 100644 --- a/dev-lang/gnu-smalltalk/gnu-smalltalk-3.2.ebuild +++ b/dev-lang/gnu-smalltalk/gnu-smalltalk-3.2.ebuild @@ -1,6 +1,8 @@ # Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/gnu-smalltalk/gnu-smalltalk-3.2.ebuild,v 1.1 2010/05/06 15:50:59 vostorga Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/gnu-smalltalk/gnu-smalltalk-3.2.ebuild,v 1.2 2010/05/06 16:11:07 vostorga Exp $ + +EAPI="0" inherit elisp-common flag-o-matic eutils @@ -30,7 +32,6 @@ SITEFILE=50gnu-smalltalk-gentoo.el src_compile() { replace-flags '-O3' '-O2' econf \ - --prefix=/usr \ --libdir=/usr/$(get_libdir) \ --with-system-libsigsegv \ --with-system-libffi \ @@ -46,7 +47,7 @@ src_compile() { } src_install() { - make DESTDIR="${D}" install || die + emake DESTDIR="${D}" install || die dodoc AUTHORS COPYING* ChangeLog NEWS README THANKS TODO if use emacs; then elisp-install "${PN}" *.el *.elc |