diff options
author | gerald <gerald@FreeBSD.org> | 2011-11-13 10:28:34 +0800 |
---|---|---|
committer | gerald <gerald@FreeBSD.org> | 2011-11-13 10:28:34 +0800 |
commit | a780bf9f2019a9b8607ac46e95e15d66e0310a19 (patch) | |
tree | 1e41c36f8fdfb8ef7d1314bfa06e6e1f527a3959 /emulators/wine-devel | |
parent | 853042ec9f87bc94c3dd2210f76dff9b1a54fdb4 (diff) | |
download | freebsd-ports-gnome-a780bf9f2019a9b8607ac46e95e15d66e0310a19.tar.gz freebsd-ports-gnome-a780bf9f2019a9b8607ac46e95e15d66e0310a19.tar.zst freebsd-ports-gnome-a780bf9f2019a9b8607ac46e95e15d66e0310a19.zip |
Add a knob DOSBOX to control an optional run-time dependency on DOSBox.
Submitted by: Alex Kozlov <spam@rm-rf.kiev.ua>
Feature safe: yes
Diffstat (limited to 'emulators/wine-devel')
-rw-r--r-- | emulators/wine-devel/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/emulators/wine-devel/Makefile b/emulators/wine-devel/Makefile index 5ee2d55631dc..be9bb3d98df2 100644 --- a/emulators/wine-devel/Makefile +++ b/emulators/wine-devel/Makefile @@ -60,6 +60,7 @@ SUB_FILES= pkg-message PKGMESSAGE= ${WRKDIR}/pkg-message OPTIONS= CUPS "Use CUPS (Common UNIX Printing System)" Off \ + DOSBOX "Use DOSBox to run MS-DOS programs" Off \ GNUTLS "Use GnuTLS" Off \ HAL "Use HAL (Hardware Abstraction Layer)" Off \ LDAP "Use LDAP" Off \ @@ -78,6 +79,10 @@ CONFIGURE_ARGS+= --with-cups LIB_DEPENDS+= cups.2:${PORTSDIR}/print/cups-base .endif +.ifdef WITH_DOSBOX +RUN_DEPENDS+= dosbox:${PORTSDIR}/emulators/dosbox +.endif + .ifdef WITH_GNUTLS CONFIGURE_ARGS+= --with-gnutls LIB_DEPENDS+= gnutls.47:${PORTSDIR}/security/gnutls |