diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2005-08-26 13:26:12 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2005-08-26 13:26:12 +0000 |
commit | d314d02df37c48a5faa674433aa572114096a334 (patch) | |
tree | ae4f72ca234b4cfa0755e4e8c2c1c29161fa8db2 /dev-util | |
parent | add ~ia64 (diff) | |
download | historical-d314d02df37c48a5faa674433aa572114096a334.tar.gz historical-d314d02df37c48a5faa674433aa572114096a334.tar.bz2 historical-d314d02df37c48a5faa674433aa572114096a334.zip |
Fix cp -a usage for Gentoo/FreeBSD.
Package-Manager: portage-2.0.51.22
Diffstat (limited to 'dev-util')
-rw-r--r-- | dev-util/argouml/ChangeLog | 5 | ||||
-rw-r--r-- | dev-util/argouml/argouml-0.18.1.ebuild | 4 | ||||
-rw-r--r-- | dev-util/fujaba/ChangeLog | 5 | ||||
-rw-r--r-- | dev-util/fujaba/fujaba-4.2.0.ebuild | 4 |
4 files changed, 12 insertions, 6 deletions
diff --git a/dev-util/argouml/ChangeLog b/dev-util/argouml/ChangeLog index 575d5db8faf3..ea205e555b7c 100644 --- a/dev-util/argouml/ChangeLog +++ b/dev-util/argouml/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-util/argouml # Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/argouml/ChangeLog,v 1.12 2005/05/14 11:43:43 luckyduck Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/argouml/ChangeLog,v 1.13 2005/08/26 13:26:12 flameeyes Exp $ + + 26 Aug 2005; Diego Pettenò <flameeyes@gentoo.org> argouml-0.18.1.ebuild: + Fix cp -a usage for Gentoo/FreeBSD. *argouml-0.18.1 (14 May 2005) diff --git a/dev-util/argouml/argouml-0.18.1.ebuild b/dev-util/argouml/argouml-0.18.1.ebuild index 9079a3cfe901..028d8b42da4e 100644 --- a/dev-util/argouml/argouml-0.18.1.ebuild +++ b/dev-util/argouml/argouml-0.18.1.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/dev-util/argouml/argouml-0.18.1.ebuild,v 1.1 2005/05/14 11:43:43 luckyduck Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/argouml/argouml-0.18.1.ebuild,v 1.2 2005/08/26 13:26:12 flameeyes Exp $ inherit java-pkg @@ -23,7 +23,7 @@ src_compile() { :; } src_install() { dodir /opt/${PN} - cp -a . ${D}/opt/${PN}/lib/ + cp -pPR . ${D}/opt/${PN}/lib/ chmod -R 755 ${D}/opt/${PN} touch ${D}/opt/${PN}/lib/argouml.log chmod a+w ${D}/opt/${PN}/lib/argouml.log diff --git a/dev-util/fujaba/ChangeLog b/dev-util/fujaba/ChangeLog index 7e11235a60e5..7e0befb37de0 100644 --- a/dev-util/fujaba/ChangeLog +++ b/dev-util/fujaba/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-util/fujaba # Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/fujaba/ChangeLog,v 1.11 2005/02/06 16:36:26 luckyduck Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/fujaba/ChangeLog,v 1.12 2005/08/26 13:24:20 flameeyes Exp $ + + 26 Aug 2005; Diego Pettenò <flameeyes@gentoo.org> fujaba-4.2.0.ebuild: + Fix cp -a usage for Gentoo/FreeBSD. 06 Feb 2005; Jan Brinkmann <luckyduck@gentoo.org> fujaba-4.2.0.ebuild: last issues corrected, now all packed jars are removed. thanks axxo :) diff --git a/dev-util/fujaba/fujaba-4.2.0.ebuild b/dev-util/fujaba/fujaba-4.2.0.ebuild index cb62219a8db6..97c66c88ea78 100644 --- a/dev-util/fujaba/fujaba-4.2.0.ebuild +++ b/dev-util/fujaba/fujaba-4.2.0.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/dev-util/fujaba/fujaba-4.2.0.ebuild,v 1.5 2005/07/16 18:36:38 axxo Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/fujaba/fujaba-4.2.0.ebuild,v 1.6 2005/08/26 13:24:20 flameeyes Exp $ MY_PV="${PV//./_}" MY_PNB="Fujaba_${PV:0:1}" @@ -39,7 +39,7 @@ src_install() { dodir /opt/${PN} cd 'C_/Dokumente und Einstellungen/Lothar/Eigene Dateien/Deployment/Fujaba 4.2.0/' || die "failed to enter die" - cp -a . ${D}/opt/${PN} || die "failed too copy" + cp -pPR . ${D}/opt/${PN} || die "failed to copy" chmod -R 755 ${D}/opt/${PN}/ echo "#!/bin/sh" > ${PN} |