diff options
author | Jakub Jirutka <jakub@jirutka.cz> | 2017-12-01 17:26:53 +0100 |
---|---|---|
committer | Jakub Jirutka <jakub@jirutka.cz> | 2017-12-01 17:26:53 +0100 |
commit | 3ce3c4fd596debefbad77328a9b62a39eccf753c (patch) | |
tree | 8ea8842d946335dbd124e71336a11b928481c544 /unmaintained/libx86/libx86-add-pkgconfig.patch | |
parent | 62b8ba5f8fe6d62d56b2d078b4f12f72830ee4af (diff) | |
download | aports-3ce3c4fd596debefbad77328a9b62a39eccf753c.tar.bz2 aports-3ce3c4fd596debefbad77328a9b62a39eccf753c.tar.xz |
unmaintained/*: purge aports not touched since v3.5.0
We agreed with ncopa on #alpine-devel (2017-12-01 16:20 UTC) to
periodically purge aports in unmaintained that haven't been touched
in last 1 year (2 releases).
Diffstat (limited to 'unmaintained/libx86/libx86-add-pkgconfig.patch')
-rw-r--r-- | unmaintained/libx86/libx86-add-pkgconfig.patch | 64 |
1 files changed, 0 insertions, 64 deletions
diff --git a/unmaintained/libx86/libx86-add-pkgconfig.patch b/unmaintained/libx86/libx86-add-pkgconfig.patch deleted file mode 100644 index 3aeaff7918..0000000000 --- a/unmaintained/libx86/libx86-add-pkgconfig.patch +++ /dev/null @@ -1,64 +0,0 @@ -From fc4f25c4d16aaff7dcb5dd42cc20b292f4eb2218 Mon Sep 17 00:00:00 2001 -From: Dave Airlie <airlied@redhat.com> -Date: Tue, 4 Aug 2009 13:08:42 +1000 -Subject: [PATCH] git add x86.pc - ---- - Makefile | 15 ++++++++++++--- - x86.pc.in | 10 ++++++++++ - 2 files changed, 22 insertions(+), 3 deletions(-) - create mode 100644 x86.pc.in - -diff --git a/Makefile b/Makefile -index 951b617..953a499 100644 ---- a/Makefile -+++ b/Makefile -@@ -1,6 +1,7 @@ - OBJECTS = x86-common.o - CFLAGS ?= -O2 -Wall -DDEBUG -g - LIBDIR ?= /usr/lib -+INCLUDEDIR ?= /usr/include - - ifeq ($(BACKEND),x86emu) - OBJECTS += thunk.o x86emu/decode.o x86emu/debug.o x86emu/fpu.o \ -@@ -29,10 +30,18 @@ objclean: - rm -f *.o *~ - - clean: objclean -- rm -f *.so.1 *.a -+ rm -f *.so.1 *.a x86.pc - --install: libx86.so.1 -+x86.pc: -+ sed -e's,@prefix@,/usr,' x86.pc.in > x86.pc -+ sed -e's,@exec_prefix@,/usr,' -i x86.pc -+ sed -e's,@libdir@,${LIBDIR},' -i x86.pc -+ sed -e's,@includedir@,${INCLUDEDIR},' -i x86.pc -+ sed -e's,@PACKAGE_VERSION@,1.1,' -i x86.pc -+ -+install: libx86.so.1 x86.pc - install -D libx86.so.1 $(DESTDIR)$(LIBDIR)/libx86.so.1 - install -D libx86.a $(DESTDIR)$(LIBDIR)/libx86.a -+ install -D x86.pc $(DESTDIR)$(LIBDIR)/pkgconfig/x86.pc - ln -sf libx86.so.1 $(DESTDIR)$(LIBDIR)/libx86.so -- install -p -m 0644 -D lrmi.h $(DESTDIR)/usr/include/libx86.h -+ install -p -m 0644 -D lrmi.h $(DESTDIR)$(INCLUDEDIR)/libx86.h -diff --git a/x86.pc.in b/x86.pc.in -new file mode 100644 -index 0000000..711d90d ---- /dev/null -+++ b/x86.pc.in -@@ -0,0 +1,10 @@ -+prefix=@prefix@ -+exec_prefix=@exec_prefix@ -+libdir=@libdir@ -+includedir=@includedir@ -+ -+Name: x86 -+Description: Library providing x86 emulator access -+Version: @PACKAGE_VERSION@ -+Cflags: -I${includedir} -+Libs: -L${libdir} -lx86 --- -1.5.4.1 - |