Summary: | package creation fails for net/ssvnc | ||
---|---|---|---|
Product: | Ports & Packages | Reporter: | bartsch |
Component: | Individual Port(s) | Assignee: | Jason Helfman <jgh> |
Status: | Closed FIXED | ||
Severity: | Affects Only Me | ||
Priority: | Normal | ||
Version: | Latest | ||
Hardware: | Any | ||
OS: | Any |
Description
bartsch
2013-07-25 18:00:00 UTC
Author: jgh Date: Thu Jul 25 22:57:40 2013 New Revision: 323676 URL: http://svnweb.freebsd.org/changeset/ports/323676 Log: - unbreak package creation - while here standardize on empty PORT_OPTIONS and convert USE_GMAKE to USES PR: 180850 Reported by: Alfred Bartsch <bartsch@dssgmbh.de> Modified: head/net/ssvnc/Makefile Modified: head/net/ssvnc/Makefile ============================================================================== --- head/net/ssvnc/Makefile Thu Jul 25 22:56:06 2013 (r323675) +++ head/net/ssvnc/Makefile Thu Jul 25 22:57:40 2013 (r323676) @@ -20,13 +20,13 @@ RUN_DEPENDS= stunnel:${PORTSDIR}/securit OPTIONS_DEFINE= ULTRAFTP DOCS ULTRAFTP_DESC= UltraVNC File Transfer support (Java required) -USES= imake:env +USES= imake:env gmake USE_XORG= xi xmu xt xaw ice xpm xext sm USE_TK_WRAPPER= yes USE_PERL5_RUN= yes -USE_GMAKE= yes -MAN1= ssvnc-gui.1 ssvncviewer.1 +MAN1= ssvnc.1 ssvncviewer.1 +NO_INSTALL_MANPAGES= yes .include <bsd.port.options.mk> @@ -37,7 +37,7 @@ PLIST_SUB+= ULTRAFTP="" PLIST_SUB+= ULTRAFTP="@comment " .endif -.if empty(PORT_OPTIONS:MDOCS) +.if ! ${PORT_OPTIONS:MDOCS} MAKE_ARGS+= DOCS="" .endif @@ -46,7 +46,7 @@ post-patch: @${REINPLACE_CMD} -e 's|[[:<:]]ssvnc[[:>:]]|ssvnc-gui|' ${WRKSRC}/man/man1/ssvnc.1 @${REINPLACE_CMD} -e 's|/usr/local/bin|${LOCALBASE}/bin|' \ -e 's|^CC =|CC ?=|' ${WRKSRC}/vncstorepw/Makefile -.if empty(PORT_OPTIONS:MULTRAFTP) +.if ! ${PORT_OPTIONS:MULTRAFTP} @${REINPLACE_CMD} -e "s|sh -c 'type javac'|:|" \ -e "s|sh -c 'type jar'|:|" \ -e 's|cd $$(JSRC);|: |' \ @@ -59,5 +59,11 @@ do-configure: post-install: @${ECHO_CMD}; ${CAT} ${PKGMESSAGE}; ${ECHO_CMD} +.if ${PORT_OPTIONS:MDOCS} + @${MKDIR} ${MAN1PREFIX}/man/man1 +.for man in ${MAN1} + ${INSTALL_MAN} ${WRKSRC}/man/man1/${man} ${MAN1PREFIX}/man/man1 +.endfor +.endif .include <bsd.port.mk> _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org" State Changed From-To: open->closed Fixed in r323676. Thanks for the report! Responsible Changed From-To: freebsd-ports-bugs->jgh Fixed in r323676. Thanks for the report! |