3f651573ad
Begin autotools sanitization sequence by requiring ports to explicitly specify which version of {libtool,autoconf,automake} they need, erasing the concept of a "system default". For ports-in-waiting: USE_LIBTOOL=YES -> USE_LIBTOOL_VER=13 USE_AUTOCONF=YES -> USE_AUTOCONF_VER=213 USE_AUTOMAKE=YES -> USE_AUTOMAKE_VER=14 Ports attempting to use the old style system after June 1st 2004 will be sorely disappointed.
44 lines
1.1 KiB
Makefile
44 lines
1.1 KiB
Makefile
# New ports collection makefile for: IM
|
|
# Date created: 13 November 1997
|
|
# Whom: Kiriyama Kazuhiko <kiri@kiri.toba-cmt.ac.jp>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= im
|
|
PORTVERSION= 144
|
|
CATEGORIES= mail
|
|
MASTER_SITES= http://tats.iris.ne.jp/im/ \
|
|
${MASTER_SITE_PORTS_JP}
|
|
|
|
MAINTAINER= kiri@FreeBSD.org
|
|
COMMENT= Set of user interfaces of Email and NetNews
|
|
|
|
USE_PERL5= yes
|
|
USE_AUTOCONF_VER= 213
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --libdir=${PREFIX}/etc
|
|
# If you use RPOP instead of APOP, comment out following line.
|
|
#CONFIGURE_ARGS+=--enable-rpop
|
|
MAKE_ARGS= prefix=${PREFIX} imlibdir=${PREFIX}/etc/im
|
|
|
|
PORTDOCDIR= ${PREFIX}/share/doc/im
|
|
SAMPLEDIR= ${PREFIX}/share/examples/im
|
|
MYPORTDOCS= 00changes 00copyright 00copyright.jis 00perl 00readme 00usage
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${PORTDOCDIR}/man ${SAMPLEDIR}
|
|
@cd ${WRKSRC}; \
|
|
${INSTALL_DATA} ${MYPORTDOCS} ${PORTDOCDIR}; \
|
|
${INSTALL_DATA} man/* ${PORTDOCDIR}/man; \
|
|
${INSTALL_DATA} dot.im/* ${SAMPLEDIR}
|
|
.endif
|
|
|
|
## for make PLIST (only maintainer use)
|
|
#arrange:
|
|
# ${MAKE} -DPLIST_OVERRIDE \
|
|
# DIRRMDEPTH=1 plist
|
|
|
|
.include <bsd.port.mk>
|