* Noteworthy changes in release 2.11 (2011-11-25) [stable] - qa: Now builds without compiler warnings with Solaris CC. - qa: Added clang analysis. Fixed cyclomatic complexity output. - tests: Added self-test of bit string functions. - build: Added windows/libtasn14win.mk rules to produce Windows binaries. - build: Don't hard code path to perl in doc/gdoc. - Various minor fixes.
34 lines
984 B
Makefile
34 lines
984 B
Makefile
# $NetBSD: Makefile,v 1.53 2011/11/30 20:57:46 wiz Exp $
|
|
|
|
DISTNAME= libtasn1-2.11
|
|
CATEGORIES= security devel
|
|
MASTER_SITES= ${MASTER_SITE_GNU:=libtasn1/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://www.gnu.org/software/libtasn1/
|
|
COMMENT= ASN.1 structure parser library
|
|
LICENSE= gnu-fdl-v1.3 AND gnu-lgpl-v2.1 AND gnu-gpl-v3
|
|
|
|
PKG_INSTALLATION_TYPES= overwrite pkgviews
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
USE_TOOLS+= makeinfo
|
|
USE_LIBTOOL= yes
|
|
GNU_CONFIGURE= yes
|
|
TEST_TARGET= check
|
|
INFO_FILES= yes
|
|
|
|
CONFIGURE_ARGS+= --with-packager="pkgsrc"
|
|
CONFIGURE_ARGS+= --with-packager-version="${PKGVERSION}"
|
|
CONFIGURE_ARGS+= --with-packager-bug-reports="http://gnats.NetBSD.org/"
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
# Mac OS X has no prototype for getopt_long and no declaration for
|
|
# struct option, so ignore getopt_long() even though the test succeeds.
|
|
.if ${OPSYS} == "Darwin"
|
|
CONFIGURE_ENV+= ac_cv_func_getopt_long=no
|
|
CFLAGS+= -fno-common
|
|
.endif
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|