Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 27 Mar 2009 18:03:57 GMT
From:      Toni Gundogdu <legatvs@gmail.com>
To:        freebsd-gnats-submit@FreeBSD.org
Subject:   ports/133132: [maintainer update] multimedia/cclive to 0.3.0
Message-ID:  <200903271803.n2RI3vpR006006@www.freebsd.org>
Resent-Message-ID: <200903271810.n2RIA1FU094201@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help

>Number:         133132
>Category:       ports
>Synopsis:       [maintainer update] multimedia/cclive to 0.3.0
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          maintainer-update
>Submitter-Id:   current-users
>Arrival-Date:   Fri Mar 27 18:10:00 UTC 2009
>Closed-Date:
>Last-Modified:
>Originator:     Toni Gundogdu
>Release:        
>Organization:
>Environment:
>Description:
* Bump to 0.3.0
* Update checksums
- Replace USE_GMAKE with GNU_CONFIGURE
  * Remove USE_GMAKE
  * Remove all MAKE_ENVs
  * Add GNU_CONFIGURE
  * Add CONFIGURE_ARGS
* Remove files/patch-Makefile (now obsolete)

>How-To-Repeat:

>Fix:


Patch attached with submission follows:

diff -ruN /usr/ports/multimedia/cclive/Makefile cclive/Makefile
--- /usr/ports/multimedia/cclive/Makefile	2009-03-25 17:08:24.000000000 +0200
+++ cclive/Makefile	2009-03-27 19:42:42.000000000 +0200
@@ -6,7 +6,7 @@
 #
 
 PORTNAME=	cclive
-PORTVERSION=	0.2.6
+PORTVERSION=	0.3.0
 CATEGORIES=	multimedia net
 MASTER_SITES=	GOOGLE_CODE
 
@@ -18,27 +18,24 @@
 OPTIONS=	TITLE 	 "Enable video title parsing (req. Perl)" off \
 		SIGWINCH "Enable SIGWINCH handling; resize progressbar" on
 
-MAKE_ENV=	V=1
 MAN1=		cclive.1
 
 PLIST_FILES=	bin/cclive
 
 USE_BZIP2=	yes
-USE_GMAKE=	yes
+GNU_CONFIGURE=	yes
 MAKE_JOBS_SAFE=	yes
 
 .include <bsd.port.pre.mk>
 
-MAKE_ENV+=	WITH_MAN=yes
-
 .if defined(WITH_TITLE)
-MAKE_ENV+=	WITH_PERL=yes
+CONFIGURE_ARGS+=--with-perl
 USE_PERL5=	5.8.2+
 RUN_DEPENDS+=	p5-HTML-Parser>=3.59:${PORTSDIR}/www/p5-HTML-Parser
 .endif
 
 .if defined(WITH_SIGWINCH)
-MAKE_ENV+=	WITH_SIGWINCH=yes
+CONFIGURE_ARGS+=	--with-sigwinch
 .endif
 
 .include <bsd.port.post.mk>
diff -ruN /usr/ports/multimedia/cclive/distinfo cclive/distinfo
--- /usr/ports/multimedia/cclive/distinfo	2009-03-25 17:08:24.000000000 +0200
+++ cclive/distinfo	2009-03-27 18:53:14.000000000 +0200
@@ -1,3 +1,3 @@
-MD5 (cclive-0.2.6.tar.bz2) = 2f596966021df4fd15e0616854ebbdc6
-SHA256 (cclive-0.2.6.tar.bz2) = f1ad40c9b6dcfea9732a24b5db94d5820a5c4c2f7680c98cd7e992f5ddf7fc7c
-SIZE (cclive-0.2.6.tar.bz2) = 41770
+MD5 (cclive-0.3.0.tar.bz2) = dfa72b7f8be7116fbd83cc7a60926eb9
+SHA256 (cclive-0.3.0.tar.bz2) = 886d6efffeee5318a70b11dbe8248702ac025d008f0ff16c12c63dcc80911ff7
+SIZE (cclive-0.3.0.tar.bz2) = 120446
diff -ruN /usr/ports/multimedia/cclive/files/patch-Makefile cclive/files/patch-Makefile
--- /usr/ports/multimedia/cclive/files/patch-Makefile	2009-03-22 16:48:52.000000000 +0200
+++ cclive/files/patch-Makefile	1970-01-01 02:00:00.000000000 +0200
@@ -1,54 +0,0 @@
---- Makefile.orig	2009-03-10 01:13:54.000000000 +0200
-+++ Makefile	2009-03-10 01:15:18.000000000 +0200
-@@ -1,23 +1,20 @@
- # GNU Makefile for cclive.
- 
--SHELL = /bin/sh
--
- .SUFFIXES:
- .SUFFIXES: .c .o
- 
--prefix      = $(HOME)
-+prefix      = $(PREFIX)
- bindir      = $(prefix)/bin
- exec_prefix = $(prefix)
- datarootdir = $(prefix)/share
- datadir     = $(datarootdir)
--mandir      = $(datarootdir)/man
-+mandir      = $(MANPREFIX)/man
- man1dir     = $(mandir)/man1
- 
--CC          = cc
- RM          = rm -f
--INSTALL     = install -c
--INSTALL_D   = install -d
--INSTALL_M   = install
-+INSTALL     = $(BSD_INSTALL_PROGRAM)
-+INSTALL_D   = mkdir -p
-+INSTALL_M   = $(BSD_INSTALL_MAN)
- UNAME       = uname
- AWK         = awk
- CURL_CONFIG = curl-config
-@@ -25,10 +22,6 @@
- POD2MAN     = pod2man
- PERL        = perl
- 
--WITH_MAN        = yes
--WITH_SIGWINCH   = yes
--WITH_PERL       = no
--
- ifndef V
- QUIET_CC        = @echo '  ' CC $@;
- QUIET_LINK      = @echo '  ' LINK $@;
-@@ -42,11 +35,9 @@
- CURL_CFLAGS  := $(shell sh -c "$(CURL_CONFIG) --cflags")
- CURL_LDFLAGS := $(shell sh -c "$(CURL_CONFIG) --libs")
- 
--CFLAGS      = -g -Wall
- ALL_CFLAGS  = -D_GNU_SOURCE -DOSNAME=\"$(OS_NAME)\" -I. $(CFLAGS)
- ALL_CFLAGS += $(CURL_CFLAGS)
- 
--LDFLAGS     =
- ALL_LDFLAGS = $(LDFLAGS)
- ALL_LDFLAGS += $(CURL_LDFLAGS)
- 


>Release-Note:
>Audit-Trail:
>Unformatted:



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200903271803.n2RI3vpR006006>