Thu Feb 2 09:38:24 2012 UTC ()
Use ${RM} -f to avoid failure if no files are found to be removed.


(hans)
diff -r1.7 -r1.8 pkgsrc/net/p5-eBay-API/Makefile

cvs diff -r1.7 -r1.8 pkgsrc/net/p5-eBay-API/Attic/Makefile (expand / switch to unified diff)

--- pkgsrc/net/p5-eBay-API/Attic/Makefile 2011/08/14 14:14:50 1.7
+++ pkgsrc/net/p5-eBay-API/Attic/Makefile 2012/02/02 09:38:24 1.8
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1# $NetBSD: Makefile,v 1.7 2011/08/14 14:14:50 obache Exp $ 1# $NetBSD: Makefile,v 1.8 2012/02/02 09:38:24 hans Exp $
2 2
3DISTNAME= eBay-API-0.25 3DISTNAME= eBay-API-0.25
4PKGNAME= p5-${DISTNAME} 4PKGNAME= p5-${DISTNAME}
5PKGREVISION= 5 5PKGREVISION= 5
6CATEGORIES= net perl5 www 6CATEGORIES= net perl5 www
7MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=../../authors/id/T/TK/TKEEFER/} 7MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=../../authors/id/T/TK/TKEEFER/}
8 8
9MAINTAINER= pkgsrc-users@NetBSD.org 9MAINTAINER= pkgsrc-users@NetBSD.org
10HOMEPAGE= http://search.cpan.org/perldoc?eBay::API 10HOMEPAGE= http://search.cpan.org/perldoc?eBay::API
11COMMENT= Non SOAP based XML schema library for eBay API 11COMMENT= Non SOAP based XML schema library for eBay API
12 12
13PKG_DESTDIR_SUPPORT= user-destdir 13PKG_DESTDIR_SUPPORT= user-destdir
14 14
@@ -25,17 +25,17 @@ DEPENDS+= {perl>=5.10,p5-Time-HiRes>=1 @@ -25,17 +25,17 @@ DEPENDS+= {perl>=5.10,p5-Time-HiRes>=1
25DEPENDS+= p5-XML-Simple>=2.09:../../textproc/p5-XML-Simple 25DEPENDS+= p5-XML-Simple>=2.09:../../textproc/p5-XML-Simple
26DEPENDS+= p5-XML-Tidy>=1.2.54:../../textproc/p5-XML-Tidy 26DEPENDS+= p5-XML-Tidy>=1.2.54:../../textproc/p5-XML-Tidy
27DEPENDS+= p5-XML-Writer>=0.600:../../textproc/p5-XML-Writer 27DEPENDS+= p5-XML-Writer>=0.600:../../textproc/p5-XML-Writer
28 28
29USE_TOOLS+= gmake 29USE_TOOLS+= gmake
30REPLACE_PERL+= */*/*.pl */*/*/*/*/*.pl */*/*/*/*/*/*.pl */*/*/*/*/*/*/*.pl 30REPLACE_PERL+= */*/*.pl */*/*/*/*/*.pl */*/*/*/*/*/*.pl */*/*/*/*/*/*/*.pl
31REPLACE_PERL+= */*.t */*/*/*/*/*.t */*/*/*/*/*/*.t 31REPLACE_PERL+= */*.t */*/*/*/*/*.t */*/*/*/*/*/*.t
32REPLACE_PERL+= */*/*/*.pm */*/*/*/*.pm */*/*/*/*/*.pm */*/*/*/*/*/*.pm 32REPLACE_PERL+= */*/*/*.pm */*/*/*/*.pm */*/*/*/*/*.pm */*/*/*/*/*/*.pm
33REPLACE_PERL+= */*/*/*/*/*/*/*.pm 33REPLACE_PERL+= */*/*/*/*/*/*/*.pm
34 34
35PERL5_PACKLIST= auto/eBay/API/.packlist 35PERL5_PACKLIST= auto/eBay/API/.packlist
36 36
37pre-configure: 37pre-configure:
38 ${FIND} ${WRKSRC} -name "*.orig" -type f | ${XARGS} ${RM} 38 ${FIND} ${WRKSRC} -name "*.orig" -type f | ${XARGS} ${RM} -f
39 39
40.include "../../lang/perl5/module.mk" 40.include "../../lang/perl5/module.mk"
41.include "../../mk/bsd.pkg.mk" 41.include "../../mk/bsd.pkg.mk"