aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'dev-libs/nspr/files/pkgconfig.patch')
-rw-r--r--dev-libs/nspr/files/pkgconfig.patch129
1 files changed, 0 insertions, 129 deletions
diff --git a/dev-libs/nspr/files/pkgconfig.patch b/dev-libs/nspr/files/pkgconfig.patch
deleted file mode 100644
index 25ad5bd..0000000
--- a/dev-libs/nspr/files/pkgconfig.patch
+++ /dev/null
@@ -1,129 +0,0 @@
-diff -r 40ebe6af8a66 nsprpub/config/Makefile.in
---- a/nsprpub/config/Makefile.in Sat Apr 16 17:57:51 2011 +0200
-+++ b/nsprpub/config/Makefile.in Sat Apr 16 19:03:01 2011 +0200
-@@ -52,9 +52,10 @@
-
- # autoconf.mk must be deleted last (from the top-level directory)
- # because it is included by every makefile.
--DIST_GARBAGE = nsprincl.mk nsprincl.sh nspr-config
-+DIST_GARBAGE = nsprincl.mk nsprincl.sh nspr-config nspr.pc
-
- RELEASE_BINS = nspr-config
-+RELEASE_PC = nspr.pc
-
- include $(topsrcdir)/config/config.mk
-
-diff -r 40ebe6af8a66 nsprpub/config/config.mk
---- a/nsprpub/config/config.mk Sat Apr 16 17:57:51 2011 +0200
-+++ b/nsprpub/config/config.mk Sat Apr 16 19:03:01 2011 +0200
-@@ -175,6 +175,7 @@
- RELEASE_INCLUDE_DIR = $(RELEASE_DIR)/$(BUILD_NUMBER)/$(OBJDIR_NAME)/include
- RELEASE_BIN_DIR = $(RELEASE_DIR)/$(BUILD_NUMBER)/$(OBJDIR_NAME)/bin
- RELEASE_LIB_DIR = $(RELEASE_DIR)/$(BUILD_NUMBER)/$(OBJDIR_NAME)/lib
-+RELEASE_PC_DIR = $(RELEASE_LIB_DIR)/pkgconfig
-
- # autoconf.mk sets OBJ_SUFFIX to an error to avoid use before including
- # this file
-diff -r 40ebe6af8a66 nsprpub/config/nspr-config.in
---- a/nsprpub/config/nspr-config.in Sat Apr 16 17:57:51 2011 +0200
-+++ b/nsprpub/config/nspr-config.in Sat Apr 16 19:03:01 2011 +0200
-@@ -92,13 +92,13 @@
-
- # Set variables that may be dependent upon other variables
- if test -z "$exec_prefix"; then
-- exec_prefix=@exec_prefix@
-+ exec_prefix=`pkg-config --variable=exec_prefix nspr`
- fi
- if test -z "$includedir"; then
-- includedir=@includedir@
-+ includedir=`pkg-config --variable=includedir nspr`
- fi
- if test -z "$libdir"; then
-- libdir=@libdir@
-+ libdir=`pkg-config --variable=libdir nspr`
- fi
-
- if test "$echo_prefix" = "yes"; then
-diff -r 40ebe6af8a66 nsprpub/config/nspr.pc.in
---- /dev/null Thu Jan 01 00:00:00 1970 +0000
-+++ b/nsprpub/config/nspr.pc.in Sat Apr 16 19:03:01 2011 +0200
-@@ -0,0 +1,11 @@
-+prefix=@prefix@
-+exec_prefix=@exec_prefix@
-+libdir=@libdir@
-+includedir=@includedir@
-+
-+Name: NSPR
-+Description: The Netscape Portable Runtime
-+Version: @MOD_MAJOR_VERSION@.@MOD_MINOR_VERSION@.@MOD_PATCH_VERSION@
-+Libs: -L${libdir} -lplds@MOD_MAJOR_VERSION@ -lplc@MOD_MAJOR_VERSION@ -lnspr@MOD_MAJOR_VERSION@ -lpthread -Wl,-R${libdir}
-+Cflags: -I${includedir}
-+
-diff -r 40ebe6af8a66 nsprpub/config/rules.mk
---- a/nsprpub/config/rules.mk Sat Apr 16 17:57:51 2011 +0200
-+++ b/nsprpub/config/rules.mk Sat Apr 16 19:03:01 2011 +0200
-@@ -207,7 +207,7 @@
- rm -rf $(wildcard *.OBJ *.OBJD) dist $(ALL_TRASH) $(DIST_GARBAGE)
- +$(LOOP_OVER_DIRS)
-
--install:: $(RELEASE_BINS) $(RELEASE_HEADERS) $(RELEASE_LIBS)
-+install:: $(RELEASE_BINS) $(RELEASE_HEADERS) $(RELEASE_LIBS) $(RELEASE_PC)
- ifdef RELEASE_BINS
- $(NSINSTALL) -t -m 0755 $(RELEASE_BINS) $(DESTDIR)$(bindir)
- endif
-@@ -217,6 +217,9 @@
- ifdef RELEASE_LIBS
- $(NSINSTALL) -t -m 0755 $(RELEASE_LIBS) $(DESTDIR)$(libdir)/$(lib_subdir)
- endif
-+ifdef RELEASE_PC
-+ $(NSINSTALL) -t -m 0644 $(RELEASE_PC) $(DESTDIR)$(libdir)/pkgconfig/
-+endif
- +$(LOOP_OVER_DIRS)
-
- release:: export
-@@ -252,6 +255,23 @@
- fi
- cp $(RELEASE_HEADERS) $(RELEASE_HEADERS_DEST)
- endif
-+ifdef RELEASE_PC
-+ @echo "Copying pkg-config files to release directory"
-+ @if test -z "$(BUILD_NUMBER)"; then \
-+ echo "BUILD_NUMBER must be defined"; \
-+ false; \
-+ else \
-+ true; \
-+ fi
-+ @if test ! -d $(RELEASE_PC_DEST); then \
-+ rm -rf $(RELEASE_PC_DEST); \
-+ $(NSINSTALL) -D $(RELEASE_PC_DEST);\
-+ else \
-+ true; \
-+ fi
-+ cp $(RELEASE_PC) $(RELEASE_PC_DEST)
-+endif
-+
- +$(LOOP_OVER_DIRS)
-
- alltags:
-diff -r 40ebe6af8a66 nsprpub/configure.in
---- a/nsprpub/configure.in Sat Apr 16 17:57:51 2011 +0200
-+++ b/nsprpub/configure.in Sat Apr 16 19:03:01 2011 +0200
-@@ -3348,6 +3348,7 @@
- config/nsprincl.mk
- config/nsprincl.sh
- config/nspr-config
-+ config/nspr.pc
- lib/Makefile
- lib/ds/Makefile
- lib/libc/Makefile
-diff -r 40ebe6af8a66 nsprpub/configure
---- a/nsprpub/configure Sat Apr 16 17:57:51 2011 +0200
-+++ b/nsprpub/configure Sat Apr 16 19:03:01 2011 +0200
-@@ -6676,6 +6676,7 @@
- config/nsprincl.mk
- config/nsprincl.sh
- config/nspr-config
-+ config/nspr.pc
- lib/Makefile
- lib/ds/Makefile
- lib/libc/Makefile