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
56 lines
1.5 KiB
Makefile
56 lines
1.5 KiB
Makefile
# $NetBSD: Makefile,v 1.56 2018/11/30 17:25:05 nia Exp $
|
|
#
|
|
|
|
DISTNAME= aterm-1.0.1
|
|
CATEGORIES= x11
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=aterm/}
|
|
EXTRACT_SUFX= .tar.bz2
|
|
#CVS_ROOT= :pserver:anonymous@cvs.aftercode.net:/home/cvsroot
|
|
#CVS_MODULE= aterm1
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://www.afterstep.org/aterm.php
|
|
COMMENT= Aterm (Afterstep XVT) - a VT102 emulator for the X window system
|
|
LICENSE= gnu-gpl-v2
|
|
|
|
GNU_CONFIGURE= YES
|
|
MAKE_JOBS_SAFE= no
|
|
|
|
CONFIGURE_ARGS+=--enable-background-image \
|
|
--enable-transparency \
|
|
--enable-fading \
|
|
--enable-graphics \
|
|
--with-xpm \
|
|
--with-xpm-includes=${BUILDLINK_PREFIX.libXpm}/include \
|
|
--with-xpm-library=${BUILDLINK_PREFIX.libXpm}/lib \
|
|
--with-jpeg \
|
|
--with-jpeg-includes=${JPEGBASE}/include \
|
|
--with-jpeg-library=${JPEGBASE}/lib \
|
|
--with-png \
|
|
--with-png-library=${BUILDLINK_PREFIX.png}/lib \
|
|
--with-png-includes=${BUILDLINK_PREFIX.png}/include \
|
|
--enable-utmp \
|
|
--enable-wtmp
|
|
|
|
.include "options.mk"
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
.if ${OPSYS:M*BSD} || ${OPSYS} == "Darwin"
|
|
# Make aterm setuid root so that tty ownership setting and utmp logging
|
|
# function correctly.
|
|
#
|
|
CONFIGURE_ARGS+= --enable-ttygid
|
|
SPECIAL_PERMS= ${PREFIX}/bin/aterm ${SETUID_ROOT_PERMS}
|
|
.endif
|
|
|
|
BUILDLINK_DEPMETHOD.libXt= build
|
|
|
|
.include "../../mk/jpeg.buildlink3.mk"
|
|
.include "../../graphics/png/buildlink3.mk"
|
|
.include "../../x11/libSM/buildlink3.mk"
|
|
.include "../../x11/libX11/buildlink3.mk"
|
|
.include "../../x11/libXpm/buildlink3.mk"
|
|
.include "../../x11/libXt/buildlink3.mk"
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|