Ticket #8001: Portfile.diff
File Portfile.diff, 1.6 KB (added by rsky0711@…, 19 years ago) |
---|
-
Portfile
old new 2 2 3 3 PortSystem 1.0 4 4 name hyperestraier 5 version 1.1. 45 version 1.1.6 6 6 categories textproc 7 7 maintainers pelopor@nifty.com 8 8 description Hyper Estraier is a full-text search system. … … 28 28 29 29 homepage http://hyperestraier.sourceforge.net/ 30 30 platforms darwin 31 depends_build bin:pkg-config:pkgconfig 31 32 depends_lib port:qdbm port:libiconv port:zlib 32 33 master_sites http://hyperestraier.sourceforge.net/ 33 checksums md5 591048c90f0d2a4a407b0eae05b61641 34 checksums md5 a688ebda299a033f61321f0d70adad84 \ 35 sha1 3c0e2e3d46b1301e6bf1dc0c5d75a6474c925e54 \ 36 rmd160 6812098c80463f4eb548de8e248d6c71c8030dce 34 37 35 configure.env CFLAGS="-no-cpp-precomp -L${prefix}/lib" \ 36 CPPFLAGS="-I${prefix}/include" LDFLAGS="-L${prefix}/lib" 37 configure.args --mandir=${prefix}/share/man --datadir=${prefix}/share/doc --enable-regex 38 configure.args --mandir=${prefix}/share/man --datadir=${prefix}/share/doc 39 40 post-extract { 41 reinplace "s|\$HOME|\${prefix}|g" \ 42 ${worksrcpath}/configure 43 reinplace "s|\$(HOME)|\$(prefix)|g" \ 44 ${worksrcpath}/Makefile.in 45 reinplace "s|install_name libestraier.\$(LIBVER).dylib|install_name \$(MYLIBDIR)/libestraier.\$(LIBVER).dylib|g" \ 46 ${worksrcpath}/Makefile.in 47 } 38 48 39 49 test.run yes 40 50 platform macosx { … … 43 53 destroot.target install-mac 44 54 } 45 55 56 variant mecab { 57 depends_lib-append port:mecab 58 configure.args-append --enable-mecab 59 }