freebsd-ports/www/mod_encoding/Makefile
Rong-En Fan f935a609c5 - Set --mandir and --infodir in CONFIGURE_ARGS if the configure script
supports them.  This is determined by running ``configure --help'' in
  do-configure target and set the shell variable _LATE_CONFIGURE_ARGS
  which is then passed to CONFIGURE_ARGS.
- Remove --mandir and --infodir in ports' Makefile where applicable
  Few ports use REINPLACE_CMD to achieve the same effect, remove them too.
- Correct some manual pages location from PREFIX/man to MANPREFIX/man
- Define INFO_PATH where necessary
- Document that .info files are installed in a subdirectory relative to
  PREFIX/INFO_PATH and slightly change add-plist-info to use INFO_PATH and
  subdirectory detection.

PR:		ports/111470
Approved by:	portmgr
Discussed with:	stas (Mk/*), gerald (info related stuffs)
Tested by:	pointyhat exp run
2007-07-23 09:36:51 +00:00

39 lines
1 KiB
Makefile

# New ports collection makefile for: mod_encoding
# Date created: Thursday 13 November 2003
# Whom: edwin@mavetju.org
#
# $FreeBSD$
#
PORTNAME= mod_encoding
PORTVERSION= 20021209
PORTREVISION= 1
CATEGORIES= www
MASTER_SITES= http://webdav.todo.gr.jp/download/
MAINTAINER= edwin@mavetju.org
COMMENT= Apache module for non-ascii filename interoperability
# This port will work with the following version of Apache and anything newer.
# Mostly because of the dependency of mod_dav.
APACHE_VERSION= 1.3.6
PLIST_FILES= libexec/apache/mod_encoding.so
USE_APACHE= yes
USE_ICONV= yes
HAS_CONFIGURE= yes
USE_GMAKE= yes
CONFIGURE_ARGS= --prefix=${PREFIX} \
--bindir=${PREFIX}/bin \
--sbindir=${PREFIX}/sbin \
--libexecdir=${PREFIX}/libexec/apache \
--sysconfdir=${PREFIX}/etc/apache \
--datadir=${PREFIX}/share/apache \
--includedir=${PREFIX}/include/apache \
--with-apxs=${APXS}
CONFIGURE_ENV= CPPFLAGS='-I${LOCALBASE}/include/apache -I${LOCALBASE}/include' \
LIBS='-L${LOCALBASE}/lib' \
PATH="${PREFIX}/bin:${PREFIX}/sbin:${PATH}"
.include <bsd.port.mk>