2004-01-12 01:00:03 +01:00
|
|
|
# $NetBSD: Makefile,v 1.97 2004/01/12 00:00:03 grant Exp $
|
1998-08-21 00:07:24 +02:00
|
|
|
#
|
|
|
|
|
2001-04-06 23:42:56 +02:00
|
|
|
DISTNAME= ORBit-0.${ORBIT_MAJOR}.${ORBIT_MINOR}
|
2003-12-04 18:08:51 +01:00
|
|
|
PKGREVISION= 6
|
2000-06-21 00:42:38 +02:00
|
|
|
CATEGORIES= net
|
2002-10-19 12:54:42 +02:00
|
|
|
MASTER_SITES= ${MASTER_SITE_GNOME:=sources/ORBit/0.${ORBIT_MAJOR}/}
|
1998-08-21 00:07:24 +02:00
|
|
|
|
2003-10-09 09:12:28 +02:00
|
|
|
MAINTAINER= tech-pkg@NetBSD.org
|
2000-06-21 00:42:38 +02:00
|
|
|
HOMEPAGE= http://www.gnome.org/
|
2003-07-21 19:10:16 +02:00
|
|
|
COMMENT= High-performance CORBA ORB with support for the C language
|
1998-08-21 00:07:24 +02:00
|
|
|
|
2002-11-25 22:20:05 +01:00
|
|
|
USE_BUILDLINK2= YES
|
|
|
|
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
|
2003-07-10 18:26:45 +02:00
|
|
|
.if ${OPSYS} != "NetBSD" && ${OPSYS} != "Linux"
|
2001-09-28 01:17:41 +02:00
|
|
|
DEPENDS+= gindent-[0-9]*:../../devel/gindent
|
2002-11-25 22:20:05 +01:00
|
|
|
.endif
|
2001-12-29 00:19:46 +01:00
|
|
|
|
2000-12-31 13:19:45 +01:00
|
|
|
USE_GMAKE= YES
|
2002-11-25 22:20:05 +01:00
|
|
|
|
2000-12-31 13:19:45 +01:00
|
|
|
USE_LIBTOOL= YES
|
2002-04-29 20:27:17 +02:00
|
|
|
LIBTOOL_OVERRIDE+= ${WRKSRC}/libtool
|
|
|
|
LIBTOOL_OVERRIDE+= ${WRKSRC}/popt/libtool
|
|
|
|
LIBTOOL_OVERRIDE+= ${WRKSRC}/libIDL/libtool
|
1998-11-13 00:03:39 +01:00
|
|
|
|
2000-12-31 13:19:45 +01:00
|
|
|
GNU_CONFIGURE= YES
|
2002-11-25 22:20:05 +01:00
|
|
|
CONFIGURE_ENV+= LIBWRAP_PATH=${BUILDLINK_PREFIX.tcp_wrappers}/lib/libwrap.a
|
|
|
|
CONFIGURE_ENV+= LIB_WRAP="-lwrap"
|
|
|
|
|
|
|
|
PKGCONFIG_OVERRIDE+= ${WRKSRC}/ORBit.pc.in
|
|
|
|
PKGCONFIG_OVERRIDE+= ${WRKSRC}/libIDL/libIDL.pc.in
|
2000-07-25 06:50:37 +02:00
|
|
|
|
2001-10-04 21:25:25 +02:00
|
|
|
CPPFLAGS+= -D_POSIX_THREAD_SYSCALL_SOFT=1
|
|
|
|
|
2001-04-06 23:42:56 +02:00
|
|
|
# for DISTNAME, PKGNAME, and PLIST
|
|
|
|
ORBIT_MAJOR= 5
|
Upgrade to version 0.5.15 from 0.5.13nb1 of the ORBit package - diffs
provided by Thomas Klausner.
Diffs from previous version:
2002-03-20 Michael Meeks <michael@ximian.com>
* configure.in: copy the autoconf macro into here so we
can rely on it not changing across autoconf versions.
2002-03-11 Michael Meeks <michael@ximian.com>
* src/IIOP/giop-msg-buffer.c
kill #define writev mess.
(giop_send_buffer_write): handle EINTR, handle EAGAIN
correctly, handle short writev's correctly, test
thorougly.
* src/ORBitutil/compat.c (g_writev): kill this
abomination.
2002-02-11 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* src/orb/allocators.h, src/orb/allocators.c (ORBit_alloc_2,
ORBit_free): Make the free marker really always sit directly in
front of the memory block, not at some random lower position.
2002-02-09 Elliot Lee <sopwith@redhat.com>
* src/ORBitutil/os-feature-alloca.h: Don't redefine alloca if it is already defined.
2002-01-27 Darin Adler <darin@bentspoon.com>
* test/everything/Makefile.am: Added -lm -- can't build without it.
2002-01-25 Mark McLoughlin <mark@skynet.ie>
* configure.in: (AC_CHECK_ALIGNOF): error out if an alignment
is found to be zero.
Thomas thought that the modification to src/IIOP/giop-msg-buffer.c to
"kill #define writev mess" might mean that we could drop the
NetBSD-specific wrapper for writev(2), but sadly this isn't so -
configure undefines HAVE_LIMITED_WRITEV on NetBSD, and rightly so,
since IOV_MAX (1024) iovecs can be written, not 50. However, we still
have the basic "attempt to send more than IOV_MAX iovecs and you get
EINVAL" problem with our writev(2) implementation.
2002-04-25 14:17:04 +02:00
|
|
|
ORBIT_MINOR= 15
|
2001-04-06 23:42:56 +02:00
|
|
|
PLIST_SUBST+= ORBIT_MAJOR=${ORBIT_MAJOR} ORBIT_MINOR=${ORBIT_MINOR}
|
|
|
|
|
2000-06-21 00:42:38 +02:00
|
|
|
INFO_FILES= libIDL.info
|
1998-08-21 00:07:24 +02:00
|
|
|
|
2002-08-25 20:38:05 +02:00
|
|
|
.include "../../devel/gettext-lib/buildlink2.mk"
|
|
|
|
.include "../../devel/glib/buildlink2.mk"
|
|
|
|
.include "../../security/tcp_wrappers/buildlink2.mk"
|
|
|
|
|
2003-07-12 01:38:45 +02:00
|
|
|
.include "../../mk/pthread.buildlink2.mk"
|
1998-08-21 00:07:24 +02:00
|
|
|
.include "../../mk/bsd.pkg.mk"
|