60d1a83c2a
- 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
32 lines
768 B
Makefile
32 lines
768 B
Makefile
# Created by: Adrian Wontroba <aw1@stade.co.uk>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= xlogmaster
|
|
PORTVERSION= 1.6.2
|
|
PORTREVISION= 1
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= GNU
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Quick & easy monitoring of logfiles and devices
|
|
|
|
USE_GNOME= gtk12
|
|
USES= gmake makeinfo
|
|
GNU_CONFIGURE= yes
|
|
|
|
INFO= xlogmaster
|
|
|
|
CPPFLAGS+= -I${LOCALBASE}/include -DHAVE_DECL_GETOPT
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
|
|
post-patch:
|
|
@${FIND} ${WRKSRC} -name Makefile.in -exec ${REINPLACE_CMD} -E \
|
|
'/(SHELL|cp -f|mkinstalldirs)/ s,XLM_(DB|HOME|LIB),DESTDIR)$$(&,g' {} \;
|
|
@${REINPLACE_CMD} -e \
|
|
's|getopt_long_only|getopt_long|g' ${WRKSRC}/src/xlogmaster.cc
|
|
|
|
post-install:
|
|
${INSTALL_DATA} ${FILESDIR}/xlogmasterrc \
|
|
${STAGEDIR}${PREFIX}/etc/xlogmaster
|
|
|
|
.include <bsd.port.mk>
|