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.
43 lines
933 B
Makefile
43 lines
933 B
Makefile
# New ports collection makefile for: multi-aterm
|
|
# Date created: 2003-07-11
|
|
# Whom: Sebastian Yepes <esn@x123.info>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= multi-aterm
|
|
PORTVERSION= 0.0.4
|
|
CATEGORIES= x11
|
|
MASTER_SITES= http://www.materm.tuxfamily.org/
|
|
|
|
MAINTAINER= esn@x123.info
|
|
COMMENT= A multi terminal based on aterm
|
|
|
|
USE_X_PREFIX= yes
|
|
USE_LIBTOOL_VER=13
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
|
|
|
|
DOCS= AUTHORS ChangeLog INSTALL TODO
|
|
|
|
.if defined(WITH_UTMP)
|
|
CONFIGURE_ARGS+= --enable-utmp
|
|
.endif
|
|
|
|
.if defined(WITH_WTMP)
|
|
CONFIGURE_ARGS+= --enable-wtmp
|
|
.endif
|
|
|
|
pre-everything::
|
|
@${ECHO_MSG} ""
|
|
@${ECHO_MSG} "You can specify the following options:"
|
|
@${ECHO_MSG} "WITH_UTMP=yes - enable utmp support"
|
|
@${ECHO_MSG} "WITH_WTMP=yes - enable wtmp support"
|
|
|
|
.if !defined(NOPORTDOCS)
|
|
post-install:
|
|
@${MKDIR} ${DOCSDIR}
|
|
cd ${WRKSRC} && ${INSTALL_DATA} ${DOCS} ${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|