slugimage: Updated to use the new SVN repository
authorRod Whitby <rod@whitby.id.au>
Mon, 13 Nov 2006 12:33:18 +0000 (12:33 +0000)
committerRod Whitby <rod@whitby.id.au>
Mon, 13 Nov 2006 12:33:18 +0000 (12:33 +0000)
packages/slugimage/slugimage-native.bb
packages/slugimage/slugimage.bb

index 81328ae..8b60ff1 100644 (file)
@@ -9,5 +9,5 @@ inherit native
 FILESPATH = "${@base_set_filespath([ '${FILE_DIRNAME}/slugimage-${PV}', '${FILE_DIRNAME}/slugimage', '${FILE_DIRNAME}/files', '${FILE_DIRNAME}' ], d)}"
 
 do_stage () {
-       install -m 0755 slugimage/slugimage ${STAGING_BINDIR}/
+       install -m 0755 slugimage ${STAGING_BINDIR}/
 }
index 6b672cd..ab61c71 100644 (file)
@@ -3,14 +3,22 @@ SECTION = "console/utils"
 LICENSE = "BSD"
 DESCRIPTION = "Slugimage is a small app to disassemble and reassemble \
 flash images for the Linksys NSLU2 device. It also has jffs2 support"
-PR = "r4"
+PR = "r5"
 
 RDEPENDS = "perl"
 
-SRC_URI = "cvs://anonymous:@nslu.cvs.sourceforge.net/cvsroot/nslu;module=slugimage;tag=SLUGIMAGE_3_2"
+SLUGIMAGE_SVN_REV  ?= 77
+SLUGIMAGE_SVN_REPO ?= http://svn.nslu2-linux.org/svnroot/slugimage/trunk
+
+addtask svnfetch before do_configure after do_patch
+
+do_svnfetch() {
+       svn co ${SLUGIMAGE_SVN_REPO} --revision ${SLUGIMAGE_SVN_REV} ${WORKDIR}
+}
+
 S = "${WORKDIR}"
 
 do_install () {
        install -d ${D}${bindir}
-       install -m 0755 slugimage/slugimage ${D}${bindir}/
+       install -m 0755 slugimage ${D}${bindir}/
 }