diff options
author | Richard Purdie <richard@openedhand.com> | 2006-11-21 10:44:15 +0000 |
---|---|---|
committer | Richard Purdie <richard@openedhand.com> | 2006-11-21 10:44:15 +0000 |
commit | b57a5d53ea6bdb7ce910a990f1ef584d23e6a582 (patch) | |
tree | a2c47834c6ef9a9c6291bde173a150b13cc0a8fe /meta/packages/less | |
parent | f73c7d9cf6007281b87d7b2cdbcd87b79518b1c8 (diff) | |
download | poky-b57a5d53ea6bdb7ce910a990f1ef584d23e6a582.tar.gz |
less: Add alternatives handling from OE.dev
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@912 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/packages/less')
-rw-r--r-- | meta/packages/less/less_382.bb | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/meta/packages/less/less_382.bb b/meta/packages/less/less_382.bb index b489722edb..f336a59ad6 100644 --- a/meta/packages/less/less_382.bb +++ b/meta/packages/less/less_382.bb | |||
@@ -1,16 +1,22 @@ | |||
1 | SECTION = "console/utils" | ||
2 | DEPENDS = "ncurses" | ||
3 | DESCRIPTION = "Less is a program similar to more, i.e. a terminal \ | 1 | DESCRIPTION = "Less is a program similar to more, i.e. a terminal \ |
4 | based program for viewing text files and the output from other \ | 2 | based program for viewing text files and the output from other \ |
5 | programs. Less offers many features beyond those that more does." | 3 | programs. Less offers many features beyond those that more does." |
6 | HOMEPAGE = "http://www.greenwoodsoftware.com/" | 4 | HOMEPAGE = "http://www.greenwoodsoftware.com/" |
5 | SECTION = "console/utils" | ||
7 | LICENSE = "BSD" | 6 | LICENSE = "BSD" |
7 | DEPENDS = "ncurses" | ||
8 | PR = "r1" | ||
8 | 9 | ||
9 | SRC_URI = "${GNU_MIRROR}/less/less-${PV}.tar.gz \ | 10 | SRC_URI = "${GNU_MIRROR}/less/less-${PV}.tar.gz \ |
10 | file://configure.patch;patch=1" | 11 | file://configure.patch;patch=1" |
11 | 12 | ||
12 | inherit autotools | 13 | inherit autotools update-alternatives |
13 | 14 | ||
14 | do_install () { | 15 | do_install () { |
15 | oe_runmake 'bindir=${D}${bindir}' 'mandir=${D}${mandir}' install | 16 | oe_runmake 'bindir=${D}${bindir}' 'mandir=${D}${mandir}' install |
17 | mv ${D}${bindir}/less ${D}${bindir}/less.${PN} | ||
16 | } | 18 | } |
19 | |||
20 | ALTERNATIVE_NAME = "less" | ||
21 | ALTERNATIVE_PATH = "less.${PN}" | ||
22 | ALTERNATIVE_PRIORITY = "100" | ||