Commit ff6d67fb authored by Rene Ladan's avatar Rene Ladan
Browse files

sysutils/cfengine322: Remove expired port

2026-05-01 sysutils/cfengine322: No longer supported by upstream
parent 3a2d7a65
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -5274,3 +5274,4 @@ astro/mymoon||2026-05-04|Has expired: mastersite disappeared
games/flightgear-mb339-pan||2026-05-04|Has expired: Upstream is inactive for 15+ years
x11/urxvt-perls||2026-05-04|Has expired: Upstream repository archived in 2021
sysutils/cfengine-masterfiles322||2026-05-04|Has expired: No longer supported by upstream
sysutils/cfengine322||2026-05-04|Has expired: No longer supported by upstream
+0 −1
Original line number Diff line number Diff line
@@ -191,7 +191,6 @@
    SUBDIR += cfengine-masterfiles326
    SUBDIR += cfengine-masterfiles327
    SUBDIR += cfengine321
    SUBDIR += cfengine322
    SUBDIR += cfengine323
    SUBDIR += cfengine324
    SUBDIR += cfengine325

sysutils/cfengine322/Makefile

deleted100644 → 0
+0 −72
Original line number Diff line number Diff line
PORTNAME=	cfengine
DISTVERSION=	3.22.0
PORTREVISION=	1
CATEGORIES=	sysutils
MASTER_SITES=	https://s3.amazonaws.com/cfengine-package-repos/tarballs/
DISTNAME=	${PORTNAME}-community-${DISTVERSION}

MAINTAINER=	cy@FreeBSD.org
COMMENT=	Systems administration tool for networks
WWW=		https://cfengine.com/

DEPRECATED=	No longer supported by upstream
EXPIRATION_DATE=2026-05-01

WRKSRC=		${WRKDIR}/${PORTNAME}-${DISTVERSION}

LICENSE=	GPLv3

CPE_VENDOR=	gnu

CONFLICTS=	cfengine cfengine3[0-9] cfengine3[0-9][0-9]
.if !defined(MASTERDIR)
PKGNAMESUFFIX=	322
.endif

FETCH_BEFORE_ARGS=	-o ${DISTDIR}/${DISTFILES}

USE_RC_SUBR=	cf-execd cf-serverd cf-monitord

MAKE_JOBS_UNSAFE=	yes
USE_LDCONFIG=	yes
GNU_CONFIGURE=	yes
USES=		autoreconf cpe gmake gnome libtool localbase shebangfix ssl
USE_GNOME=	libxml2
SHEBANG_FILES=	examples/remake_outputs.pl
CFLAGS+=	-Wno-return-type -fcommon
# EXAMPLESDIR=	${PREFIX}/share/examples/cfengine3
DOCSDIR=	${PREFIX}/share/doc/cfengine
MAKE_ENV=	EXPLICIT_VERSION=${PORTVERSION}
CONFIGURE_ENV=	EXPLICIT_VERSION=${PORTVERSION}
CONFIGURE_ARGS=	--docdir=${DOCSDIR} \
		--htmldir=${DOCSDIR}/html \
		--libexecdir=${PREFIX}/libexec \
		--libdir=${PREFIX}/libexec \
		--mandir=${PREFIX}/man \
		--with-workdir=/var/cfengine \
		--with-pcre=${LOCALBASE} \
		--with-lmdb=${LOCALBASE} \
		--enable-fhs
INSTALL_TARGET=	install-strip

LIB_DEPENDS+=	libpcre.so:devel/pcre \
		liblmdb.so:databases/lmdb \
		libyaml.so:textproc/libyaml \
		libcurl.so:ftp/curl

OPTIONS_DEFINE=	PGSQL MYSQL LIBVIRT

PGSQL_USES=		pgsql
PGSQL_CONFIGURE_WITH=	--with-postgresql=${LOCALBASE}
PGSQL_CONFIGURE_OFF=	--without-postgresql

MYSQL_USES=		mysql
MYSQL_CONFIGURE_WITH=	--with-mysql=${LOCALBASE}
MYSQL_CONFIGURE_OFF=	--without-mysql
MYSQL_LIB_DEPENDS=	libmysqlclient.so:${_MYSQL_CLIENT}
MYSQL_LDFLAGS=		-L${LOCALBASE}/lib/mysql

LIBVIRT_CONFIGURE_WITH=	--with-libvirt=${LOCALBASE}
LIBVIRT_LIB_DEPENDS+=	libvirt.so:devel/libvirt

.include <bsd.port.mk>

sysutils/cfengine322/distinfo

deleted100644 → 0
+0 −3
Original line number Diff line number Diff line
TIMESTAMP = 1687063223
SHA256 (cfengine-community-3.22.0.tar.gz) = c2e7ac88d2371fda2809e0bbd3a3908cab50592b6c1479353bd18ba809b93528
SIZE (cfengine-community-3.22.0.tar.gz) = 3348945
+0 −26
Original line number Diff line number Diff line
#!/bin/sh

# PROVIDE: cf-execd
# REQUIRE: LOGIN
# KEYWORD: shutdown
#
# Add the following line to /etc/rc.conf[.local] to enable cf-execd(8)
#
# cf_execd_enable (bool):        Set to "NO" by default.
#                               Set it to "YES" to enable cf-execd.
# cf_execd_flags (str):          Custom additional arguments to be passed
#                               to cf-execd (default empty).
#

. /etc/rc.subr

name="cf_execd"
rcvar=cf_execd_enable

command="%%PREFIX%%/bin/cf-execd"

load_rc_config $name

: ${cf_execd_enable="NO"}

run_rc_command "$1"
Loading