- Replace ${MASTER_SITE_FOO} with FOO. - Merge MASTER_SITE_SUBDIR into MASTER_SITES when possible. (This means 99.9% of the time.) - Remove occurrences of MASTER_SITE_LOCAL when no subdirectory was present and no hint of what it should be was present. - Fix some logic. - And generally, make things more simple and easy to understand. While there, add magic values to the FESTIVAL, GENTOO, GIMP, GNUPG, QT and SAMBA macros. Also, replace some EXTRACT_SUFX occurences with USES=tar:*. Checked by: make fetch-urlall-list With hat: portmgr Sponsored by: Absolight
30 lines
844 B
Makefile
30 lines
844 B
Makefile
# Created by: Florent Thoumie <flz@xbsd.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= grdesktop
|
|
PORTVERSION= 0.23
|
|
PORTREVISION= 12
|
|
CATEGORIES= net
|
|
MASTER_SITES= SAVANNAH
|
|
|
|
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>
|