From 85ce2bc6f6f7e2eee09f24e8dba80fd148fcd7b8 Mon Sep 17 00:00:00 2001 From: Rene Ladan Date: Sun, 1 Sep 2019 15:54:18 +0000 Subject: [PATCH] Remove USES=pure and its QA check now that lang/pure has been removed. --- Mk/Scripts/qa.sh | 3 --- Mk/Uses/pure.mk | 39 --------------------------------------- 2 files changed, 42 deletions(-) delete mode 100644 Mk/Uses/pure.mk diff --git a/Mk/Scripts/qa.sh b/Mk/Scripts/qa.sh index 4186db94f015..de3b57740fb3 100644 --- a/Mk/Scripts/qa.sh +++ b/Mk/Scripts/qa.sh @@ -613,9 +613,6 @@ proxydeps_suggest_uses() { # openal elif [ ${pkg} = "audio/openal" -o ${pkg} = "audio/openal-soft" -o ${pkg} = "audio/freealut" ]; then warn "you need USES+=openal" - # pure - elif [ ${pkg} = "lang/pure" ]; then - warn "you need USES+=pure" # readline elif [ ${pkg} = "devel/readline" ]; then warn "you need USES+=readline" diff --git a/Mk/Uses/pure.mk b/Mk/Uses/pure.mk deleted file mode 100644 index a3d6a5fb0d40..000000000000 --- a/Mk/Uses/pure.mk +++ /dev/null @@ -1,39 +0,0 @@ -# Created by: Rusmir Dusko -# $FreeBSD$ -# -# Provide support for Pure Programming Language based projects -# -# Feature: pure -# Usage: USES=pure or USES=pure:ARGS -# Valid ARGS: ffi -# ARGS description: -# ffi makes the port depends on pure-ffi at runtime -# -# MAINTAINER= ports@FreeBSD.org - -.if !defined(_INCLUDE_USES_PURE_MK) -_INCLUDE_USES_PURE_MK= yes - -_valid_ARGS= ffi - -# Sanity check -.for arg in ${pure_ARGS} -. if empty(_valid_ARGS:M${arg}) -IGNORE= Incorrect 'USES+= pure:${pure_ARGS}' usage: argument [${arg}] is not recognized -. endif -.endfor - -LIB_DEPENDS+= libpure.so:lang/pure -.include "${USESDIR}/gmake.mk" - -.if ${pure_ARGS:Mffi} -RUN_DEPENDS+= ${LOCALBASE}/lib/pure/ffi.pure:devel/pure-ffi -.endif - -MAKE_ARGS+= prefix=${PREFIX} mandir=${PREFIX}/man \ - CC=${CC} CFLAGS="${CFLAGS}" \ - CXX=${CXX} CXXFLAGS="${CXXFLAGS}" \ - CPPFLAGS+=-I${LOCALBASE}/include \ - LDFLAGS+=-L${LOCALBASE}/lib - -.endif #!defined(_INCLUDE_USES_PURE_MK)