From: Jerzy Grzegorek <jerzy.grzegorek@trzebnica.net>
To: buildroot@busybox.net
Subject: [Buildroot] [PATCH] postgresql: new package
Date: Thu, 03 Apr 2014 23:55:50 +0200 [thread overview]
Message-ID: <533DD8E6.9000609@trzebnica.net> (raw)
In-Reply-To: <1396249169-14126-1-git-send-email-ps.report@gmx.net>
Hi Peter,
> 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>
> ---
> Changes v2 -> v3:
> - change data dir from /srv/pqsql/data to /var/lib/pgsql
> (as suggested by Thomas Petazzoni)
> - fix POSTGRESQL_SITE url (removed cut and paste error)
> (as suggested by Thomas Petazzoni)
> - remove superfluous POSTGRESQL_CONF_OPT prefix option
> (as suggested by Thomas Petazzoni)
> - fix POSTGRESQL_USERS (remove superfluous own group)
> (as suggested by Yann E. MORIN)
> - fix data dir install command (remove superfluous -v option)
> (as suggested by Yann E. MORIN)
> - make readline an zlib optional (add hint in the help text
> instead)
> (as suggested by Thomas Petazzoni)
>
> Changes v1 -> v2:
> - add postgresql user
> - add postgresql data directory
> - add sysv initialize and startup script
> ---
> package/Config.in | 1 +
> package/postgresql/Config.in | 20 +++++++++++++++
> package/postgresql/S50postgresql | 44 ++++++++++++++++++++++++++++++++
> package/postgresql/postgresql.mk | 54 ++++++++++++++++++++++++++++++++++++++++
> 4 files changed, 119 insertions(+)
> create mode 100644 package/postgresql/Config.in
> create mode 100644 package/postgresql/S50postgresql
> create mode 100644 package/postgresql/postgresql.mk
[...]
> diff --git a/package/postgresql/postgresql.mk b/package/postgresql/postgresql.mk
> new file mode 100644
> index 0000000..fee4aed
> --- /dev/null
> +++ b/package/postgresql/postgresql.mk
> @@ -0,0 +1,54 @@
> +################################################################################
> +#
> +# 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_LICENSE = PostgreSQL
> +POSTGRESQ_LICENSE_FILES = COPYRIGHT
typo
POSTGRESQL_LICENSE_FILES = COPYRIGHT
Regards,
Jerzy
> +
> +ifneq ($(BR2_TOOLCHAIN_HAS_THREADS),y)
> + POSTGRESQL_CONF_OPT += --disable-thread-safety
> +endif
> +
> +ifeq ($(BR2_PACKAGE_READLINE),y)
> + POSTGRESQL_DEPENDENCIES += readline
> +else
> + POSTGRESQL_CONF_OPT += --wihtout-readline
> +endif
> +
> +ifeq ($(BR2_PACKAGE_ZLIB),y)
> + POSTGRESQL_DEPENDENCIES += zlib
> +else
> + POSTGRESQL_CONF_OPT += --wihtout-zlib
> +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
> +
> +define POSTGRESQL_USERS
> + postgres -1 postgres -1 * /var/lib/pgsql /bin/sh - PostgreSQL Server
> +endef
> +
> +define POSTGRESQL_INSTALL_TARGET_FIXUP
> + $(INSTALL) -dm 0700 $(TARGET_DIR)/var/lib/pgsql
> +endef
> +
> +POSTGRESQL_POST_INSTALL_TARGET_HOOKS += POSTGRESQL_INSTALL_TARGET_FIXUP
> +
> +define POSTGRESQL_INSTALL_INIT_SYSV
> + $(INSTALL) -m 0755 -D package/postgresql/S50postgresql \
> + $(TARGET_DIR)/etc/init.d/S50postgresql
> +endef
> +
> +$(eval $(autotools-package))
next prev parent reply other threads:[~2014-04-03 21:55 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-03-31 6:59 [Buildroot] [PATCH] postgresql: new package 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 [this message]
2014-04-04 19:18 ` Peter Seiderer
-- strict thread matches above, loose matches on Subject: below --
2014-03-18 20:56 Peter Seiderer
2014-03-08 21:59 Peter Seiderer
2014-03-16 12:15 ` Marco Trapanese
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=533DD8E6.9000609@trzebnica.net \
--to=jerzy.grzegorek@trzebnica.net \
--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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox