mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-23 04:23:08 +00:00
beb1c1fe19
Ports using USES=lua:module or lua:flavors will be flavored. A range of supported lua versions can be set using XX-YY (or XX-, or -YY, or simply ZZ) for ports not supporting all lua versions. USES=lua sets LUA_FLAVOR that needs to be used on all dependencies of flavored lua ports, in a similar way as PHP or Python flavors. PR: 245038 Submitted by: andrew tao11 riddles org uk Reviewed by: mat, kevans, russ haley gmail com Approved by: mat (portmgr) Differential Revision: https://reviews.freebsd.org/D16494
49 lines
1.3 KiB
Makefile
49 lines
1.3 KiB
Makefile
# Created by: gahr
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= fxite
|
|
DISTVERSIONPREFIX= FXITE-
|
|
DISTVERSION= 0_92
|
|
PORTREVISION= 4
|
|
CATEGORIES= editors
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Advanced cross-platform text editor
|
|
|
|
LICENSE= GPLv3
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= yetanothergeek
|
|
|
|
USES= autoreconf desktop-file-utils gettext gmake lua:52 pkgconfig
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --with-system-lua \
|
|
--with-lua-pkg=lua-${LUA_VER}
|
|
|
|
CXXFLAGS+= -fPIC
|
|
LDFLAGS+= -L${LOCALBASE}/lib -lintl
|
|
|
|
PLIST_FILES= bin/fxite \
|
|
share/applications/fxite.desktop \
|
|
share/pixmaps/fxite.xpm
|
|
|
|
OPTIONS_SINGLE= TOOLKIT
|
|
OPTIONS_SINGLE_TOOLKIT= FOX16 FOX17
|
|
OPTIONS_DEFAULT= FOX16
|
|
|
|
FOX16_DESC= Fox 1.6 GUI toolkit support
|
|
FOX16_LIB_DEPENDS= libFOX-1.6.so:x11-toolkits/fox16
|
|
FOX16_CONFIGURE_ENV= FOX_CFLAGS="$$(fox-config --cflags)" \
|
|
FOX_LIBS="$$(fox-config --libs)" \
|
|
RESWRAP="${LOCALBASE}/bin/reswrap"
|
|
FOX17_DESC= Fox 1.7 GUI toolkit support
|
|
FOX17_BROKEN= Fails to build: recorder.cpp:104:9: error: no matching member function for call to 'prepend'
|
|
FOX17_LIB_DEPENDS= libFOX-1.7.so:x11-toolkits/fox17
|
|
FOX17_CONFIGURE_ENV= FOX_CFLAGS="$$(pkgconf fox17 --cflags)" \
|
|
FOX_LIBS="$$(pkgconf fox17 --libs) -lX11" \
|
|
RESWRAP="${LOCALBASE}/bin/fox-1.7/reswrap"
|
|
TOOLKIT_DESC= GUI toolkit
|
|
|
|
.include <bsd.port.mk>
|