mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-05 01:55:52 +00:00
40 lines
851 B
Makefile
40 lines
851 B
Makefile
# Created by: Jason Helfman <jgh@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= virt-viewer
|
|
PORTVERSION= 0.5.6
|
|
PORTREVISION= 1
|
|
CATEGORIES= net-mgmt
|
|
MASTER_SITES= http://virt-manager.org/download/sources/${PORTNAME}/
|
|
|
|
MAINTAINER= jgh@FreeBSD.org
|
|
COMMENT= Provides a graphical viewer for a guest OS display
|
|
|
|
BUILD_DEPENDS= xml2-config:${PORTSDIR}/textproc/libxml2 \
|
|
intltoolize:${PORTSDIR}/textproc/intltool
|
|
LIB_DEPENDS= virt.1001:${PORTSDIR}/devel/libvirt \
|
|
gtk-vnc-1.0.0:${PORTSDIR}/net/gtk-vnc
|
|
|
|
OPTIONS_DEFINE= NLS
|
|
|
|
FETCH_ARGS= -Fpr
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ENV+= DATADIRNAME=share
|
|
USES= gmake
|
|
|
|
MAN1= remote-viewer.1 virt-viewer.1
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MNLS}
|
|
USES+= gettext
|
|
PLIST_SUB+= NLS=""
|
|
CONFIGURE_ARGS+= --enable-nls
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-nls
|
|
PLIST_SUB+= NLS="@comment "
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|