666636bffd
The latest code is only found in the boehm-gc CVS repository (see Makefile.version for information). I had to take this from there, as there were bug fixes. This library was imported primarily for the [hopefully] upcoming audio/pulseaudio package. TODO: Add support for NetBSD atomic ops? This package provides semi-portable access to hardware provided atomic memory operations. These might allow you to write code: - That does more interesting things in signal handlers. - Makes more effective use of multiprocessors by allowing you to write clever lock-free code. Note that such code is very difficult to get right, and will unavoidably be less portable than lock-based code. It ia also not always faster than lock-based code. But it may occasionally be a large performance win. - To experiment with new and much better thread programming paradigms, etc. As the latest code for this library is only available via CVS, this package provides a snapshot.
26 lines
713 B
Makefile
26 lines
713 B
Makefile
# $NetBSD: Makefile,v 1.1.1.1 2008/10/25 00:32:23 bjs Exp $
|
|
#
|
|
.include "Makefile.version"
|
|
|
|
DISTNAME= libatomic_ops-${LIBATOMIC_OPS_SNAPDATE}
|
|
CATEGORIES= devel
|
|
MASTER_SITES= ${MASTER_SITE_LOCAL}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://bdwgc.sourceforge.net/
|
|
COMMENT= Multi-platform library of atomic operations by Hans Boehm
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
WRKSRC= ${WRKDIR}/libatomic_ops-${LIBATOMIC_OPS_VERSION}
|
|
GNU_CONFIGURE= yes
|
|
TEST_TARGET= check
|
|
|
|
INSTALL_MAKE_FLAGS= pkgdatadir=${PKGDOCDIR:Q}
|
|
PKGDOCDIR= ${PREFIX}/share/doc/libatomic_ops
|
|
|
|
post-install:
|
|
${INSTALL_DATA} ${WRKSRC}/src/atomic_ops/sysdeps/README \
|
|
${DESTDIR}${PKGDOCDIR}/README_headers.txt
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|