1 | # -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4 |
---|
2 | # $Id$ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | |
---|
6 | name rhyme |
---|
7 | version 0.9 |
---|
8 | categories spelling |
---|
9 | platforms darwin |
---|
10 | license GPL-2 |
---|
11 | maintainers gmail.com:israelchauca |
---|
12 | description Rhyming dictionary. |
---|
13 | long_description Command-line program that takes a word and returns to you \ |
---|
14 | a formatted list of all words that rhyme with it. |
---|
15 | homepage http://rhyme.sourceforge.net/ |
---|
16 | master_sites sourceforge:project/rhyme/rhyme/${version} |
---|
17 | checksums rmd160 5049ee3f2ad6d56d03fd28a7399129213f4ca808 \ |
---|
18 | sha256 11d4862cc3adfc18ea83ca233854c562fcebdc838fa7fb62de6ef3f63f992bd4 |
---|
19 | |
---|
20 | depends_lib port:gdbm |
---|
21 | |
---|
22 | patchfiles patch-Makefile.diff |
---|
23 | |
---|
24 | use_configure no |
---|
25 | |
---|
26 | build.env-append FLAGS="${configure.cflags} [get_canonical_archflags]" |
---|
27 | |
---|
28 | build.args-append -j1 \ |
---|
29 | PREFIX=${prefix} \ |
---|
30 | CC=${configure.cc} |
---|
31 | |
---|
32 | destroot.args-append DESTDIR=${destroot} \ |
---|
33 | PREFIX=${prefix} |
---|
34 | |
---|
35 | livecheck.type regex |
---|
36 | livecheck.url http://sourceforge.net/projects/$name/files/$name/ |
---|
37 | livecheck.regex /${name}/(\[0-9.\]+)/ |
---|