From: Marco Trapanese <marcotrapanese@gmail.com>
To: buildroot@busybox.net
Subject: [Buildroot] [PATCH] postgresql: new package
Date: Sun, 16 Mar 2014 13:15:03 +0100 [thread overview]
Message-ID: <532595C7.3020207@gmail.com> (raw)
In-Reply-To: <1394315978-15500-1-git-send-email-ps.report@gmx.net>
Hi Peter!
Thank you for you patch. I didn't submitted yet because I still don't
have a working buildroot environment at the moment.
I should expect to find the new package after a git pull?
Thanks!
Marco
--
Il 08/03/2014 22:59, Peter Seiderer ha scritto:
> Based on suggested new package by Marco Trapanese ([1]).
>
> [1] http://lists.busybox.net/pipermail/buildroot/2014-February/090661.html
>
> Signed-off-by: Peter Seiderer <ps.report@gmx.net>
> ---
> package/Config.in | 1 +
> package/postgresql/Config.in | 13 +++++++++++++
> package/postgresql/postgresql.mk | 29 +++++++++++++++++++++++++++++
> 3 files changed, 43 insertions(+)
> create mode 100644 package/postgresql/Config.in
> create mode 100644 package/postgresql/postgresql.mk
>
> diff --git a/package/Config.in b/package/Config.in
> index 70e5a7f..f8a86ea 100644
> --- a/package/Config.in
> +++ b/package/Config.in
> @@ -539,6 +539,7 @@ source "package/berkeleydb/Config.in"
> source "package/cppdb/Config.in"
> source "package/gdbm/Config.in"
> source "package/mysql/Config.in"
> +source "package/postgresql/Config.in"
> source "package/redis/Config.in"
> source "package/sqlcipher/Config.in"
> source "package/sqlite/Config.in"
> diff --git a/package/postgresql/Config.in b/package/postgresql/Config.in
> new file mode 100644
> index 0000000..efc296f
> --- /dev/null
> +++ b/package/postgresql/Config.in
> @@ -0,0 +1,13 @@
> +config BR2_PACKAGE_POSTGRESQL
> + bool "PostgreSQL"
> + depends on BR2_INET_IPV6
> + select BR2_PACKAGE_READLINE
> + select BR2_PACKAGE_ZLIB
> + help
> + PostgreSQL is a powerful, open source object-relational
> + database system.
> +
> + http://www.postgresql.org
> +
> +comment "PostgreSQL needs a toolchain w/ IPv6"
> + depends on !BR2_INET_IPV6
> diff --git a/package/postgresql/postgresql.mk b/package/postgresql/postgresql.mk
> new file mode 100644
> index 0000000..6432b87
> --- /dev/null
> +++ b/package/postgresql/postgresql.mk
> @@ -0,0 +1,29 @@
> +################################################################################
> +#
> +# postgresql
> +#
> +################################################################################
> +
> +POSTGRESQL_VERSION = 9.3.3
> +POSTGRESQL_SOURCE = postgresql-$(POSTGRESQL_VERSION).tar.bz2
> +POSTGRESQL_SITE = http://ftp.postgresql.org/pub/source/v$(POSTGRESQL_VERSION)/$(POSTGRESQL_SOURCE)
> +POSTGRESQL_LICENSE = PostgreSQL
> +POSTGRESQ_LICENSE_FILES = COPYRIGHT
> +POSTGRESQL_DEPENDENCIES = readline zlib
> +POSTGRESQL_CONF_OPT = --prefix=/usr
> +
> +ifneq ($(BR2_TOOLCHAIN_HAS_THREADS),y)
> + POSTGRESQL_CONF_OPT += --disable-thread-safety
> +endif
> +
> +ifeq ($(BR2_PACKAGE_TZDATA),y)
> + POSTGRESQL_DEPENDENCIES += tzdata
> + POSTGRESQL_CONF_OPT += --with-system-tzdata=/usr/share/zoneinfo
> +endif
> +
> +ifeq ($(BR2_PACKAGE_OPENSSL),y)
> + POSTGRESQL_DEPENDENCIES += openssl
> + POSTGRESQL_CONF_OPT += --with-openssl
> +endif
> +
> +$(eval $(autotools-package))
next prev parent reply other threads:[~2014-03-16 12:15 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-03-08 21:59 [Buildroot] [PATCH] postgresql: new package Peter Seiderer
2014-03-16 12:15 ` Marco Trapanese [this message]
-- strict thread matches above, loose matches on Subject: below --
2014-03-18 20:56 Peter Seiderer
2014-03-31 6:59 Peter Seiderer
2014-04-03 20:39 ` Thomas Petazzoni
2014-04-04 6:04 ` Arnout Vandecappelle
2014-04-04 19:15 ` Peter Seiderer
2014-04-03 21:55 ` Jerzy Grzegorek
2014-04-04 19:18 ` Peter Seiderer
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=532595C7.3020207@gmail.com \
--to=marcotrapanese@gmail.com \
--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.