diff -buw hyperestraier.old/Portfile hyperestraier/Portfile
old
|
new
|
|
1 | | # $Id: Portfile,v 1.4 2006/04/10 15:14:47 takanori Exp $ |
| 1 | # $Id: $ |
2 | 2 | |
3 | 3 | PortSystem 1.0 |
4 | 4 | name hyperestraier |
5 | | version 1.2.1 |
| 5 | version 1.2.5 |
6 | 6 | categories textproc |
7 | | maintainers pelopor@nifty.com |
| 7 | maintainers rsky0711@gmail.com pelopor@nifty.com |
| 8 | |
| 9 | platforms darwin |
8 | 10 | description Hyper Estraier is a full-text search system. |
9 | 11 | long_description \ |
10 | 12 | Hyper Estraier is a full-text search system. You can search lots of\ |
… |
… |
|
17 | 19 | * High performance of search\ |
18 | 20 | * High scalability of target documents\ |
19 | 21 | * Perfect recall ratio by N-gram method\ |
20 | | * Phrase search, attribute search, and similarity search\ |
| 22 | * High precision by hybrid mechanism of N-gram and morphological analyzer\ |
| 23 | * Phrase search, regular expressions, attribute search, and similarity search\ |
21 | 24 | * Multilingualism with Unicode\ |
22 | 25 | * Independent of file format and repository\ |
| 26 | * Intelligent web crawler\ |
23 | 27 | * Simple and powerful API\ |
24 | | * Supporting P2P architecture (in the future)\ |
| 28 | * Supporting P2P architecture\ |
25 | 29 | \ |
26 | 30 | Hyper Estraier is an open-source software released under the terms of the\ |
27 | | GNU Lesser General Public License.\ |
28 | | |
| 31 | GNU Lesser General Public License. |
29 | 32 | homepage http://hyperestraier.sourceforge.net/ |
30 | | platforms darwin |
| 33 | master_sites ${homepage} |
| 34 | checksums md5 5d2fdeeb784cc861771ea4e2945c81e4 \ |
| 35 | sha1 d7b80db45357becdcc5840da70b46e5e239ae978 \ |
| 36 | rmd160 e27b3e86addfba7b090c69cab33eecc91b2b692d |
| 37 | |
31 | 38 | depends_build bin:pkg-config:pkgconfig |
32 | 39 | depends_lib port:qdbm port:libiconv port:zlib |
33 | | master_sites http://hyperestraier.sourceforge.net/ |
34 | | checksums md5 91e2c859510a9e30fad8b49f6affe6f1 \ |
35 | | sha1 e1aad3d5c1bdd758c2f118fa54450e8eccfa6129 \ |
36 | | rmd160 2a157a685b1df8e4e8d1c9f093c447e3a188951c |
37 | 40 | |
38 | | configure.args --mandir=${prefix}/share/man --datadir=${prefix}/share/doc |
| 41 | configure.args --mandir=${prefix}/share/man \ |
| 42 | --datadir=${prefix}/share/doc |
39 | 43 | |
40 | 44 | post-extract { |
41 | 45 | # configure |
42 | | reinplace "s|\$HOME|${prefix}|g" \ |
| 46 | reinplace "s|\$HOME|\${prefix}|g" \ |
43 | 47 | ${worksrcpath}/configure |
44 | 48 | # Makefile.in |
45 | | reinplace "s|\$(HOME)|${prefix}|g" \ |
46 | | ${worksrcpath}/Makefile.in |
47 | | reinplace "s|install_name libestraier.\$(LIBVER).dylib|install_name \$(MYLIBDIR)/libestraier.\$(LIBVER).dylib|g" \ |
| 49 | reinplace "s|\$(HOME)|\$(prefix)|g" \ |
48 | 50 | ${worksrcpath}/Makefile.in |
49 | 51 | # myconf.h |
50 | 52 | reinplace "s|lzo/|lzo2/|g" \ |
… |
… |
|
52 | 54 | } |
53 | 55 | |
54 | 56 | test.run yes |
| 57 | |
55 | 58 | platform macosx { |
56 | 59 | build.target mac |
57 | 60 | test.target check-mac |