summaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
authorKevin Tian <kevin.tian@intel.com>2010-08-24 15:34:35 +0800
committerRichard Purdie <rpurdie@linux.intel.com>2010-08-27 13:04:38 +0100
commitcb73e943aa31a755abc20b9a4c221ca1b183f347 (patch)
tree4aba9a2755d0348ec585bf15ce6a163ee642d956 /meta
parent37f914dd72145a4e6ecc9ed75cbe27745670f499 (diff)
downloadpoky-cb73e943aa31a755abc20b9a4c221ca1b183f347.tar.gz
bash (GPLv2): remove metadata sharing from GPLv3 recipe
Signed-off-by: Kevin Tian <kevin.tian@intel.com>
Diffstat (limited to 'meta')
-rw-r--r--meta/packages/bash/bash_3.2.48.bb30
1 files changed, 27 insertions, 3 deletions
diff --git a/meta/packages/bash/bash_3.2.48.bb b/meta/packages/bash/bash_3.2.48.bb
index 47afe98801..ee563d626a 100644
--- a/meta/packages/bash/bash_3.2.48.bb
+++ b/meta/packages/bash/bash_3.2.48.bb
@@ -1,11 +1,35 @@
1require bash.inc 1DESCRIPTION = "An sh-compatible command language interpreter."
2HOMEPAGE = "http://cnswww.cns.cwru.edu/~chet/bash/bashtop.html"
3SECTION = "base/shell"
2 4
3LICENSE = "GPLv2+" 5LICENSE = "GPLv2+"
4LIC_FILES_CHKSUM = "file://COPYING;md5=fd5d9bcabd8ed5a54a01ce8d183d592a" 6LIC_FILES_CHKSUM = "file://COPYING;md5=fd5d9bcabd8ed5a54a01ce8d183d592a"
7DEPENDS = "ncurses"
8
5PR = "r6" 9PR = "r6"
6 10
7SRC_URI = "${GNU_MIRROR}/bash/bash-${PV}.tar.gz \ 11SRC_URI = "${GNU_MIRROR}/bash/bash-${PV}.tar.gz \
8 http://ftp.gnu.org/gnu/bash/bash-3.2-patches/bash32-049;apply=yes;striplevel=0 \ 12 http://ftp.gnu.org/gnu/bash/bash-3.2-patches/bash32-049;apply=yes;striplevel=0 \
9 http://ftp.gnu.org/gnu/bash/bash-3.2-patches/bash32-050;apply=yes;striplevel=0 \ 13 http://ftp.gnu.org/gnu/bash/bash-3.2-patches/bash32-050;apply=yes;striplevel=0 \
10 http://ftp.gnu.org/gnu/bash/bash-3.2-patches/bash32-051;apply=yes;striplevel=0 \ 14 http://ftp.gnu.org/gnu/bash/bash-3.2-patches/bash32-051;apply=yes;striplevel=0"
11 " 15
16inherit autotools gettext
17
18PARALLEL_MAKE = ""
19
20bindir = "/bin"
21sbindir = "/sbin"
22
23EXTRA_OECONF = "--with-ncurses"
24export CC_FOR_BUILD = "${BUILD_CC}"
25
26do_configure () {
27 gnu-configize
28 oe_runconf
29}
30
31pkg_postinst () {
32 touch $D${sysconfdir}/shells
33 grep -q "bin/bash" $D${sysconfdir}/shells || echo /bin/bash >> $D${sysconfdir}/shells
34 grep -q "bin/sh" $D${sysconfdir}/shells || echo /bin/sh >> $D${sysconfdir}/shells
35}