8c2cddd5e4
Pkgsrc changes: - The package uses a C compiler. - Removed unnecessary :M* modifier (pkglint gave the hint). Changes since version 2.30: ===================================== 2.35 Some instructions on installation for Windows users. Doesn't push libpng onto @LIBS unless png support is requested. Supports Storable's freeze/thaw via a custom serializer. Remove "scale redefined" message during compilation of Polyline. 2.34 Added a check for stray gd.h include files from older installations. If any are found, Makefile.PL will issue a warning. Fixed incorrect documentation of GD::Simple->string() method. The method call *does* move the pen. 2.33 Added appropriate #ifdefs to allow to compile under version 5.6.0 (due to lack of threading macros before 5.8). 2.32 Added a GD::Simple->HSVtoRGB() method. Documentation fixes from Mark Manning. Added a clear() method to GD::Polygon to remove all vertices. 2.31 Fixed GD::Simple->transparent to support symbolic color names. Made changes that should render the module thread-safe. Changed newSVpv calls to newSVpvn, in hopes of improving performance. Added a GD::Simple->HSVtoRGB() method. Fixed incorrect freeing of user-provided raw data in newFromGdData() and newFromGd2Data() (this caused segfaults; patch provided by Nigel Sandever)
28 lines
729 B
Makefile
28 lines
729 B
Makefile
# $NetBSD: Makefile,v 1.37 2007/05/19 13:42:37 heinz Exp $
|
|
|
|
DISTNAME= GD-2.35
|
|
PKGNAME= p5-${DISTNAME}
|
|
SVR4_PKGNAME= p5bd
|
|
CATEGORIES= graphics perl5
|
|
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=GD/}
|
|
|
|
MAINTAINER= damon@brodiefamily.org
|
|
HOMEPAGE= http://theory.uwinnipeg.ca/CPAN/data/GD/GD.html
|
|
COMMENT= Perl5 interface to gd graphics library
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
PKG_INSTALLATION_TYPES= overwrite pkgviews
|
|
|
|
BUILDLINK_API_DEPENDS.gd+= gd>=2.0.28
|
|
|
|
USE_LANGUAGES= c
|
|
|
|
PERL5_PACKLIST= auto/GD/.packlist
|
|
PERL5_OPTIONS+= threads
|
|
|
|
MAKE_ENV+= GD_LIBS=${LDFLAGS:Q}
|
|
MAKE_PARAMS+= -lib_gd_path=${BUILDLINK_PREFIX.gd}
|
|
|
|
.include "../../graphics/gd/buildlink3.mk"
|
|
.include "../../lang/perl5/module.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|