summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Kursawe <phosphan@gentoo.org>2005-08-24 16:30:29 +0000
committerPatrick Kursawe <phosphan@gentoo.org>2005-08-24 16:30:29 +0000
commitd781b2089d4122b841393b22e63b123e3f0456c9 (patch)
treee82d72bd12cac3b3ebf020660f6a6075cd2d57dd /sci-libs/vtk
parentepatch does not need die. (diff)
downloadhistorical-d781b2089d4122b841393b22e63b123e3f0456c9.tar.gz
historical-d781b2089d4122b841393b22e63b123e3f0456c9.tar.bz2
historical-d781b2089d4122b841393b22e63b123e3f0456c9.zip
No longer using cp -a (bug #103487)
Package-Manager: portage-2.0.51.22-r2
Diffstat (limited to 'sci-libs/vtk')
-rw-r--r--sci-libs/vtk/ChangeLog5
-rw-r--r--sci-libs/vtk/vtk-4.2.6.ebuild6
2 files changed, 7 insertions, 4 deletions
diff --git a/sci-libs/vtk/ChangeLog b/sci-libs/vtk/ChangeLog
index 8ce453e34fbf..321a8df5d85d 100644
--- a/sci-libs/vtk/ChangeLog
+++ b/sci-libs/vtk/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for sci-libs/vtk
# Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/vtk/ChangeLog,v 1.3 2005/08/20 19:20:21 ribosome Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/vtk/ChangeLog,v 1.4 2005/08/24 16:20:18 phosphan Exp $
+
+ 24 Aug 2005; Patrick Kursawe <phosphan@gentoo.org> vtk-4.2.6.ebuild:
+ No longer using cp -a (bug #103487)
20 Aug 2005; Olivier Fisette <ribosome@gentoo.org> vtk-4.2.6.ebuild:
Removed unused "data" USE flag (fixes bug #100418).
diff --git a/sci-libs/vtk/vtk-4.2.6.ebuild b/sci-libs/vtk/vtk-4.2.6.ebuild
index 4fa8f20d422b..dcc431ad48ba 100644
--- a/sci-libs/vtk/vtk-4.2.6.ebuild
+++ b/sci-libs/vtk/vtk-4.2.6.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/vtk/vtk-4.2.6.ebuild,v 1.4 2005/08/20 19:20:21 ribosome Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/vtk/vtk-4.2.6.ebuild,v 1.5 2005/08/24 16:20:18 phosphan Exp $
# TODO: need to fix Examples/CMakeLists.txt to build other examples
@@ -112,7 +112,7 @@ src_install() {
# install examples
if use examples; then
dodir /usr/share/${PN}
- cp -a ${S}/Examples ${D}/usr/share/${PN}/examples
+ cp -pPR ${S}/Examples ${D}/usr/share/${PN}/examples
# fix example's permissions
find ${D}/usr/share/${PN}/examples -type d -exec chmod 0755 {} \;
@@ -121,7 +121,7 @@ src_install() {
# VTKData uses a hyphen instead of a dot
MY_PV_HYPHEN=`echo ${MY_PV} | sed -e "s/\./-/"`
dodir /usr/share/${PN}
- cp -a ${WORKDIR}/VTKData-release-${MY_PV_HYPHEN} ${D}/usr/share/${PN}/data
+ cp -pPR ${WORKDIR}/VTKData-release-${MY_PV_HYPHEN} ${D}/usr/share/${PN}/data
# fix data's permissions
find ${D}/usr/share/${PN}/data -type d -exec chmod 0755 {} \;