diff options
author | sno <sno@pkgsrc.org> | 2010-03-09 21:54:01 +0000 |
---|---|---|
committer | sno <sno@pkgsrc.org> | 2010-03-09 21:54:01 +0000 |
commit | a1d6df8c771a00dd96da6e9ac27669457335333e (patch) | |
tree | b3fce0fed392ba22806c012aef6b1118b99f9a7d /textproc/p5-Text-BibTeX/Makefile | |
parent | 3dab4fdb3caa36900ec85c8d3777e9c6ea844f6a (diff) | |
download | pkgsrc-a1d6df8c771a00dd96da6e9ac27669457335333e.tar.gz |
Updating textproc/p5-Text-BibTeX from 0.38 to 0.40
pkgsrc changes:
- Add license definition
- Adjust dependencies
- Add module type
Upstream changes:
Release 0.40 - 7 March, 2010
----------------------------
* this release is very similar to 0.40_3, but now indexable by cpan.
Release 0.40_3 - 18 February, 2010
----------------------------------
* fixed Build.PL with correct build_requirements;
* fixed test to use still not installed library;
Release 0.40_2 - 15 February, 2010
----------------------------------
* merged btparse library into Text::BibTeX code. I am sorry for all
other languages that might be using this library. For them my
suggestion is that they make Text::BibTeX as a dependency.
* ported compilation and configuration tools from ExtUtils::MakeMaker
to Module::Build.
* back on track, trying to make Text::BibTeX work and compile easily
on main platforms (sorry, for main platforms I assume Linux, Mac OS
X and Windows running Strawberry Perl).
* Thanks to Philip Kime for continuous poke so I work on this!!
Created a THANKS file for this purpose.
Diffstat (limited to 'textproc/p5-Text-BibTeX/Makefile')
-rw-r--r-- | textproc/p5-Text-BibTeX/Makefile | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/textproc/p5-Text-BibTeX/Makefile b/textproc/p5-Text-BibTeX/Makefile index a0fe35b2749..5d16eec4690 100644 --- a/textproc/p5-Text-BibTeX/Makefile +++ b/textproc/p5-Text-BibTeX/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.17 2008/11/22 00:07:12 he Exp $ +# $NetBSD: Makefile,v 1.18 2010/03/09 21:54:01 sno Exp $ -DISTNAME= Text-BibTeX-0.38 +DISTNAME= Text-BibTeX-0.40 PKGNAME= p5-${DISTNAME} SVR4_PKGNAME= p5tbt CATEGORIES= textproc perl5 @@ -12,10 +12,23 @@ MAINTAINER= pkgsrc-users@NetBSD.org HOMEPAGE= http://www.gerg.ca/software/btOOL/ #HOMEPAGE= http://search.cpan.org/dist/Text-BibTeX/ COMMENT= Perl library for reading, parsing, and processing BibTeX files +LICENSE= ${PERL5_LICENSE} PKG_DESTDIR_SUPPORT= user-destdir +BUILD_DEPENDS+= p5-Capture-Tiny>=0.06:../../devel/p5-Capture-Tiny +BUILD_DEPENDS+= p5-Config-AutoConf>=0.14:../../devel/p5-Config-AutoConf +BUILD_DEPENDS+= p5-ExtUtils-CBuilder>=0.27:../../devel/p5-ExtUtils-CBuilder +BUILD_DEPENDS+= p5-Module-Build>=0.36030:../../devel/p5-Module-Build + +USE_LANGUAGES+= c PERL5_PACKLIST= auto/Text/BibTeX/.packlist +PERL5_MODULE_TYPE= Module::Build + +ALL_ENV+= TMPDIR=${WRKDIR}/tmp + +pre-configure: + ${MKDIR} ${WRKDIR}/tmp .include "../../lang/perl5/module.mk" .include "../../mk/bsd.pkg.mk" |