blob: 1bb9491e7fb5b0f230469ea6650e49b8dad984ff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# $NetBSD: options.mk,v 1.3 2009/08/06 12:30:12 tnn 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
|