diff options
author | Richard Purdie <rpurdie@linux.intel.com> | 2010-09-01 19:09:11 +0100 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-09-01 19:09:57 +0100 |
commit | d62ee7eaf2ba025c3f64b2d4e10dc7cec4637612 (patch) | |
tree | f36fe3008f36ff75cbdd31b630f8f13f1f205ebb /meta/recipes-extended/sudo/sudo.inc | |
parent | caab7fc509bf27706ff3248689f6afd04225cfda (diff) | |
download | poky-d62ee7eaf2ba025c3f64b2d4e10dc7cec4637612.tar.gz |
packages: Separate out most of the remaining packages into recipes
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'meta/recipes-extended/sudo/sudo.inc')
-rw-r--r-- | meta/recipes-extended/sudo/sudo.inc | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/meta/recipes-extended/sudo/sudo.inc b/meta/recipes-extended/sudo/sudo.inc new file mode 100644 index 0000000000..2add94bef4 --- /dev/null +++ b/meta/recipes-extended/sudo/sudo.inc | |||
@@ -0,0 +1,36 @@ | |||
1 | DESCRIPTION = "Sudo (superuser do) allows a system administrator to give certain users (or groups of users) the ability to run some (or all) commands as root while logging all commands and arguments." | ||
2 | HOMEPAGE = "http://www.courtesan.com/sudo/" | ||
3 | BUGTRACKER = "http://www.sudo.ws/bugs/" | ||
4 | PRIORITY = "optional" | ||
5 | SECTION = "admin" | ||
6 | LICENSE = "ISC & UCB & MIT" | ||
7 | LIC_FILES_CHKSUM = "file://LICENSE;md5=a7dfe8895011d65d0c2e24aaf5ad0843 \ | ||
8 | file://nonunix.h;startline=4;endline=28;md5=1e70feedac93a3fd7f5254e3fec52677 \ | ||
9 | file://vasgroups.c;startline=4;endline=28;md5=1e70feedac93a3fd7f5254e3fec52677 \ | ||
10 | file://fnmatch.c;startline=6;endline=31;md5=0779058eafd6e23b966585b45bfa54f3 \ | ||
11 | file://getcwd.c;startline=5;endline=27;md5=08d82914995224a0ca42116d7ca2a218 \ | ||
12 | file://glob.c;startline=6;endline=31;md5=299cb38ec8d56e89118ce57fb83b4f78 \ | ||
13 | file://snprintf.c;startline=6;endline=31;md5=dabd56a89a7a773850dc06ee4f1ecde2" | ||
14 | |||
15 | inherit autotools | ||
16 | |||
17 | EXTRA_OECONF = "--with-editor=/bin/vi --with-env-editor" | ||
18 | |||
19 | do_configure_prepend () { | ||
20 | # Prevent binaries from being stripped on the host | ||
21 | sed -i 's/\($(INSTALL).*\) -s \(.*[(sudo|visudo)]\)/\1 \2/g' Makefile.in | ||
22 | |||
23 | rm -f acsite.m4 | ||
24 | if [ ! -e acinclude.m4 ]; then | ||
25 | cat aclocal.m4 > acinclude.m4 | ||
26 | fi | ||
27 | } | ||
28 | |||
29 | pkg_postinst() { | ||
30 | if [ "x$D" != "x" ]; then | ||
31 | exit 1 | ||
32 | fi | ||
33 | |||
34 | chmod 4111 /usr/bin/sudo | ||
35 | chmod 0440 /etc/sudoers | ||
36 | } | ||