Update ruby-pkg-config to 1.1.3.
== 1.1.3 - 2012/01/29 * [GitHub #8] fix test broken by libpng version. (Patch by Bohuslav Kabrda.) * Used RbConfig instead of Config. == 1.1.2 - 2011/07/04 * [GitHub #2] fix test broken. (Reported by Mamoru Tasaka.) * [GitHub #4] update project descripton. (Patch by Antonio Terceiro.) * [GitHub #4] use setup.rb instead of extconf.rb. (Patch by Antonio Terceiro.) * [GitHub #3] add Copyright notice to README. (Suggested by Antonio Terceiro.) * [GitHub #7] supported non i386 and amd64 architectures. (Reported by Antonio Terceiro.)
This commit is contained in:
parent
376b0e956e
commit
eb4ea44410
3 changed files with 21 additions and 10 deletions
|
@ -1 +1,2 @@
|
||||||
A pkg-config implementation by Ruby.
|
pkg-config can be used in your extconf.rb to properly detect need libraries for
|
||||||
|
compiling Ruby native extensions.
|
||||||
|
|
|
@ -1,9 +1,10 @@
|
||||||
# $NetBSD: Makefile,v 1.5 2011/05/03 09:49:03 obache Exp $
|
# $NetBSD: Makefile,v 1.6 2012/02/01 12:32:12 obache Exp $
|
||||||
|
|
||||||
DISTNAME= pkg-config-1.1.1
|
DISTNAME= pkg-config-1.1.3
|
||||||
CATEGORIES= devel
|
CATEGORIES= devel
|
||||||
MASTER_SITES= http://rubyforge.org/frs/download.php/74790/
|
MASTER_SITES= http://rubygems.org/gems/ \
|
||||||
EXTRACT_SUFX= .tgz
|
http://gems.rubyforge.org/gems/
|
||||||
|
EXTRACT_SUFX= .gem
|
||||||
|
|
||||||
MAINTAINER= obache@NetBSD.org
|
MAINTAINER= obache@NetBSD.org
|
||||||
HOMEPAGE= http://github.com/rcairo/pkg-config
|
HOMEPAGE= http://github.com/rcairo/pkg-config
|
||||||
|
@ -14,7 +15,16 @@ CONFLICTS+= ${RUBY_PKGPREFIX}-gnome2-glib<0.90.0
|
||||||
|
|
||||||
PKG_DESTDIR_SUPPORT= user-destdir
|
PKG_DESTDIR_SUPPORT= user-destdir
|
||||||
|
|
||||||
USE_RUBY_EXTCONF= yes
|
USE_RUBY_SETUP= yes
|
||||||
|
|
||||||
|
SUBST_CLASSES+= vsetup
|
||||||
|
SUBST_STAGE.vsetup= pre-configure
|
||||||
|
SUBST_FILES.vsetup= setup.rb
|
||||||
|
SUBST_SED.vsetup= -e "s|'sitedir'|'vendordir'|g"
|
||||||
|
SUBST_SED.vsetup+= -e "s|'sitelibdir'|'vendorlibdir'|g"
|
||||||
|
SUBST_SED.vsetup+= -e 's|"sitelibdir"|"vendorlibdir"|g'
|
||||||
|
SUBST_SED.vsetup+= -e 's|/site_ruby/|/vendor_ruby/|g'
|
||||||
|
SUBST_MESSAGE.vsetup= Fixing setup.rb to use `vendor'.
|
||||||
|
|
||||||
#do-test:
|
#do-test:
|
||||||
# cd ${WRKSRC} && ${SETENV} ${TEST_ENV} ${RUBY} test/run-test.rb
|
# cd ${WRKSRC} && ${SETENV} ${TEST_ENV} ${RUBY} test/run-test.rb
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
$NetBSD: distinfo,v 1.5 2011/05/03 09:49:03 obache Exp $
|
$NetBSD: distinfo,v 1.6 2012/02/01 12:32:12 obache Exp $
|
||||||
|
|
||||||
SHA1 (pkg-config-1.1.1.tgz) = b29f9325dc89d1ae9aed4485bb167913918dcc5c
|
SHA1 (pkg-config-1.1.3.gem) = ff98fb494edb7f032d9aaef8d1af8281f698a1ec
|
||||||
RMD160 (pkg-config-1.1.1.tgz) = 5edebae36ee642cc33e773a087a84595d60ba168
|
RMD160 (pkg-config-1.1.3.gem) = 965e75f93dba9ef0c746fc1b65432ce459104883
|
||||||
Size (pkg-config-1.1.1.tgz) = 15156 bytes
|
Size (pkg-config-1.1.3.gem) = 27648 bytes
|
||||||
|
|
Loading…
Reference in a new issue