pkgsrc/devel/ptl2/Makefile

40 lines
1.3 KiB
Makefile
Raw Normal View History

# $NetBSD: Makefile,v 1.32 2001/04/30 04:16:09 jlam Exp $
DISTNAME= PTL-2.1.7
PKGNAME= ptl-2.1.7
CATEGORIES= devel
Jump to PTL-2.1.2 Changes between PTL2-current-990622 and PTL-2.1.2 * support NetBSD/arm32. * fix a configure.in bug which fails if $MACHINE != $MACHINE_ARCH. * src/io_udp.c (send_timedwait, sendto_timedwait, sendmsg_timedait): While underlying system calls return with EWOULDBLOCK, continue writing. * src/signal.c (_pthread_signal_init): On system that PTL can set the stack pointer without using sigstack(), SIGUSR2 can be used for user's purpose. * src/internal.h (END_CRITICAL): fixed: signal interruptions are lost in certain situation theoretically. * src/io.c: use O_NONBLOCK rather than O_NDELAY in SunOS5. * Util/Makefile.in: version number of libPTL.so is changed to 2.0. * src/specific.c (pthread_key_create, pthread_setspecific): if fail to allocate the memory, returns ENOMEM. * src/cond.c, src/mutex.c, include/sys/types.h: pthread_mutex_t and pthread_cond_t are changed from `pointer to struct' to `struct'. * src/cond-attr.c, include/sys/types.h: pthread_condattr_t is changed from integer handle to struct. * src/cond.c, src/mutex.c, src/pthread.c: pthread_{mutex_,cond_,}setname_np returns ENOMEM if malloc() returns NULL. * src/cancel.c (pthread_setcancelstate): if FLAG_CLEANUP_HANDLER is set, do not call pthread_exit() even if PTHREAD_CANCEL_ENABLE is specified and the thread is already cancel requested. (pthread_testcancel): similar to above. * src/internal.h (FLAG_CLEANUP_HANDLER): this flag shows that the thread is currently executing cleanup handlers. * src/sched.c (after_csw): Clear FLAG_DO_CANCEL flag before executing cleanup handlers to prevent entering executing cleanup handlers loop. * src/io.c (_pthread_pdb_iostat): Implement `iostat' command into PDB.
2000-05-07 13:18:19 +02:00
MASTER_SITES= ftp://ftp.media.osaka-cu.ac.jp/pub/PTL/PTL2/
PATCH_SITES= ${MASTER_SITES}
1999-05-31 12:13:57 +02:00
MAINTAINER= msaitoh@netbsd.org
HOMEPAGE= http://www.media.osaka-cu.ac.jp/~k-abe/PTL/
COMMENT= Portable user-level Thread Library 2 written by Kota Abe
BUILD_DEPENDS= perl>=${PERL5_REQD}:../../lang/perl5
1999-05-01 16:37:30 +02:00
MAKE_ENV= INSTALL_PROGRAM="${INSTALL_SCRIPT}"
PLIST_SRC= ${WRKDIR}/PLIST
post-install:
@${CHOWN} -R ${BINOWN}:${BINGRP} ${PREFIX}/PTL/include
@${FIND} ${PREFIX}/PTL/include -type f -name "*.orig" | xargs ${RM}
@${FIND} ${PREFIX}/PTL/include -type d -print | xargs ${CHMOD} 755
@${FIND} ${PREFIX}/PTL/include -type f -print | xargs ${CHMOD} 444
@${CP} ${PKGDIR}/PLIST ${PLIST_SRC}
@cd ${PREFIX}; \
${FIND} PTL -type f >>${PLIST_SRC}; \
for LINK in `${FIND} PTL -type l`; do \
set - X `${FILE} $$LINK`; \
2001-01-13 04:33:14 +01:00
${ECHO} "@exec ${LN} -s $$6 %D/$$LINK" >>${PLIST_SRC}; \
${ECHO} "@unexec ${RM} -f %D/$$LINK" >>${PLIST_SRC}; \
done; \
for DIR in `${FIND} PTL -type d | sort -r`; do \
if [ -z "`ls $$DIR`" ]; then \
1999-05-20 19:28:31 +02:00
${ECHO} "@exec ${MKDIR} %D/$$DIR" >>${PLIST_SRC}; \
fi; \
${ECHO} "@dirrm $$DIR" >>${PLIST_SRC}; \
done
.include "../../mk/bsd.pkg.mk"