6376021c2c
2.56 * Fix Makefile.PL so that it works again. 2.55 * Great simplification of regression framework ought to fix make test problems. * Replace ExtUtils::MakeMaker script with Module::Build system (just in time for Module::Build to be deprecated). * Remove archaic qd.pl (for creating QuickDraw picts) from distribution. 2.54 Patch from yurly@unet.net to fix image corruption in rotate180 when image height is odd.
33 lines
986 B
Makefile
33 lines
986 B
Makefile
# $NetBSD: Makefile,v 1.71 2015/07/01 08:01:30 wiz Exp $
|
|
|
|
DISTNAME= GD-2.56
|
|
PKGNAME= p5-${DISTNAME}
|
|
CATEGORIES= graphics perl5
|
|
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=GD/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://search.cpan.org/dist/GD/
|
|
COMMENT= Perl5 interface to gd graphics library
|
|
LICENSE= gnu-gpl-v2 OR artistic-2.0
|
|
|
|
USE_LANGUAGES= c
|
|
|
|
# This is required at least on some Solaris builds to get a runnable
|
|
# package, and should be harmless on other platforms. See PR 45873.
|
|
CFLAGS+= -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
|
|
|
|
PERL5_MODULE_TYPE= Module::Build
|
|
PERL5_PACKLIST= auto/GD/.packlist
|
|
PERL5_OPTIONS+= threads
|
|
|
|
# stop package's GetOptions() from parsing Module::Build settings
|
|
MAKE_PARAMS+= --
|
|
|
|
post-extract:
|
|
chmod a+w ${WRKSRC}/bdf_scripts/bdf2gdfont.pl
|
|
|
|
.include "../../converters/libiconv/buildlink3.mk"
|
|
BUILDLINK_API_DEPENDS.gd+= gd>=2.0.28
|
|
.include "../../graphics/gd/buildlink3.mk"
|
|
.include "../../lang/perl5/module.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|