7887c684ad
are the latest stable releases. * Update vala to the newest stable release 0.18.1, also update a few ports in the gtk/gnome stack. * The c++ bindings ports for glib, atk, gconf, etc, have now USE_GNOME toggles. * Remove pkg-config run depends from glib20 and freetype2. This doesn't eliminate pkg-config run dependency completely, a second phase is needed and is planned. * Support for .:run. and .:build. for USE_GNOME components was added. Currently only libxml2 and libxslt support this mechanism. * Updates of the telepathy stack and empathy. * Trim makefile headers, convert ports to new options, trim off library versions for some ports. * Fix other ports so they build with the new glib version. Thanks to miwi and crees for helping out with some exp-runs. Approved by: portmgr (miwi & bapt) Obtained from: gnome team repo
48 lines
1.1 KiB
Makefile
48 lines
1.1 KiB
Makefile
# New ports collection makefile for: tilda
|
|
# Date created: 4 Jan 2005
|
|
# Whom: Vlad V. Teterya <vlad@vlad.uz.ua>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= tilda
|
|
PORTVERSION= 0.9.6
|
|
PORTREVISION= 5
|
|
CATEGORIES= x11
|
|
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION}
|
|
|
|
MAINTAINER= vlad@vlad.uz.ua
|
|
COMMENT= Drop down x11 terminal with transparency support
|
|
|
|
LIB_DEPENDS= confuse.0:${PORTSDIR}/devel/libconfuse
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_GNOME= gtk20 libglade2 vte
|
|
USE_GMAKE= yes
|
|
|
|
DOCS= AUTHORS ChangeLog README TODO
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|ps -C tilda -o pid=|pgrep tilda|' \
|
|
${WRKSRC}/src/tilda.c
|
|
@${REINPLACE_CMD} -e 's|glib/.*\.h>|glib.h>|g' \
|
|
${WRKSRC}/src/tomboykeybinder.h
|
|
|
|
post-install:
|
|
.if !defined (NOPORTDOCS)
|
|
${MKDIR} ${DOCSDIR}
|
|
.for f in ${DOCS}
|
|
${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR}
|
|
.endfor
|
|
.endif
|
|
|
|
@${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>
|