Summary: | [PATCH] audio/cpige broken on amd64 , patch attached | ||||||
---|---|---|---|---|---|---|---|
Product: | Ports & Packages | Reporter: | Howard Goldstein <hg> | ||||
Component: | Individual Port(s) | Assignee: | Ion-Mihai "IOnut" Tetcu <itetcu> | ||||
Status: | Closed FIXED | ||||||
Severity: | Affects Only Me | ||||||
Priority: | Normal | ||||||
Version: | Latest | ||||||
Hardware: | Any | ||||||
OS: | Any | ||||||
Attachments: |
|
Description
Howard Goldstein
2012-02-26 00:30:13 UTC
Responsible Changed From-To: freebsd-ports-bugs->itetcu Over to maintainer (via the GNATS Auto Assign Tool) Author: itetcu Date: Sun Aug 12 09:36:30 2012 New Revision: 302431 URL: http://svn.freebsd.org/changeset/ports/302431 Log: - fix looking up the host name addresses on 64 bits platforms (use in_addr_t instead of long and check it against INADDR_NONE) - adjust MASTERSITES and WWW Please note that the project is dead upstream. PR: 165481 Submitted by: Howard Goldstein Added: head/audio/cpige/files/patch-mynet.c (contents, props changed) Modified: head/audio/cpige/Makefile (contents, props changed) head/audio/cpige/pkg-descr (contents, props changed) Modified: head/audio/cpige/Makefile ============================================================================== --- head/audio/cpige/Makefile Sun Aug 12 09:14:06 2012 (r302430) +++ head/audio/cpige/Makefile Sun Aug 12 09:36:30 2012 (r302431) @@ -7,9 +7,10 @@ PORTNAME= cpige DISTVERSION= 1.5 +PORTREVISION= 1 CATEGORIES= audio -MASTER_SITES= http://ed.zehome.com/cpige/ \ - http://T32.TecNik93.com/FreeBSD/ports/sources/cpige/ +MASTER_SITES= http://old.ed.zehome.com/cpige/ \ + http://T32.TecNik93.com/FreeBSD/ports/cpige/sources/ MAINTAINER= itetcu@FreeBSD.org COMMENT= Icecast/Shoutcast stream ripper Added: head/audio/cpige/files/patch-mynet.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/cpige/files/patch-mynet.c Sun Aug 12 09:36:30 2012 (r302431) @@ -0,0 +1,20 @@ +--- ./mynet.c.orig 2006-08-20 17:51:17.000000000 +0300 ++++ ./mynet.c 2012-08-12 12:29:05.000000000 +0300 +@@ -86,7 +86,7 @@ + { + struct sockaddr_in serverSockAddr; + struct hostent *serverHostEnt; +- long hostAddr; ++ in_addr_t hostAddr; + + #if WIN32 + int res; +@@ -105,7 +105,7 @@ + hostAddr = inet_addr(servername); + + /* If it is an ip address */ +- if ((long) hostAddr != (long)-1) ++ if ( hostAddr != INADDR_NONE ) + memcpy(&serverSockAddr.sin_addr, &hostAddr, sizeof(hostAddr)); + else { + serverHostEnt = gethostbyname(servername); Modified: head/audio/cpige/pkg-descr ============================================================================== --- head/audio/cpige/pkg-descr Sun Aug 12 09:14:06 2012 (r302430) +++ head/audio/cpige/pkg-descr Sun Aug 12 09:36:30 2012 (r302431) @@ -2,4 +2,4 @@ cPige records an audio stream, separatin "Artist - Track.mp3" files. It can also record on an hour-by-hour basis. -WWW: http://ed.zehome.com/?page=cpige-en +WWW: http://old.ed.zehome.com/?page=cpige _______________________________________________ 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 Committed. Thanks! |