public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in sys-freebsd/freebsd-lib/files: freebsd-lib-9.2-liblink.patch
@ 2013-08-11 20:31 Alexis Ballier (aballier)
  0 siblings, 0 replies; 3+ messages in thread
From: Alexis Ballier (aballier) @ 2013-08-11 20:31 UTC (permalink / raw
  To: gentoo-commits

aballier    13/08/11 20:31:07

  Added:                freebsd-lib-9.2-liblink.patch
  Log:
  Build our own libelf, bug #479494 by Yuta SATOH
  
  (Portage version: 2.2.0_alpha196/cvs/Linux x86_64, signed Manifest commit with key 160F534A)

Revision  Changes    Path
1.1                  sys-freebsd/freebsd-lib/files/freebsd-lib-9.2-liblink.patch

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-freebsd/freebsd-lib/files/freebsd-lib-9.2-liblink.patch?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-freebsd/freebsd-lib/files/freebsd-lib-9.2-liblink.patch?rev=1.1&content-type=text/plain

Index: freebsd-lib-9.2-liblink.patch
===================================================================
diff --git a/lib/libdwarf/Makefile b/lib/libdwarf/Makefile
index 87ce8d4..77d0535 100644
--- a/lib/libdwarf/Makefile
+++ b/lib/libdwarf/Makefile
@@ -21,6 +21,7 @@ SRCS=	\
 INCS=	dwarf.h libdwarf.h
 
 CFLAGS+=	-I${.CURDIR}
+CFLAGS+=	-I${.CURDIR}/../libelf
 
 SHLIB_MAJOR=	3
 
diff --git a/lib/libproc/Makefile b/lib/libproc/Makefile
index e20e00a..77d46d7 100644
--- a/lib/libproc/Makefile
+++ b/lib/libproc/Makefile
@@ -12,9 +12,13 @@ SRCS=	proc_bkpt.c		\
 INCS=	libproc.h
 
 CFLAGS+=	-I${.CURDIR}
+CFLAGS+=	-I${.CURDIR}/../libelf
 
 SHLIB_MAJOR=	2
 
 WITHOUT_MAN=
 
+LDADD+=		-lelf
+LDFLAGS+=	-L${.OBJDIR}/../libelf
+
 .include <bsd.lib.mk>
diff --git a/lib/librtld_db/Makefile b/lib/librtld_db/Makefile
index 783fb8b..62e7c60 100644
--- a/lib/librtld_db/Makefile
+++ b/lib/librtld_db/Makefile
@@ -10,5 +10,8 @@ SRCS=		rtld_db.c
 INCS=		rtld_db.h
 
 CFLAGS+= -I${.CURDIR}
+CFLAGS+= -I${.CURDIR}/../libelf
+LDADD+= -lutil -lproc
+LDFLAGS+= -L${.OBJDIR}/../libutil -L${.OBJDIR}/../libproc
 
 .include <bsd.lib.mk>
diff -uNr lib.old/libprocstat/Makefile lib/libprocstat/Makefile
--- a/lib/libprocstat/Makefile	2013-08-11 16:00:47.000000000 -0400
+++ b/lib/libprocstat/Makefile	2013-08-11 16:18:19.000000000 -0400
@@ -17,6 +17,8 @@
 SYMBOL_MAPS=	${.CURDIR}/Symbol.map
 
 INCS=		libprocstat.h
+CFLAGS+=	-I${.CURDIR}/../libelf
+LDFLAGS+=       -L${.OBJDIR}/../libelf
 CFLAGS+=	-I. -I${.CURDIR} -D_KVM_VNODE
 SHLIB_MAJOR=	1
 





^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [gentoo-commits] gentoo-x86 commit in sys-freebsd/freebsd-lib/files: freebsd-lib-9.2-liblink.patch
@ 2013-08-12 15:03 Alexis Ballier (aballier)
  0 siblings, 0 replies; 3+ messages in thread
From: Alexis Ballier (aballier) @ 2013-08-12 15:03 UTC (permalink / raw
  To: gentoo-commits

aballier    13/08/12 15:03:30

  Modified:             freebsd-lib-9.2-liblink.patch
  Log:
  Update the liblink patch for libcam, bug #480730 by  Yuta SATOH
  
  (Portage version: 2.2.0_alpha196/cvs/Linux x86_64, signed Manifest commit with key 160F534A)

Revision  Changes    Path
1.2                  sys-freebsd/freebsd-lib/files/freebsd-lib-9.2-liblink.patch

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-freebsd/freebsd-lib/files/freebsd-lib-9.2-liblink.patch?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-freebsd/freebsd-lib/files/freebsd-lib-9.2-liblink.patch?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-freebsd/freebsd-lib/files/freebsd-lib-9.2-liblink.patch?r1=1.1&r2=1.2

Index: freebsd-lib-9.2-liblink.patch
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-freebsd/freebsd-lib/files/freebsd-lib-9.2-liblink.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- freebsd-lib-9.2-liblink.patch	11 Aug 2013 20:31:07 -0000	1.1
+++ freebsd-lib-9.2-liblink.patch	12 Aug 2013 15:03:30 -0000	1.2
@@ -53,3 +53,15 @@
  CFLAGS+=	-I. -I${.CURDIR} -D_KVM_VNODE
  SHLIB_MAJOR=	1
  
+diff --git a/lib/libcam/Makefile b/lib/libcam/Makefile
+index fcb16de..6d0312b 100644
+--- a/lib/libcam/Makefile
++++ b/lib/libcam/Makefile
+@@ -8,6 +8,7 @@ INCS=		camlib.h
+ 
+ DPADD=		${LIBSBUF}
+ LDADD=		-lsbuf
++LDFLAGS+=	-L${.OBJDIR}/../libsbuf
+ 
+ MAN=		cam.3 cam_cdbparse.3
+ 





^ permalink raw reply	[flat|nested] 3+ messages in thread

* [gentoo-commits] gentoo-x86 commit in sys-freebsd/freebsd-lib/files: freebsd-lib-9.2-liblink.patch
@ 2015-05-24 11:24 Michal Gorny (mgorny)
  0 siblings, 0 replies; 3+ messages in thread
From: Michal Gorny (mgorny) @ 2015-05-24 11:24 UTC (permalink / raw
  To: gentoo-commits

mgorny      15/05/24 11:24:02

  Removed:              freebsd-lib-9.2-liblink.patch
  Log:
  Remove 9.2. Part of https://github.com/gentoo/gentoo-portage-rsync-mirror/pull/126 by nigoro.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key EFB4464E!)


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2015-05-24 11:24 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-08-11 20:31 [gentoo-commits] gentoo-x86 commit in sys-freebsd/freebsd-lib/files: freebsd-lib-9.2-liblink.patch Alexis Ballier (aballier)
  -- strict thread matches above, loose matches on Subject: below --
2013-08-12 15:03 Alexis Ballier (aballier)
2015-05-24 11:24 Michal Gorny (mgorny)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox