Bug 183588 - adds a mirror to mastersites of x11/xnodecor
Summary: adds a mirror to mastersites of x11/xnodecor
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: Danilo Egea Gondolfo
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-11-02 11:50 UTC by Katsura Matsumoto
Modified: 2013-11-02 13:00 UTC (History)
0 users

See Also:


Attachments
file.diff (392 bytes, patch)
2013-11-02 11:50 UTC, Katsura Matsumoto
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Katsura Matsumoto 2013-11-02 11:50:00 UTC
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
Comment 1 Danilo Egea Gondolfo freebsd_committer freebsd_triage 2013-11-02 12:22:02 UTC
Responsible Changed
From-To: freebsd-ports-bugs->danilo

I'll take it.
Comment 2 dfilter service freebsd_committer freebsd_triage 2013-11-02 12:58:49 UTC
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"
Comment 3 Danilo Egea Gondolfo freebsd_committer freebsd_triage 2013-11-02 13:00:18 UTC
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.