blob: d64ac6031dd2530e05162e2130657c3cfbd11d80 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# $NetBSD: options.mk,v 1.1 2008/12/08 13:05:22 adrianp Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.oinkmaster
PKG_SUPPORTED_OPTIONS= oinkmaster-perl-tools
.include "../../mk/bsd.options.mk"
###
### Use perl tools for downloading rule files
###
.if !empty(PKG_OPTIONS:Moinkmaster-perl-tools)
DEPENDS+= p5-Archive-Tar-[0-9]*:../../archivers/p5-Archive-Tar
DEPENDS+= p5-IO-Zlib-[0-9]*:../../devel/p5-IO-Zlib
DEPENDS+= p5-libwww-[0-9]*:../../www/p5-libwww
.else
DEPENDS+= wget>=1.00:../../net/wget
.endif
|