diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2011-12-28 23:18:58 +0100 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2011-12-28 23:18:58 +0100 |
commit | 3c2fe1ace2ce02a02d65d6eeb0ae05b2da395ab1 (patch) | |
tree | b6292d75e77fc3c62f54a28958f2ac738b405cf8 /debian/patches/013_nxcompext_makefile-uninstall.patch | |
parent | 082c8ae3a7a46a62367e2c2ffca637c363ac6c53 (diff) | |
download | nx-libs-3c2fe1ace2ce02a02d65d6eeb0ae05b2da395ab1.tar.gz nx-libs-3c2fe1ace2ce02a02d65d6eeb0ae05b2da395ab1.tar.bz2 nx-libs-3c2fe1ace2ce02a02d65d6eeb0ae05b2da395ab1.zip |
Change naming scheme of patch files.
Diffstat (limited to 'debian/patches/013_nxcompext_makefile-uninstall.patch')
-rw-r--r-- | debian/patches/013_nxcompext_makefile-uninstall.patch | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/debian/patches/013_nxcompext_makefile-uninstall.patch b/debian/patches/013_nxcompext_makefile-uninstall.patch new file mode 100644 index 000000000..f4002a565 --- /dev/null +++ b/debian/patches/013_nxcompext_makefile-uninstall.patch @@ -0,0 +1,50 @@ +Index: nx-libs/nxcompext/Makefile.in +=================================================================== +--- nx-libs.orig/nxcompext/Makefile.in 2011-12-05 09:20:15.000000000 +0100 ++++ nx-libs/nxcompext/Makefile.in 2011-12-05 09:24:37.000000000 +0100 +@@ -60,7 +60,9 @@ + INSTALL = @INSTALL@ + INSTALL_PROGRAM = @INSTALL_PROGRAM@ + INSTALL_DATA = @INSTALL_DATA@ +- ++INSTALL_LINK = cp -av ++DESTDIR = ++RM_FILE = rm -f + # + # This should be autodetected. + # +@@ -147,12 +149,33 @@ + fi + touch depend.status + +-install: install.bin install.man ++install: install.bin install.lib install.man + + install.bin: + ++install.lib: all ++ ./mkinstalldirs $(DESTDIR)$(prefix)/lib/nx ++ ./mkinstalldirs $(DESTDIR)$(prefix)/include/nx ++ $(INSTALL_DATA) libXcompext.so.* $(DESTDIR)$(prefix)/lib/nx ++ $(INSTALL_LINK) libXcompext.so $(DESTDIR)$(prefix)/lib/nx ++ $(INSTALL_DATA) NX*.h $(DESTDIR)$(prefix)/include/nx ++ echo "Running ldconfig tool, this may take a while..." && ldconfig || true ++ + install.man: + ++uninstall: uninstall.bin uninstall.lib uninstall.man ++ ++uninstall.bin: ++ ++uninstall.lib: ++ $(RM_FILE) $(DESTDIR)$(prefix)/lib/nx/libXcompext.so.* ++ $(RM_FILE) $(DESTDIR)$(prefix)/lib/nx/libXcompext.so ++ $(RM_FILE) $(DESTDIR)$(prefix)/include/nx/NXlib.h ++ $(RM_FILE) $(DESTDIR)$(prefix)/include/nx/NXlibint.h ++ echo "Running ldconfig tool, this may take a while..." && ldconfig || true ++ ++uninstall.man: ++ + clean: + -rm -f *~ *.o *.bak *.orig *.rej st?????? core core.* *.out.* \ + @ALL@ |