blob: b8730f25c097084307a305092e1b6d10ab6bfc5d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# $NetBSD: options.mk,v 1.1 2005/12/28 15:47:30 ghen Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.skipstone
PKG_SUPPORTED_OPTIONS= wget
PKG_SUGGESTED_OPTIONS= wget
.include "../../mk/bsd.options.mk"
# SkipDownload uses wget to download files from the Internet, but since this
# is not strictly needed for SkipStone to run, it's an optional dependency.
.if !empty(PKG_OPTIONS:Mwget)
DEPENDS+= wget>=1:../../net/wget
.endif
|