blob: f0f75e7484e813112d01f1e812ca4708046b4626 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# $NetBSD: options.mk,v 1.1 2007/08/23 17:10:39 abs Exp $
#
PKG_OPTIONS_VAR= PKG_OPTIONS.dvdrip
.if !empty(MACHINE_ARCH:Mi386)
PKG_SUPPORTED_OPTIONS= rar
PKG_SUGGESTED_OPTIONS= rar
.endif
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Mrar)
DEPENDS+= {rar,rar-bin}-[0-9]*:../../archivers/rar
.endif
|