1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-26 21:17:40 +00:00
freebsd-ports/misc/34upgrade/Makefile
Satoshi Asami 1ae11b4926 Change
.elif ${OSVERSION} < 340000 || ${OSVERSION} >= 400000

to

.elif ${OSVERSION} >= 400000

The first version triggers a bug in the old make.  Since I won't be
attempting to build these on an 2.2-stable machine anymore, just take
out that part of the check.

Reported by:	Scott Allendorf <scott-allendorf@uiowa.edu>
2000-01-13 02:39:35 +00:00

37 lines
898 B
Makefile

# New ports collection makefile for: 3.3/3.4R to 3-stable upgrade kit
# Version required: n/a
# Date created: 5 Jan 2000
# Whom: asami
#
# $FreeBSD$
#
DISTNAME= 34upgrade-2000.01.05
CATEGORIES= misc
DISTFILES= # empty
MAINTAINER= asami@FreeBSD.org
.include <bsd.port.pre.mk>
.if !defined(PACKAGE_BUILDING)
BROKEN= this \"port\" is for building packages for distribution only, please get the package from http://www.freebsd.org/ports/ if you need an upgrade
.elif ${OSVERSION} >= 400000
# test for ${OSVERSION} >= 340000 removed -- it triggers a bug in old make
FORBIDDEN= this needs to be built on a recent 3-stable system
.endif
NO_MTREE= yes
PREFIX= /
NO_BUILD= yes
PKGINSTALL= ${WRKDIR}/INSTALL
do-install:
${SED} -e "s/%%VERSION%%/${BSDPORTMKVERSION}/" ${PKGDIR}/INSTALL \
> ${PKGINSTALL}
deinstall:
@${ECHO} "You can't delete this port."
@${FALSE}
.include <bsd.port.post.mk>