From owner-freebsd-ports@FreeBSD.ORG Fri Jun 24 13:57:53 2011 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (unknown [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 586EE106566B for ; Fri, 24 Jun 2011 13:57:53 +0000 (UTC) (envelope-from lenzi.sergio@gmail.com) Received: from mail-yx0-f182.google.com (mail-yx0-f182.google.com [209.85.213.182]) by mx1.freebsd.org (Postfix) with ESMTP id 11BB88FC22 for ; Fri, 24 Jun 2011 13:57:52 +0000 (UTC) Received: by yxl31 with SMTP id 31so1496127yxl.13 for ; Fri, 24 Jun 2011 06:57:52 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:subject:from:to:cc:in-reply-to:references :content-type:date:message-id:mime-version:x-mailer; bh=OVyRKs6LfcGT04J73ZYHf8GTtvCBcZvSnqljUXFda8M=; b=e6XiEP+YG33hQIexccoRS6dytT6q+ZlwT5JXNPz5lBGMsOrCpUjunpGUebcZyQ/UNi zfmd9zO0DTde2i3xyEpepQksAM397gQqVI/3EpAYyCwAXFKOeaRkR+yIVaDsUH/pY6yJ k4sW7f/rtbNLevb/z3/ZHh6Mui/Vtsvjz2m5I= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=subject:from:to:cc:in-reply-to:references:content-type:date :message-id:mime-version:x-mailer; b=wdQ4NVaqC9J+B0cK7Ke7AyZJ2M/Lo8Wi+HYg0HL4/hp4ngqNVg/GbdDd4UmQMhRz5n NlpESw2PE5YDBzxYuFhBeBarYVF758++s/S8ptLlBPho1aI693WlVeoTfDgQs5hx0UoS eyXoQKL4KCk7ccHSv7CrMhowuAC+BfKXR7LvY= Received: by 10.151.155.11 with SMTP id h11mr3556502ybo.146.1308923872324; Fri, 24 Jun 2011 06:57:52 -0700 (PDT) Received: from [192.168.6.230] ([201.21.174.123]) by mx.google.com with ESMTPS id d20sm165453ybn.24.2011.06.24.06.57.49 (version=SSLv3 cipher=OTHER); Fri, 24 Jun 2011 06:57:50 -0700 (PDT) From: Sergio de Almeida Lenzi To: ajtiM In-Reply-To: <201106231805.54355.lumiwa@gmail.com> References: <201106231805.54355.lumiwa@gmail.com> Date: Fri, 24 Jun 2011 10:57:46 -0300 Message-ID: <1308923866.22076.3.camel@z6000.lenzicasa> Mime-Version: 1.0 X-Mailer: Evolution 2.32.1 FreeBSD GNOME Team Port Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: freebsd-ports@freebsd.org Subject: Re: mencoder X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 24 Jun 2011 13:57:53 -0000 The problem is that it is missing cflags in the module codec-cfg.c a fix (dirty) in the mencoder makefile does the trick ======================================================== --- Makefile.orig 2011-06-24 10:18:38.856768653 -0300 +++ Makefile 2011-06-24 10:18:43.546211306 -0300 @@ -170,6 +170,9 @@ -e 's#HAVE_LOG2 1#HAVE_LOG2 0#g' \ -e 's#HAVE_LOG2F 1#HAVE_LOG2F 0#g' \ ${WRKSRC}/config.h + @${REINPLACE_CMD} \ + -e "s;-Iffmpeg;-Iffmpeg `pkg-config --cflags libass`;" ${WRKSRC} + do-install: @${INSTALL_PROGRAM} ${WRKSRC}/mencoder ${PREFIX}/bin ========================================================