1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-23 00:43:28 +00:00

Remove gnomehack which was unused anyway

While here:
- Use OPTIONS_SUB
- Use OPTIONS_SINGLE
This commit is contained in:
Baptiste Daroussin 2014-12-25 01:26:27 +00:00
parent c8cfba3557
commit d0b3abaac3
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=375505

View File

@ -15,32 +15,26 @@ BUILD_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/iso-codes.pc:${PORTSDIR}/misc/iso-
${LOCALBASE}/libdata/pkgconfig/dbus-glib-1.pc:${PORTSDIR}/devel/dbus-glib
LIB_DEPENDS= libfcitx-config.so:${PORTSDIR}/chinese/fcitx
USE_GNOME= intltool gnomehack
USE_GNOME= intltool
USES= cmake gettext pkgconfig tar:xz
OPTIONS_DEFINE= GTK2 GTK3
OPTIONS_SINGLE= UI
UI_DESC= Gtk version to use
OPTIONS_SINGLE_UI= GTK2 GTK3
OPTIONS_DEFAULT=GTK2
OPTIONS_SUB= yes
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MGTK2}
CMAKE_ARGS+= -DENABLE_GTK2=ON
USE_GNOME+= gtk20
PLIST_SUB+= GTK2=""
.else
PLIST_SUB+= GTK2="@comment "
.endif
.if ${PORT_OPTIONS:MGTK3}
USE_GNOME+= gtk30
PLIST_SUB+= GTK3=""
.else
CMAKE_ARGS+= -DENABLE_GTK3=OFF
PLIST_SUB+= GTK3="@comment "
.endif
.if !${PORT_OPTIONS:MGTK2} && !${PORT_OPTIONS:MGTK3}
IGNORE= a GUI is required
.endif
.include <bsd.port.mk>