f935a609c5
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
55 lines
1.2 KiB
Makefile
55 lines
1.2 KiB
Makefile
# New ports collection makefile for: miau
|
|
# Date created: 23 Apr 2004
|
|
# Whom: Oliver Eikemeier
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= miau
|
|
PORTVERSION= 0.6.3
|
|
CATEGORIES= irc ipv6
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE_EXTENDED}
|
|
MASTER_SITE_SUBDIR= miau
|
|
|
|
MAINTAINER= laszlof@FreeBSD.org
|
|
COMMENT= A fully featured easy to use IRC-bouncer
|
|
|
|
USE_BZIP2= yes
|
|
USE_ICONV= yes
|
|
GNU_CONFIGURE= yes
|
|
|
|
INFO= miau
|
|
MAN1= miau.1
|
|
|
|
CONFIGURE_ARGS= --enable-dccbounce \
|
|
--enable-automode \
|
|
--enable-releasenick \
|
|
--enable-ctcp-replies \
|
|
--enable-mkpasswd \
|
|
--enable-uptime \
|
|
--enable-chanlog \
|
|
--enable-privlog \
|
|
--enable-onconnect \
|
|
--enable-empty-awaymsg \
|
|
--enable-dumpstatus \
|
|
--disable-dependency-tracking
|
|
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
|
|
CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS} -I${LOCALBASE}/include" \
|
|
LDFLAGS="${LDFLAGS}" \
|
|
LIBS="${LIBS}"
|
|
|
|
.if defined(WITH_IPV6)
|
|
CONFIGURE_ARGS+= --enable-ipv6
|
|
.endif
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's,\$$datadir/doc/miau/examples,${EXAMPLESDIR},g' \
|
|
${CONFIGURE_WRKSRC}/${CONFIGURE_SCRIPT}
|
|
|
|
.if !defined(NOPORTDOCS)
|
|
post-install:
|
|
@${MKDIR} ${DOCSDIR}
|
|
@${INSTALL_DATA} ${WRKSRC}/ChangeLog ${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|