mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-19 00:13:33 +00:00
138eb13e8b
PR: 277322
114 lines
3.5 KiB
Makefile
114 lines
3.5 KiB
Makefile
PORTNAME= xvt
|
|
PORTVERSION= 3.0.6
|
|
PORTREVISION= 1
|
|
CATEGORIES= x11
|
|
MASTER_SITES= https://codeberg.org/BSDforge/${PORTNAME}/archive/
|
|
|
|
MAINTAINER= portmaster@BSDforge.com
|
|
COMMENT= Xterm replacement, supporting color, transparency, and more, with less
|
|
WWW= https://codeberg.org/BSDforge/xvt/
|
|
|
|
LICENSE= BSD2CLAUSE GPLv2
|
|
LICENSE_COMB= multi
|
|
|
|
USES= libtool perl5 xorg
|
|
USE_LDCONFIG= yes
|
|
USE_PERL5= build patch
|
|
USE_XORG= x11 xpm
|
|
GNU_CONFIGURE= yes
|
|
GNU_CONFIGURE_MANPREFIX= ${PREFIX}/share
|
|
|
|
PORTDOCS= README.xvt xvt.1.html xvtRef.html xvtRef.txt
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}
|
|
|
|
DESKTOP_ENTRIES= "xvt" \
|
|
"xvt terminal emulator" \
|
|
"${PREFIX}/share/pixmaps/xvt.png" \
|
|
"xvt" \
|
|
"GNOME;X-XFCE;X-Xfce-Toplevel;System;Utility;TerminalEmulator;" \
|
|
false
|
|
|
|
OPTIONS_DEFINE= 256_COLOR BIG5 DOCS EUCJ GB GREEK KR LINESPACE MENUBAR NEXT \
|
|
SJIS SMART TRANSPARENCY XGETDEFAULT XIM XTERM XVT
|
|
OPTIONS_DEFAULT= 256_COLOR DOCS GB LINESPACE MENUBAR NEXT SMART \
|
|
TRANSPARENCY XIM XTERM XVT
|
|
|
|
256_COLOR_DESC= Build with 256-color support
|
|
BIG5_DESC= Build with BIG5 support
|
|
EUCJ_DESC= Build with EUC Japanese support
|
|
GB_DESC= Build with GB support
|
|
GREEK_DESC= Build with greek keyboard support
|
|
KR_DESC= Build with EUC Korean support
|
|
LINESPACE_DESC= Build with linespace support
|
|
MENUBAR_DESC= Build with menubar support
|
|
NEXT_DESC= Build with NeXT scrollbar
|
|
XVT_DESC= Build with xvt scrollbar
|
|
SJIS_DESC= Build with Shift JIS support
|
|
SMART_DESC= Build with smart resize support
|
|
TRANSPARENCY_DESC= Build with transparency support
|
|
XIM_DESC= Build with XIM support
|
|
XTERM_DESC= Build with Xterm scrollbar
|
|
XGETDEFAULT_DESC= Build with resources checking via XGetDefault
|
|
|
|
CONFIGURE_ARGS= --disable-wtmp \
|
|
--enable-lastlog \
|
|
--enable-mousewheel \
|
|
--enable-shared \
|
|
--enable-utmp \
|
|
--enable-xpm-background \
|
|
--with-xpm
|
|
LIBS+= -lutil
|
|
|
|
# enable 256 color
|
|
256_COLOR_CONFIGURE_ENABLE= --enable-256-color
|
|
# enable big5 support
|
|
BIG5_CONFIGURE_ENABLE= --enable-languages \
|
|
--with-encoding=big5
|
|
# enable euc japanese support
|
|
EUCJ_CONFIGURE_ENABLE= --enable-languages \
|
|
--with-encoding=eucj
|
|
# enable gb support
|
|
GB_CONFIGURE_ENABLE= --enable-languages \
|
|
--with-encoding=gb
|
|
# enable greek keyboard support
|
|
GREEK_CONFIGURE_ENABLE= --enable-greek
|
|
# enable euc korean support
|
|
KR_CONFIGURE_ENABLE= --enable-languages \
|
|
--with-encoding=kr
|
|
# enable line-spacing
|
|
LINESPACE_CONFIGURE_ENABLE= --enable-linespace
|
|
# enable menubar
|
|
MENUBAR_CONFIGURE_ON= --enable-menubar
|
|
# enable NeXT style scrollbar
|
|
NEXT_CONFIGURE_ENABLE= --enable-next-scroll
|
|
# enable xvt style scrollbar
|
|
XVT_CONFIGURE_ENABLE= --enable-xvt-scroll
|
|
# enable shift jis support
|
|
SJIS_CONFIGURE_ENABLE= --enable-languages \
|
|
--with-encoding=sjis
|
|
# enable smart resize
|
|
SMART_CONFIGURE_ENABLE= --enable-smart-resize
|
|
# enable transparency support
|
|
TRANSPARENCY_CONFIGURE_ENABLE= --enable-transparency
|
|
# XIM (X Input Method) protocol support
|
|
XIM_CONFIGURE_ENABLE= --enable-xim
|
|
# enable Xterm style scrollbar
|
|
XTERM_CONFIGURE_ENABLE= --enable-xterm-scroll
|
|
# make resources checking via XGetDefault
|
|
XGETDEFAULT_CONFIGURE_ENABLE= --enable-xgetdefault
|
|
|
|
post-patch:
|
|
@${PERL} -pi -e 's|(PTYCHAR2\s+"[^"]+)"|\1ghijklmnopqrstuv"|' \
|
|
${WRKSRC}/src/ptytty.c
|
|
|
|
do-install-DOCS-on:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/doc/,} ${STAGEDIR}${DOCSDIR}/
|
|
|
|
post-install:
|
|
${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/xvt; \
|
|
${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libxvt.so.1.0.0 ;\
|
|
${INSTALL_DATA} ${WRKSRC}/W11/wrap/xvt.png ${STAGEDIR}${PREFIX}/share/pixmaps/xvt.png
|
|
|
|
.include <bsd.port.mk>
|