1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-13 07:34:50 +00:00

o After being repo copied to fox-devel port:

- Add a conflict management mechanism: do not install port
          if fox-devel port is already installed

Repo copy performed by:	cvs (joe)
This commit is contained in:
Mario Sergio Fujikawa Ferreira 2003-02-08 00:16:15 +00:00
parent b9bedb1d3e
commit de162206a5
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=75069
2 changed files with 24 additions and 2 deletions

View File

@ -133,4 +133,15 @@ pre-everything::
.endif
@${ECHO_MSG}
.include <bsd.port.mk>
.include <bsd.port.pre.mk>
##
## Port conflict management
##
.if exists(${LOCALBASE}/lib/libFOX-1.1.so)
IGNORE= Conflict management: you have port fox-devel installed. The\
fox port is incompatible with fox-devel one. You have to\
uninstall fox-devel port if you really need the fox one
.endif
.include <bsd.port.post.mk>

View File

@ -133,4 +133,15 @@ pre-everything::
.endif
@${ECHO_MSG}
.include <bsd.port.mk>
.include <bsd.port.pre.mk>
##
## Port conflict management
##
.if exists(${LOCALBASE}/lib/libFOX-1.1.so)
IGNORE= Conflict management: you have port fox-devel installed. The\
fox port is incompatible with fox-devel one. You have to\
uninstall fox-devel port if you really need the fox one
.endif
.include <bsd.port.post.mk>