Ticket #13302: bison-2.3_1.diff
File bison-2.3_1.diff, 1014 bytes (added by nox@…, 17 years ago) |
---|
-
Portfile
1 1 # $Id$ 2 2 3 PortSystem 1.0 3 PortSystem 1.0 4 4 5 name bison 5 6 version 2.3 7 revision 1 6 8 categories devel 7 9 maintainers mww 8 10 description general-purpose parser generator … … 21 23 rmd160 c6a116d6b763fad3f4df6e303943e09ed080cb26 22 24 use_bzip2 yes 23 25 24 depends_lib port:gettext port:m4 26 depends_lib port:gettext \ 27 port:libiconv 28 depends_run port:m4 25 29 26 30 configure.args --infodir=${prefix}/share/info \ 27 31 --mandir=${prefix}/share/man \ 28 32 --disable-yacc 29 33 34 post-destroot { 35 set docdir ${prefix}/share/doc/${name}-${version} 36 xinstall -d ${destroot}${docdir} 37 xinstall -m 0644 -W ${worksrcpath} AUTHORS COPYING ChangeLog NEWS THANKS TODO \ 38 ${destroot}${docdir} 39 } 40 30 41 test.run yes 31 42 test.target check 32 43