mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-30 05:40:06 +00:00
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.
32 lines
694 B
Makefile
32 lines
694 B
Makefile
# Ports collection makefile for: crashecho
|
|
# Date created: 15 November 2002
|
|
# Whom: CyrilM <cyrilm@tower.pp.ru>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= crashecho
|
|
PORTVERSION= 0.2.14
|
|
CATEGORIES= mail
|
|
MASTER_SITES= http://hell.binec.ru/crashecho/
|
|
|
|
MAINTAINER= cyrilm@tower.pp.ru
|
|
COMMENT= An FTN JAM and *.MSG tosser
|
|
|
|
LIB_DEPENDS= jam.2:${PORTSDIR}/mail/jamlib
|
|
|
|
USE_LIBTOOL_VER= 13
|
|
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
|
|
|
|
MAN1= crashecho.1 \
|
|
crashexport.1 \
|
|
crashmaint.1 \
|
|
crashstats.1 \
|
|
crashwrite.1
|
|
MAN5= crashecho.conf.5
|
|
|
|
post-install:
|
|
${MKDIR} ${PREFIX}/etc/ftn
|
|
${INSTALL_DATA} ${WRKSRC}/doc/crashecho.conf ${PREFIX}/etc/ftn/crashecho.conf.sample
|
|
.include <bsd.port.mk>
|