* None of the source files seems to reference any function in libutil, so remove it from the libraries linked into mini_httpd and mhtpasswd. * Make this work on Solaris by linking mini_httpd with the usual "-lnsl -lsocket" dance. Bump PKGREVISION to 4 due to changed library linkage in the installed binaries.
33 lines
902 B
Makefile
33 lines
902 B
Makefile
# $NetBSD: Makefile,v 1.16 2007/09/09 02:12:49 jlam Exp $
|
|
|
|
DISTNAME= mini_httpd-1.19
|
|
PKGREVISION= 4
|
|
CATEGORIES= www
|
|
MASTER_SITES= http://www.acme.com/software/mini_httpd/
|
|
|
|
MAINTAINER= reed@reedmedia.net
|
|
HOMEPAGE= http://www.acme.com/software/mini_httpd/
|
|
COMMENT= Small, forking webserver with IPv6 and SSL support
|
|
|
|
DIST_SUBDIR= ${PKGNAME_NOREV}
|
|
|
|
USE_FEATURES= snprintf
|
|
|
|
MAKE_ENV+= PKG_CFLAGS=${CFLAGS:Q}
|
|
MAKE_ENV+= PKG_LDFLAGS=${LDFLAGS:Q}
|
|
MAKE_ENV+= PKG_LIBS=${LIBS:Q}
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
.if ${OPSYS} == "SunOS"
|
|
MAKE_ENV+= SYSV_LIBS="-lnsl -lsocket"
|
|
.endif
|
|
|
|
SUBST_CLASSES= htpasswd
|
|
SUBST_MESSAGE.htpasswd= Fix name of (m)htpasswd in manual pages.
|
|
SUBST_STAGE.htpasswd= pre-build
|
|
SUBST_FILES.htpasswd= htpasswd.1 mini_httpd.8
|
|
SUBST_SED.htpasswd= -e 's/\([^.]\)htpasswd/\1mhtpasswd/g' -e 's/^htpasswd/m&/'
|
|
|
|
.include "../../security/openssl/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|