diff options
author | Sergey Popov <pinkbyte@gentoo.org> | 2012-10-09 08:22:52 +0000 |
---|---|---|
committer | Sergey Popov <pinkbyte@gentoo.org> | 2012-10-09 08:22:52 +0000 |
commit | 0828043a0eeafca92c3a594cc7fb184bd8c23ccc (patch) | |
tree | 0119ad74836fb2dd4aac365ff8ccd514fff1c126 /net-analyzer/bigeye | |
parent | Bump (diff) | |
download | gentoo-2-0828043a0eeafca92c3a594cc7fb184bd8c23ccc.tar.gz gentoo-2-0828043a0eeafca92c3a594cc7fb184bd8c23ccc.tar.bz2 gentoo-2-0828043a0eeafca92c3a594cc7fb184bd8c23ccc.zip |
Replace direct invocation of 'cp' command with doins
(Portage version: 2.2.0_alpha134/cvs/Linux x86_64)
Diffstat (limited to 'net-analyzer/bigeye')
-rw-r--r-- | net-analyzer/bigeye/ChangeLog | 5 | ||||
-rw-r--r-- | net-analyzer/bigeye/bigeye-0.3-r3.ebuild | 4 |
2 files changed, 6 insertions, 3 deletions
diff --git a/net-analyzer/bigeye/ChangeLog b/net-analyzer/bigeye/ChangeLog index e07d44957232..6ba021a054af 100644 --- a/net-analyzer/bigeye/ChangeLog +++ b/net-analyzer/bigeye/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-analyzer/bigeye # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/bigeye/ChangeLog,v 1.18 2012/03/21 15:24:40 tomka Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/bigeye/ChangeLog,v 1.19 2012/10/09 08:22:52 pinkbyte Exp $ + + 09 Oct 2012; Sergey Popov <pinkbyte@gentoo.org> bigeye-0.3-r3.ebuild: + Replace direct invocation of 'cp' command with doins 21 Mar 2012; Thomas Kahle <tomka@gentoo.org> bigeye-0.3-r3.ebuild: marked x86 per bug 342309 diff --git a/net-analyzer/bigeye/bigeye-0.3-r3.ebuild b/net-analyzer/bigeye/bigeye-0.3-r3.ebuild index 3eee911f9fda..5218e52f9b08 100644 --- a/net-analyzer/bigeye/bigeye-0.3-r3.ebuild +++ b/net-analyzer/bigeye/bigeye-0.3-r3.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/bigeye/bigeye-0.3-r3.ebuild,v 1.2 2012/03/21 15:24:40 tomka Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/bigeye/bigeye-0.3-r3.ebuild,v 1.3 2012/10/09 08:22:52 pinkbyte Exp $ EAPI="4" @@ -37,7 +37,7 @@ src_install() { insinto /usr/share/bigeye doins sig.file - cp -r messages/ "${D}"/usr/share/bigeye/ + doins -r messages dodoc README } |