diff options
author | Scott Garman <scott.a.garman@intel.com> | 2011-06-14 09:49:18 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-06-28 13:55:43 +0100 |
commit | 7c6f47b13c55e5c1d15d9ab9c2cee3da065fb592 (patch) | |
tree | c19a22c5b8d0f9ed60bd7f6a19a01d9f974de073 /meta/recipes-extended/sudo/sudo.inc | |
parent | 3b97ea13c85870a1ff71312a42cd2c68036712a2 (diff) | |
download | poky-7c6f47b13c55e5c1d15d9ab9c2cee3da065fb592.tar.gz |
sudo: upgrade to v1.8.1p2
Upgrading to the latest stable release of sudo.
This version of sudo has reorganized its source code layout, hence
the LIC_FILES_CHKSUM related changes. Also, some of the individual
.c files we checksummed (nonunix.h, vasgroups.c) are no longer
shipped with the sources. Finally, an embedded copy of zlib is now
included in these sources, so Zlib is included as one of the
licenses. I could not find any evidence of MIT-licensed sources,
so that license has been removed.
(From OE-Core rev: 10694e6037b16813e99e2204dbbe5c169f34667c)
Signed-off-by: Scott Garman <scott.a.garman@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended/sudo/sudo.inc')
-rw-r--r-- | meta/recipes-extended/sudo/sudo.inc | 27 |
1 files changed, 11 insertions, 16 deletions
diff --git a/meta/recipes-extended/sudo/sudo.inc b/meta/recipes-extended/sudo/sudo.inc index fd680574a3..0d9f35eaba 100644 --- a/meta/recipes-extended/sudo/sudo.inc +++ b/meta/recipes-extended/sudo/sudo.inc | |||
@@ -4,14 +4,12 @@ HOMEPAGE = "http://www.sudo.ws" | |||
4 | BUGTRACKER = "http://www.sudo.ws/bugs/" | 4 | BUGTRACKER = "http://www.sudo.ws/bugs/" |
5 | PRIORITY = "optional" | 5 | PRIORITY = "optional" |
6 | SECTION = "admin" | 6 | SECTION = "admin" |
7 | LICENSE = "ISC & UCB & MIT" | 7 | LICENSE = "ISC & UCB & Zlib" |
8 | LIC_FILES_CHKSUM = "file://LICENSE;md5=0b07397b2fca3fb8b71f08cd85c6eb3f \ | 8 | LIC_FILES_CHKSUM = "file://doc/LICENSE;md5=54f1b46c2459ecec3d892618eab44302 \ |
9 | file://nonunix.h;beginline=4;endline=28;md5=af7d361f47ae60769cac77e4fca0dbb0 \ | 9 | file://compat/fnmatch.c;beginline=6;endline=31;md5=5872733146b9eb0deb79e1f664815b85 \ |
10 | file://vasgroups.c;beginline=4;endline=28;md5=af7d361f47ae60769cac77e4fca0dbb0 \ | 10 | file://compat/getcwd.c;beginline=5;endline=27;md5=449af4cc57fc7d46f42090608ba3e681 \ |
11 | file://fnmatch.c;beginline=6;endline=31;md5=5872733146b9eb0deb79e1f664815b85 \ | 11 | file://compat/glob.c;beginline=6;endline=31;md5=5872733146b9eb0deb79e1f664815b85 \ |
12 | file://getcwd.c;beginline=5;endline=27;md5=449af4cc57fc7d46f42090608ba3e681 \ | 12 | file://compat/snprintf.c;beginline=6;endline=31;md5=c98b24f02967c095d7a70ae2e4d4d4ea" |
13 | file://glob.c;beginline=6;endline=31;md5=5872733146b9eb0deb79e1f664815b85 \ | ||
14 | file://snprintf.c;beginline=6;endline=31;md5=c98b24f02967c095d7a70ae2e4d4d4ea" | ||
15 | 13 | ||
16 | inherit autotools | 14 | inherit autotools |
17 | 15 | ||
@@ -23,17 +21,14 @@ do_configure_prepend () { | |||
23 | fi | 21 | fi |
24 | } | 22 | } |
25 | 23 | ||
26 | # The script "mkinstalldirs" from package "sudo" will create directory | 24 | # Explicitly create ${localstatedir}/lib before do_install to ensure |
27 | # "/var/lib/sudo" by recursion with mode "0700" during installing files. | 25 | # the directory is accessible by all users. Otherwise the mkinstalldirs |
28 | # That is to say, "var", "var/lib" and "var/lib/sudo" will possess access authority | 26 | # script (from sudo) will recursively create ${localstatedir}/lib/sudo |
29 | # with mode "0700". It cause that directory "var" and "var/lib" | 27 | # and then chmod each directory with 0700 permissions, which isn't what |
30 | # can't be accessed by common user. Creating directory "/var/lib" before | 28 | # we want (i.e, users would not be able to access /var/lib). |
31 | # installing files can resolve this problem. | ||
32 | |||
33 | do_install_prepend (){ | 29 | do_install_prepend (){ |
34 | mkdir -p ${D}/${localstatedir}/lib | 30 | mkdir -p ${D}/${localstatedir}/lib |
35 | } | 31 | } |
36 | |||
37 | 32 | ||
38 | pkg_postinst_${PN} () { | 33 | pkg_postinst_${PN} () { |
39 | if [ "x$D" != "x" ]; then | 34 | if [ "x$D" != "x" ]; then |