1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-27 00:57:50 +00:00

- Add a check to prevent installation to wrong X distribution, as seen

in other XFree86/X.Org ports.

Approved by:	anholt (x11 hat)
This commit is contained in:
Pav Lucistnik 2004-07-23 23:45:10 +00:00
parent 706f3a708a
commit 42e71648ad
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=114532
2 changed files with 8 additions and 0 deletions

View File

@ -28,6 +28,10 @@ USE_REINPLACE= yes
.include <bsd.port.pre.mk>
.if ${X_WINDOW_SYSTEM:L} != xfree86-4
IGNORE= is part of XFree86-4
.endif
.if ${OSVERSION} < 500000
LATEST_LINK= imake4
.else

View File

@ -60,4 +60,8 @@ pre-configure:
post-install:
@${MKHTMLINDEX} ${PREFIX}/lib/X11/doc/html
.if ${X_WINDOW_SYSTEM:L} != xorg
IGNORE= is part of X.Org. For switching to X.Org, read UPDATING entry 20040723
.endif
.include <bsd.port.post.mk>