d625205f36
Unison is a file-synchronization tool for Unix and Windows. It allows two replicas of a collection of files and directories to be stored on different hosts (or different disks on the same host), modified separately, and then brought up to date by propagating the changes in each replica to the other. This package contains a snapshot of the git repository to get bugfixes not in the latest release.
17 lines
441 B
Makefile
17 lines
441 B
Makefile
# $NetBSD: options.mk,v 1.1 2020/04/21 11:34:01 wiz Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.unison
|
|
PKG_SUPPORTED_OPTIONS= lablgtk
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
.if !empty(PKG_OPTIONS:Mlablgtk)
|
|
MAKE_FLAGS+= UISTYLE=gtk2
|
|
|
|
DEPENDS+= font-schumacher-misc>=1.0:../../fonts/font-schumacher-misc
|
|
|
|
BUILDLINK_API_DEPENDS.ocaml-lablgtk+= ocaml-lablgtk>=2.16.0
|
|
.include "../../x11/ocaml-lablgtk/buildlink3.mk"
|
|
.else
|
|
MAKE_FLAGS+= UISTYLE=text
|
|
.endif
|