summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Purdie <richard@openedhand.com>2006-11-21 10:44:15 +0000
committerRichard Purdie <richard@openedhand.com>2006-11-21 10:44:15 +0000
commitb57a5d53ea6bdb7ce910a990f1ef584d23e6a582 (patch)
treea2c47834c6ef9a9c6291bde173a150b13cc0a8fe
parentf73c7d9cf6007281b87d7b2cdbcd87b79518b1c8 (diff)
downloadpoky-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
-rw-r--r--meta/packages/less/less_382.bb16
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 @@
1SECTION = "console/utils"
2DEPENDS = "ncurses"
3DESCRIPTION = "Less is a program similar to more, i.e. a terminal \ 1DESCRIPTION = "Less is a program similar to more, i.e. a terminal \
4based program for viewing text files and the output from other \ 2based program for viewing text files and the output from other \
5programs. Less offers many features beyond those that more does." 3programs. Less offers many features beyond those that more does."
6HOMEPAGE = "http://www.greenwoodsoftware.com/" 4HOMEPAGE = "http://www.greenwoodsoftware.com/"
5SECTION = "console/utils"
7LICENSE = "BSD" 6LICENSE = "BSD"
7DEPENDS = "ncurses"
8PR = "r1"
8 9
9SRC_URI = "${GNU_MIRROR}/less/less-${PV}.tar.gz \ 10SRC_URI = "${GNU_MIRROR}/less/less-${PV}.tar.gz \
10 file://configure.patch;patch=1" 11 file://configure.patch;patch=1"
11 12
12inherit autotools 13inherit autotools update-alternatives
13 14
14do_install () { 15do_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
20ALTERNATIVE_NAME = "less"
21ALTERNATIVE_PATH = "less.${PN}"
22ALTERNATIVE_PRIORITY = "100"