ee68c93314
set OVERRIDE_DIRDEPTH to find any libtool scripts deeper in the WRKSRC tree unless they're named something other than "libtool". SHLIBTOOL_OVERRIDE generally doesn't need to be specified either -- just define it to the empty list and shlibtool-override will look for libtool scripts.
44 lines
1.2 KiB
Makefile
44 lines
1.2 KiB
Makefile
# $NetBSD: Makefile,v 1.11 2006/07/07 15:49:34 jlam Exp $
|
|
|
|
DISTNAME= lighttpd-1.4.11
|
|
CATEGORIES= www
|
|
MASTER_SITES= http://www.lighttpd.net/download/
|
|
|
|
MAINTAINER= joerg@NetBSD.org
|
|
HOMEPAGE= http://www.lighttpd.net/
|
|
COMMENT= Fast, light-footprint HTTP server
|
|
|
|
USE_LIBTOOL= yes
|
|
SHLIBTOOL_OVERRIDE= # empty
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS+= --libdir=${PREFIX}/lib/${PKGBASE}
|
|
CONFIGURE_ARGS+= --with-pcre
|
|
|
|
DOCDIR= ${PREFIX}/share/doc/${PKGBASE}
|
|
EGDIR= ${PREFIX}/share/examples/${PKGBASE}
|
|
PKG_SYSCONFSUBDIR= ${PKGBASE}
|
|
|
|
RCD_SCRIPTS= lighttpd
|
|
CONF_FILES= ${EGDIR}/lighttpd.conf ${PKG_SYSCONFDIR}/lighttpd.conf
|
|
|
|
.include "options.mk"
|
|
|
|
.include "../../devel/pcre/buildlink3.mk"
|
|
.include "../../devel/zlib/buildlink3.mk"
|
|
.include "../../mk/dlopen.buildlink3.mk"
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${DOCDIR}
|
|
${INSTALL_DATA_DIR} ${EGDIR}
|
|
cd ${WRKSRC}; for f in doc/*.css doc/*.dot doc/*.txt; do \
|
|
${INSTALL_DATA} $$f ${DOCDIR}; \
|
|
done
|
|
for f in AUTHORS COPYING ChangeLog NEWS README; do \
|
|
${INSTALL_DATA} ${WRKSRC}/$$f ${DOCDIR}; \
|
|
done
|
|
for f in lighttpd.conf rrdtool-graph.sh spawn-php.sh; do \
|
|
${INSTALL_DATA} ${WRKSRC}/doc/$$f ${EGDIR}; \
|
|
done
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|