9c8b5ede43
developer is officially maintaining the package. The rationale for changing this from "tech-pkg" to "pkgsrc-users" is that it implies that any user can try to maintain the package (by submitting patches to the mailing list). Since the folks most likely to care about the package are the folks that want to use it or are already using it, this would leverage the energy of users who aren't developers.
45 lines
1.2 KiB
Makefile
45 lines
1.2 KiB
Makefile
# $NetBSD: Makefile,v 1.68 2006/03/04 21:29:26 jlam Exp $
|
|
#
|
|
|
|
DISTNAME= pth-2.0.0
|
|
PKGREVISION= 2
|
|
CATEGORIES= devel
|
|
MASTER_SITES= ${MASTER_SITE_GNU:=pth/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://www.gnu.org/software/pth/pth.html
|
|
COMMENT= GNU Portable Thread library
|
|
|
|
CONFLICTS= pth-current-[0-9]* pth-syscall<1.4.1nb1
|
|
|
|
PKG_INSTALLATION_TYPES= overwrite pkgviews
|
|
|
|
USE_LIBTOOL= YES
|
|
GNU_CONFIGURE= YES
|
|
CONFIGURE_ARGS+= --enable-pthread
|
|
CONFIGURE_ARGS+= --with-fdsetsize=1024
|
|
#CONFIGURE_ARGS+= --enable-debug
|
|
|
|
TEST_TARGET= test
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
.if ${OPSYS} == "NetBSD"
|
|
. if ${MACHINE_ARCH} == "m68k" && (!empty(OS_VERSION:M1.5.[12]*) || !empty(OS_VERSION:M1.[0-4]*))
|
|
pre-configure:
|
|
@${ECHO} Building without --enable-syscall-hard. lib/18644 needs fixing.
|
|
. else
|
|
CONFIGURE_ARGS+= --enable-syscall-hard
|
|
. endif
|
|
.elif ${OPSYS} == "Interix"
|
|
CONFIGURE_ENV+= ac_cv_check_nfdstype='unsigned int'
|
|
CONFIGURE_ENV+= ac_cv_typedef_nfds_t=no # in <poll.h>, but that's unused
|
|
.endif
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/pth/
|
|
cd ${WRKSRC} && ${INSTALL_DATA} ANNOUNCE AUTHORS COPYING HACKING \
|
|
NEWS README SUPPORT TESTS THANKS USERS pthread.ps rse-pmt.ps \
|
|
${PREFIX}/share/doc/pth/
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|