From: Peter Korsgaard <jacmet@uclibc.org>
To: buildroot@busybox.net
Subject: [Buildroot] [PATCH 17/38] libxml-parser-perl: new package
Date: Mon, 22 Feb 2010 17:19:03 +0100 [thread overview]
Message-ID: <87fx4ti6q0.fsf@macbook.be.48ers.dk> (raw)
In-Reply-To: <fac4d6f24ebf9312fd1c7a714100c4e2a859e647.1266774432.git.thomas.petazzoni@free-electrons.com> (Thomas Petazzoni's message of "Sun, 21 Feb 2010 18:46:55 +0100")
>>>>> "Thomas" == Thomas Petazzoni <thomas.petazzoni@free-electrons.com> writes:
Thomas> This Perl module is needed to build intltool, which in turn is needed
Thomas> to build several of our packages. We assume that Perl is installed on
Thomas> the host.
Thomas> Only the host variant of this package has been tested and is used.
Thomas> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Thomas> ---
Thomas> package/Config.in | 1 +
Thomas> package/libxml-parser-perl/Config.in | 6 ++++
Thomas> package/libxml-parser-perl/libxml-parser-perl.mk | 32 ++++++++++++++++++++++
Thomas> 3 files changed, 39 insertions(+), 0 deletions(-)
Thomas> create mode 100644 package/libxml-parser-perl/Config.in
Thomas> create mode 100644 package/libxml-parser-perl/libxml-parser-perl.mk
Thomas> diff --git a/package/Config.in b/package/Config.in
Thomas> index 5ddd63c..00f3401 100644
Thomas> --- a/package/Config.in
Thomas> +++ b/package/Config.in
Thomas> @@ -412,6 +412,7 @@ source "package/ezxml/Config.in"
Thomas> source "package/libxml2/Config.in"
Thomas> source "package/libxslt/Config.in"
Thomas> source "package/xerces/Config.in"
Thomas> +source "package/libxml-parser-perl/Config.in"
Thomas> endmenu
Thomas> # java support
Thomas> diff --git a/package/libxml-parser-perl/Config.in b/package/libxml-parser-perl/Config.in
Thomas> new file mode 100644
Thomas> index 0000000..c96e9ee
Thomas> --- /dev/null
Thomas> +++ b/package/libxml-parser-perl/Config.in
Thomas> @@ -0,0 +1,6 @@
Thomas> +config BR2_PACKAGE_LIBXML_PARSER_PERL
Thomas> + bool "libxml-parser-perl"
Thomas> + help
Thomas> + The Perl XML::Parser module.
Thomas> +
Thomas> + http://www.cpan.org/modules/by-module/XML/
Thomas> \ No newline at end of file
Missing newline.
It should presumably select EXPAT?
Thomas> diff --git a/package/libxml-parser-perl/libxml-parser-perl.mk b/package/libxml-parser-perl/libxml-parser-perl.mk
Thomas> new file mode 100644
Thomas> index 0000000..08446d5
Thomas> --- /dev/null
Thomas> +++ b/package/libxml-parser-perl/libxml-parser-perl.mk
Thomas> @@ -0,0 +1,32 @@
Thomas> +#############################################################
Thomas> +#
Thomas> +# libxml-parser-perl
Thomas> +#
Thomas> +#############################################################
Thomas> +LIBXML_PARSER_PERL_VERSION:=2.36
Thomas> +LIBXML_PARSER_PERL_SOURCE:=XML-Parser-$(LIBXML_PARSER_PERL_VERSION).tar.gz
Thomas> +LIBXML_PARSER_PERL_SITE:=http://www.cpan.org/modules/by-module/XML/
Thomas> +
Thomas> +HOST_LIBXML_PARSER_PERL_DEPENDENCIES = host-expat
And have a similar line for the TARGET.
--
Bye, Peter Korsgaard
next prev parent reply other threads:[~2010-02-22 16:19 UTC|newest]
Thread overview: 47+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-02-21 17:46 [Buildroot] [pull request] Pull request for branch misc-fixes5 Thomas Petazzoni
2010-02-21 17:46 ` [Buildroot] [PATCH 01/38] automake: add build dependency on host-autoconf Thomas Petazzoni
2010-02-21 17:46 ` [Buildroot] [PATCH 02/38] ccache: remove cleanup of documentation Thomas Petazzoni
2010-02-21 17:46 ` [Buildroot] [PATCH 03/38] libxml2: do not apply libtool patch when compiling for host Thomas Petazzoni
2010-02-21 17:46 ` [Buildroot] [PATCH 04/38] libxslt: enable compilation on host Thomas Petazzoni
2010-02-21 17:46 ` [Buildroot] [PATCH 05/38] libxcb: fix build with Buildroot compiled xsltproc Thomas Petazzoni
2010-02-21 17:46 ` [Buildroot] [PATCH 06/38] xapp_mkfontscale: enable compilation for the host Thomas Petazzoni
2010-02-21 17:46 ` [Buildroot] [PATCH 07/38] xfont_encoding: add mkfontscale on the host as dependency Thomas Petazzoni
2010-02-21 17:46 ` [Buildroot] [PATCH 08/38] xlib_libfontenc: enable compilation on the host Thomas Petazzoni
2010-02-21 17:46 ` [Buildroot] [PATCH 09/38] zlib: " Thomas Petazzoni
2010-02-21 17:46 ` [Buildroot] [PATCH 10/38] xfont_font-util: convert to the autotools infrastructure Thomas Petazzoni
2010-02-21 17:46 ` [Buildroot] [PATCH 11/38] package infrastructure: add LD_LIBRARY_PATH Thomas Petazzoni
2010-02-21 17:46 ` [Buildroot] [PATCH 12/38] libpng: enable compilation on the host Thomas Petazzoni
2010-02-21 17:46 ` [Buildroot] [PATCH 13/38] ace_of_penguins: add dependency on host-libpng Thomas Petazzoni
2010-02-21 17:46 ` [Buildroot] [PATCH 14/38] ace_of_penguins: mark as BROKEN Thomas Petazzoni
2010-02-21 17:46 ` [Buildroot] [PATCH 15/38] dependencies: add gzip and bzip2 as base dependencies Thomas Petazzoni
2010-02-21 17:46 ` [Buildroot] [PATCH 16/38] libgtk2: break the dependency of host-libgtk2 on host-cairo Thomas Petazzoni
2010-02-21 17:46 ` [Buildroot] [PATCH 17/38] libxml-parser-perl: new package Thomas Petazzoni
2010-02-22 16:19 ` Peter Korsgaard [this message]
2010-02-22 19:22 ` Thomas Petazzoni
2010-02-21 17:46 ` [Buildroot] [PATCH 18/38] package infrastructure: add PERLLIB and LD_LIBRARY_PATH Thomas Petazzoni
2010-02-22 16:21 ` Peter Korsgaard
2010-02-22 19:22 ` Thomas Petazzoni
2010-02-21 17:46 ` [Buildroot] [PATCH 19/38] intltool: new package Thomas Petazzoni
2010-02-21 17:46 ` [Buildroot] [PATCH 20/38] dependencies: add perl as a mandatory dependency Thomas Petazzoni
2010-02-21 17:46 ` [Buildroot] [PATCH 21/38] gmpc: add dependency on host-intltool Thomas Petazzoni
2010-02-21 17:47 ` [Buildroot] [PATCH 22/38] flex: install in the staging directory Thomas Petazzoni
2010-02-21 17:47 ` [Buildroot] [PATCH 23/38] gob2: update dependency on flex Thomas Petazzoni
2010-02-21 17:47 ` [Buildroot] [PATCH 24/38] shared-mime-info: run update-mime-database with correct env variables Thomas Petazzoni
2010-02-21 17:47 ` [Buildroot] [PATCH 25/38] imagemagick: help configure to detect file_offset_bits Thomas Petazzoni
2010-02-21 17:47 ` [Buildroot] [PATCH 26/38] imagemagick: use internal libtool Thomas Petazzoni
2010-02-21 17:47 ` [Buildroot] [PATCH 27/38] iw: give path to pkg-config Thomas Petazzoni
2010-02-21 17:47 ` [Buildroot] [PATCH 28/38] kexec: bump version to fix build failure Thomas Petazzoni
2010-02-21 17:47 ` [Buildroot] [PATCH 29/38] matchbox: apply libtool patch to matchbox-desktop Thomas Petazzoni
2010-02-21 17:47 ` [Buildroot] [PATCH 30/38] matchbox: fix dependency to not always rebuilt libmatchbox Thomas Petazzoni
2010-02-21 17:47 ` [Buildroot] [PATCH 31/38] shared-mime-info: do not depend on phony target in hook Thomas Petazzoni
2010-02-21 17:47 ` [Buildroot] [PATCH 32/38] dosfstools: make sure install targets aren't run everytime Thomas Petazzoni
2010-02-21 17:47 ` [Buildroot] [PATCH 33/38] lvm2: prevent dmsetup from being re-installed every time Thomas Petazzoni
2010-02-21 17:47 ` [Buildroot] [PATCH 34/38] libeXosip: do not re-run targets at every invocation of 'make' Thomas Petazzoni
2010-02-21 17:47 ` [Buildroot] [PATCH 35/38] webkit: several build fixes Thomas Petazzoni
2010-02-21 17:47 ` [Buildroot] [PATCH 36/38] webkit: make sure that people don't try to build with uClibc Thomas Petazzoni
2010-02-21 18:10 ` Will Newton
2010-02-21 19:58 ` Thomas Petazzoni
2010-02-21 17:47 ` [Buildroot] [PATCH 37/38] libsoup: remove --without-html-dir Thomas Petazzoni
2010-02-21 17:47 ` [Buildroot] [PATCH 38/38] mplayer: use UTF-8 charset to avoid iconv dependency Thomas Petazzoni
2010-02-22 19:34 ` [Buildroot] [pull request] Pull request for branch misc-fixes5 Thomas Petazzoni
2010-02-23 11:12 ` Peter Korsgaard
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=87fx4ti6q0.fsf@macbook.be.48ers.dk \
--to=jacmet@uclibc.org \
--cc=buildroot@busybox.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.