1 | # -*- coding: utf-8; mode: tcl; tab-width: 4; truncate-lines: t; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:et:sw=4:ts=4:sts=4 |
---|
2 | # $Id$ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | |
---|
6 | name iselect |
---|
7 | version 1.4.0 |
---|
8 | categories sysutils |
---|
9 | maintainers pixilla |
---|
10 | platforms darwin |
---|
11 | description OSSP iselect is an interactive line selection tool for textual files, \ |
---|
12 | operating via a full-screen Curses-based terminal session. |
---|
13 | long_description OSSP iselect is an interactive line selection tool for textual files, \ |
---|
14 | operating via a full-screen Curses-based terminal session. It can be used \ |
---|
15 | either as an user interface frontend controlled by a scripting backend as its \ |
---|
16 | wrapper or in batch mode as a pipeline filter (usually between grep and the \ |
---|
17 | final executing command). |
---|
18 | homepage http://www.ossp.org/pkg/tool/iselect/ |
---|
19 | master_sites ftp://ftp.ossp.org/pkg/tool/iselect |
---|
20 | |
---|
21 | checksums sha1 e80fd5d161480182cc96080002a5fcce33c4f7d6 \ |
---|
22 | rmd160 cc836e69d61e5a32903b113836de29669aab8055 |
---|
23 | |
---|
24 | depends_lib port:ncurses |
---|
25 | |
---|
26 | pre-configure { |
---|
27 | reinplace "s|\$\{exec_prefix\}/man|@mandir@|g" ${worksrcpath}/Makefile.in |
---|
28 | reinplace "s|\$\(bindir\)|\$\(DESTDIR)\$\(bindir\)|g" ${worksrcpath}/Makefile.in |
---|
29 | reinplace "s|\$\(mandir\)|\$\(DESTDIR)\$\(mandir\)|g" ${worksrcpath}/Makefile.in |
---|
30 | } |
---|
31 | |
---|
32 | livecheck.type regex |
---|
33 | livecheck.url ${homepage} |
---|
34 | livecheck.regex "${name}-(\\d+(?:\\.\\d+)*)${extract.suffix}" |
---|