55 lines
1.3 KiB
Plaintext
55 lines
1.3 KiB
Plaintext
|
#! /bin/sh /usr/share/dpatch/dpatch-run
|
||
|
## 01_build_nx-X11_without_nxcomp.dpatch by <marceloshima@gmail.com>
|
||
|
##
|
||
|
## All lines beginning with `## DP:' are a description of the patch.
|
||
|
## DP: Correct build without nxcomp and nxcompext
|
||
|
|
||
|
@DPATCH@
|
||
|
Index: nx-x11-ubuntu/lib/X11/Imakefile
|
||
|
===================================================================
|
||
|
--- nx-x11-ubuntu.orig/lib/X11/Imakefile 2010-03-18 17:43:37.333686996 -0300
|
||
|
+++ nx-x11-ubuntu/lib/X11/Imakefile 2010-03-18 17:52:15.493687076 -0300
|
||
|
@@ -1150,30 +1150,30 @@
|
||
|
#if NXLibraries
|
||
|
|
||
|
$(NX_XCOMPCONFIGTARGET):
|
||
|
- cd ../../../nxcomp && \
|
||
|
- ./configure
|
||
|
+# cd ../../../nxcomp && \
|
||
|
+# ./configure
|
||
|
|
||
|
$(NX_XCOMPEXTCONFIGTARGET):
|
||
|
- cd ../../../nxcompext && \
|
||
|
- ./configure
|
||
|
+# cd ../../../nxcompext && \
|
||
|
+# ./configure
|
||
|
|
||
|
#ifdef SunArchitecture
|
||
|
$(NX_XCOMPLIBTARGET): $(NX_XCOMPCONFIGTARGET)
|
||
|
- cd $(NX_XCOMPLIBDIR) && \
|
||
|
- gmake
|
||
|
+# cd $(NX_XCOMPLIBDIR) && \
|
||
|
+# gmake
|
||
|
|
||
|
$(NX_XCOMPEXTLIBTARGET): $(NX_XCOMPEXTCONFIGTARGET)
|
||
|
- cd ../../../nxcompext && \
|
||
|
- gmake
|
||
|
+# cd ../../../nxcompext && \
|
||
|
+# gmake
|
||
|
|
||
|
#else
|
||
|
$(NX_XCOMPLIBTARGET): $(NX_XCOMPCONFIGTARGET)
|
||
|
- cd $(NX_XCOMPLIBDIR) && \
|
||
|
- make
|
||
|
+# cd $(NX_XCOMPLIBDIR) && \
|
||
|
+# make
|
||
|
|
||
|
$(NX_XCOMPEXTLIBTARGET): $(NX_XCOMPEXTCONFIGTARGET)
|
||
|
- cd ../../../nxcompext && \
|
||
|
- make
|
||
|
+# cd ../../../nxcompext && \
|
||
|
+# make
|
||
|
|
||
|
#endif
|
||
|
|