From owner-freebsd-multimedia@FreeBSD.ORG Mon Nov 7 01:53:16 2005 Return-Path: X-Original-To: freebsd-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 8013016A41F for ; Mon, 7 Nov 2005 01:53:16 +0000 (GMT) (envelope-from ringworm01@gmail.com) Received: from xproxy.gmail.com (xproxy.gmail.com [66.249.82.205]) by mx1.FreeBSD.org (Postfix) with ESMTP id 09CBA43D45 for ; Mon, 7 Nov 2005 01:53:15 +0000 (GMT) (envelope-from ringworm01@gmail.com) Received: by xproxy.gmail.com with SMTP id t14so304314wxc for ; Sun, 06 Nov 2005 17:53:15 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:from:to:subject:date:user-agent:cc:references:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:message-id; b=slAMS7dRqnLPwGGIpZvpdD2aW8uqtnEHcgApK5gvJfzuYSMB7AgIwMxhZJpOK/nL1yeuiffsR4CMeYTpiqzbz4d4fkPWz6fkGSUsZs7MlJUTMj+b6B4hT7JUrMEEbKhDGvvLdS5fa3v4LSm7elR7Bx+B8J/+YLbJsnxyMoul7M8= Received: by 10.70.44.6 with SMTP id r6mr4422059wxr; Sun, 06 Nov 2005 17:53:15 -0800 (PST) Received: from ?192.168.1.10? ( [71.102.14.129]) by mx.gmail.com with ESMTP id h7sm2645667wxd.2005.11.06.17.53.11; Sun, 06 Nov 2005 17:53:14 -0800 (PST) From: "Michael C. Shultz" To: freebsd-multimedia@freebsd.org Date: Sun, 6 Nov 2005 17:44:35 -0800 User-Agent: KMail/1.8.3 References: <660414a50511061745p5b99e818h4eaf0f7e62f5d895@mail.gmail.com> In-Reply-To: <660414a50511061745p5b99e818h4eaf0f7e62f5d895@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200511061744.36135.ringworm01@gmail.com> Cc: Subject: Re: problem compiling tovid suite... 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: Mon, 07 Nov 2005 01:53:16 -0000 On Sunday 06 November 2005 17:45, siva m wrote: > hi, > I am trying to compile tovid package on my FreeBSD 6.0 box and here 's what > I am getting eventhough I've installed all dependencies: > ============================================= > $ ./configure > checking for a BSD-compatible install... /usr/bin/install -c > checking whether build environment is sane... yes > checking for gawk... gawk > checking whether make sets $(MAKE)... yes > checking for a BSD-compatible install... /usr/bin/install -c > checking for mplayer... yes > checking for mencoder... yes > checking for yuvfps... yes > checking for mpeg2enc... yes > checking for mp2enc... yes > checking for mplex... yes > checking for convert... no > checking for ffmpeg... yes > checking for dvdauthor... yes > checking for transcode... yes > checking for vcdimager... yes > checking for sox... yes > checking for mkisofs... yes > checking for lsdvd... yes > configure: error: Missing some dependencies. Exiting. > =============================================== > Can anyone help me figure out what am I missing? > > thanks, > s > [image: Edit/Delete > Message] > _______________________________________________ > freebsd-multimedia@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-multimedia > To unsubscribe, send any mail to > "freebsd-multimedia-unsubscribe@freebsd.org" Your missing: > checking for convert... no here is a little trick: locate bin/convert result: /usr/local/bin/convert find /var/db/pkg/. | xargs grep bin/convert result: /var/db/pkg/./ImageMagick-6.2.2.1/+CONTENTS:bin/convert You need to install /ImageMagick-6.2.2.1 -Mike