mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-25 09:34:11 +00:00
3680f27ebf
release can be found at http://library.gnome.org/misc/release-notes/2.32/ This will be the last release of the GNOME 2.x series, mainly a bugfix and bridge release to the first release of the GNOME 3.x series. This release features commits by avl, marcus, mezz and myself. The FreeBSD GNOME Team would like to thank the following contributors and testers for there help with this release: Zane C.B. <vvelox@vvelox.net> romain@ Olaf Seibert <O.Seibert@cs.ru.nl> DomiX Bapt <baptiste.daroussin@gmail.com> jsa@ miwi@ Sergio de Almeida Lenzi <lenzi.sergio@gmail.com> Maxim Samsonov <xors@mne.ru> Kris Moore And pav@ for 2 exp-runs PR: ports/152255 ports/143260 ports/141033 ports/149629 ports/150350 ports/151523 With hat: gnome@
63 lines
1.6 KiB
Makefile
63 lines
1.6 KiB
Makefile
# New ports collection makefile for: vinagre
|
|
# Date created: 16 December 2007
|
|
# Whom: Joe Marcus Clarke <marcus@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
# $MCom: ports/net/vinagre/Makefile,v 1.42 2010/09/29 14:23:36 kwm Exp $
|
|
#
|
|
|
|
PORTNAME= vinagre
|
|
PORTVERSION= 2.30.3
|
|
CATEGORIES= net gnome
|
|
MASTER_SITES= GNOME
|
|
DIST_SUBDIR= gnome2
|
|
|
|
MAINTAINER= gnome@FreeBSD.org
|
|
COMMENT= VNC client for the GNOME Desktop
|
|
|
|
LIB_DEPENDS= gtk-vnc-1.0.0:${PORTSDIR}/net/gtk-vnc \
|
|
avahi-core.7:${PORTSDIR}/net/avahi-app \
|
|
avahi-ui.0:${PORTSDIR}/net/avahi-gtk \
|
|
gnome-keyring:${PORTSDIR}/security/libgnome-keyring
|
|
|
|
USE_BZIP2= yes
|
|
USE_GETTEXT= yes
|
|
USE_GNOME= gnomeprefix intlhack gnomehack vte gconf2 gnomedocutils \
|
|
gnomepanel
|
|
USE_GMAKE= yes
|
|
GNU_CONFIGURE= yes
|
|
INSTALLS_OMF= yes
|
|
INSTALLS_ICONS= yes
|
|
CONFIGURE_ARGS= --enable-avahi --enable-applet -enable-ssh
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
|
LDFLAGS="-L${LOCALBASE}/lib"
|
|
|
|
GCONF_SCHEMAS= vinagre.schemas
|
|
|
|
MAN1= vinagre.1
|
|
|
|
OPTIONS= TELEPATHY "Enable telepathy integration" on
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if !defined(WITHOUT_TELEPATHY)
|
|
CONFIGURE_ARGS+=--enable-telepathy
|
|
LIB_DEPENDS+= telepathy-glib.0:${PORTSDIR}/net-im/telepathy-glib
|
|
PLIST_SUB+= TELEPATHY=""
|
|
.else
|
|
CONFIGURE_ARGS+=--disable-telepathy
|
|
PLIST_SUB+= TELEPATHY="@comment "
|
|
.endif
|
|
|
|
post-install:
|
|
@-update-desktop-database > /dev/null
|
|
@-update-mime-database ${PREFIX}/share/mime > /dev/null
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${DOCSDIR}
|
|
.for f in AUTHORS COPYING ChangeLog MAINTAINERS NEWS README
|
|
${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR}
|
|
.endfor
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|