summaryrefslogtreecommitdiffstats
path: root/rules/acl.in
diff options
context:
space:
mode:
authorCarsten Schlote <c.schlote@konzeptpark.de>2010-01-08 14:51:23 +0100
committerMarc Kleine-Budde <mkl@pengutronix.de>2010-01-08 20:31:13 +0100
commitae2f42ebfcc29454c7cb2a78a711ef36a49289c2 (patch)
tree2a6cae44ad02c41c9d78531bca6b5035d3aa8dff /rules/acl.in
parent1e2414d99ea7d248cea9233fe9fd5cd894d7a7de (diff)
downloadptxdist-ae2f42ebfcc29454c7cb2a78a711ef36a49289c2.tar.gz
ptxdist-ae2f42ebfcc29454c7cb2a78a711ef36a49289c2.tar.xz
[acl] added packet for libacl.so and acl tools
The libacl.so is required by other target tools. The packet also includes acl control functions, which can be installed on demand. Signed-off-by: Carsten Schlote <c.schlote@konzeptpark.de> [mkl: supply simple patches, add option to install tools] Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
Diffstat (limited to 'rules/acl.in')
-rw-r--r--rules/acl.in29
1 files changed, 29 insertions, 0 deletions
diff --git a/rules/acl.in b/rules/acl.in
new file mode 100644
index 000000000..1e427ea77
--- /dev/null
+++ b/rules/acl.in
@@ -0,0 +1,29 @@
+## SECTION=disk_and_file
+
+menuconfig ACL
+ tristate
+ select ATTR
+ select HOST_GETTEXT if ACL_GETTEXT
+ prompt "acl "
+ help
+ Access control list utilities
+
+ This package contains the getfacl and setfacl utilities
+ needed for manipulating access control lists.
+
+if ACL
+
+config ACL_TOOLS
+ bool
+ prompt "install tools"
+
+config ACL_SHARED
+ bool
+ default y
+ prompt "install shared lib"
+
+config ACL_GETTEXT
+ bool
+ prompt "gettext support"
+
+endif