[oe-commits] Tim 'timtim' Ellis : krb5: Fix issues with do_configure

GIT User account git at amethyst.openembedded.net
Sun Feb 1 02:54:31 UTC 2009


Module: openembedded.git
Branch: org.openembedded.dev
Commit: cbcb3f64f5168a19d3e5b831195c614c45a53ee1
URL:    http://gitweb.openembedded.net/?p=openembedded.git&a=commit;h=cbcb3f64f5168a19d3e5b831195c614c45a53ee1

Author: Tim 'timtim' Ellis <tim.ellis at foonas.org>
Date:   Sun Feb  1 02:52:34 2009 +0000

krb5: Fix issues with do_configure

---

 packages/krb/krb5_1.6.3.bb |   14 +++++++++++---
 1 files changed, 11 insertions(+), 3 deletions(-)

diff --git a/packages/krb/krb5_1.6.3.bb b/packages/krb/krb5_1.6.3.bb
index b13e5f1..5fc75b4 100644
--- a/packages/krb/krb5_1.6.3.bb
+++ b/packages/krb/krb5_1.6.3.bb
@@ -1,7 +1,7 @@
 DESCRIPTION = "A network authentication protocol"
 HOMEPAGE = "http://web.mit.edu/Kerberos/"
 SECTION = "console/network"
-PR = "r4"
+PR = "r5"
 LICENSE = "MIT"
 DEPENDS = "perl-native ncurses e2fsprogs-libs"
 
@@ -20,9 +20,17 @@ LDFLAGS_append += "-lpthread"
 
 FILES_${PN}-doc += /usr/share/examples
 
-do_configure() {
+krb5_do_unpack() {
 	tar xzf ${WORKDIR}/krb5-1.6.3.tar.gz -C ${WORKDIR}/
-	patch -p1 < ${WORKDIR}/fix-uclibc-ruserpass-collision.patch
+	patch -d ${S} -p1 < ${WORKDIR}/fix-uclibc-ruserpass-collision.patch
+}
+
+python do_unpack() {
+	bb.build.exec_func('base_do_unpack', d)
+	bb.build.exec_func('krb5_do_unpack', d)
+}
+
+do_configure() {
 	oe_runconf
 }
 





More information about the Openembedded-commits mailing list