27c83d4482
Bit over 11 years late, but at least we got there in the end! ChangeLog: 2007-08-01 vae * adding CL generation to makefiles * fixing configure bug * preparing configure for 1.0.1 * changed MWM HINTS, re gentoo bug #139554. 2006-06-26 sasha * fixed compile errors when no XLocale is available 2006-03-29 sasha * converted main.c back to unix mode * converted screen.c back to unix mode 2006-02-17 sasha * fixed bug preventing from pasting more then 16Kb into aterm 2006-02-13 sasha * minor cleanups * fix for the high-ascii pasting in screen.c - need to use XA_STRING ??? 2006-01-08 sasha * added patch for background refresh on desktop changes in ion3 when pixmap has not changed 2005-12-21 sasha * added uninstall target to the top Makefile 2005-12-06 sasha * Added patch for XIM support gratiously provided by calkin@ieee.org 2005-09-19 sasha * updated mappings for F1-F4 to modern \033OP, etc. * possibly fixed pasting on 64bit systems 2005-09-06 sasha * updated contacts info in man page * applyed term size patch from daniel@roe.ch 2005-07-11 sasha * fixed geometry printing into stderr
31 lines
774 B
Makefile
31 lines
774 B
Makefile
# $NetBSD: options.mk,v 1.4 2018/11/30 17:25:05 nia Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.aterm
|
|
PKG_SUPPORTED_OPTIONS= aterm-big5 aterm-greek aterm-kanji aterm-xterm-scroll \
|
|
afterstep
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
.if !empty(PKG_OPTIONS:Mafterstep)
|
|
.include "../../graphics/tiff/buildlink3.mk"
|
|
.include "../../wm/afterstep/buildlink3.mk"
|
|
LDFLAGS.NetBSD+=-lexecinfo
|
|
.else
|
|
CONFIGURE_ARGS+=--without-afterimage_config --without-afterstep_config
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Materm-big5)
|
|
CONFIGURE_ARGS+=--enable-big5
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Materm-greek)
|
|
CONFIGURE_ARGS+=--enable-greek
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Materm-kanji)
|
|
CONFIGURE_ARGS+=--enable-kanji
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Materm-xterm-scroll)
|
|
CONFIGURE_ARGS+=--enable-xterm-scroll
|
|
.endif
|