diff options
author | Aron Griffis <agriffis@gentoo.org> | 2006-08-17 01:44:43 +0000 |
---|---|---|
committer | Aron Griffis <agriffis@gentoo.org> | 2006-08-17 01:44:43 +0000 |
commit | 1b62113537e33ec055aff6741ca657da3142dd77 (patch) | |
tree | 171935991d4567ae59a9c09af2024e4f32ece032 /x11-misc/xclip | |
parent | Re-added ~alpha keyword wrt Bug #142139. (diff) | |
download | gentoo-2-1b62113537e33ec055aff6741ca657da3142dd77.tar.gz gentoo-2-1b62113537e33ec055aff6741ca657da3142dd77.tar.bz2 gentoo-2-1b62113537e33ec055aff6741ca657da3142dd77.zip |
Fix find args order
(Portage version: 2.1.1_pre5)
Diffstat (limited to 'x11-misc/xclip')
-rw-r--r-- | x11-misc/xclip/files/digest-xclip-0.08 | 2 | ||||
-rw-r--r-- | x11-misc/xclip/xclip-0.08-r1.ebuild | 4 | ||||
-rw-r--r-- | x11-misc/xclip/xclip-0.08.ebuild | 4 |
3 files changed, 6 insertions, 4 deletions
diff --git a/x11-misc/xclip/files/digest-xclip-0.08 b/x11-misc/xclip/files/digest-xclip-0.08 index 0d07e7d126a7..89c47b981b96 100644 --- a/x11-misc/xclip/files/digest-xclip-0.08 +++ b/x11-misc/xclip/files/digest-xclip-0.08 @@ -1 +1,3 @@ MD5 a90bde3fb0da6aad3a6042c4867245c6 xclip-0.08.tar.gz 27914 +RMD160 644c0418b44ce533fd39e37ec2dd888a394e8f7d xclip-0.08.tar.gz 27914 +SHA256 ee76e90d38ef19f4efa4cc3cb4f435cb9e64ed215cd4deff1309597ab88cc65f xclip-0.08.tar.gz 27914 diff --git a/x11-misc/xclip/xclip-0.08-r1.ebuild b/x11-misc/xclip/xclip-0.08-r1.ebuild index 7db97a1a883f..132b31696c6e 100644 --- a/x11-misc/xclip/xclip-0.08-r1.ebuild +++ b/x11-misc/xclip/xclip-0.08-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/xclip/xclip-0.08-r1.ebuild,v 1.2 2006/04/09 14:29:14 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xclip/xclip-0.08-r1.ebuild,v 1.3 2006/08/17 01:44:43 agriffis Exp $ S=${WORKDIR}/xclip DESCRIPTION="Command-line utility to read data from standard in and place it in an X selection for pasting into X applications." @@ -34,6 +34,6 @@ src_install () { make DESTDIR=${D} MANPATH=/usr/share/man MANSUFFIX=1 \ install.man || die rm -f ${D}/usr/lib/X11/doc/html/* - find ${D} -type d -depth | xargs -n1 rmdir 2>/dev/null + find ${D} -depth -type d | xargs -n1 rmdir 2>/dev/null dodoc README CHANGES } diff --git a/x11-misc/xclip/xclip-0.08.ebuild b/x11-misc/xclip/xclip-0.08.ebuild index 528657185fe1..19910e115f79 100644 --- a/x11-misc/xclip/xclip-0.08.ebuild +++ b/x11-misc/xclip/xclip-0.08.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/xclip/xclip-0.08.ebuild,v 1.10 2006/03/25 03:14:31 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xclip/xclip-0.08.ebuild,v 1.11 2006/08/17 01:44:43 agriffis Exp $ S=${WORKDIR}/xclip DESCRIPTION="Command-line utility to read data from standard in and place it in an X selection for pasting into X applications." @@ -34,6 +34,6 @@ src_install () { make DESTDIR=${D} MANPATH=/usr/share/man MANSUFFIX=1 \ install.man || die rm -f ${D}/usr/lib/X11/doc/html/* - find ${D} -type d -depth | xargs -n1 rmdir 2>/dev/null + find ${D} -depth -type d | xargs -n1 rmdir 2>/dev/null dodoc README CHANGES } |