2007-12-16 20:33:16 +01:00
|
|
|
# New ports collection makefile for: vinagre
|
|
|
|
# Date created: 16 December 2007
|
|
|
|
# Whom: Joe Marcus Clarke <marcus@FreeBSD.org>
|
|
|
|
#
|
|
|
|
# $FreeBSD$
|
2008-03-24 04:52:36 +01:00
|
|
|
# $MCom: ports/net/vinagre/Makefile,v 1.5 2008/03/10 15:15:00 ahze Exp $
|
2007-12-16 20:33:16 +01:00
|
|
|
#
|
|
|
|
|
|
|
|
PORTNAME= vinagre
|
2008-04-07 16:44:57 +02:00
|
|
|
PORTVERSION= 0.5.1
|
- Remove unneeded dependency from gtk12/gtk20 [1]
- Remove USE_XLIB/USE_X_PREFIX/USE_XPM in favor of USE_XORG
- Remove X11BASE support in favor of LOCALBASE or PREFIX
- Use USE_LDCONFIG instead of INSTALLS_SHLIB
- Remove unneeded USE_GCC 3.4+
Thanks to all Helpers:
Dmitry Marakasov, Chess Griffin, beech@, dinoex, rafan, gahr,
ehaupt, nox, itetcu, flz, pav
PR: 116263
Tested on: pointyhat
Approved by: portmgr (pav)
2008-04-19 19:56:05 +02:00
|
|
|
PORTREVISION= 1
|
2007-12-16 20:33:16 +01:00
|
|
|
CATEGORIES= net gnome
|
|
|
|
MASTER_SITES= ${MASTER_SITE_GNOME}
|
|
|
|
MASTER_SITE_SUBDIR= sources/${PORTNAME}/${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/}
|
2008-03-24 04:52:36 +01:00
|
|
|
DIST_SUBDIR= gnome2
|
2007-12-16 20:33:16 +01:00
|
|
|
|
|
|
|
MAINTAINER= gnome@FreeBSD.org
|
|
|
|
COMMENT= VNC client for the GNOME Desktop
|
|
|
|
|
|
|
|
LIB_DEPENDS= gtk-vnc-1.0.0:${PORTSDIR}/net/gtk-vnc \
|
2007-12-27 02:04:17 +01:00
|
|
|
avahi-core.5:${PORTSDIR}/net/avahi-app \
|
2007-12-19 19:58:21 +01:00
|
|
|
avahi-ui.0:${PORTSDIR}/net/avahi-gtk \
|
|
|
|
gnome-keyring:${PORTSDIR}/security/gnome-keyring
|
2007-12-16 20:33:16 +01:00
|
|
|
|
|
|
|
USE_BZIP2= yes
|
|
|
|
USE_GETTEXT= yes
|
2008-03-24 04:52:36 +01:00
|
|
|
USE_GNOME= gnomeprefix intlhack gnomehack libglade2 gconf2 gnomedocutils
|
2007-12-16 20:33:16 +01:00
|
|
|
USE_GMAKE= yes
|
|
|
|
GNU_CONFIGURE= yes
|
2008-03-24 04:52:36 +01:00
|
|
|
INSTALLS_OMF= yes
|
2007-12-16 20:33:16 +01:00
|
|
|
INSTALLS_ICONS= yes
|
|
|
|
CONFIGURE_ARGS= --enable-avahi
|
|
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
|
|
|
LDFLAGS="-L${LOCALBASE}/lib"
|
|
|
|
|
2008-03-24 04:52:36 +01:00
|
|
|
GCONF_SCHEMAS= vinagre.schemas
|
|
|
|
|
|
|
|
MAN1= vinagre.1
|
|
|
|
|
2007-12-16 20:33:16 +01:00
|
|
|
post-install:
|
2007-12-30 19:21:20 +01:00
|
|
|
@-update-desktop-database > /dev/null
|
|
|
|
@-update-mime-database ${PREFIX}/share/mime > /dev/null
|
2007-12-16 20:33:16 +01:00
|
|
|
.if !defined(NOPORTDOCS)
|
|
|
|
${MKDIR} ${DOCSDIR}
|
2008-03-24 04:52:36 +01:00
|
|
|
.for f in AUTHORS COPYING ChangeLog MAINTAINERS NEWS README
|
2007-12-16 20:33:16 +01:00
|
|
|
${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR}
|
|
|
|
.endfor
|
|
|
|
.endif
|
|
|
|
|
|
|
|
.include <bsd.port.mk>
|