diff --git a/audio/speex-devel/Portfile b/audio/speex-devel/Portfile
index 690f26facd..471e634bd3 100644
a
|
b
|
|
1 | 1 | # -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:filetype=tcl:et:sw=4:ts=4:sts=4 |
2 | 2 | |
3 | 3 | PortSystem 1.0 |
| 4 | |
| 5 | # speex-devel is the same as speex, and |
| 6 | # speexdsp-devel is the same as speexdsp. |
| 7 | # Remove them completely on Apr 2, 2018 |
| 8 | replaced_by speex |
| 9 | PortGroup 1.0 |
| 10 | |
4 | 11 | name speex-devel |
| 12 | revision 1 |
| 13 | |
5 | 14 | version 1.2.0 |
6 | 15 | categories audio |
7 | 16 | license BSD |
… |
… |
long_description Speex is an Open Source/Free Software \ |
20 | 29 | not present in most other codecs. |
21 | 30 | |
22 | 31 | homepage http://speex.org/ |
23 | | platforms darwin |
24 | | |
25 | | master_sites http://downloads.xiph.org/releases/speex |
26 | | |
27 | | use_parallel_build yes |
28 | 32 | |
29 | 33 | subport speexDSP-devel {} |
30 | 34 | |
31 | | livecheck.regex "speex-((\[0-9rc.\]+)?)${extract.suffix}" |
32 | | |
33 | 35 | if {${subport} eq ${name}} { |
34 | 36 | conflicts speex |
35 | | |
36 | | checksums rmd160 898a8746130794b2b5778f339ca72f99fb903e72 \ |
37 | | sha256 eaae8af0ac742dc7d542c9439ac72f1f385ce838392dc849cae4536af9210094 |
38 | | |
39 | 37 | distname speex-${version} |
40 | | |
41 | | depends_lib port:libogg |
42 | 38 | } else { |
43 | | set real_name "speexdsp" |
44 | | |
45 | 39 | description Speex audio processing library |
46 | | |
47 | 40 | version 1.2rc3 |
48 | | |
49 | 41 | conflicts speexDSP |
50 | | |
51 | | checksums rmd160 65b99919abd7d7bd139d50669afffc3823f06e6f \ |
52 | | sha256 4ae688600039f5d224bdf2e222d2fbde65608447e4c2f681585e4dca6df692f1 |
53 | | |
54 | | distname ${real_name}-${version} |
55 | | |
56 | | livecheck.regex "${real_name}-((\[0-9rc.\]+)?)${extract.suffix}" |
57 | 42 | } |
diff --git a/audio/speex/Portfile b/audio/speex/Portfile
index 9c1e305e96..e1a472eb7b 100644
a
|
b
|
long_description Speex is an Open Source/Free Software \ |
22 | 22 | homepage http://speex.org/ |
23 | 23 | platforms darwin |
24 | 24 | |
25 | | conflicts ${subport}-devel |
26 | | |
27 | 25 | master_sites http://downloads.xiph.org/releases/speex |
28 | 26 | |
29 | 27 | use_parallel_build yes |