1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-24 04:33:24 +00:00

. remove shlib ABI cersion from LIB_DEPENDS;

. remove LICENSE_FILE of the standard one (GPLv2);
. bump PORTREVISION;
. trim Makefile headers;
. NOPORTDOCS -> PORT_OPTIONS:MDOCS;
. NOPORTEXAMPLES -> PORT_OPTIONS:MEXAMPLES;
. do not run mkdir for the same directory multiple times;
. use plain install instead of .for loops.
This commit is contained in:
Boris Samorodov 2013-05-27 14:38:07 +00:00
parent a2f5181806
commit 67639b9ad5
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=319251

View File

@ -1,13 +1,9 @@
# New ports collection makefile for: metalog
# Date Created: 27 Aug 2002
# Whom: Sergei Kolobov <sergei@kolobov.com>
#
# Created by: Sergei Kolobov <sergei@kolobov.com>
# $FreeBSD$
#
PORTNAME= metalog
DISTVERSION= 0.8
PORTREVISION= 2
PORTREVISION= 3
PORTEPOCH= 1
CATEGORIES= sysutils
MASTER_SITES= SF/${PORTNAME}/old
@ -16,9 +12,8 @@ MAINTAINER= ports@FreeBSD.org
COMMENT= Modern syslogd replacement with PCRE support
LICENSE= GPLv2
LICENSE_FILE= ${WRKSRC}/COPYING
LIB_DEPENDS= pcre.3:${PORTSDIR}/devel/pcre
LIB_DEPENDS= pcre:${PORTSDIR}/devel/pcre
USE_BZIP2= yes
USE_RC_SUBR= ${PORTNAME}
@ -35,21 +30,21 @@ PORTDOCS= AUTHORS NEWS README
PORTEXAMPLES= metalog.conf
PLIST_FILES= sbin/metalog
OPTIONS_DEFINE= DOCS EXAMPLES
post-patch:
@${REINPLACE_CMD} -e 's|/etc/|${PREFIX}/etc/|' ${WRKSRC}/man/*[58]
.include <bsd.port.options.mk>
post-install:
.if !defined(NOPORTDOCS)
.for doc in ${PORTDOCS}
.if ${PORT_OPTIONS:MDOCS}
@${MKDIR} ${DOCSDIR}
${INSTALL_DATA} ${WRKSRC}/${doc} ${DOCSDIR}
.endfor
${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${DOCSDIR}
.endif
.if !defined(NOPORTEXAMPLES)
.if ${PORT_OPTIONS:MEXAMPLES}
@${MKDIR} ${EXAMPLESDIR}
.for ex in ${PORTEXAMPLES}
${INSTALL_DATA} ${WRKSRC}/${ex} ${EXAMPLESDIR}
.endfor
${INSTALL_DATA} ${PORTEXAMPLES:S,^,${WRKSRC}/,} ${EXAMPLESDIR}
.endif
.include <bsd.port.mk>