setserial: merge with OE (no code changes)

git-svn-id: https://svn.o-hand.com/repos/poky/trunk@4199 311d38ba-8fff-0310-9ca6-ca027cbcb966
This commit is contained in:
Marcin Juszkiewicz 2008-04-08 15:09:02 +00:00
parent 32cb209895
commit 5be12a829a
1 changed files with 12 additions and 6 deletions

View 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
}