diff options
author | Pav Lucistnik <pav@FreeBSD.org> | 2005-09-04 14:23:55 +0000 |
---|---|---|
committer | Pav Lucistnik <pav@FreeBSD.org> | 2005-09-04 14:23:55 +0000 |
commit | 24aa3e3720cdb7c1e69ea6f0a9c199ac16c57d0e (patch) | |
tree | c2db109efe8ee6b2590db330a533083081192604 /devel/py-ice/files/patch-Makefile | |
parent | - Unbreak vpnc-disconnect by fixing the config.c patch (diff) |
Ice language mapping for Python.
Internet Communications Engine (Ice) is a modern alternative to object
middleware such as CORBA(TM) or COM/DCOM/COM+.
PR: ports/85546
Submitted by: Boris B. Samorodov <bsam@ipt.ru>
Diffstat (limited to 'devel/py-ice/files/patch-Makefile')
-rw-r--r-- | devel/py-ice/files/patch-Makefile | 76 |
1 files changed, 76 insertions, 0 deletions
diff --git a/devel/py-ice/files/patch-Makefile b/devel/py-ice/files/patch-Makefile new file mode 100644 index 000000000000..0a3f578f112e --- /dev/null +++ b/devel/py-ice/files/patch-Makefile @@ -0,0 +1,76 @@ +--- Makefile.orig Tue Aug 30 21:50:09 2005 ++++ Makefile Tue Aug 30 21:27:37 2005 +@@ -26,11 +26,11 @@ + $(call mkdir,$(install_libdir)) ; \ + fi + +- @if test ! -d $(install_slicedir) ; \ +- then \ +- echo "Creating $(install_slicedir)..." ; \ +- $(call mkdir,$(install_slicedir)) ; \ +- fi ++# @if test ! -d $(install_slicedir) ; \ ++# then \ ++# echo "Creating $(install_slicedir)..." ; \ ++# $(call mkdir,$(install_slicedir)) ; \ ++# fi + + @if test ! -d $(install_pythondir) ; \ + then \ +@@ -45,32 +45,32 @@ + ( cd $$subdir && $(MAKE) $@ ) || exit 1; \ + done + +-install:: +- @if test -d slice ; \ +- then \ +- cd slice ; \ +- for i in * ; \ +- do \ +- if test ! -d $(install_slicedir)/$$i ; \ +- then \ +- echo "Creating $(install_slicedir)/$$i..." ; \ +- mkdir $(install_slicedir)/$$i ; \ +- chmod a+rx $(install_slicedir)/$$i ; \ +- fi ; \ +- cd $$i ; \ +- for f in *.ice ; \ +- do \ +- echo "Installing $$i/$$f" ; \ +- $(INSTALL_DATA) $$f $(install_slicedir)/$$i ; \ +- chmod a+r $(install_slicedir)/$$i/$$f ; \ +- done ; \ +- cd .. ; \ +- done \ +- fi ++#install:: ++# @if test -d slice ; \ ++# then \ ++# cd slice ; \ ++# for i in * ; \ ++# do \ ++# if test ! -d $(install_slicedir)/$$i ; \ ++# then \ ++# echo "Creating $(install_slicedir)/$$i..." ; \ ++# mkdir $(install_slicedir)/$$i ; \ ++# chmod a+rx $(install_slicedir)/$$i ; \ ++# fi ; \ ++# cd $$i ; \ ++# for f in *.ice ; \ ++# do \ ++# echo "Installing $$i/$$f" ; \ ++# $(INSTALL_DATA) $$f $(install_slicedir)/$$i ; \ ++# chmod a+r $(install_slicedir)/$$i/$$f ; \ ++# done ; \ ++# cd .. ; \ ++# done \ ++# fi + + install:: +- $(call installdata,ICE_LICENSE,$(prefix)) +- $(call installdata,LICENSE,$(prefix)) ++ $(call installdata,ICE_LICENSE,$(install_libdir)) ++ $(call installdata,LICENSE,$(install_libdir)) + + test:: + @python $(top_srcdir)/allTests.py |