From owner-freebsd-ports@FreeBSD.ORG Wed Dec 3 21:12:52 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6B6EA16A4CE; Wed, 3 Dec 2003 21:12:52 -0800 (PST) Received: from lakemtao08.cox.net (lakemtao08.cox.net [68.1.17.113]) by mx1.FreeBSD.org (Postfix) with ESMTP id F404043FDF; Wed, 3 Dec 2003 21:12:50 -0800 (PST) (envelope-from mezz7@cox.net) Received: from mezz.mezzweb.com ([68.103.32.11]) by lakemtao08.cox.net (InterMail vM.5.01.06.05 201-253-122-130-105-20030824) with ESMTP id <20031204051239.JMFE5790.lakemtao08.cox.net@mezz.mezzweb.com>; Thu, 4 Dec 2003 00:12:39 -0500 To: freebsd-ports@freebsd.org From: Jeremy Messenger Content-Type: text/plain; format=flowed; charset=iso-8859-1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Date: Wed, 03 Dec 2003 23:12:00 -0600 Message-ID: User-Agent: Opera7.23/Linux M2 build 518 cc: knu@FreeBSD.org Subject: The 'cat/foo-*' doesn't work in the pkgtools.conf? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 04 Dec 2003 05:12:52 -0000 I learned from the example in the pkgtools.conf, so what I am doing with mplayer that will not work.. ============================ MAKE_ARGS = { 'www/mozilla-*' => [ 'WITHOUT_MAILNEWS=yes', 'WITHOUT_COMPOSER=yes', 'WITHOUT_CHATZILLA=yes', ], 'multimedia/mplayer-*' => [ 'WITH_OPTIMIZED_CFLAGS=yes', 'WITHOUT_RUNTIME_CPUDETECTION=yes', 'WITH_GUI=yes', 'WITH_SDL=yes', 'WITH_XVID=yes', ], } ============================ It will work if I remove the '-*' like this: ============================ MAKE_ARGS = { 'www/mozilla' => [ 'WITHOUT_MAILNEWS=yes', 'WITHOUT_COMPOSER=yes', 'WITHOUT_CHATZILLA=yes', ], 'multimedia/mplayer' => [ 'WITH_OPTIMIZED_CFLAGS=yes', 'WITHOUT_RUNTIME_CPUDETECTION=yes', 'WITH_GUI=yes', 'WITH_SDL=yes', 'WITH_XVID=yes', ], } ============================ I tested it by pkg_delete SDL and it doesn't install SDL if it's with '-*', so remove the '-*' the SDL is installed. To me, it looks like it's a bug in portupgrade? ============================ # # b) Specify them using an array # 'databases/mysql41-*' => [ # 'WITH_LINUXTHREADS=1', # 'SKIP_DNS_CHECK=1', # ], ============================ Cheers, Mezz -- bsdforums.org 's moderator, mezz.