freebsd-ports/www/htdump/Makefile
FUJISHIMA Satsuki f689ded903 get rid of libgnugetopt dependency for -CURRENT,
use USE_GETOPT_LONG instead.
respect CC, CFLAGS.
use getopt_long() instead of getopt_long_only().
2003-07-14 02:37:49 +00:00

34 lines
702 B
Makefile

# Ports collection makefile for: htdump
# Date created: Tue Feb 20, 2001
# Whom: Maxime Henrion (mux@FreeBSD.org)
#
# $FreeBSD$
#
PORTNAME= htdump
PORTVERSION= 0.9x
PORTREVISION= 1
CATEGORIES= www
MASTER_SITES= http://arak.cs.hro.nl/~ren/linux/htdump/bin/
MAINTAINER= mux@FreeBSD.org
COMMENT= A tool to retrieve WWW data
USE_GETOPT_LONG=yes
CFLAGS+= ${CPPFLAGS}
MAKE_ENV= LDFLAGS="${LDFLAGS}"
.if defined(WITH_SSL)
USE_OPENSSL= yes
ALL_TARGET= ssl
.endif
pre-extract:
.if !defined(WITH_SSL)
@${ECHO} "Define WITH_SSL if you want to build with SSL support"
.endif
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/htdump ${PREFIX}/bin
.include <bsd.port.mk>