mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 01:39:16 -04:00
Add ReGIS graphics support.
PR: 192084 Submitted by: IWAMOTO Kouichi <sue@iwmt.org>
This commit is contained in:
parent
b482c1dfec
commit
eb7b7e7d3f
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=378736
2 changed files with 17 additions and 2 deletions
|
@ -3,6 +3,7 @@
|
||||||
|
|
||||||
PORTNAME= mlterm
|
PORTNAME= mlterm
|
||||||
PORTVERSION= 3.4.2
|
PORTVERSION= 3.4.2
|
||||||
|
PORTREVISION= 1
|
||||||
CATEGORIES= x11
|
CATEGORIES= x11
|
||||||
MASTER_SITES= SF/${PORTNAME}/01release/${PORTNAME}-${PORTVERSION}
|
MASTER_SITES= SF/${PORTNAME}/01release/${PORTNAME}-${PORTVERSION}
|
||||||
|
|
||||||
|
@ -17,17 +18,18 @@ USE_PERL5= build
|
||||||
GNU_CONFIGURE= yes
|
GNU_CONFIGURE= yes
|
||||||
CONFIGURE_ARGS= --with-gui=x11 --with-imagelib=gdk-pixbuf2 --enable-utmp \
|
CONFIGURE_ARGS= --with-gui=x11 --with-imagelib=gdk-pixbuf2 --enable-utmp \
|
||||||
--enable-optimize-redrawing \
|
--enable-optimize-redrawing \
|
||||||
--with-tools="mlclient,mlconfig,mlterm-menu,mlcc,w3mmlconfig,mlimgloader" \
|
|
||||||
--disable-iiimf
|
--disable-iiimf
|
||||||
|
EXTERNAL_TOOLS= mlclient,mlconfig,mlterm-menu,mlcc,w3mmlconfig,mlimgloader
|
||||||
CPPFLAGS+= -I${LOCALBASE}/include
|
CPPFLAGS+= -I${LOCALBASE}/include
|
||||||
LDFLAGS+= -L${LOCALBASE}/lib -lintl
|
LDFLAGS+= -L${LOCALBASE}/lib -lintl
|
||||||
MAKE_JOBS_UNSAFE= yes
|
MAKE_JOBS_UNSAFE= yes
|
||||||
|
|
||||||
OPTIONS_DEFINE= CAIRO DOCS FRIBIDI IBUS M17NLIB SCIM SIXEL UIM
|
OPTIONS_DEFINE= CAIRO DOCS FRIBIDI IBUS M17NLIB REGIS SCIM SIXEL UIM
|
||||||
CAIRO_DESC= Use Cairo for type engine (experimental)
|
CAIRO_DESC= Use Cairo for type engine (experimental)
|
||||||
FRIBIDI_DESC= Use Fribidi for BiDi rendering
|
FRIBIDI_DESC= Use Fribidi for BiDi rendering
|
||||||
IBUS_DESC= IBUS support (experimental)
|
IBUS_DESC= IBUS support (experimental)
|
||||||
M17NLIB_DESC= m17n library support (experimental)
|
M17NLIB_DESC= m17n library support (experimental)
|
||||||
|
REGIS_DESC= ReGIS graphics support
|
||||||
SCIM_DESC= SCIM support (experimental)
|
SCIM_DESC= SCIM support (experimental)
|
||||||
SIXEL_DESC= Sixel graphics support
|
SIXEL_DESC= Sixel graphics support
|
||||||
UIM_DESC= uim support (experimental)
|
UIM_DESC= uim support (experimental)
|
||||||
|
@ -96,6 +98,18 @@ CONFIGURE_ARGS+= --disable-sixel
|
||||||
PLIST_SUB+= SIXEL="@comment "
|
PLIST_SUB+= SIXEL="@comment "
|
||||||
.endif
|
.endif
|
||||||
|
|
||||||
|
.if ${PORT_OPTIONS:MREGIS}
|
||||||
|
LIB_DEPENDS+= libSDL.so:${PORTSDIR}/devel/sdl12 \
|
||||||
|
libSDL_ttf.so:${PORTSDIR}/graphics/sdl_ttf \
|
||||||
|
libfontconfig.so:${PORTSDIR}/x11-fonts/fontconfig
|
||||||
|
EXTERNAL_TOOLS+=,registobmp
|
||||||
|
PLIST_SUB+= REGIS=""
|
||||||
|
.else
|
||||||
|
PLIST_SUB+= REGIS="@comment "
|
||||||
|
.endif
|
||||||
|
|
||||||
|
CONFIGURE_ARGS+=--with-tools="${EXTERNAL_TOOLS}"
|
||||||
|
|
||||||
.if ${OSVERSION} < 900004
|
.if ${OSVERSION} < 900004
|
||||||
LIB_DEPENDS+= libutempter.so:${PORTSDIR}/sysutils/libutempter
|
LIB_DEPENDS+= libutempter.so:${PORTSDIR}/sysutils/libutempter
|
||||||
.endif
|
.endif
|
||||||
|
|
|
@ -67,6 +67,7 @@ lib/mlterm/libtype_xft.so
|
||||||
libexec/mlterm/mlconfig
|
libexec/mlterm/mlconfig
|
||||||
libexec/mlterm/mlimgloader
|
libexec/mlterm/mlimgloader
|
||||||
libexec/mlterm/mlterm-menu
|
libexec/mlterm/mlterm-menu
|
||||||
|
%%REGIS%%libexec/mlterm/registobmp
|
||||||
libexec/w3mmlconfig/mlconfig-data.pl
|
libexec/w3mmlconfig/mlconfig-data.pl
|
||||||
libexec/w3mmlconfig/mlconfig.cgi
|
libexec/w3mmlconfig/mlconfig.cgi
|
||||||
man/man1/mlclient.1.gz
|
man/man1/mlclient.1.gz
|
||||||
|
|
Loading…
Add table
Reference in a new issue