ports/57383: [PATCH] sysutils/idled 1.16

Martin Matuska martin at tradex.sk
Tue Sep 30 00:50:26 UTC 2003


>Number:         57383
>Category:       ports
>Synopsis:       [PATCH] sysutils/idled 1.16
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Mon Sep 29 17:50:21 PDT 2003
>Closed-Date:
>Last-Modified:
>Originator:     Martin Matuska
>Release:        FreeBSD 4.8-RELEASE-p10 i386
>Organization:
>Environment:
FreeBSD 4.8-RELEASE-p10 i386
>Description:
	This patch adds rc_subr support to the idled port.

>How-To-Repeat:
>Fix:
--- Makefile.orig	Tue Sep 30 01:54:36 2003
+++ Makefile	Tue Sep 30 01:54:40 2003
@@ -7,7 +7,7 @@
 
 PORTNAME=	idled
 PORTVERSION=	1.16
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	sysutils
 MASTER_SITES=	http://www.darkwing.com/idled/download/	\
 		ftp://ftp.cs.hope.edu/pub/idled/
@@ -20,14 +20,25 @@
 MAN5=		idled.cf.5
 MAN8=		idled.8
 
+SED_SCRIPT=	-e 's|%%PREFIX%%|${PREFIX}|g'
+
+USE_RC_SUBR=	yes
+RC_DIR=		${PREFIX}/etc/rc.d
+RC_SUFX=	.sh
+SED_SCRIPT+=	-e 's|%%RC_SUBR%%|${RC_SUBR}|g' \
+		-e 's|%%RC_DIR%%|${RC_DIR}|g' \
+		-e 's|%%RC_SUFX%%|${RC_SUFX}|g'
+PLIST_SUB+=     RC_DIR=${RC_DIR} \
+		RC_SUFX=${RC_SUFX}
+
 post-extract:
 	(cd ${WRKSRC}; make clean)
 
+post-build:
+	@${SED} ${SED_SCRIPT} ${FILESDIR}/idled.sh >${WRKDIR}/idled.sh
+
 post-install:
-	${STRIP_CMD} ${PREFIX}/libexec/idled
-.if !exists(${PREFIX}/etc/rc.d/idled.sh)
-	@${ECHO} "Installing ${PREFIX}/etc/rc.d/idled.sh startup script."
-	${INSTALL_SCRIPT} -m 751 ${FILESDIR}/idled.sh ${PREFIX}/etc/rc.d/idled.sh
-.endif
+	@${INSTALL_SCRIPT} ${WRKDIR}/idled.sh ${RC_DIR}/idled${RC_SUFX}
+	@${STRIP_CMD} ${PREFIX}/libexec/idled
 
 .include <bsd.port.mk>
--- files/idled.sh.orig	Fri Aug 17 18:19:41 2001
+++ files/idled.sh	Tue Sep 30 01:55:14 2003
@@ -1,19 +1,33 @@
 #!/bin/sh
-case "$1" in
-	stop)
-		killall -TERM idled
-		echo "idled stopped"
-		;;
-	restart)
-		killall -TERM idled
-		/usr/local/libexec/idled
-		echo "idled restarted"
-		;;
-	-h)
-		echo "Usage: `basename $0` { start | stop | restart }"
-		;;
-	*)				# includes start
-		/usr/local/libexec/idled
-		echo -n ' idled'
-		;;
-esac
+#
+# $FreeBSD$
+#
+
+# PROVIDE: idled
+# REQUIRE: DAEMON
+# BEFORE: LOGIN
+# KEYWORD: FreeBSD shutdown
+
+#
+# Add the following lines to /etc/rc.conf to enable idled:
+#
+#idled_enable="YES"
+#
+# See idled(8) for flags
+#
+
+. %%RC_SUBR%%
+
+name=idled
+rcvar=`set_rcvar`
+
+command=%%PREFIX%%/libexec/idled
+required_files=%%PREFIX%%/etc/idled.cf
+
+# set defaults
+
+idled_enable=${idled_enable:-"NO"}
+idled_flags=${idled_flags:-""}
+
+load_rc_config $name
+run_rc_command "$1"
--- pkg-plist.orig	Tue Sep 30 02:12:21 2003
+++ pkg-plist	Tue Sep 30 02:12:34 2003
@@ -1,3 +1,3 @@
 etc/idled.cf.template
-etc/rc.d/idled.sh
+etc/rc.d/idled%%RC_SUFX%%
 libexec/idled
>Release-Note:
>Audit-Trail:
>Unformatted:



More information about the freebsd-ports-bugs mailing list