blob: 1657ba13f8f2d942d858d706eb0e097ad3190c2a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# $NetBSD: options.mk,v 1.2 2006/09/25 10:08:06 salo Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.skipstone
PKG_SUPPORTED_OPTIONS= wget
PKG_SUGGESTED_OPTIONS= wget
.include "../../www/seamonkey/gecko-options.mk"
.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
.if !empty(PKG_OPTIONS:Mfirefox)
MOZILLA= firefox
.elif !empty(PKG_OPTIONS:Mseamonkey)
MOZILLA= seamonkey
.endif
|