blob: c8601a26d6263d4cce69a48f4e5b1d70abe25f78 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# $NetBSD: Makefile,v 1.3 2005/04/11 21:47:16 tv Exp $
#
DISTNAME= GnuPG-Interface-0.34
PKGNAME= p5-${DISTNAME}
PKGREVISION= 2
CATEGORIES= security perl5
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=gnupg-interface/}
MAINTAINER= tv@duh.org
HOMEPAGE= http://gnupg-interface.sourceforge.net/
COMMENT= Perl interface to GnuPG
DEPENDS+= p5-Class-MakeMethods>=1.010:../../devel/p5-Class-MakeMethods
DEPENDS+= gnupg>=1.2.3:../../security/gnupg
PERL5_PACKLIST= ${PERL5_SITEARCH}/auto/GnuPG/Interface/.packlist
pre-configure:
cd ${WRKSRC}/lib/GnuPG && for f in *.pm; do \
${SED} -e 's/use Class::MethodMaker/use Class::MakeMethods::Emulator::MethodMaker/' $$f > $$f.new && \
${MV} -f $$f.new $$f; \
done
.include "../../lang/perl5/module.mk"
.include "../../mk/bsd.pkg.mk"
|