Ticket #730: Portfile-less-381

File Portfile-less-381, 1.4 KB (added by mike.mclean@…, 21 years ago)

Portfile for less v381

Line 
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
13PortSystem          1.0
14name                less
15version             381
16categories          textproc
17maintainers         mike.mclean@pobox.com
18
19description         Less is a program similar to more, which allows backward movement. \
20                    The +override_system variant will force install in /usr/bin
21
22long_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
29homepage            http://www.greenwoodsoftware.com/less/index.html
30
31platforms           darwin
32
33master_sites        http://www.greenwoodsoftware.com/less/ \
34                    ftp://ftp.gnu.org/gnu/less/
35
36checksums           md5 40c2dd4ac137b61b6a55a6478817daf4
37
38
39variant             override_system {
40                        prefix /usr
41                        configure.args --mandir=/usr/share/man
42                        }