2004-03-22 07:07:46 +01:00
|
|
|
# $NetBSD: Makefile,v 1.42 2004/03/22 06:07:46 jlam Exp $
|
2001-03-06 12:21:04 +01:00
|
|
|
#
|
|
|
|
# When adding new digest algorithms, please use rmd160 as the template,
|
|
|
|
# and bump the VERSION definition.
|
|
|
|
|
2004-01-26 22:26:53 +01:00
|
|
|
DISTNAME?= digest-${VERSION}
|
2001-03-06 12:21:04 +01:00
|
|
|
CATEGORIES= pkgtools
|
2002-07-29 13:25:37 +02:00
|
|
|
MASTER_SITES= # empty
|
|
|
|
DISTFILES= # empty
|
2001-03-06 12:21:04 +01:00
|
|
|
|
2003-07-18 00:50:55 +02:00
|
|
|
MAINTAINER= agc@NetBSD.org
|
|
|
|
HOMEPAGE= http://www.NetBSD.org/Documentation/software/packages.html
|
2001-05-17 16:35:50 +02:00
|
|
|
COMMENT= Message digest wrapper utility
|
2001-03-06 12:21:04 +01:00
|
|
|
|
2004-01-05 12:28:07 +01:00
|
|
|
PKG_INSTALLATION_TYPES= overwrite pkgviews
|
2001-03-06 12:21:04 +01:00
|
|
|
|
2004-03-22 07:07:46 +01:00
|
|
|
USE_BUILDLINK3= yes
|
2002-12-21 05:06:10 +01:00
|
|
|
GNU_CONFIGURE= # defined
|
2002-09-04 14:53:02 +02:00
|
|
|
|
2003-01-09 14:11:10 +01:00
|
|
|
NO_PKGTOOLS_REQD_CHECK= # defined
|
2002-12-21 05:06:10 +01:00
|
|
|
NO_CHECKSUM= # defined
|
2001-03-10 16:26:15 +01:00
|
|
|
|
2004-03-13 22:00:19 +01:00
|
|
|
# XXX Remove the following two lines after pkgsrc/bootstrap is up and
|
|
|
|
# XXX running.
|
2004-03-13 20:38:26 +01:00
|
|
|
USE_NATIVE_GCC= yes
|
2004-03-13 22:00:19 +01:00
|
|
|
USE_DIGEST= no
|
2004-03-13 20:38:26 +01:00
|
|
|
|
2001-03-10 16:26:15 +01:00
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
|
2002-12-21 05:06:10 +01:00
|
|
|
VERSION!= ${AWK} -F "'" '/^PACKAGE_VERSION=/ {print $$2}' \
|
|
|
|
${FILESDIR}/configure
|
|
|
|
|
|
|
|
do-extract:
|
|
|
|
@${CP} -Rp ${FILESDIR} ${WRKSRC}
|
2001-03-10 12:18:09 +01:00
|
|
|
|
2003-01-22 08:35:40 +01:00
|
|
|
pre-install:
|
|
|
|
-@${MKDIR} ${PKG_DBDIR}
|
|
|
|
|
2003-07-12 15:23:43 +02:00
|
|
|
do-test:
|
2001-03-14 18:27:05 +01:00
|
|
|
@${ECHO} "No news is good news"
|
|
|
|
@cd ${WRKSRC} && ${SETENV} DIGESTDIR=${WRKSRC} ${SH} ./regress.sh
|
|
|
|
@${ECHO} "All tests completed"
|
|
|
|
|
2001-03-06 12:21:04 +01:00
|
|
|
.include "../../mk/bsd.pkg.mk"
|