1 | # $Id:$ |
---|
2 | |
---|
3 | # Portfile for GNU less pager |
---|
4 | # |
---|
5 | # Mark Nudelman (markn@greenwoodsoftware.com) wrote and maintains less |
---|
6 | # |
---|
7 | # Mike McLean (mike.mclean@pobox.com) wrote and maintains this Opendarwin Portfile |
---|
8 | # |
---|
9 | # - Variant override_system will for install into /usr to override/upgrade the system |
---|
10 | # version of less (requires port install to be run as root) |
---|
11 | # |
---|
12 | |
---|
13 | PortSystem 1.0 |
---|
14 | name less |
---|
15 | version 381 |
---|
16 | categories textproc |
---|
17 | maintainers mike.mclean@pobox.com |
---|
18 | |
---|
19 | description Less is a program similar to more, which allows backward movement. \ |
---|
20 | The +override_system variant will force install in /usr/bin |
---|
21 | |
---|
22 | long_description Less is a program similar to more, but which allows backward movement in the file \ |
---|
23 | as well as forward movement. Also, less does not have to read the entire input file \ |
---|
24 | before starting, so with large input files it starts up faster than text editors like \ |
---|
25 | vi. Less uses termcap (or terminfo on some systems), so it can run on a variety of \ |
---|
26 | terminals. There is even limited support for hardcopy terminals. \ |
---|
27 | The +override_system variant will force install in /usr/bin |
---|
28 | |
---|
29 | homepage http://www.greenwoodsoftware.com/less/index.html |
---|
30 | |
---|
31 | platforms darwin |
---|
32 | |
---|
33 | master_sites http://www.greenwoodsoftware.com/less/ \ |
---|
34 | ftp://ftp.gnu.org/gnu/less/ |
---|
35 | |
---|
36 | checksums md5 40c2dd4ac137b61b6a55a6478817daf4 |
---|
37 | |
---|
38 | |
---|
39 | variant override_system { |
---|
40 | prefix /usr |
---|
41 | configure.args --mandir=/usr/share/man |
---|
42 | } |
---|