Ticket #11980: gauche-c-wrapper.diff
File gauche-c-wrapper.diff, 2.3 KB (added by takanori@…, 18 years ago) |
---|
-
files/patch-Makefile.in
1 --- Makefile.in 2006-06-14 08:51:18.000000000 +0900 2 +++ Makefile.in.new 2006-06-14 08:51:30.000000000 +0900 3 @@ -47,7 +47,7 @@ 4 cd src; $(MAKE) install 1 --- Makefile.in.orig 2007-01-06 18:12:18.000000000 +0900 2 +++ Makefile.in 2007-05-17 20:50:30.000000000 +0900 3 @@ -49,7 +49,7 @@ 5 4 cd lib; $(MAKE) install 5 cd objc; $(MAKE) install 6 6 cd doc; $(MAKE) install 7 7 - $(INSTALL) -m 444 -T $(GAUCHE_PKGLIBDIR)/.packages $(PACKAGE).gpd 8 8 + $(INSTALL) -m 444 -T $(DESTDIR)$(GAUCHE_PKGLIBDIR)/.packages $(PACKAGE).gpd 9 9 10 10 uninstall : 11 cd src; $(MAKE) uninstall11 cd objc; $(MAKE) uninstall -
Portfile
2 2 3 3 PortSystem 1.0 4 4 name gauche-c-wrapper 5 version 0. 4.15 version 0.5.1 6 6 categories lang scheme 7 7 maintainers yuhei@pop21.odn.ne.jp 8 8 description c-wrapper is a FFI (Foreign Function Interface) for Gauche. 9 9 long_description c-wrapper is a FFI (Foreign Function Interface) for Gauche. 10 platforms darwin 10 11 homepage http://homepage.mac.com/naoki.koguro/prog/c-wrapper/index.html 11 12 master_sites http://homepage.mac.com/naoki.koguro/prog/c-wrapper/ 12 13 distname c-wrapper-$version 13 14 extract.suffix .tgz 14 checksums md5 fa829741eab77fa51cb257f9f9ae27af 15 depends_build bin:gosh:gauche 15 checksums md5 033a8f2a0b7e6d1afbd0202baccbdddc 16 patchfiles patch-Makefile.in 17 depends_lib port:gauche 18 depends_build port:boehmgc \ 19 port:texi2html 16 20 17 patchfiles patch-Makefile.in18 19 21 post-destroot { 20 xinstall -m 755 -d ${destroot}${prefix}/share/doc/gauche-c-wrapper 21 xinstall -m 644 -W ${workpath}/${worksrcdir}/doc/ \ 22 c-wrapper-refe_toc.html c-wrapper-refe.html \ 23 c-wrapper-refj_toc.html c-wrapper-refj_toc.html \ 24 ${destroot}${prefix}/share/doc/gauche-c-wrapper 25 file copy ${workpath}/${worksrcdir}/examples \ 26 ${destroot}${prefix}/share/doc/gauche-c-wrapper 22 xinstall -m 755 -d ${destroot}${prefix}/share/doc/${name} 23 eval xinstall -m 644 [glob ${worksrcpath}/doc/*.html] ${destroot}${prefix}/share/doc/${name} 24 file copy ${worksrcpath}/examples ${destroot}${prefix}/share/doc/${name} 27 25 } 28 26