diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-03-14 23:11:53 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-03-14 23:11:53 +0000 |
commit | 25e99205aa82c446437bcd65e72711cc251d6ae8 (patch) | |
tree | 157b78d8c60ac6ff3ef7c1ee6db0b34282bccd07 | |
parent | copyrigh (diff) | |
download | gentoo-2-25e99205aa82c446437bcd65e72711cc251d6ae8.tar.gz gentoo-2-25e99205aa82c446437bcd65e72711cc251d6ae8.tar.bz2 gentoo-2-25e99205aa82c446437bcd65e72711cc251d6ae8.zip |
use find -print0 | xargs -0 #85053
(Portage version: 2.0.51.19)
-rw-r--r-- | games-arcade/solarwolf/solarwolf-1.4.ebuild | 6 | ||||
-rw-r--r-- | games-arcade/solarwolf/solarwolf-1.5.ebuild | 6 | ||||
-rw-r--r-- | games-simulation/simutrans/simutrans-0.84.16.2.ebuild | 4 | ||||
-rw-r--r-- | games-simulation/simutrans/simutrans-0.84.16.4.ebuild | 4 | ||||
-rw-r--r-- | games-simulation/simutrans/simutrans-0.84.8.4.ebuild | 4 | ||||
-rw-r--r-- | games-strategy/attal/attal-0.8.1.ebuild | 4 | ||||
-rw-r--r-- | games-strategy/attal/attal-0.9.2.ebuild | 4 | ||||
-rw-r--r-- | net-misc/3proxy/3proxy-0.4.3b.ebuild | 37 | ||||
-rw-r--r-- | net-misc/3proxy/3proxy-0.4.5b.ebuild | 38 | ||||
-rw-r--r-- | net-misc/3proxy/3proxy-0.5b.ebuild | 10 | ||||
-rw-r--r-- | net-misc/3proxy/files/digest-3proxy-0.4.3b | 1 | ||||
-rw-r--r-- | net-misc/3proxy/files/digest-3proxy-0.4.5b | 1 |
12 files changed, 21 insertions, 98 deletions
diff --git a/games-arcade/solarwolf/solarwolf-1.4.ebuild b/games-arcade/solarwolf/solarwolf-1.4.ebuild index 18f1bd6ddf9f..25fdc874e817 100644 --- a/games-arcade/solarwolf/solarwolf-1.4.ebuild +++ b/games-arcade/solarwolf/solarwolf-1.4.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-arcade/solarwolf/solarwolf-1.4.ebuild,v 1.6 2004/06/24 22:12:17 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-arcade/solarwolf/solarwolf-1.4.ebuild,v 1.7 2005/03/14 23:07:02 vapier Exp $ inherit games @@ -8,9 +8,9 @@ DESCRIPTION="action/arcade recreation of SolarFox" HOMEPAGE="http://www.pygame.org/shredwheat/solarwolf/" SRC_URI="http://www.pygame.org/shredwheat/solarwolf/${P}.tar.gz" -KEYWORDS="x86 ~sparc hppa" LICENSE="LGPL-2.1" SLOT="0" +KEYWORDS="x86 ~sparc hppa" IUSE="" DEPEND=">=dev-python/pygame-1.5.6 @@ -19,7 +19,7 @@ DEPEND=">=dev-python/pygame-1.5.6 src_unpack() { unpack ${A} - find ${S} -name .xvpics | xargs rm -rf + find "${S}" -name .xvpics -print0 | xargs -0 rm -r } src_install() { diff --git a/games-arcade/solarwolf/solarwolf-1.5.ebuild b/games-arcade/solarwolf/solarwolf-1.5.ebuild index ea8ce9894d55..84b82960cbab 100644 --- a/games-arcade/solarwolf/solarwolf-1.5.ebuild +++ b/games-arcade/solarwolf/solarwolf-1.5.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-arcade/solarwolf/solarwolf-1.5.ebuild,v 1.4 2004/12/16 13:14:44 josejx Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-arcade/solarwolf/solarwolf-1.5.ebuild,v 1.5 2005/03/14 23:07:02 vapier Exp $ inherit games @@ -10,7 +10,7 @@ SRC_URI="http://www.pygame.org/shredwheat/solarwolf/${P}.tar.gz" LICENSE="LGPL-2.1" SLOT="0" -KEYWORDS="hppa ~sparc x86 ~ppc" +KEYWORDS="hppa ~ppc ~sparc x86" IUSE="" DEPEND=">=dev-python/pygame-1.5.6 @@ -19,7 +19,7 @@ DEPEND=">=dev-python/pygame-1.5.6 src_unpack() { unpack ${A} - find "${S}" -name .xvpics | xargs rm -rf + find "${S}" -name .xvpics -print0 | xargs -0 rm -r } src_install() { diff --git a/games-simulation/simutrans/simutrans-0.84.16.2.ebuild b/games-simulation/simutrans/simutrans-0.84.16.2.ebuild index 30c14364d2ab..98319b78e558 100644 --- a/games-simulation/simutrans/simutrans-0.84.16.2.ebuild +++ b/games-simulation/simutrans/simutrans-0.84.16.2.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/games-simulation/simutrans/simutrans-0.84.16.2.ebuild,v 1.2 2005/03/09 22:38:31 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-simulation/simutrans/simutrans-0.84.16.2.ebuild,v 1.3 2005/03/14 23:11:53 vapier Exp $ inherit games @@ -30,7 +30,7 @@ src_install() { games_make_wrapper simutrans ./simutrans "${dir}" keepdir "${dir}/save" cp -R * "${D}/${dir}/" || die "cp failed" - find "${D}/${dir}/"{text,font} -type f | xargs chmod a-x + find "${D}/${dir}/"{text,font} -type f -print0 | xargs -0 chmod a-x prepgamesdirs fperms 2775 "${dir}/save" } diff --git a/games-simulation/simutrans/simutrans-0.84.16.4.ebuild b/games-simulation/simutrans/simutrans-0.84.16.4.ebuild index 6c7f1b92e0e5..308e33689e5e 100644 --- a/games-simulation/simutrans/simutrans-0.84.16.4.ebuild +++ b/games-simulation/simutrans/simutrans-0.84.16.4.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/games-simulation/simutrans/simutrans-0.84.16.4.ebuild,v 1.1 2005/03/09 22:38:31 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-simulation/simutrans/simutrans-0.84.16.4.ebuild,v 1.2 2005/03/14 23:11:53 vapier Exp $ inherit games @@ -31,7 +31,7 @@ src_install() { games_make_wrapper simutrans ./simutrans "${dir}" keepdir "${dir}/save" cp -R * "${D}/${dir}/" || die "cp failed" - find "${D}/${dir}/"{text,font} -type f | xargs chmod a-x + find "${D}/${dir}/"{text,font} -type f -print0 | xargs -0 chmod a-x prepgamesdirs fperms 2775 "${dir}/save" } diff --git a/games-simulation/simutrans/simutrans-0.84.8.4.ebuild b/games-simulation/simutrans/simutrans-0.84.8.4.ebuild index a42b5195e948..bb0947880bb1 100644 --- a/games-simulation/simutrans/simutrans-0.84.8.4.ebuild +++ b/games-simulation/simutrans/simutrans-0.84.8.4.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/games-simulation/simutrans/simutrans-0.84.8.4.ebuild,v 1.4 2005/03/09 22:38:31 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-simulation/simutrans/simutrans-0.84.8.4.ebuild,v 1.5 2005/03/14 23:11:53 vapier Exp $ inherit games @@ -30,7 +30,7 @@ src_install() { games_make_wrapper simutrans ./simutrans "${dir}" keepdir "${dir}/save" cp -R * "${D}/${dir}/" || die "cp failed" - find "${D}/${dir}/"{text,font} -type f | xargs chmod a-x + find "${D}/${dir}/"{text,font} -type f -print0 | xargs -0 chmod a-x prepgamesdirs fperms 2775 "${dir}/save" } diff --git a/games-strategy/attal/attal-0.8.1.ebuild b/games-strategy/attal/attal-0.8.1.ebuild index afa14c114453..b22eca6d374e 100644 --- a/games-strategy/attal/attal-0.8.1.ebuild +++ b/games-strategy/attal/attal-0.8.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/games-strategy/attal/attal-0.8.1.ebuild,v 1.4 2005/01/03 22:56:05 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-strategy/attal/attal-0.8.1.ebuild,v 1.5 2005/03/14 23:08:33 vapier Exp $ inherit games eutils @@ -36,7 +36,7 @@ src_unpack() { "s:\./themes/:${GAMES_DATADIR}/${PN}/themes/:" \ `grep -Rl '\./themes/' *` \ || die "fixing theme loc" - find "${WORKDIR}/themes" -name .cvsignore -exec rm -f \{\} \; + find "${WORKDIR}"/themes -name .cvsignore -print0 | xargs -0 rm -f } src_compile() { diff --git a/games-strategy/attal/attal-0.9.2.ebuild b/games-strategy/attal/attal-0.9.2.ebuild index 36897bcf1af6..bd9f5d61818b 100644 --- a/games-strategy/attal/attal-0.9.2.ebuild +++ b/games-strategy/attal/attal-0.9.2.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/games-strategy/attal/attal-0.9.2.ebuild,v 1.1 2005/01/03 22:56:05 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-strategy/attal/attal-0.9.2.ebuild,v 1.2 2005/03/14 23:08:33 vapier Exp $ inherit games eutils flag-o-matic @@ -27,7 +27,7 @@ src_unpack() { "s:\./themes/:${GAMES_DATADIR}/${PN}/themes/:" \ `grep -Rl '\./themes/' *` \ || die "fixing theme loc" - find "${WORKDIR}"/themes-${PV} -name .cvsignore | xargs rm -f + find "${WORKDIR}"/themes-${PV} -name .cvsignore -print0 | xargs -0 rm -f } src_compile() { diff --git a/net-misc/3proxy/3proxy-0.4.3b.ebuild b/net-misc/3proxy/3proxy-0.4.3b.ebuild deleted file mode 100644 index c8423cd31fd7..000000000000 --- a/net-misc/3proxy/3proxy-0.4.3b.ebuild +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 1999-2004 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/3proxy/3proxy-0.4.3b.ebuild,v 1.3 2004/07/01 20:38:28 squinky86 Exp $ - -IUSE="" -DESCRIPTION="really tiny cross-platform proxy servers set" -HOMEPAGE="http://www.security.nnov.ru/soft/3proxy/" -SRC_URI="mirror://gentoo/${P}.tgz" -#http://www.security.nnov.ru/soft/3proxy/${PV}/3proxy.tgz - -LICENSE="3proxy" -SLOT="0" -KEYWORDS="~x86" - -DEPEND="virtual/libc" - -S=${WORKDIR} - -src_unpack() { - unpack ${A} - cd ${S} - sed -i "s:-O2:${CFLAGS}:" Makefile.unix || die - sed -i 's:/usr/local::' stringtable.c || die -} - -src_compile() { - emake -f Makefile.unix || die -} - -src_install() { - dobin 3proxy || die "dobin 3proxy failed" - for bin in proxy socks pop3p tcppm udppm mycrypt dighosts ; do - newbin ${bin} ${PN}-${bin} || die "newbin ${bin} failed" - done - chmod a-x 3proxy.cfg.sample Changelog Readme Release.notes - dodoc 3proxy.cfg.sample Changelog Readme Release.notes -} diff --git a/net-misc/3proxy/3proxy-0.4.5b.ebuild b/net-misc/3proxy/3proxy-0.4.5b.ebuild deleted file mode 100644 index 1c2958faaadf..000000000000 --- a/net-misc/3proxy/3proxy-0.4.5b.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2004 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/3proxy/3proxy-0.4.5b.ebuild,v 1.3 2004/07/01 20:38:28 squinky86 Exp $ - - -IUSE="" -DESCRIPTION="really tiny cross-platform proxy servers set" -HOMEPAGE="http://www.security.nnov.ru/soft/3proxy/" -SRC_URI="mirror://gentoo/${P}.tgz" -#http://www.security.nnov.ru/soft/3proxy/${PV}/3proxy.tgz - -LICENSE="3proxy" -SLOT="0" -KEYWORDS="~x86 ~ppc" - -DEPEND="virtual/libc" - -S=${WORKDIR} - -src_unpack() { - unpack ${A} - cd ${S} - sed -i "s:-O2:${CFLAGS}:" Makefile.unix || die - sed -i 's:/usr/local::' stringtable.c || die -} - -src_compile() { - emake -f Makefile.unix || die -} - -src_install() { - dobin 3proxy || die "dobin 3proxy failed" - for bin in proxy socks pop3p tcppm udppm mycrypt dighosts ; do - newbin ${bin} ${PN}-${bin} || die "newbin ${bin} failed" - done - chmod a-x 3proxy.cfg.sample Changelog Readme Release.notes - dodoc 3proxy.cfg.sample Changelog Readme Release.notes -} diff --git a/net-misc/3proxy/3proxy-0.5b.ebuild b/net-misc/3proxy/3proxy-0.5b.ebuild index 8634bacd18ae..62cf4d648676 100644 --- a/net-misc/3proxy/3proxy-0.5b.ebuild +++ b/net-misc/3proxy/3proxy-0.5b.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2004 Gentoo Foundation +# Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/3proxy/3proxy-0.5b.ebuild,v 1.1 2004/12/11 17:19:55 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/3proxy/3proxy-0.5b.ebuild,v 1.2 2005/03/14 23:10:56 vapier Exp $ inherit toolchain-funcs @@ -11,10 +11,10 @@ SRC_URI="mirror://gentoo/${P}.tgz" LICENSE="3proxy" SLOT="0" -KEYWORDS="~ppc ~x86" +KEYWORDS="ppc x86" IUSE="" -DEPEND="virtual/libc" +DEPEND="" S=${WORKDIR} @@ -25,7 +25,7 @@ src_unpack() { -e "/^CFLAGS/s:-O2:${CFLAGS}:" \ Makefile.unix || die "sed Makefile" sed -i 's:/usr/local::' src/stringtable.c || die "sed stringtable" - find -type f | xargs chmod a-x + find . -type f -print0 | xargs -0 chmod a-x } src_compile() { diff --git a/net-misc/3proxy/files/digest-3proxy-0.4.3b b/net-misc/3proxy/files/digest-3proxy-0.4.3b deleted file mode 100644 index fe0cbf51a0e8..000000000000 --- a/net-misc/3proxy/files/digest-3proxy-0.4.3b +++ /dev/null @@ -1 +0,0 @@ -MD5 5588c1883eedd0d81254719baa53cdac 3proxy-0.4.3b.tgz 54301 diff --git a/net-misc/3proxy/files/digest-3proxy-0.4.5b b/net-misc/3proxy/files/digest-3proxy-0.4.5b deleted file mode 100644 index 8ecd8478091b..000000000000 --- a/net-misc/3proxy/files/digest-3proxy-0.4.5b +++ /dev/null @@ -1 +0,0 @@ -MD5 3ba4bd370a3b9750b0444a15211832ca 3proxy-0.4.5b.tgz 57496 |