234cbbb031
== 2.9.0 / 2016-06-13 Charlie Savage * Revamp libxml-ruby's memory management to not cause crashes when used with Nokogiri (James Laird-Wah) * Fix garbage collection issue that sometimes caused the library to hang (Charlie Savage) * Improved multi-threading support (Charlie Savage) * Fix crash sometimes caused by a xml node being being freed twice (Charlie Savage) * Fix memory leak when setting the text content of a node (Charlie Savage) * Set a default task in the Rakefile - use "test" (Robert Haines) * Add "hanna_gudao" gem and add "rake-compiler" to develpoment dependencies (Robert Haines) * Use Process.getrlimit instead of `ulimit` in the tests (Robert Haines) * Build on smartos (Steven Williamson) * Fix compiler warnings (Charlie Savage) * Add Xcode project for easier debugging on OSX (Charlie Savage) * Switch from unit test to minitest (Charlie Savage)
21 lines
611 B
Makefile
21 lines
611 B
Makefile
# $NetBSD: Makefile,v 1.24 2016/10/18 14:36:38 taca Exp $
|
|
|
|
DISTNAME= libxml-ruby-2.9.0
|
|
PKGNAME= ${RUBY_PKGPREFIX}-${DISTNAME:C/ruby-//}
|
|
CATEGORIES= textproc
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://xml4r.github.io/libxml-ruby/
|
|
COMMENT= Support module for libxml2 library
|
|
LICENSE= mit
|
|
|
|
USE_GCC_RUNTIME= yes
|
|
|
|
CONFIGURE_ARGS+= \
|
|
--with-xml2-include=${BUILDLINK_PREFIX.libxml2}/include/libxml2
|
|
|
|
.include "../../lang/ruby/gem.mk"
|
|
.include "../../converters/libiconv/buildlink3.mk"
|
|
.include "../../devel/zlib/buildlink3.mk"
|
|
.include "../../textproc/libxml2/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|