diff options
author | Patrick Kursawe <phosphan@gentoo.org> | 2005-08-24 16:23:52 +0000 |
---|---|---|
committer | Patrick Kursawe <phosphan@gentoo.org> | 2005-08-24 16:23:52 +0000 |
commit | a95832a84e317d600879a7278e3e99a9908e5cbd (patch) | |
tree | 0f6dc49205d5332c225523cdfa37d2abd8426fba /sci-libs/vtk | |
parent | Remove comments that doesn't apply anymore. (diff) | |
download | gentoo-2-a95832a84e317d600879a7278e3e99a9908e5cbd.tar.gz gentoo-2-a95832a84e317d600879a7278e3e99a9908e5cbd.tar.bz2 gentoo-2-a95832a84e317d600879a7278e3e99a9908e5cbd.zip |
No longer using cp -a (bug #103487)
(Portage version: 2.0.51.22-r2)
Diffstat (limited to 'sci-libs/vtk')
-rw-r--r-- | sci-libs/vtk/ChangeLog | 5 | ||||
-rw-r--r-- | sci-libs/vtk/vtk-4.2.6.ebuild | 6 |
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 {} \; |