According to the FreeBSD ports distilator page, the distfile of the port is unfetchable with the status code 500, so that a mirror is added temporarily. How-To-Repeat: make fetch
Responsible Changed From-To: freebsd-ports-bugs->danilo I'll take it.
Author: danilo Date: Sat Nov 2 12:58:37 2013 New Revision: 332477 URL: http://svnweb.freebsd.org/changeset/ports/332477 Log: - Add stage support The patch is not necessary. PR: ports/183588 Submitted by: Katsura Matsumoto <katsura@cc.osaka-kyoiku.ac.jp> (maintainer) Modified: head/x11/xnodecor/Makefile head/x11/xnodecor/files/Makefile Modified: head/x11/xnodecor/Makefile ============================================================================== --- head/x11/xnodecor/Makefile Sat Nov 2 12:53:32 2013 (r332476) +++ head/x11/xnodecor/Makefile Sat Nov 2 12:58:37 2013 (r332477) @@ -14,8 +14,8 @@ COMMENT= Utility to set override_redirec NO_WRKSUBDIR= yes USE_XORG= x11 PLIST_FILES= bin/xnodecor +MAKE_ARGS= PREFIX=${STAGEDIR}${PREFIX} -NO_STAGE= yes do-extract: @${MKDIR} ${WRKDIR} @${CP} ${FILESDIR}/Makefile ${WRKDIR} Modified: head/x11/xnodecor/files/Makefile ============================================================================== --- head/x11/xnodecor/files/Makefile Sat Nov 2 12:53:32 2013 (r332476) +++ head/x11/xnodecor/files/Makefile Sat Nov 2 12:58:37 2013 (r332477) @@ -9,7 +9,7 @@ xnodecor: $(CC) -o xnodecor xnodecor.c $(CFLAGS) $(LDFLAGS) $(LIBS) install: - ${BSD_INSTALL_PROGRAM} xnodecor ${LOCALBASE}/bin + ${BSD_INSTALL_PROGRAM} xnodecor ${PREFIX}/bin clean: rm -f *.rej a.out core xnodecor _______________________________________________ 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 The patch is not necessary, the ports system use this by default when the distfile in not found in the main mirror. Anyway, I add stage support to it.