diff options
author | Kevin Tian <kevin.tian@intel.com> | 2010-08-24 15:34:35 +0800 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-08-27 13:04:38 +0100 |
commit | cb73e943aa31a755abc20b9a4c221ca1b183f347 (patch) | |
tree | 4aba9a2755d0348ec585bf15ce6a163ee642d956 /meta/packages | |
parent | 37f914dd72145a4e6ecc9ed75cbe27745670f499 (diff) | |
download | openembedded-core-cb73e943aa31a755abc20b9a4c221ca1b183f347.tar.gz openembedded-core-cb73e943aa31a755abc20b9a4c221ca1b183f347.tar.bz2 openembedded-core-cb73e943aa31a755abc20b9a4c221ca1b183f347.tar.xz openembedded-core-cb73e943aa31a755abc20b9a4c221ca1b183f347.zip |
bash (GPLv2): remove metadata sharing from GPLv3 recipe
Signed-off-by: Kevin Tian <kevin.tian@intel.com>
Diffstat (limited to 'meta/packages')
-rw-r--r-- | meta/packages/bash/bash_3.2.48.bb | 30 |
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 47afe9880..ee563d626 100644 --- a/meta/packages/bash/bash_3.2.48.bb +++ b/meta/packages/bash/bash_3.2.48.bb @@ -1,11 +1,35 @@ -require bash.inc +DESCRIPTION = "An sh-compatible command language interpreter." +HOMEPAGE = "http://cnswww.cns.cwru.edu/~chet/bash/bashtop.html" +SECTION = "base/shell" LICENSE = "GPLv2+" LIC_FILES_CHKSUM = "file://COPYING;md5=fd5d9bcabd8ed5a54a01ce8d183d592a" +DEPENDS = "ncurses" + PR = "r6" SRC_URI = "${GNU_MIRROR}/bash/bash-${PV}.tar.gz \ http://ftp.gnu.org/gnu/bash/bash-3.2-patches/bash32-049;apply=yes;striplevel=0 \ http://ftp.gnu.org/gnu/bash/bash-3.2-patches/bash32-050;apply=yes;striplevel=0 \ - http://ftp.gnu.org/gnu/bash/bash-3.2-patches/bash32-051;apply=yes;striplevel=0 \ - " + http://ftp.gnu.org/gnu/bash/bash-3.2-patches/bash32-051;apply=yes;striplevel=0" + +inherit autotools gettext + +PARALLEL_MAKE = "" + +bindir = "/bin" +sbindir = "/sbin" + +EXTRA_OECONF = "--with-ncurses" +export CC_FOR_BUILD = "${BUILD_CC}" + +do_configure () { + gnu-configize + oe_runconf +} + +pkg_postinst () { + touch $D${sysconfdir}/shells + grep -q "bin/bash" $D${sysconfdir}/shells || echo /bin/bash >> $D${sysconfdir}/shells + grep -q "bin/sh" $D${sysconfdir}/shells || echo /bin/sh >> $D${sysconfdir}/shells +} |