1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-04 01:48:54 +00:00

- Update to 0.2.2

PR:		ports/131717
Submitted by:	legatvs <legatvs@gmail.com> (maintainer)
This commit is contained in:
Beech Rintoul 2009-02-15 23:52:28 +00:00
parent 3aadf625aa
commit 540bdb4fc1
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=228475
3 changed files with 15 additions and 14 deletions

View File

@ -6,7 +6,7 @@
#
PORTNAME= cclive
PORTVERSION= 0.2.1
PORTVERSION= 0.2.2
CATEGORIES= multimedia net
MASTER_SITES= GOOGLE_CODE
@ -15,7 +15,7 @@ COMMENT= Lightweight command line video extraction utility
LIB_DEPENDS= curl.5:${PORTSDIR}/ftp/curl
.if !defined(NO_INSTALL_MANPAGES)
.if !defined(WITHOUT_MAN)
MAKE_ENV= WITH_MAN=yes
MAN1= cclive.1
.endif

View File

@ -1,3 +1,3 @@
MD5 (cclive-0.2.1.tar.bz2) = 7aeee2bac2b20c725eebbe5d42920f4b
SHA256 (cclive-0.2.1.tar.bz2) = 93364812c766814df17a8e50cb7b5f81671a36f75dc8e181313213873f7b5e5e
SIZE (cclive-0.2.1.tar.bz2) = 36764
MD5 (cclive-0.2.2.tar.bz2) = 154c5749c63bf2798b451968a4d19716
SHA256 (cclive-0.2.2.tar.bz2) = c10c05d8980cdace8bdd881ec6c4bc3ce6ae9a41239171ab4afeb9f63a5ab5b5
SIZE (cclive-0.2.2.tar.bz2) = 37806

View File

@ -1,6 +1,6 @@
--- Makefile.orig 2009-02-07 00:40:50.864414331 +0000
+++ Makefile 2009-02-07 01:23:32.655384692 +0000
@@ -1,31 +1,26 @@
--- Makefile.orig 2009-02-15 18:25:44.000000000 +0200
+++ Makefile 2009-02-15 18:27:39.000000000 +0200
@@ -1,30 +1,26 @@
# GNU Makefile for cclive.
-SHELL = /bin/sh
@ -32,21 +32,22 @@
GENGETOPT = gengetopt
POD2MAN = pod2man
-WITH_MAN = yes
-
-WITH_MAN = yes
WITH_SIGWINCH = yes
ifndef V
QUIET_CC = @echo ' ' CC $@;
QUIET_LINK = @echo ' ' LINK $@;
@@ -39,11 +34,9 @@
@@ -40,14 +36,12 @@
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)
ifeq ($(WITH_SIGWINCH),yes)
ALL_CFLAGS += -DWITH_SIGWINCH
endif
-LDFLAGS =
ALL_LDFLAGS = $(LDFLAGS)
ALL_LDFLAGS += $(CURL_LDFLAGS)
a7e