From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Aug 20 04:30:15 2006 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7FCE016A4DA for ; Sun, 20 Aug 2006 04:30:15 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 03DD943D49 for ; Sun, 20 Aug 2006 04:30:15 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k7K4UEGj003641 for ; Sun, 20 Aug 2006 04:30:14 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k7K4UEc4003640; Sun, 20 Aug 2006 04:30:14 GMT (envelope-from gnats) Resent-Date: Sun, 20 Aug 2006 04:30:14 GMT Resent-Message-Id: <200608200430.k7K4UEc4003640@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, chinsan Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D9FDC16A512; Sun, 20 Aug 2006 04:25:10 +0000 (UTC) (envelope-from chinsan.tw@gmail.com) Received: from smtp2.bc.hgc.com.tw (smtp2.bc.hgc.com.tw [203.133.1.156]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6110A43D45; Sun, 20 Aug 2006 04:25:10 +0000 (GMT) (envelope-from chinsan.tw@gmail.com) Received: from smtp2.bc.hgc.com.tw (u14-109.u203-187.giga.net.tw [203.187.14.109]) by smtp2.bc.hgc.com.tw (Postfix) with SMTP id 7BBF42E96A; Sun, 20 Aug 2006 12:25:10 +0800 (CST) Received: by smtp2.bc.hgc.com.tw (sSMTP sendmail emulation); Sun, 20 Aug 2006 12:32:49 +0800 Message-Id: <20060820042510.7BBF42E96A@smtp2.bc.hgc.com.tw> Date: Sun, 20 Aug 2006 12:32:49 +0800 From: chinsan To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: multimedia@FreeBSD.org Subject: ports/102309: [PATCH] multimedia/vlc: fix build error, make portlint more happy X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 Aug 2006 04:30:15 -0000 >Number: 102309 >Category: ports >Synopsis: [PATCH] multimedia/vlc: fix build error, make portlint more happy >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Aug 20 04:30:14 GMT 2006 >Closed-Date: >Last-Modified: >Originator: chinsan >Release: FreeBSD 6.1-STABLE i386 >Organization: FreeBSD Taiwan >Environment: System: FreeBSD chinsan2.twbbs.org 6.1-STABLE FreeBSD 6.1-STABLE #1: Fri Jun 2 16:44:35 CST >Description: - correct LIB_DEPEND typo(should be LIB_DEPENDS) - INSTALLS_SHLIB is deprecated, use USE_LDCONFIG instead - make portlint more happy Port maintainer (multimedia@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: >Fix: --- vlc-0.8.5_5.patch begins here --- diff -ruN --exclude=CVS /usr/ports/multimedia/vlc/Makefile /usr/home/chinsan/project/vlc/Makefile --- /usr/ports/multimedia/vlc/Makefile Sat Aug 12 01:55:45 2006 +++ /usr/home/chinsan/project/vlc/Makefile Sun Aug 20 12:31:05 2006 @@ -10,7 +10,7 @@ PORTNAME= vlc DISTVERSION= 0.8.5 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= multimedia audio ipv6 net www MASTER_SITES= http://download.videolan.org/pub/videolan/vlc/${PORTVERSION}/ \ http://ftp.snt.utwente.nl/pub/software/videolan/vlc/${PORTVERSION}/ \ @@ -40,7 +40,7 @@ FAKEDIR= ${WRKDIR}/fake PLIST= ${WRKDIR}/plist -INSTALLS_SHLIB= yes +USE_LDCONFIG= yes GNU_CONFIGURE= yes CONFIGURE_ENV= CPPFLAGS="-I${WRKSRC}/include ${CPPFLAGS} -I${LOCALBASE}/include -I${X11BASE}/include ${PTHREAD_CFLAGS}" \ LDFLAGS="${LDFLAGS} -L${LOCALBASE}/lib -L${X11BASE}/lib ${PTHREAD_LIBS}" @@ -69,11 +69,11 @@ .include .if ${OSVERSION} < 500035 -BROKEN= does not build on FreeBSD 4.x +BROKEN= Does not build on FreeBSD 4.x .endif .if ${PERL_LEVEL} < 500800 -BROKEN= does not compile with perl ${PERL_VERSION} +BROKEN= Does not compile with perl ${PERL_VERSION} .endif .if exists(${LOCALBASE}/libdata/pkgconfig/libavcodec.pc) || !exists(${LOCALBASE}/lib/libavformat.a) @@ -425,7 +425,7 @@ .endif .if !defined(WITHOUT_SAMBA) -LIB_DEPEND+= smbclient.0:${PORTSDIR}/net/samba-libsmbclient +LIB_DEPENDS+= smbclient.0:${PORTSDIR}/net/samba-libsmbclient CONFIGURE_ARGS+=--enable-smb .else CONFIGURE_ARGS+=--disable-smb --- vlc-0.8.5_5.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: