mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-04 01:48:54 +00:00
f935a609c5
supports them. This is determined by running ``configure --help'' in do-configure target and set the shell variable _LATE_CONFIGURE_ARGS which is then passed to CONFIGURE_ARGS. - Remove --mandir and --infodir in ports' Makefile where applicable Few ports use REINPLACE_CMD to achieve the same effect, remove them too. - Correct some manual pages location from PREFIX/man to MANPREFIX/man - Define INFO_PATH where necessary - Document that .info files are installed in a subdirectory relative to PREFIX/INFO_PATH and slightly change add-plist-info to use INFO_PATH and subdirectory detection. PR: ports/111470 Approved by: portmgr Discussed with: stas (Mk/*), gerald (info related stuffs) Tested by: pointyhat exp run
36 lines
709 B
Makefile
36 lines
709 B
Makefile
# New ports collection makefile for: xlog
|
|
# Date created: 2002-11-05
|
|
# Whom: Patrick Gardella <patrick@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= xlog
|
|
PORTVERSION= 1.5
|
|
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 gnomelibs 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}
|
|
|
|
.include <bsd.port.mk>
|