diff options
author | dougb <dougb@FreeBSD.org> | 2005-12-04 10:01:01 +0800 |
---|---|---|
committer | dougb <dougb@FreeBSD.org> | 2005-12-04 10:01:01 +0800 |
commit | d10075d4dd7ef7586bc0194c98272d3853c8ae5c (patch) | |
tree | 758b2edb23ee216cb218cabe712d9923f33d337d /print/cups-base | |
parent | deab2a8c19bb96e055dde6cd0b06e644333096a3 (diff) | |
download | freebsd-ports-gnome-d10075d4dd7ef7586bc0194c98272d3853c8ae5c.tar.gz freebsd-ports-gnome-d10075d4dd7ef7586bc0194c98272d3853c8ae5c.tar.zst freebsd-ports-gnome-d10075d4dd7ef7586bc0194c98272d3853c8ae5c.zip |
Remove the PROVIDE line from the startup script. From our
perspective, this is still an old-style rc script, however
the presence of the PROVIDE line fools the new rcorder
code in HEAD into thinking that it should be treated like
a new style script.
I submitted the patch to the maintainer recently, but given
that the PR points out the problem in the real world, I'm
taking unilateral action. If the maintainer has a better
solution, that's not a problem.
PR: ports/89892
Submitted by: Nicolas Blais
Diffstat (limited to 'print/cups-base')
-rw-r--r-- | print/cups-base/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/print/cups-base/Makefile b/print/cups-base/Makefile index 933c0b3bafdb..d3851571b11e 100644 --- a/print/cups-base/Makefile +++ b/print/cups-base/Makefile @@ -9,7 +9,7 @@ PORTNAME= cups-base PORTVERSION= ${CUPS_PORTVER} -PORTREVISION= 5 +PORTREVISION= 6 PORTEPOCH= ${CUPS_PORTEPOCH} CATEGORIES= print MASTER_SITES= ${CUPS_MASTER_SITES} @@ -33,6 +33,8 @@ post-patch: ${WRKSRC}/man/*.man @${REINPLACE_CMD} -e 's|CXX="$$CC"||g' \ ${WRKSRC}/${CONFIGURE_SCRIPT} + @${CP} ${WRKSRC}/cups.sh.in ${WRKSRC}/cups.sh.in.presed + @${SED} 40d ${WRKSRC}/cups.sh.in.presed > ${WRKSRC}/cups.sh.in pre-install: @${ECHO_MSG} "===>" Stopping cupsd ... |