Date: Wed, 03 Dec 2003 23:12:00 -0600 From: Jeremy Messenger <mezz7@cox.net> To: freebsd-ports@freebsd.org Cc: knu@FreeBSD.org Subject: The 'cat/foo-*' doesn't work in the pkgtools.conf? Message-ID: <oprzm4qaox8ckrg5@smtp.central.cox.net>
next in thread | raw e-mail | index | archive | help
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.
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?oprzm4qaox8ckrg5>