public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in sci-chemistry/apbs: apbs-1.2.1b-r2.ebuild
@ 2010-04-25 17:51 Arfrever Frehtes Taifersar Arahesis (arfrever)
  0 siblings, 0 replies; 2+ messages in thread
From: Arfrever Frehtes Taifersar Arahesis (arfrever) @ 2010-04-25 17:51 UTC (permalink / raw
  To: gentoo-commits

arfrever    10/04/25 17:51:31

  Modified:             apbs-1.2.1b-r2.ebuild
  Log:
  Fix calls to python_mod_optimize() and python_mod_cleanup().
  (Portage version: HEAD/cvs/Linux x86_64)

Revision  Changes    Path
1.4                  sci-chemistry/apbs/apbs-1.2.1b-r2.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-chemistry/apbs/apbs-1.2.1b-r2.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-chemistry/apbs/apbs-1.2.1b-r2.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-chemistry/apbs/apbs-1.2.1b-r2.ebuild?r1=1.3&r2=1.4

Index: apbs-1.2.1b-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-chemistry/apbs/apbs-1.2.1b-r2.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- apbs-1.2.1b-r2.ebuild	25 Apr 2010 09:24:23 -0000	1.3
+++ apbs-1.2.1b-r2.ebuild	25 Apr 2010 17:51:31 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/apbs/apbs-1.2.1b-r2.ebuild,v 1.3 2010/04/25 09:24:23 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/apbs/apbs-1.2.1b-r2.ebuild,v 1.4 2010/04/25 17:51:31 arfrever Exp $
 
 EAPI="3"
 
@@ -129,9 +129,9 @@
 }
 
 pkg_postinst() {
-	python_mod_optimize ${EPREFIX}/usr/$(python_get_sitedir)/${PN}
+	python_mod_optimize ${PN}
 }
 
 pkg_postrm() {
-	python_mod_cleanup ${EPREFIX}/usr/$(python_get_sitedir)/${PN}
+	python_mod_cleanup ${PN}
 }






^ permalink raw reply	[flat|nested] 2+ messages in thread

* [gentoo-commits] gentoo-x86 commit in sci-chemistry/apbs: apbs-1.2.1b-r2.ebuild
@ 2010-04-25 17:57 Arfrever Frehtes Taifersar Arahesis (arfrever)
  0 siblings, 0 replies; 2+ messages in thread
From: Arfrever Frehtes Taifersar Arahesis (arfrever) @ 2010-04-25 17:57 UTC (permalink / raw
  To: gentoo-commits

arfrever    10/04/25 17:57:36

  Modified:             apbs-1.2.1b-r2.ebuild
  Log:
  Don't install files into /usr/usr/lib/python${version}/site-packages/${PN}.
  (Portage version: HEAD/cvs/Linux x86_64)

Revision  Changes    Path
1.5                  sci-chemistry/apbs/apbs-1.2.1b-r2.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-chemistry/apbs/apbs-1.2.1b-r2.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-chemistry/apbs/apbs-1.2.1b-r2.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-chemistry/apbs/apbs-1.2.1b-r2.ebuild?r1=1.4&r2=1.5

Index: apbs-1.2.1b-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-chemistry/apbs/apbs-1.2.1b-r2.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- apbs-1.2.1b-r2.ebuild	25 Apr 2010 17:51:31 -0000	1.4
+++ apbs-1.2.1b-r2.ebuild	25 Apr 2010 17:57:36 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/apbs/apbs-1.2.1b-r2.ebuild,v 1.4 2010/04/25 17:51:31 arfrever Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/apbs/apbs-1.2.1b-r2.ebuild,v 1.5 2010/04/25 17:57:36 arfrever Exp $
 
 EAPI="3"
 
@@ -111,11 +111,11 @@
 		doins -r tools/matlab || die
 	fi
 
-	insinto /usr/$(python_get_sitedir)/${PN}
+	insinto $(python_get_sitedir)/${PN}
 	doins tools/manip/*.py || die
 
 	if use python && ! use mpi; then
-		insinto /usr/$(python_get_sitedir)/${PN}
+		insinto $(python_get_sitedir)/${PN}
 		doins tools/python/{*.py,*.pqr,*.so} || die
 		doins tools/python/*/{*.py,*.so} || die
 	fi






^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2010-04-25 17:57 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-04-25 17:51 [gentoo-commits] gentoo-x86 commit in sci-chemistry/apbs: apbs-1.2.1b-r2.ebuild Arfrever Frehtes Taifersar Arahesis (arfrever)
  -- strict thread matches above, loose matches on Subject: below --
2010-04-25 17:57 Arfrever Frehtes Taifersar Arahesis (arfrever)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox