1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-03 06:04:53 +00:00
freebsd-ports/x11/tilda/Makefile
Rodrigo Osorio 92fee1b5dc x11/tilda: Upgrade from 1.4.1 to 1.5.0
Major new  features and improvements:
 - Backward search
 - Monitor changes fix
 - Fixes related to windows title
 - Tilda now uses asynchronous command spawning
 - In non-X11 environments such as Wayland, use X11 backend
 - Correctly free the resources when closing the a terminal tab
 - Fixed issue in transparency
 - Fixed a resize issue in fullscreen mode

Changes for developers:
 - Tilda now uses structured logging.

Deprecations:
 - Removed 'Allow Bold' option
 - Removed deprecated antialiasing option
 - Dropped support for older VTE versions

Full changelog: https://github.com/lanoxx/tilda/releases/tag/tilda-1.5.0
2020-03-26 08:16:12 +00:00

45 lines
1.0 KiB
Makefile

# $FreeBSD$
PORTNAME= tilda
PORTVERSION= 1.5.0
DISTVERSIONPREFIX= ${PORTNAME}-
CATEGORIES= x11
MAINTAINER= rodrigo@FreeBSD.org
COMMENT= Drop down x11 terminal with transparency support
LICENSE= GPLv2
BUILD_DEPENDS= vte3>=0:x11-toolkits/vte3
RUN_DEPENDS= vte3>=0:x11-toolkits/vte3
LIB_DEPENDS= libconfuse.so:devel/libconfuse
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --disable-rpath
USES= gmake gettext gnome pkgconfig autoreconf pathfix libtool xorg
USE_XORG+= x11
USE_GNOME+= glib20 gtk30 gdkpixbuf2 pango
INSTALL_TARGET= install-strip
USE_GITHUB= yes
GH_ACCOUNT= lanoxx
DOCS= AUTHORS ChangeLog HACKING.md README.md TODO.md
OPTIONS_DEFINE= DOCS
post-install:
${MKDIR} ${STAGEDIR}${DOCSDIR}
.for f in ${DOCS}
${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${DOCSDIR}
.endfor
@${ECHO_MSG} ""
@${ECHO_MSG} ""
@${ECHO_MSG} " ATTENTION:"
@${ECHO_MSG} " If you are upgrade from version 0.09.1 or below,"
@${ECHO_MSG} " you'll need to delete your old config files and "
@${ECHO_MSG} " make them again."
@${ECHO_MSG} ""
@${ECHO_MSG} ""
.include <bsd.port.mk>