mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-24 04:33:24 +00:00
d730a9356e
These ports require msgfmt. FreeBSD doesn't fail to build these ports because a default option on gvfs brings in this tool. The same gvfs option is off by default on DragonFly and thus the missing dependencies were unmasked. Explicitly add gettext-tools to get msgfmt.
32 lines
891 B
Makefile
32 lines
891 B
Makefile
# Created by: Florent Thoumie <flz@xbsd.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= grdesktop
|
|
PORTVERSION= 0.23
|
|
PORTREVISION= 12
|
|
CATEGORIES= net
|
|
MASTER_SITES= ${MASTER_SITE_SAVANNAH}
|
|
MASTER_SITE_SUBDIR= ${PORTNAME}
|
|
|
|
MAINTAINER= flz@FreeBSD.org
|
|
COMMENT= GNOME frontend for the remote desktop client (rdesktop)
|
|
|
|
RUN_DEPENDS= rdesktop:${PORTSDIR}/net/rdesktop
|
|
|
|
GNU_CONFIGURE= yes
|
|
USES= gettext-tools gmake pathfix pkgconfig
|
|
USE_GNOME= libgnomeui gnomeprefix
|
|
GCONF_SCHEMAS= grdesktop.schemas
|
|
INSTALLS_OMF= yes
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
CONFIGURE_ARGS= --with-keymap-path=${LOCALBASE}/share/rdesktop/keymaps
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|^\(GETTEXT_PACKAGE =\).*|\1 grdesktop|' ${WRKSRC}/po/Makefile.in.in
|
|
|
|
post-install:
|
|
@${INSTALL_DATA} ${STAGEDIR}${PREFIX}/share/pixmaps/grdesktop/icon.png ${STAGEDIR}${PREFIX}/share/pixmaps/grdesktop.png
|
|
|
|
.include <bsd.port.mk>
|