mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-05 06:27:37 +00:00
090059a210
The affected ports are the ones with gettext as a run-dependency according to ports/INDEX-7 (5007 of them) and the ones with USE_GETTEXT in Makefile (29 of them). PR: ports/124340 Submitted by: edwin@ Approved by: portmgr (pav)
41 lines
818 B
Makefile
41 lines
818 B
Makefile
# New ports collection makefile for: xlog
|
|
# Date created: 2002-11-05
|
|
# Whom: Patrick Gardella <patrick@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= xlog
|
|
PORTVERSION= 1.7
|
|
PORTREVISION= 1
|
|
CATEGORIES= comms hamradio
|
|
MASTER_SITES= http://pg4i.chronos.org.uk/download/ \
|
|
http://www.qsl.net/pg4i/download/
|
|
|
|
MAINTAINER= matt@chronos.org.uk
|
|
COMMENT= Amateur Radio logging application
|
|
|
|
USE_GETTEXT= yes
|
|
USE_GNOME= libgnomeprint gtk20
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --with-mime-update
|
|
|
|
LIB_DEPENDS+= hamlib:${PORTSDIR}/comms/hamlib
|
|
|
|
MAN1= xlog.1
|
|
|
|
.if defined (WITHOUT_NLS)
|
|
CONFIGURE_ARGS+= --disable-nls
|
|
WITHNLS= "@comment "
|
|
.else
|
|
WITHNLS= ""
|
|
.endif
|
|
|
|
PLIST_SUB+= WITHNLS=${WITHNLS}
|
|
|
|
post-patch:
|
|
@${FIND} ${WRKSRC} -name Makefile.in | ${XARGS} ${REINPLACE_CMD} -e \
|
|
's|-D.*_DISABLE_DEPRECATED||g'
|
|
|
|
.include <bsd.port.mk>
|