1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-16 07:58:04 +00:00
freebsd-ports/deskutils/plan/Makefile
Stefan Eßer bcaf25a8c8 Fix CONFLICTS entries of multiple ports
There have been lots of missing CONFLICTS_INSTALL entries, either
because conflicting ports were added without updating existing ports,
due to name changes of generated packages, due to mis-understanding
the format and semantics of the conflicts entries, or just due to
typoes in package names.

This patch is the result of a comparison of all files contained in
the official packages with each other. This comparison was based on
packages built with default options and may therefore have missed
further conflicts with optionally installed files.

Where possible, version numbers in conflicts entries have been
generalized, some times taking advantage of the fact that a port
cannot conflict with itself (due to logic in bsd.port.mk that
supresses the pattern match result in that case).

A few ports that set the conflicts variables depending on complex
conditions (e.g. port options), have been left unmodified, despite
probably containing outdated package names.

These changes should only affect the installation of locally built
ports, not the package building with poudriere. They should give an
early indication of the install conflict in cases where currently
the pkg command aborts an installation when it detects that an
existing file would be overwritten,

Approved by:	portmgr (implicit)
2022-01-10 16:15:39 +01:00

50 lines
1.7 KiB
Makefile

# Created by: Daniel Eischen <deischen@FreeBSD.org>
# Also update ports/japanese/plan/ (ja-plan) when this port is updated
PORTNAME= plan
PORTVERSION= 1.10.1
CATEGORIES+= deskutils
MASTER_SITES= ftp://plan.ftp.fu-berlin.de/
MAINTAINER= cy@FreeBSD.org
COMMENT= X/Motif schedule planner with calendar
USES= motif
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}/src
ALL_TARGET= freebsd
MAKE_ENV+= DATADIR=${DATADIR} EXAMPLESDIR=${EXAMPLESDIR}
CONFLICTS_INSTALL= ja-plan
OPTIONS_DEFINE= DOCS
do-install:
@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
cd ${WRKSRC} \
&& ${INSTALL_PROGRAM} plan pland netplan notifier ${STAGEDIR}${PREFIX}/bin \
&& ${INSTALL_SCRIPT} ../misc/Killpland ${STAGEDIR}${PREFIX}/bin \
&& ${INSTALL_MAN} ../misc/netplan.1 ../misc/plan.1 ${STAGEDIR}${MAN1PREFIX}/man/man1 \
&& ${INSTALL_MAN} ../misc/plan.4 ${STAGEDIR}${MAN4PREFIX}/man/man4
@${MKDIR} ${STAGEDIR}${DOCSDIR}
cd ${WRKSRC}/.. \
&& ${INSTALL_DATA} misc/plan_cal.ps language/* misc/Mkdoc misc/Mkdoc.nawk \
misc/BlackWhite misc/Monochrome README \
${STAGEDIR}${DOCSDIR}
cd ${WRKSRC}/../holiday \
&& ${INSTALL_DATA} \
holiday_australia holiday_austria holiday_bavarian holiday_belgium \
holiday_canada holiday_combi holiday_czech holiday_denmark holiday_dutch \
holiday_finnish holiday_french holiday_frswiss holiday_german holiday_greek \
holiday_hungary holiday_italy holiday_japan holiday_norway holiday_portugal \
holiday_quebec holiday_slovak holiday_spain holiday_swedish holiday_uk \
holiday_us ${STAGEDIR}${EXAMPLESDIR}
@${MKDIR} ${STAGEDIR}${DATADIR}/netplan.dir
.include <bsd.port.mk>