* [Buildroot] [PATCH] Add libexif to buildroot @ 2011-02-04 9:12 Guillaume Gardet 2011-03-02 8:17 ` Guillaume Gardet 2011-04-26 8:05 ` Peter Korsgaard 0 siblings, 2 replies; 4+ messages in thread From: Guillaume Gardet @ 2011-02-04 9:12 UTC (permalink / raw) To: buildroot Attached patch add support to libexif in Buildroot. Cheers, Guillaume -------------- next part -------------- A non-text attachment was scrubbed... Name: libexif.patch Type: text/x-patch Size: 1628 bytes Desc: not available URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20110204/0b3ab29b/attachment.bin> ^ permalink raw reply [flat|nested] 4+ messages in thread
* [Buildroot] [PATCH] Add libexif to buildroot 2011-02-04 9:12 [Buildroot] [PATCH] Add libexif to buildroot Guillaume Gardet @ 2011-03-02 8:17 ` Guillaume Gardet 2011-04-26 8:05 ` Peter Korsgaard 1 sibling, 0 replies; 4+ messages in thread From: Guillaume Gardet @ 2011-03-02 8:17 UTC (permalink / raw) To: buildroot Ping. Le 04/02/2011 10:12, Guillaume Gardet a ?crit : > Attached patch add support to libexif in Buildroot. > > Cheers, > > Guillaume > > > _______________________________________________ > buildroot mailing list > buildroot at busybox.net > http://lists.busybox.net/mailman/listinfo/buildroot -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20110302/b9ced7da/attachment.html> -------------- next part -------------- A non-text attachment was scrubbed... Name: libexif.patch Type: text/x-patch Size: 1628 bytes Desc: not available URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20110302/b9ced7da/attachment.bin> ^ permalink raw reply [flat|nested] 4+ messages in thread
* [Buildroot] [PATCH] Add libexif to buildroot 2011-02-04 9:12 [Buildroot] [PATCH] Add libexif to buildroot Guillaume Gardet 2011-03-02 8:17 ` Guillaume Gardet @ 2011-04-26 8:05 ` Peter Korsgaard 2011-04-26 9:36 ` Guillaume Gardet 1 sibling, 1 reply; 4+ messages in thread From: Peter Korsgaard @ 2011-04-26 8:05 UTC (permalink / raw) To: buildroot >>>>> "Guillaume" == Guillaume Gardet <guillaume.gardet@free.fr> writes: Guillaume> Attached patch add support to libexif in Buildroot. Guillaume> Cheers, Sorry for slow response - Committed with some tweaks, thanks. It would be very good if you could use 'git format-patch' / 'git send-email' for patches in the future. Guillaume> diff --git a/package/Config.in b/package/Config.in Guillaume> index 16a9e8f..ee6cd3b 100644 Guillaume> --- a/package/Config.in Guillaume> +++ b/package/Config.in Guillaume> @@ -274,6 +275,7 @@ source "package/gtk2-themes/Config.in" Guillaume> source "package/jpeg/Config.in" Guillaume> source "package/libart/Config.in" Guillaume> source "package/libdrm/Config.in" Guillaume> +source "package/libexif/Config.in" Guillaume> source "package/libgail/Config.in" Guillaume> source "package/libglade/Config.in" Guillaume> source "package/gdk-pixbuf/Config.in" Guillaume> diff --git a/package/libexif/Config.in b/package/libexif/Config.in Guillaume> new file mode 100644 Guillaume> index 0000000..c4b3bd5 Guillaume> --- /dev/null Guillaume> +++ b/package/libexif/Config.in Guillaume> @@ -0,0 +1,7 @@ Guillaume> +config??BR2_PACKAGE_LIBEXIF Guillaume> + bool??"libexif - EXIF Tag Parsing Library" Your mailer seems to have replaced spaces with funky underscores. Guillaume> + help Guillaume> + Most digital cameras produce EXIF files, which are JPEG files with extra tags that contain information about the image. Guillaume> + The EXIF library allows you to parse an EXIF file and read the data from those tags. help text should be indented with <tab><space><space> and not exceed ~70 chars. Guillaume> +++ b/package/libexif/libexif.mk Guillaume> @@ -0,0 +1,15 @@ Guillaume> +############################################################# Guillaume> +# Guillaume> +# libexif Guillaume> +# Guillaume> +############################################################# Guillaume> + Guillaume> +LIBEXIF_VERSION = 0.6.20 Guillaume> +LIBEXIF_SOURCE = libexif-$(LIBEXIF_VERSION).tar.gz Upstream has a .bz2 as well, which is smaller/faster to download. Guillaume> +LIBEXIF_SITE = http://sourceforge.net/projects/libexif/files/libexif/$(LIBEXIF_VERSION) That doesn't look like a normal sourceforge URL - Normally we have http://$(BR2_SOURCEFORGE_MIRROR).dl.sourceforge.net/... (see haserl.mk as example). Guillaume> +LIBEXIF_INSTALL_STAGING = YES Guillaume> +LIBEXIF_INSTALL_TARGET = YES INSTALL_TARGET is default, so that's not needed. Guillaume> +LIBEXIF_CONF_OPT = --disable-docs Guillaume> +LIBEXIF_DEPENDENCIES = host-pkg-config Guillaume> + Guillaume> +$(eval $(call AUTOTARGETS,package,libexif)) -- Bye, Peter Korsgaard ^ permalink raw reply [flat|nested] 4+ messages in thread
* [Buildroot] [PATCH] Add libexif to buildroot 2011-04-26 8:05 ` Peter Korsgaard @ 2011-04-26 9:36 ` Guillaume Gardet 0 siblings, 0 replies; 4+ messages in thread From: Guillaume Gardet @ 2011-04-26 9:36 UTC (permalink / raw) To: buildroot Thanks for commit and all comments. Guillaume Le 26/04/2011 10:05, Peter Korsgaard a ?crit : >>>>>> "Guillaume" == Guillaume Gardet<guillaume.gardet@free.fr> writes: > Guillaume> Attached patch add support to libexif in Buildroot. > Guillaume> Cheers, > > Sorry for slow response - Committed with some tweaks, thanks. > > It would be very good if you could use 'git format-patch' / > 'git send-email' for patches in the future. > > Guillaume> diff --git a/package/Config.in b/package/Config.in > Guillaume> index 16a9e8f..ee6cd3b 100644 > Guillaume> --- a/package/Config.in > Guillaume> +++ b/package/Config.in > Guillaume> @@ -274,6 +275,7 @@ source "package/gtk2-themes/Config.in" > Guillaume> source "package/jpeg/Config.in" > Guillaume> source "package/libart/Config.in" > Guillaume> source "package/libdrm/Config.in" > Guillaume> +source "package/libexif/Config.in" > Guillaume> source "package/libgail/Config.in" > Guillaume> source "package/libglade/Config.in" > Guillaume> source "package/gdk-pixbuf/Config.in" > Guillaume> diff --git a/package/libexif/Config.in b/package/libexif/Config.in > Guillaume> new file mode 100644 > Guillaume> index 0000000..c4b3bd5 > Guillaume> --- /dev/null > Guillaume> +++ b/package/libexif/Config.in > Guillaume> @@ -0,0 +1,7 @@ > Guillaume> +config? BR2_PACKAGE_LIBEXIF > Guillaume> + bool? "libexif - EXIF Tag Parsing Library" > > Your mailer seems to have replaced spaces with funky underscores. > > Guillaume> + help > Guillaume> + Most digital cameras produce EXIF files, which are JPEG files with extra tags that contain information about the image. > Guillaume> + The EXIF library allows you to parse an EXIF file and read the data from those tags. > > help text should be indented with<tab><space><space> and not exceed ~70 > chars. > > Guillaume> +++ b/package/libexif/libexif.mk > Guillaume> @@ -0,0 +1,15 @@ > Guillaume> +############################################################# > Guillaume> +# > Guillaume> +# libexif > Guillaume> +# > Guillaume> +############################################################# > Guillaume> + > Guillaume> +LIBEXIF_VERSION = 0.6.20 > Guillaume> +LIBEXIF_SOURCE = libexif-$(LIBEXIF_VERSION).tar.gz > > Upstream has a .bz2 as well, which is smaller/faster to download. > > Guillaume> +LIBEXIF_SITE = http://sourceforge.net/projects/libexif/files/libexif/$(LIBEXIF_VERSION) > > That doesn't look like a normal sourceforge URL - Normally we have > http://$(BR2_SOURCEFORGE_MIRROR).dl.sourceforge.net/... (see haserl.mk > as example). > > Guillaume> +LIBEXIF_INSTALL_STAGING = YES > Guillaume> +LIBEXIF_INSTALL_TARGET = YES > > INSTALL_TARGET is default, so that's not needed. > > Guillaume> +LIBEXIF_CONF_OPT = --disable-docs > Guillaume> +LIBEXIF_DEPENDENCIES = host-pkg-config > Guillaume> + > Guillaume> +$(eval $(call AUTOTARGETS,package,libexif)) > ^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2011-04-26 9:36 UTC | newest] Thread overview: 4+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2011-02-04 9:12 [Buildroot] [PATCH] Add libexif to buildroot Guillaume Gardet 2011-03-02 8:17 ` Guillaume Gardet 2011-04-26 8:05 ` Peter Korsgaard 2011-04-26 9:36 ` Guillaume Gardet
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox