From owner-freebsd-multimedia@FreeBSD.ORG Sun Aug 20 04:18:48 2006 Return-Path: X-Original-To: multimedia@FreeBSD.org Delivered-To: freebsd-multimedia@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6FD5316A4DA; Sun, 20 Aug 2006 04:18:46 +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 1FBD943D53; Sun, 20 Aug 2006 04:18:46 +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 93DBF2E96A; Sun, 20 Aug 2006 12:18:45 +0800 (CST) Received: by smtp2.bc.hgc.com.tw (sSMTP sendmail emulation); Sun, 20 Aug 2006 12:26:24 +0800 Date: Sun, 20 Aug 2006 12:26:24 +0800 To: FreeBSD-gnats-submit@freebsd.org From: chinsan X-send-pr-version: 3.113 X-GNATS-Notify: Message-Id: <20060820041845.93DBF2E96A@smtp2.bc.hgc.com.tw> Cc: multimedia@FreeBSD.org Subject: [PATCH] multimedia/vlc-devel: Fix build error X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 Aug 2006 04:18:48 -0000 >Submitter-Id: current-users >Originator: chinsan >Organization: FreeBSD Taiwan >Confidential: no >Synopsis: [PATCH] multimedia/vlc-devel: Fix build error >Severity: non-critical >Priority: low >Category: ports >Class: change-request >Release: FreeBSD 6.1-STABLE i386 >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 Port maintainer (multimedia@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: >Fix: --- vlc-devel-0.8.6.20060621_3.patch begins here --- diff -ruN --exclude=CVS /usr/ports/multimedia/vlc-devel/Makefile /usr/home/chinsan/project/vlc-devel/Makefile --- /usr/ports/multimedia/vlc-devel/Makefile Thu Aug 10 06:07:59 2006 +++ /usr/home/chinsan/project/vlc-devel/Makefile Sun Aug 20 12:24:40 2006 @@ -10,7 +10,7 @@ PORTNAME= vlc DISTVERSION= 0.8.6.20060621 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= multimedia audio ipv6 net www MASTER_SITES= http://nightlies.videolan.org/build/source/ # http://download.videolan.org/pub/videolan/vlc/${PORTVERSION}/ \ @@ -45,7 +45,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}" @@ -427,7 +427,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-devel-0.8.6.20060621_3.patch ends here ---