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.
27 lines
637 B
Makefile
27 lines
637 B
Makefile
# New ports collection makefile for: scout
|
|
# Date created: 15/04/2002
|
|
# Whom: Dominic Marks <dominic.marks@btinternet.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= scout
|
|
PORTVERSION= 0.86
|
|
CATEGORIES= www
|
|
MASTER_SITES= ftp://sid.joedog.org/pub/scout/ \
|
|
http://www.cus.org.uk/~dom/distfiles/scout/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= A utility to harvest URLs from a given start point
|
|
|
|
USE_LIBTOOL_VER=13
|
|
CONFIGURE_ARGS+= --disable-shared --enable-static
|
|
MAN1= scout.1
|
|
PLIST_FILES= bin/scout
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/src/scout ${PREFIX}/bin/
|
|
${INSTALL_MAN} ${WRKSRC}/doc/scout.1 ${PREFIX}/man/man1/
|
|
|
|
.include <bsd.port.mk>
|