summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohannes Huber <johu@gentoo.org>2018-05-20 14:20:27 +0200
committerJohannes Huber <johu@gentoo.org>2018-05-20 14:20:27 +0200
commite79d7f6da1496a32d3a9842550f48fa58b95f45a (patch)
treee5b7751cb6dc6ae7becd17daa1f67a46c701c0da /app-arch/xar/files/xar-1.5.2-respect_ldflags.patch
parentapp-admin/conserver: Remove 8.1.18 (r0) (diff)
downloadgentoo-e79d7f6da1496a32d3a9842550f48fa58b95f45a.tar.gz
gentoo-e79d7f6da1496a32d3a9842550f48fa58b95f45a.tar.bz2
gentoo-e79d7f6da1496a32d3a9842550f48fa58b95f45a.zip
app-arch/xar: Remove 1.5.2-r1
Uses deprecated EAPI 4 and overshadowed by 1.8-r1. Package-Manager: Portage-2.3.38, Repoman-2.3.9
Diffstat (limited to 'app-arch/xar/files/xar-1.5.2-respect_ldflags.patch')
-rw-r--r--app-arch/xar/files/xar-1.5.2-respect_ldflags.patch21
1 files changed, 0 insertions, 21 deletions
diff --git a/app-arch/xar/files/xar-1.5.2-respect_ldflags.patch b/app-arch/xar/files/xar-1.5.2-respect_ldflags.patch
deleted file mode 100644
index 1ac090d94863..000000000000
--- a/app-arch/xar/files/xar-1.5.2-respect_ldflags.patch
+++ /dev/null
@@ -1,21 +0,0 @@
-diff -ur xar-1.5.2.orig/lib/Makefile.inc.in xar-1.5.2/lib/Makefile.inc.in
---- xar-1.5.2.orig/lib/Makefile.inc.in 2007-12-29 20:49:57.000000000 +0200
-+++ xar-1.5.2/lib/Makefile.inc.in 2010-04-07 01:18:59.027890429 +0300
-@@ -134,7 +134,7 @@
- $(LIBRXAR_S) : $(LIBXAR_SRCS:@srcroot@%.c=@objroot@%.o)
- @mkdir -p $(@D)
- ifeq (elf, @abi@)
-- $(CC) -shared -Wl,-soname,$(LIBXAR_SNAME) -o $@ $+ @LIBS@
-+ $(CC) -shared -Wl,-soname,$(LIBXAR_SNAME) -o $@ $+ $(LDFLAGS) @LIBS@
- endif
- ifeq (macho, @abi@)
- $(CC) -dynamiclib -compatibility_version @LIB_REV@ -current_version @LIB_REV@ -install_name @abs_objroot@$(LIBRXAR_S) -o $@ $+ $(LDFLAGS) @LIBS@
-@@ -150,7 +150,7 @@
- $(LIBXAR_S) : $(LIBXAR_SRCS:@srcroot@%.c=@objroot@%.o)
- @mkdir -p $(@D)
- ifeq (elf, @abi@)
-- $(CC) -shared -Wl,-soname,$(LIBXAR_SNAME) -o $@ $+ @LIBS@
-+ $(CC) -shared -Wl,-soname,$(LIBXAR_SNAME) -o $@ $+ $(LDFLAGS) @LIBS@
- endif
- ifeq (macho, @abi@)
- $(CC) -dynamiclib -compatibility_version @LIB_REV@ -current_version @LIB_REV@ -install_name $(LIBDIR)/$(LIBXAR_SNAME) -o $@ $+ $(LDFLAGS) @LIBS@