]> code.ossystems Code Review - openembedded-core.git/commitdiff
setserial: merge with OE (no code changes)
authorMarcin Juszkiewicz <hrw@openedhand.com>
Tue, 8 Apr 2008 15:09:02 +0000 (15:09 +0000)
committerMarcin Juszkiewicz <hrw@openedhand.com>
Tue, 8 Apr 2008 15:09:02 +0000 (15:09 +0000)
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@4199 311d38ba-8fff-0310-9ca6-ca027cbcb966

meta/packages/setserial/setserial_2.17.bb

index 4646df818ae8283dfdc161ed79c9ee8027e3b74e..4e0d1b66e4339ce45decfd34d502dda957c5d517 100644 (file)
@@ -1,12 +1,18 @@
+DESCRIPTION = "setserial is a program designed to set and/or report the configuration information associated with a serial port"
+HOMEPAGE = "http://setserial.sourceforge.net"
+AUTHOR = "Theodore Ts'o <tytso@mit.edu>"
 SECTION = "console/utils"
-SRC_URI = "http://fresh.t-systems-sfr.com/linux/src/setserial-2.17.tar.gz"
 LICENSE = "GPL"
-PR = "r1"
+PR = "r2"
+
 inherit autotools
 
+SRC_URI = "${SOURCEFORGE_MIRROR}/setserial/${PN}-${PV}.tar.gz"
+
 do_install() {
-       install -d ${D}${base_bindir}
-       install -d ${D}/usr/man/man8
-       install -d ${D}${mandir}
-       autotools_do_install
+    install -d ${D}${bindir}
+    install -d ${D}${mandir}/man8
+
+    install -m 0755 ${S}/setserial   ${D}${bindir}
+    install -m 0644 ${S}/setserial.8 ${D}${mandir}/man8
 }