summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2007-04-07 04:57:40 +0000
committerMike Frysinger <vapier@gentoo.org>2007-04-07 04:57:40 +0000
commitfdbed77fe09efe4eef683f6e1454d8340abaee03 (patch)
treeb5cdcedabd3a0cf00ff60dc0f3df3ef35a34b522 /sci-chemistry
parentRemove fluff reference to EXEDESTTREE. (diff)
downloadgentoo-2-fdbed77fe09efe4eef683f6e1454d8340abaee03.tar.gz
gentoo-2-fdbed77fe09efe4eef683f6e1454d8340abaee03.tar.bz2
gentoo-2-fdbed77fe09efe4eef683f6e1454d8340abaee03.zip
Replace references to *DESTTREE vars with proper calls to the *into functions.
(Portage version: 2.1.2.3)
Diffstat (limited to 'sci-chemistry')
-rw-r--r--sci-chemistry/molmol/ChangeLog7
-rw-r--r--sci-chemistry/molmol/molmol-2k_p2.ebuild12
2 files changed, 12 insertions, 7 deletions
diff --git a/sci-chemistry/molmol/ChangeLog b/sci-chemistry/molmol/ChangeLog
index 61baac07285c..8f25ff37306c 100644
--- a/sci-chemistry/molmol/ChangeLog
+++ b/sci-chemistry/molmol/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for sci-chemistry/molmol
-# Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/molmol/ChangeLog,v 1.13 2006/10/23 04:29:39 je_fro Exp $
+# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/molmol/ChangeLog,v 1.14 2007/04/07 04:57:40 vapier Exp $
+
+ 07 Apr 2007; Mike Frysinger <vapier@gentoo.org> molmol-2k_p2.ebuild:
+ Replace references to *DESTTREE vars with proper calls to the *into functions.
23 Oct 2006; Jeff Gardner <je_fro@gentoo.org> molmol-2k_p2.ebuild:
Specify mesa in DEPEND - bug 152426
diff --git a/sci-chemistry/molmol/molmol-2k_p2.ebuild b/sci-chemistry/molmol/molmol-2k_p2.ebuild
index d99a78f1efc4..0ae1ca1e9c8b 100644
--- a/sci-chemistry/molmol/molmol-2k_p2.ebuild
+++ b/sci-chemistry/molmol/molmol-2k_p2.ebuild
@@ -1,6 +1,6 @@
-# Copyright 1999-2006 Gentoo Foundation
+# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/molmol/molmol-2k_p2.ebuild,v 1.8 2006/10/23 04:29:39 je_fro Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/molmol/molmol-2k_p2.ebuild,v 1.9 2007/04/07 04:57:40 vapier Exp $
inherit eutils toolchain-funcs multilib
@@ -64,10 +64,12 @@ src_compile() {
}
src_install() {
- dobin molmol
+ dobin molmol || die
- EXEDESTTREE=${MMDIR} newexe src/main/molmol molmol.lnx
- INSDESTTREE=${MMDIR} doins -r auxil help macros man setup tips
+ exeinto ${MMDIR}
+ newexe src/main/molmol molmol.lnx || die
+ insinto ${MMDIR}
+ doins -r auxil help macros man setup tips || die
dodoc HISTORY README
}