2822a6bbbc
UUIDs are 128 bit numbers which are intended to have a high likelihood of uniqueness over space and time and are computationally difficult to guess. They are globally unique identifiers which can be locally generated without contacting a global registration authority. UUIDs are intended as unique identifiers for both mass tagging objects with an extremely short lifetime and to reliably identifying very persistent objects across a network. OSSP uuid is a ISO-C:1999 application programming interface (API) and corresponding command line interface (CLI) for the generation of DCE 1.1, ISO/IEC 11578:1996 and RFC 4122 compliant Universally Unique Identifier (UUID). It supports DCE 1.1 variant UUIDs of version 1 (time and node based), version 3 (name based, MD5), version 4 (random number based) and version 5 (name based, SHA-1). Additional API bindings are provided for the languages ISO-C++:1998, Perl:5 and PHP:4/5. Optional backward compatibility exists for the ISO-C DCE-1.1 and Perl Data::UUID APIs.
31 lines
741 B
Makefile
31 lines
741 B
Makefile
# $NetBSD: Makefile,v 1.1.1.1 2007/05/20 02:42:27 heinz Exp $
|
|
#
|
|
|
|
DISTNAME= uuid-1.6.0
|
|
PKGNAME= ossp-${DISTNAME}
|
|
CATEGORIES= devel
|
|
MASTER_SITES= ftp://ftp.ossp.org/pkg/lib/uuid/
|
|
|
|
MAINTAINER= heinz@NetBSD.org
|
|
HOMEPAGE= http://www.ossp.org/pkg/lib/uuid/
|
|
COMMENT= C-API and command line tool for generating UUIDs
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
CONFLICTS= e2fsprogs>1.32 libuuid-[0-9]*
|
|
|
|
USE_LIBTOOL= yes
|
|
PKGCONFIG_OVERRIDE+= ${WRKSRC}/uuid.pc.in
|
|
GNU_CONFIGURE= yes
|
|
|
|
USE_TOOLS+= gmake
|
|
USE_LANGUAGES= c c++
|
|
|
|
CONFIGURE_ARGS+= --with-dce
|
|
CONFIGURE_ARGS+= --with-cxx
|
|
CONFIGURE_ARGS+= --without-perl
|
|
CONFIGURE_ARGS+= --without-perl-compat
|
|
CONFIGURE_ARGS+= --without-php
|
|
CONFIGURE_ARGS+= --without-pgsql
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|