mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-16 07:58:04 +00:00
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
54 lines
1.2 KiB
Makefile
54 lines
1.2 KiB
Makefile
# New ports collection makefile for: giggle
|
|
# Date created: 2008-10-01
|
|
# Whom: Ashish Shukla <wahjava@gmail.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= giggle
|
|
PORTVERSION= 0.5
|
|
PORTREVISION= 3
|
|
CATEGORIES= devel
|
|
MASTER_SITES= GNOME
|
|
|
|
MAINTAINER= ashish@FreeBSD.org
|
|
COMMENT= GTK+ frontend for git version control system
|
|
|
|
BUILD_DEPENDS= git:${PORTSDIR}/devel/git \
|
|
p5-XML-Parser>=0:${PORTSDIR}/textproc/p5-XML-Parser
|
|
RUN_DEPENDS= git:${PORTSDIR}/devel/git
|
|
OPTIONS= EDS "Evolution Data Server support" On \
|
|
VTE "Terminal Widget" On
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_GMAKE= yes
|
|
USE_BZIP2= yes
|
|
USE_GNOME= glib20 gtk20 gtksourceview2 libglade2
|
|
USE_GETTEXT= yes
|
|
USE_LDCONFIG= yes
|
|
INSTALLS_ICONS= yes
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
LDFLAGS+= -L${LOCALBASE}/lib -lintl `pkg-config -libs gmodule-2.0`
|
|
PLIST_SUB+= GIGGLE_VER=${PORTVERSION}
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if defined(WITHOUT_EDS)
|
|
CONFIGURE_ARGS+= --disable-evolution-data-server
|
|
.elif defined(WITH_EDS)
|
|
USE_GNOME+= evolutiondataserver
|
|
.endif
|
|
|
|
.if defined(WITH_VTE)
|
|
USE_GNOME+= vte
|
|
PLIST_SUB+= VTE=""
|
|
.elif defined(WITHOUT_VTE)
|
|
CONFIGURE_ARGS+= --disable-terminal
|
|
PLIST_SUB+= VTE="@comment "
|
|
.endif
|
|
|
|
post-install:
|
|
@-update-desktop-database
|
|
|
|
.include <bsd.port.mk>
|