All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [git commit] polkit: new package
@ 2013-01-20 22:07 Peter Korsgaard
  2013-01-23 17:38 ` Arnout Vandecappelle
  0 siblings, 1 reply; 3+ messages in thread
From: Peter Korsgaard @ 2013-01-20 22:07 UTC (permalink / raw)
  To: buildroot

commit: http://git.buildroot.net/buildroot/commit/?id=ff3c47ee04daa6f97e9911659fdea0636d65327f
branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master

[Peter: Config.in comment tweak]
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Marek Belisko <marek.belisko@open-nandra.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
---
 package/Config.in        |    1 +
 package/polkit/Config.in |   11 +++++++++++
 package/polkit/polkit.mk |   21 +++++++++++++++++++++
 3 files changed, 33 insertions(+), 0 deletions(-)

diff --git a/package/Config.in b/package/Config.in
index 3fe5c79..167a526 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -779,6 +779,7 @@ if BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
 source "package/module-init-tools/Config.in"
 endif
 source "package/monit/Config.in"
+source "package/polkit/Config.in"
 if BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
 source "package/procps/Config.in"
 source "package/psmisc/Config.in"
diff --git a/package/polkit/Config.in b/package/polkit/Config.in
new file mode 100644
index 0000000..da5f985
--- /dev/null
+++ b/package/polkit/Config.in
@@ -0,0 +1,11 @@
+config BR2_PACKAGE_POLKIT
+	bool "polkit"
+	depends on BR2_USE_WCHAR # libglib2
+	select BR2_PACKAGE_LIBGLIB2
+	select BR2_PACKAGE_EXPAT
+	help
+	  PolicyKit is a toolkit for defining and handling
+	  authorizations.  It is used for allowing unprivileged
+	  processes to speak to privileged processes.
+
+	  http://www.freedesktop.org/wiki/Software/polkit
diff --git a/package/polkit/polkit.mk b/package/polkit/polkit.mk
new file mode 100644
index 0000000..3eb0422
--- /dev/null
+++ b/package/polkit/polkit.mk
@@ -0,0 +1,21 @@
+#############################################################
+#
+# polkit
+#
+#############################################################
+
+POLKIT_VERSION = 0.103
+POLKIT_SITE = http://www.freedesktop.org/software/polkit/releases/
+POLKIT_LICENSE = GPLv2
+POLKIT_LICENSE_FILES = COPYING
+
+POLKIT_INSTALL_STAGING = YES
+
+POLKIT_DEPENDENCIES = libglib2 host-intltool expat
+
+# We could also support --with-authfw=pam
+POLKIT_CONF_OPT = \
+	--with-authfw=shadow \
+	--with-os-type=unknown
+
+$(eval $(autotools-package))

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [Buildroot] [git commit] polkit: new package
  2013-01-20 22:07 [Buildroot] [git commit] polkit: new package Peter Korsgaard
@ 2013-01-23 17:38 ` Arnout Vandecappelle
  2013-01-24  8:26   ` Peter Korsgaard
  0 siblings, 1 reply; 3+ messages in thread
From: Arnout Vandecappelle @ 2013-01-23 17:38 UTC (permalink / raw)
  To: buildroot

On 01/20/13 23:07, Peter Korsgaard wrote:
> commit: http://git.buildroot.net/buildroot/commit/?id=ff3c47ee04daa6f97e9911659fdea0636d65327f
> branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master
>
> [Peter: Config.in comment tweak]
> Signed-off-by: Thomas Petazzoni<thomas.petazzoni@free-electrons.com>
> Signed-off-by: Marek Belisko<marek.belisko@open-nandra.com>
> Signed-off-by: Peter Korsgaard<jacmet@sunsite.dk>
[snip]
> diff --git a/package/polkit/Config.in b/package/polkit/Config.in
> new file mode 100644
> index 0000000..da5f985
> --- /dev/null
> +++ b/package/polkit/Config.in
> @@ -0,0 +1,11 @@
> +config BR2_PACKAGE_POLKIT
> +	bool "polkit"
> +	depends on BR2_USE_WCHAR # libglib2
> +	select BR2_PACKAGE_LIBGLIB2
> +	select BR2_PACKAGE_EXPAT
> +	help
> +	  PolicyKit is a toolkit for defining and handling
> +	  authorizations.  It is used for allowing unprivileged
> +	  processes to speak to privileged processes.
> +
> +	  http://www.freedesktop.org/wiki/Software/polkit

  The comment when !BR2_USE_WCHAR is missing, no?

  Regards,
  Arnout

-- 
Arnout Vandecappelle                          arnout at mind be
Senior Embedded Software Architect            +32-16-286500
Essensium/Mind                                http://www.mind.be
G.Geenslaan 9, 3001 Leuven, Belgium           BE 872 984 063 RPR Leuven
LinkedIn profile: http://www.linkedin.com/in/arnoutvandecappelle
GPG fingerprint:  7CB5 E4CC 6C2E EFD4 6E3D A754 F963 ECAB 2450 2F1F

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [Buildroot] [git commit] polkit: new package
  2013-01-23 17:38 ` Arnout Vandecappelle
@ 2013-01-24  8:26   ` Peter Korsgaard
  0 siblings, 0 replies; 3+ messages in thread
From: Peter Korsgaard @ 2013-01-24  8:26 UTC (permalink / raw)
  To: buildroot

>>>>> "Arnout" == Arnout Vandecappelle <arnout@mind.be> writes:

Hi,

 >> +config BR2_PACKAGE_POLKIT
 >> +	bool "polkit"
 >> +	depends on BR2_USE_WCHAR # libglib2
 >> +	select BR2_PACKAGE_LIBGLIB2
 >> +	select BR2_PACKAGE_EXPAT
 >> +	help
 >> +	  PolicyKit is a toolkit for defining and handling
 >> +	  authorizations.  It is used for allowing unprivileged
 >> +	  processes to speak to privileged processes.
 >> +
 >> +	  http://www.freedesktop.org/wiki/Software/polkit

 Arnout>  The comment when !BR2_USE_WCHAR is missing, no?

Indeed, will fix - Thanks.

-- 
Bye, Peter Korsgaard

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2013-01-24  8:26 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-01-20 22:07 [Buildroot] [git commit] polkit: new package Peter Korsgaard
2013-01-23 17:38 ` Arnout Vandecappelle
2013-01-24  8:26   ` Peter Korsgaard

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.