All of lore.kernel.org
 help / color / mirror / Atom feed
From: Peter Korsgaard <jacmet@uclibc.org>
To: buildroot@busybox.net
Subject: [Buildroot] [PATCH v4 10/21] qt5/qt5svg: new package
Date: Sun, 24 Mar 2013 14:46:58 +0100	[thread overview]
Message-ID: <87zjxsj4fh.fsf@dell.be.48ers.dk> (raw)
In-Reply-To: <1363721394-14973-11-git-send-email-thomas.petazzoni@free-electrons.com> (Thomas Petazzoni's message of "Tue, 19 Mar 2013 20:29:43 +0100")

>>>>> "Thomas" == Thomas Petazzoni <thomas.petazzoni@free-electrons.com> writes:

 Thomas> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
 Thomas> ---
 Thomas>  package/qt5/Config.in        |    1 +
 Thomas>  package/qt5/qt5svg/Config.in |   11 ++++++++++
 Thomas>  package/qt5/qt5svg/qt5svg.mk |   47 ++++++++++++++++++++++++++++++++++++++++++
 Thomas>  3 files changed, 59 insertions(+)
 Thomas>  create mode 100644 package/qt5/qt5svg/Config.in
 Thomas>  create mode 100644 package/qt5/qt5svg/qt5svg.mk

 Thomas> diff --git a/package/qt5/Config.in b/package/qt5/Config.in
 Thomas> index 1c9f8a6..f4d2b45 100644
 Thomas> --- a/package/qt5/Config.in
 Thomas> +++ b/package/qt5/Config.in
 Thomas> @@ -15,4 +15,5 @@ menuconfig BR2_PACKAGE_QT5
 
 Thomas>  if BR2_PACKAGE_QT5
 Thomas>  source "package/qt5/qt5base/Config.in"
 Thomas> +source "package/qt5/qt5svg/Config.in"
 Thomas>  endif
 Thomas> diff --git a/package/qt5/qt5svg/Config.in b/package/qt5/qt5svg/Config.in
 Thomas> new file mode 100644
 Thomas> index 0000000..27e6b05
 Thomas> --- /dev/null
 Thomas> +++ b/package/qt5/qt5svg/Config.in
 Thomas> @@ -0,0 +1,11 @@
 Thomas> +config BR2_PACKAGE_QT5SVG
 Thomas> +	bool "qt5svg"
 Thomas> +	select BR2_PACKAGE_QT5BASE
 Thomas> +	select BR2_PACKAGE_QT5BASE_GUI
 Thomas> +	help
 Thomas> +	  Qt is a cross-platform application and UI framework for
 Thomas> +	  developers using C++.
 Thomas> +
 Thomas> +	  This package corresponds to the qt5svg module.
 Thomas> +
 Thomas> +	  http://qt-project.org
 Thomas> diff --git a/package/qt5/qt5svg/qt5svg.mk b/package/qt5/qt5svg/qt5svg.mk
 Thomas> new file mode 100644
 Thomas> index 0000000..8db28ba
 Thomas> --- /dev/null
 Thomas> +++ b/package/qt5/qt5svg/qt5svg.mk
 Thomas> @@ -0,0 +1,47 @@
 Thomas> +#############################################################
 Thomas> +#
 Thomas> +# qt5svg
 Thomas> +#
 Thomas> +#############################################################
 Thomas> +
 Thomas> +QT5SVG_VERSION = $(QT5_VERSION)
 Thomas> +QT5SVG_SITE = http://releases.qt-project.org/qt5/$(QT5SVG_VERSION)/submodules_tar/
 Thomas> +QT5SVG_SOURCE = qtsvg-opensource-src-$(QT5SVG_VERSION).tar.xz
 Thomas> +QT5SVG_DEPENDENCIES = qt5base
 Thomas> +QT5SVG_INSTALL_STAGING = YES
 Thomas> +
 Thomas> +ifeq ($(BR2_PACKAGE_QT5BASE_LICENSE_APPROVED),y)
 Thomas> +QT5SVG_CONFIGURE_OPTS += -opensource -confirm-license
 Thomas> +QT5SVG_LICENSE = LGPLv2.1 or GPLv3.0
 Thomas> +# Here we would like to get license files from qt5base, but qt5base
 Thomas> +# may not be extracted at the time we get the legal-info for qt5svg.
 Thomas> +else
 Thomas> +QT5SVG_LICENSE = Commercial license
 Thomas> +QT5SVG_REDISTRIBUTE = NO
 Thomas> +endif
 Thomas> +
 Thomas> +define QT5SVG_CONFIGURE_CMDS
 Thomas> +	(cd $(@D); $(HOST_DIR)/usr/bin/qmake)
 Thomas> +endef
 Thomas> +
 Thomas> +define QT5SVG_BUILD_CMDS
 Thomas> +	$(TARGET_MAKE_ENV) $(MAKE) -C $(@D)
 Thomas> +endef
 Thomas> +
 Thomas> +define QT5SVG_INSTALL_STAGING_CMDS
 Thomas> +	$(TARGET_MAKE_ENV) $(MAKE) -C $(@D) install
 Thomas> +	$(QT5_LA_PRL_FILES_FIXUP)
 Thomas> +endef
 Thomas> +
 Thomas> +ifeq ($(BR2_PACKAGE_QT5BASE_WIDGETS),y)
 Thomas> +define QT5SVG_INSTALL_ICONENGINES
 Thomas> +	cp -dpfr $(STAGING_DIR)/usr/lib/qt/plugins/iconengines $(TARGET_DIR)/usr/lib/qt/plugins
 Thomas> +endef
 Thomas> +endif
 Thomas> +define QT5SVG_INSTALL_TARGET_CMDS
 Thomas> +	cp -dpf $(STAGING_DIR)/usr/lib/libQt5Svg*.so.* $(TARGET_DIR)/usr/lib

How about BR2_PREFER_STATIC_LIB builds, or don't we support that for
qt5?

-- 
Bye, Peter Korsgaard

  reply	other threads:[~2013-03-24 13:46 UTC|newest]

Thread overview: 38+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-03-19 19:29 [Buildroot] [PATCH v4] More Qt5 stuff Thomas Petazzoni
2013-03-19 19:29 ` [Buildroot] [PATCH v4 01/21] qt5base: add OpenSSL support Thomas Petazzoni
2013-03-19 21:07   ` Peter Korsgaard
2013-03-19 19:29 ` [Buildroot] [PATCH v4 02/21] qt5base: add eglfs graphics backend Thomas Petazzoni
2013-03-19 21:08   ` Peter Korsgaard
2013-03-19 19:29 ` [Buildroot] [PATCH v4 03/21] qt5base: add support for fontconfig, png, jpeg, gif Thomas Petazzoni
2013-03-19 21:10   ` Peter Korsgaard
2013-03-19 19:29 ` [Buildroot] [PATCH v4 04/21] qt5base: add D-Bus support Thomas Petazzoni
2013-03-19 21:11   ` Peter Korsgaard
2013-03-19 19:29 ` [Buildroot] [PATCH v4 05/21] qt5base: add glib support Thomas Petazzoni
2013-03-19 21:14   ` Peter Korsgaard
2013-03-20  8:35     ` Thomas Petazzoni
2013-03-27 17:19       ` Arnout Vandecappelle
2013-03-19 19:29 ` [Buildroot] [PATCH v4 06/21] qt5base: add support to build against ICU Thomas Petazzoni
2013-03-19 21:40   ` Peter Korsgaard
2013-03-19 19:29 ` [Buildroot] [PATCH v4 07/21] qt5base: add rPi EGL glue code Thomas Petazzoni
2013-03-19 21:41   ` Peter Korsgaard
2013-03-19 19:29 ` [Buildroot] [PATCH v4 08/21] qt5base: install bundled fonts to target Thomas Petazzoni
2013-03-19 21:43   ` Peter Korsgaard
2013-03-19 22:07     ` Floris Bos
2013-03-19 19:29 ` [Buildroot] [PATCH v4 09/21] qt5: factor Qt5 version Thomas Petazzoni
2013-03-24 13:43   ` Peter Korsgaard
2013-03-19 19:29 ` [Buildroot] [PATCH v4 10/21] qt5/qt5svg: new package Thomas Petazzoni
2013-03-24 13:46   ` Peter Korsgaard [this message]
2013-03-27 17:26     ` Arnout Vandecappelle
2013-03-19 19:29 ` [Buildroot] [PATCH v4 11/21] qt5/qt5script: " Thomas Petazzoni
2013-03-19 19:29 ` [Buildroot] [PATCH v4 12/21] qt5/qt5imageformats: " Thomas Petazzoni
2013-03-19 19:29 ` [Buildroot] [PATCH v4 13/21] qt5/qt5xmlpatterns: " Thomas Petazzoni
2013-03-19 19:29 ` [Buildroot] [PATCH v4 14/21] qt5/qt5jsbackend: " Thomas Petazzoni
2013-03-19 19:29 ` [Buildroot] [PATCH v4 15/21] qt5/qt5declarative: " Thomas Petazzoni
2013-03-19 19:29 ` [Buildroot] [PATCH v4 16/21] qt5/qt5graphicaleffects: " Thomas Petazzoni
2013-03-24 18:52   ` Samuel Martin
2013-03-19 19:29 ` [Buildroot] [PATCH v4 17/21] qt5/qt5multimedia: " Thomas Petazzoni
2013-03-19 19:29 ` [Buildroot] [PATCH v4 18/21] qt5/qt5quick1: " Thomas Petazzoni
2013-03-19 19:29 ` [Buildroot] [PATCH v4 19/21] qt5/qt5webkit: " Thomas Petazzoni
2013-03-19 19:29 ` [Buildroot] [PATCH v4 20/21] qt5webkit: add EGL dir to includepath Thomas Petazzoni
2013-03-19 19:29 ` [Buildroot] [PATCH v4 21/21] qt5: disallow the selection of Qt4 and Qt5 Thomas Petazzoni
2013-03-27 17:27   ` Arnout Vandecappelle

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=87zjxsj4fh.fsf@dell.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.