summaryrefslogtreecommitdiffstats
path: root/meta/packages/setserial
diff options
context:
space:
mode:
authorMarcin Juszkiewicz <hrw@openedhand.com>2008-04-08 15:09:02 +0000
committerMarcin Juszkiewicz <hrw@openedhand.com>2008-04-08 15:09:02 +0000
commit5be12a829a311ebf257eb6e4864b04a706e9b480 (patch)
tree88790f6d85dc55e6a052e4eb06402a8fb3f31ebd /meta/packages/setserial
parent32cb20989530f3786c8f956f2693a93693e5010a (diff)
downloadpoky-5be12a829a311ebf257eb6e4864b04a706e9b480.tar.gz
setserial: merge with OE (no code changes)
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@4199 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/packages/setserial')
-rw-r--r--meta/packages/setserial/setserial_2.17.bb18
1 files changed, 12 insertions, 6 deletions
diff --git a/meta/packages/setserial/setserial_2.17.bb b/meta/packages/setserial/setserial_2.17.bb
index 4646df818a..4e0d1b66e4 100644
--- a/meta/packages/setserial/setserial_2.17.bb
+++ b/meta/packages/setserial/setserial_2.17.bb
@@ -1,12 +1,18 @@
1DESCRIPTION = "setserial is a program designed to set and/or report the configuration information associated with a serial port"
2HOMEPAGE = "http://setserial.sourceforge.net"
3AUTHOR = "Theodore Ts'o <tytso@mit.edu>"
1SECTION = "console/utils" 4SECTION = "console/utils"
2SRC_URI = "http://fresh.t-systems-sfr.com/linux/src/setserial-2.17.tar.gz"
3LICENSE = "GPL" 5LICENSE = "GPL"
4PR = "r1" 6PR = "r2"
7
5inherit autotools 8inherit autotools
6 9
10SRC_URI = "${SOURCEFORGE_MIRROR}/setserial/${PN}-${PV}.tar.gz"
11
7do_install() { 12do_install() {
8 install -d ${D}${base_bindir} 13 install -d ${D}${bindir}
9 install -d ${D}/usr/man/man8 14 install -d ${D}${mandir}/man8
10 install -d ${D}${mandir} 15
11 autotools_do_install 16 install -m 0755 ${S}/setserial ${D}${bindir}
17 install -m 0644 ${S}/setserial.8 ${D}${mandir}/man8
12} 18}