From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id CFC6513877A for ; Wed, 30 Jul 2014 00:54:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 94FAEE088F; Wed, 30 Jul 2014 00:54:41 +0000 (UTC) Received: from mail-ie0-f171.google.com (mail-ie0-f171.google.com [209.85.223.171]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 977D5E0857 for ; Wed, 30 Jul 2014 00:54:40 +0000 (UTC) Received: by mail-ie0-f171.google.com with SMTP id at1so536607iec.30 for ; Tue, 29 Jul 2014 17:54:39 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; bh=3/+QvoGsWbGEWNNmqrdyZGjGpY76m0BrixYPEiDMKrA=; b=MukIYJZ0MC11GnyQo7bFQuUBHTi9AoFOPyVrbarAyZlbQQxAtGOD+XQIupyDrf9ux2 E6ChSmQ/MJjovKitJcwErXCw0HTzRjejz6uWKS03/CkuQDflSJ4qMebZ4fiXzi5m9Ccz 2gimApSyxOdoLmNqeSRX1rjJ0tcMfqfmgzkugROYwIKd4MXF3wGoM5L1aolj3HvDDV/u OuWsa+C5VNbQWUkJW5fx9ZtPb05crz9cfm5nZW/Zr8CTzLK5P6JPctVrIy7F6XN9r97c 86L1/FyMosz6Gqr6UM5H5/8cboEFukBNsKN8wB0wSKjPyIioQrPSDpc10TMPfdeO/H6P OS+g== Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-user@lists.gentoo.org Reply-to: gentoo-user@lists.gentoo.org MIME-Version: 1.0 X-Received: by 10.42.62.6 with SMTP id w6mr939692ich.24.1406681679842; Tue, 29 Jul 2014 17:54:39 -0700 (PDT) Received: by 10.107.14.204 with HTTP; Tue, 29 Jul 2014 17:54:39 -0700 (PDT) In-Reply-To: <20140729201652.GA14289@waltdnes.org> References: <20140729201652.GA14289@waltdnes.org> Date: Wed, 30 Jul 2014 05:24:39 +0430 Message-ID: Subject: Re: [gentoo-user] USE flags handling From: behrouz khosravi To: gentoo-user@lists.gentoo.org Content-Type: text/plain; charset=UTF-8 X-Archives-Salt: b238e3cd-e29f-475e-8aa7-90aa5a174a7c X-Archives-Hash: 82ea0c34e71044a4b44f0461329907d9 On Wed, Jul 30, 2014 at 12:46 AM, Walter Dnes wrote: > In my make.conf I have... > USE_BASE="-* a52 aac bzip2 cxx fortran ncurses netifrc nptl nptlonly nsplugin offensive openssl posix readline ssl threads vim-syntax zlib" > USE_CPU="mmx mmxext sse sse2 sse3 ssse3" > USE_VIDEO="X dga dri exif ffmpeg flac classic gif intel jpeg mng mp3 mpeg ogg opengl png rtmp theora tiff truetype vorbis xcomposite webm x264 xpm xv xvid xvmc" > USE="${USE_BASE} ${USE_CPU} ${USE_VIDEO}" The way that you have managed the USE flag is neat, and I will do the same. Thanks for your help.