2022-07-04

Gentoo-useflags

1. 什么是USE标志
1.1 声明USE标志
1.2 有用的命令
1.3 Emerge命令选项
1.4 相关工具
2. 使用USE标志
2.1 声明永久使用标志
2.2 为单个包声明USE标志
2.3 声明临时USE标志
2.4 优先级
2.5 使整个系统适应新的USE标志
3. 包特定的USE标志
3.1 查看可用的USE标志
4. REQUIRED_USE必要条件
5 useflaglist
5.1 当前活动的USE标志
5.2 Global
5.3. Local


1. 什么是USE标志

USE 标志是体现某个概念的支持和依赖信息的关键字。 
它们是 Gentoo 的核心功能,管理 Gentoo 系统需要很好地理解如何处理它们。 
USE 标志用于在安装时配置每个包。 
他们经常设置编译时间选项,这种选择选项的能力只有在安装包时才可用,这是 Gentoo 基于源代码所利用的巨大优势之一。 
USE 标志可以配置包的许多方面,可用的 USE 标志和相应的可选功能取决于每个单独的软件。 
默认情况下,整个发行版带有合理的 USE 标志,并且通过选择一个配置文件来进一步完善这些标志以适应计划的系统使用。 
每个包都有自己的一组可用 USE 标志,具体取决于可以为包配置的内容,并且这些也设置为合理的默认值。

1.1 声明USE标志

默认的 USE 标志集由选定的配置文件定义。 
可以在/etc/portage/make.conf和/或/etc/portage/package.use中更改它们。
可以在命令行上临时设置一个 USE 标志,以检查它对依赖项的影响,然后再将其写入/etc/portage/package.use: 
user $USE="[USE flag to test]" emerge --pretend --verbose <package name> 
不要使用它来实际安装包,因为升级时设置会丢失。

1.2 有用的命令

user $portageq envvar USE | xargs -n 1 
要检查某个 USE 标志是否已激活以及哪些软件包使用它,请运行: 
user $euse -I <use_flag> # included with app-portage/gentookit 
user $quse <use_flag> # included with app-portage/portage-utils 
user $eix --installed-with-use <use_flag> # included with app-portage/eix 
替换<use_flag>为要检查的 USE 标志。

1.3 Emerge命令选项

Emerge命令有一些与 USE 标志相关的选项,例如 :
 --changed-use( -U)
 --complete-graph-if-new-use < y | n >
 --newuse( -N) 
 有关详细信息,请参阅man 1 emerge。

1.4 相关工具

一些工具可用于分析和管理 USE 标志: 

2. 使用USE标志

要查看当前活动的 USE 标志(完全),使用emerge --info: 
root #emerge --info | grep ^USE

2.1 声明永久使用标志

FILE /etc/portage/make.confUpdating USE in make.conf
USE="-kde -qt5 ldap"
可以在命令行上临时设置一个 USE 标志以检查它将产生什么效果,然后再将其写入世界文件: 
USE="[USE flag to test]" emerge --pretend --verbose --update --deep --newuse world

2.2 为单个包声明USE标志

FILE: /etc/portage/package.use
# 全局禁用配置文件启用的不需要的 USE 标志
*/* -bluetooth -dbus -ldap -libnotify -nls -qt3support -udisks
# 为 app-admin/sudo 启用 USE 标志
app-admin/sudo offensive
# 禁用 mysql 对 dev-lang/php 的支持
dev-lang/php -mysql 
# 启用 java 并设置 libreoffice 的 python 解释器版本
app-office/libreoffice java PYTHON_SINGLE_TARGET: python3_9

2.3 声明临时USE标志

请记住,此设置仅适用于输入的命令;
重新emerge或更新此应用程序(显式或作为系统更新的一部分)将撤消通过(临时)USE 标志定义触发的更改。
以下示例pulseaudio在安装 SeaMonkey 期间临时从 USE 变量中删除该值:
root #USE="-pulseaudio" emerge www-client/seamonkey

2.4 优先级

当然,什么设置优先于 USE 设置有一定的优先级。USE 设置的优先级按优先级排序(首先具有最低优先级):
  1.   在您的配置文件的make.defaults文件部分中声明的默认 USE 设置
  2.   /etc/portage/make.conf中用户定义的 USE 设置
  3.   /etc/portage/package.use中用户定义的 USE 设置
  4.   用户定义的 USE 设置作为环境变量
要查看 Portage 看到的最终 USE 设置,请运行emerge –info。
这将列出所有相关变量(包括USE变量)以及 Portage 已知的当前定义。
root #emerge –info

2.5 使整个系统适应新的USE标志

更改 USE 标志后,应更新系统以反映必要的更改。为此,请使用—newuse带有merge的选项:
root #emerge --update --deep --newuse @world
接下来,运行 Portage 的 depclean 来移除在“旧”系统上出现但已被新的 USE 标志废弃的条件依赖。
仔细检查提供的“过时”软件包列表,确保它不会删除所需的软件包。
在以下示例中,--pretend( -p) 开关使 depclean 仅列出软件包而不删除它们:
root #emerge --pretend –depclean
当 depclean 完成时,emerge可能会提示重建与可能已删除的软件包提供的共享对象动态链接的应用程序。
Portage 将保留必要的库,直到执行此操作以防止破坏应用程序。
它存储了集合中需要重建的内容preserved-rebuild。要重建必要的包,请运行:
root #emerge @preserved-rebuild
完成所有这些后,系统将使用新的 USE 标志设置。

3. 包特定的USE标志

3.1 查看可用的USE标志

让我们以 seamonkey 为例:它听什么 USE 标志?为了找出答案,我们使用带有和选项 的emerge :--pretend--verbose
root #emerge --pretend --verbose www-client/seamonkey
emerge并不是这项工作的唯一工具。事实上,在app-portage/gentoolkit包 中有一个名为equery的专用于包信息的工具
root #emerge --ask app-portage/gentoolkit
现在使用参数运行equeryuses以查看某个包的 USE 标志。例如,对于app-portage/portage-utils包:
user $equery --nocolor uses =app-portage/portage-utils-0.93.3

4. REQUIRED_USE必要条件

一些 ebuild 需要或禁止某些 USE 标志组合才能正常工作。
这通过放置在 REQUIRED_USE表达式中的一组条件来表达。
此条件可确保所有功能和依赖项都是完整的,并且构建将成功并按预期执行。
如果其中任何一个不满足,emerge 会提醒您并要求您解决问题。
<table ...

5. useflaglist

cat /var/db/repos/gentoo/profiles/use.desc

5.1 当前活动的USE标志

root #emerge --info | grep ^USE
USE="X a52 aac acl acpi alsa amd64 bluetooth branding bzip2 cairo cdda cdr cli crypt cups dbus dri dts dvd dvdr encode exif flac fortran gdbm gif gpm gtk gui iconv icu ipv6 jpeg lcms libglvnd libnotify libtirpc mad mng mp3 mp4 mpeg multilib ncurses nls nptl ogg opengl openmp pam pango pcre pdf png policykit ppds qt5 readline sdl seccomp spell split-usr ssl startup-notification svg systemd tiff truetype udev udisks unicode upower usb vorbis wxwidgets x264 xattr xcb xml xv xvid zlib" ABI_X86="64" ADA_TARGET="gnat_2020" APACHE2_MODULES="authn_core authz_core socache_shmcb unixd actions alias auth_basic authn_alias authn_anon authn_dbm authn_default authn_file authz_dbm authz_default authz_groupfile authz_host authz_owner authz_user autoindex cache cgi cgid dav dav_fs dav_lock deflate dir disk_cache env expires ext_filter file_cache filter headers include info log_config logio mem_cache mime mime_magic negotiation rewrite setenvif speling status unique_id userdir usertrack vhost_alias" CALLIGRA_FEATURES="karbon sheets words" COLLECTD_PLUGINS="df interface irq load memory rrdtool swap syslog" CPU_FLAGS_X86="mmx mmxext sse sse2 sse3 sse4_1 ssse3" ELIBC="glibc" GPSD_PROTOCOLS="ashtech aivdm earthmate evermore fv18 garmin garmintxt gpsclock greis isync itrax mtk3301 nmea ntrip navcom oceanserver oldstyle oncore rtcm104v2 rtcm104v3 sirf skytraq superstar2 timing tsip tripmate tnt ublox ubx" INPUT_DEVICES="libinput synaptics" KERNEL="linux" LCD_DEVICES="bayrad cfontz cfontz633 glk hd44780 lb216 lcdm001 mtxorb ncurses text" LIBREOFFICE_EXTENSIONS="presenter-console presenter-minimizer" LUA_SINGLE_TARGET="lua5-1" LUA_TARGETS="lua5-1" OFFICE_IMPLEMENTATION="libreoffice" PHP_TARGETS="php7-4 php8-0" POSTGRES_TARGETS="postgres12 postgres13" PYTHON_SINGLE_TARGET="python3_9" PYTHON_TARGETS="python3_9" RUBY_TARGETS="ruby27" USERLAND="GNU" VIDEO_CARDS="intel" XTABLES_ADDONS="quota2 psd pknock lscan length2 ipv4options ipset ipp2p iface geoip fuzzy condition tee tarpit sysrq proto steal rawnat logmark ipmark dhcpmac delude chaos account"
# 拆分开来,有如下24了区域:

USE X a52 aac acl acpi alsa amd64 bluetooth branding bzip2 cairo cdda cdr cli crypt cups dbus dri dts dvd dvdr encode exif flac fortran gdbm gif gpm gtk gui iconv icu ipv6 jpeg lcms libglvnd libnotify libtirpc mad mng mp3 mp4 mpeg multilib ncurses nls nptl ogg opengl openmp pam pango pcre pdf png policykit ppds qt5 readline sdl seccomp spell split-usr ssl startup-notification svg systemd tiff truetype udev udisks unicode upower usb vorbis wxwidgets x264 xattr xcb xml xv xvid zlib USE
ABI_X86 64 abi x86
ADA_TARGET gnat_2020 ADA 目标
APACHE2_MODULES authn_core authz_core socache_shmcb unixd actions alias auth_basic authn_alias authn_anon authn_dbm authn_default authn_file authz_dbm authz_default authz_groupfile authz_host authz_owner authz_user autoindex cache cgi cgid dav dav_fs dav_lock deflate dir disk_cache env expires ext_filter file_cache filter headers include info log_config logio mem_cache mime mime_magic negotiation rewrite setenvif speling status unique_id userdir usertrack vhost_alias apache2 模块
CALLIGRA_FEATURES karbon sheets words 书法特点
COLLECTD_PLUGINS df interface irq load memory rrdtool swap syslog 收集插件
CPU_FLAGS_X86 mmx mmxext sse sse2 sse3 sse4_1 ssse3 CPU 标志 x86
ELIBC glibc elibc
GPSD_PROTOCOLS ashtech aivdm earthmate evermore fv18 garmin garmintxt gpsclock greis isync itrax mtk3301 nmea ntrip navcom oceanserver oldstyle oncore rtcm104v2 rtcm104v3 sirf skytraq superstar2 timing tsip tripmate tnt ublox ubx gpsd 协议
INPUT_DEVICES libinput synaptics 输入设备
KERNEL linux 核心
LCD_DEVICES bayrad cfontz cfontz633 glk hd44780 lb216 lcdm001 mtxorb ncurses text 液晶设备
LIBREOFFICE_EXTENSIONS presenter-console presenter-minimizer libreoffice 扩展
LUA_SINGLE_TARGET lua5-1 lua 单一目标
LUA_TARGETS lua5-1 lua 目标
OFFICE_IMPLEMENTATION libreoffice 办公室执行
PHP_TARGETS php7-4 php8-0 php目标
POSTGRES_TARGETS postgres12 postgres13 postgres 目标
PYTHON_SINGLE_TARGET python3_9 python单目标
PYTHON_TARGETS python3_9 蟒蛇目标
RUBY_TARGETS ruby27 红宝石目标
USERLAND GNU 用户区
VIDEO_CARDS intel 视频卡
XTABLES_ADDONS quota2 psd pknock lscan length2 ipv4options ipset ipp2p iface geoip fuzzy condition tee tarpit sysrq proto steal rawnat logmark ipmark dhcpmac delude chaos account xtables 插件

5.2 Global

# 绿色的flags表示Local区也会用到的名称
sn1 Global https://www.gentoo.org/support/use-flags/ cn https://www.gentoo.org/support/use-flags/
1 X Add support for X11 添加对 X11 的支持
2 Xaw3d Add support for the 3d athena widget set 添加对 3d athena 小部件集的支持
3 a52 Enable support for decoding ATSC A/52 streams used in DVD 启用对 DVD 中使用的 ATSC A/52 流解码的支持
4 aac Enable support for MPEG-4 AAC Audio 启用对 MPEG-4 AAC 音频的支持
5 aalib Add support for media-libs/aalib (ASCII-Graphics Library) 添加对 media-libs/aalib(ASCII 图形库)的支持
6 accessibility Add support for accessibility (eg 'at-spi' library) 添加对可访问性的支持(例如'at-spi'库)
7 acl Add support for Access Control Lists 添加对访问控制列表的支持
8 acpi Add support for Advanced Configuration and Power Interface 添加对高级配置和电源接口的支持
9 adns Add support for asynchronous DNS resolution 添加对异步 DNS 解析的支持
10 afs Add OpenAFS support (distributed file system) 添加 OpenAFS 支持(分布式文件系统)
11 alsa Add support for media-libs/alsa-lib (Advanced Linux Sound Architecture) 添加对 media-libs/alsa-lib(高级 Linux 声音架构)的支持
12 altivec Add support for optimizations for G4 and G5/ppc970 processors 添加对 G4 和 G5/ppc970 处理器优化的支持
13 ao Use libao audio output library for sound playback 使用 libao 音频输出库进行声音播放
14 apache2 Add Apache2 support 添加 Apache2 支持
15 aqua Include support for the Mac OS X Aqua (Carbon/Cocoa) GUI 包括对 Mac OS X Aqua (Carbon/Cocoa) GUI 的支持
16 atm Enable Asynchronous Transfer Mode protocol support 启用异步传输模式协议支持
17 appindicator Build in support for notifications using the libindicate or libappindicator plugin 使用 libindicate 或 libappindicator 插件构建对通知的支持
18 audiofile Add support for libaudiofile where applicable 在适用的情况下添加对 libaudiofile 的支持
19 audit Enable support for Linux audit subsystem using sys-process/audit 使用 sys-process/audit 启用对 Linux 审计子系统的支持
20 bash-completion Enable bash-completion support 启用 bash 完成支持
21 berkdb Add support for sys-libs/db (Berkeley DB for MySQL) 添加对 sys-libs/db (Berkeley DB for MySQL) 的支持
22 bidi Enable bidirectional language support 启用双向语言支持
23 big-endian Big-endian toolchain support 大端工具链支持
24 bindist Flag to enable or disable options for prebuilt (GRP) packages (eg. due to licensing issues) 标记以启用或禁用预构建 (GRP) 包的选项(例如,由于许可问题)
25 blas Add support for the virtual/blas numerical library 添加对 virtual/blas 数值库的支持
26 bluetooth Enable Bluetooth Support 启用蓝牙支持
27 branding Enable Gentoo specific branding 启用 Gentoo 特定品牌
28 build !!internal use only!! DO NOT SET THIS FLAG YOURSELF!, used for creating build images and the first half of bootstrapping [make stage1] !!限内部使用!!不要自己设置这个标志!,用于创建构建映像和引导的前半部分 [make stage1]
29 bzip2 Use the bzlib compression library 使用 bzlib 压缩库
30 cairo Enable support for the cairo graphics library 启用对 cairo 图形库的支持
31 calendar Add support for calendars (not using mcal!) 添加对日历的支持(不使用 mcal!)
32 caps Use Linux capabilities library to control privilege 使用 Linux 能力库来控制权限
33 cdb Add support for the CDB database engine from the author of qmail qmail作者添加对CDB数据库引擎的支持
34 cdda Add Compact Disk Digital Audio (Standard Audio CD) support 添加光盘数字音频(标准音频 CD)支持
35 cddb Access cddb servers to retrieve and submit information about compact disks 访问 cddb 服务器以检索和提交有关光盘的信息
36 cdinstall Copy files from the CD rather than asking the user to copy them, mostly used with games 从 CD 复制文件,而不是要求用户复制它们,主要用于游戏
37 cdr Add support for CD writer hardware 添加对 CD 刻录机硬件的支持
38 cgi Add CGI script support 添加 CGI 脚本支持
39 cjk Add support for Multi-byte character languages (Chinese, Japanese, Korean) 添加对多字节字符语言(中文、日文、韩文)的支持
40 clamav Add support for Clam AntiVirus software (usually with a plugin) 添加对 Clam AntiVirus 软件的支持(通常带有插件)
41 colord Support color management using x11-misc/colord 支持使用 x11-misc/colord 进行色彩管理
42 connman Add support for net-misc/connman 添加对 net-misc/connman 的支持
43 coreaudio Build the CoreAudio driver on Mac OS X systems 在 Mac OS X 系统上构建 CoreAudio 驱动程序
44 cracklib Support for cracklib strong password checking 支持cracklib强密码检查
45 crypt Add support for encryption -- using mcrypt or gpg where applicable 添加对加密的支持——在适用的情况下使用 mcrypt 或 gpg
46 css Enable reading of encrypted DVDs 启用加密 DVD 的读取
47 cups Add support for CUPS (Common Unix Printing System) 添加对 CUPS(通用 Unix 打印系统)的支持
48 curl Add support for client-side URL transfer library 添加对客户端 URL 传输库的支持
49 custom-cflags Build with user-specified CFLAGS (unsupported) 使用用户指定的 CFLAGS 构建(不支持)
50 cvs Enable CVS (Concurrent Versions System) integration 启用 CVS(并发版本系统)集成
51 cxx Build support for C++ (bindings, extra libraries, code generation, ...) 构建对 C++ 的支持(绑定、额外库、代码生成……)
52 dbi Enable dev-db/libdbi (database-independent abstraction layer) support 启用 dev-db/libdbi(独立于数据库的抽象层)支持
53 dbm Add support for generic DBM databases 添加对通用 DBM 数据库的支持
54 dbus Enable dbus support for anything that needs it (gpsd, gnomemeeting, etc) 为任何需要它的东西启用 dbus 支持(gpsd、gnomemeeting 等)
55 debug Enable extra debug codepaths, like asserts and extra output. If you want to get meaningful backtraces see https://wiki.gentoo.org/wiki/Project:Quality_Assurance/Backtraces 启用额外的调试代码路径,例如断言和额外的输出。如果您想获得有意义的回溯,请参阅 https://wiki.gentoo.org/wiki/Project:Quality_Assurance/Backtraces
56 dedicated Add support for dedicated game servers (some packages do not provide clients and servers at the same time) 添加对专用游戏服务器的支持(某些软件包不同时提供客户端和服务器)
57 dga Add DGA (Direct Graphic Access) support for X 为 X 添加 DGA(直接图形访问)支持
58 dist-kernel Enable subslot rebuilds on Distribution Kernel upgrades 在分发内核升级时启用子插槽重建
59 djvu Support DjVu, a PDF-like document format esp. suited for scanned documents 支持 DjVu,一种类似 PDF 的文档格式,尤其是。适用于扫描文档
60 doc Add extra documentation (API, Javadoc, etc). It is recommended to enable per package instead of globally 添加额外的文档(API、Javadoc 等)。建议启用每个包而不是全局
61 dri Enable direct rendering: used for accelerated 3D and some 2D, like DMA 启用直接渲染:用于加速 3D 和一些 2D,如 DMA
62 dts Enable DTS Coherent Acoustics decoder support 启用 DTS Coherent Acoustics 解码器支持
63 dv Enable support for a codec used by many camcorders 启用对许多摄像机使用的编解码器的支持
64 dvb Add support for DVB (Digital Video Broadcasting) 添加对 DVB(数字视频广播)的支持
65 dvd Add support for DVDs 添加对 DVD 的支持
66 dvdr Add support for DVD writer hardware (e.g. in xcdroast) 添加对 DVD 刻录机硬件的支持(例如在 xcdroast 中)
67 eds Enable support for Evolution-Data-Server (EDS) 启用对 Evolution-Data-Server (EDS) 的支持
68 elogind Enable session tracking via sys-auth/elogind 通过 sys-auth/elogind 启用会话跟踪
69 emacs Add support for GNU Emacs 添加对 GNU Emacs 的支持
70 emboss Add support for the European Molecular Biology Open Software Suite 添加对欧洲分子生物学开放软件套件的支持
71 encode Add support for encoding of audio or video files 添加对音频或视频文件编码的支持
72 examples Install examples, usually source code 安装示例,通常是源代码
73 exif Add support for reading EXIF headers from JPEG and TIFF images 添加对从 JPEG 和 TIFF 图像读取 EXIF 标头的支持
74 expat Enable the use of dev-libs/expat for XML parsing 启用使用 dev-libs/expat 进行 XML 解析
75 fam Enable FAM (File Alteration Monitor) support 启用 FAM(文件更改监视器)支持
76 fastcgi Add support for the FastCGI interface 添加对 FastCGI 接口的支持
77 fbcon Add framebuffer support for the console, via the kernel 通过内核为控制台添加帧缓冲支持
78 ffmpeg Enable ffmpeg/libav-based audio/video codec support 启用基于 ffmpeg/libav 的音频/视频编解码器支持
79 fftw Use FFTW library for computing Fourier transforms 使用 FFTW 库计算傅里叶变换
80 filecaps Use Linux file capabilities to control privilege rather than set*id (this is orthogonal to USE=caps which uses capabilities at runtime e.g. libcap) 使用 Linux 文件功能而不是 set*id 来控制权限(这与 USE=caps 正交,后者在运行时使用功能,例如 libcap)
81 firebird Add support for the Firebird relational database 添加对 Firebird 关系数据库的支持
82 flac Add support for FLAC: Free Lossless Audio Codec 添加对 FLAC 的支持:免费无损音频编解码器
83 fltk Add support for the Fast Light Toolkit gui interface 添加对 Fast Light Toolkit gui 界面的支持
84 fontconfig Support for configuring and customizing font access via media-libs/fontconfig 支持通过 media-libs/fontconfig 配置和自定义字体访问
85 fortran Add support for fortran 添加对 fortran 的支持
86 freetds Add support for the TDS protocol to connect to MSSQL/Sybase databases 添加对 TDS 协议的支持以连接到 MSSQL/Sybase 数据库
87 freewnn Add support for FreeWnn kana to kanji conversion engine 添加对 FreeWnn 假名到汉字转换引擎的支持
88 ftp Add FTP (File Transfer Protocol) support 添加 FTP(文件传输协议)支持
89 gd Add support for media-libs/gd (to generate graphics on the fly) 添加对 media-libs/gd 的支持(动态生成图形)
90 gdbm Add support for sys-libs/gdbm (GNU database libraries) 添加对 sys-libs/gdbm(GNU 数据库库)的支持
91 geoip Add geoip support for country and city lookup based on IPs 为基于 IP 的国家和城市查找添加 geoip 支持
92 geolocation Enable physical position determination 启用物理位置确定
93 ggi Add support for media-libs/libggi (non-X video api/drivers) 添加对 media-libs/libggi 的支持(非 X 视频 api/驱动程序)
94 gif Add GIF image support 添加 GIF 图片支持
95 gimp Build a plugin for the GIMP 为 GIMP 构建插件
96 git Enable git (version control system) support 启用 git(版本控制系统)支持
97 gles2-only Use GLES 2.0 or later instead of full OpenGL 使用 GLES 2.0 或更高版本而不是完整的 OpenGL
98 glut Build an OpenGL plugin using the GLUT library 使用 GLUT 库构建 OpenGL 插件
99 gmp Add support for dev-libs/gmp (GNU MP library) 添加对 dev-libs/gmp(GNU MP 库)的支持
100 gnome Add GNOME support 添加 GNOME 支持
101 gnome-keyring Enable support for storing passwords via gnome-keyring 启用对通过 gnome-keyring 存储密码的支持
102 gnuplot Enable support for gnuplot (data and function plotting) 启用对 gnuplot 的支持(数据和函数绘图)
103 gnutls Prefer net-libs/gnutls as SSL/TLS provider (ineffective with USE=-ssl) 首选 net-libs/gnutls 作为 SSL/TLS 提供程序(对 USE=-ssl 无效)
104 gphoto2 Add digital camera support 添加数码相机支持
105 gpm Add support for sys-libs/gpm (Console-based mouse driver) 添加对 sys-libs/gpm(基于控制台的鼠标驱动程序)的支持
106 gps Add support for Global Positioning System 添加对全球定位系统的支持
107 graphicsmagick Build and link against GraphicsMagick instead of ImageMagick (requires USE=imagemagick if optional) 针对 GraphicsMagick 而不是 ImageMagick 构建和链接(如果可选,则需要 USE=imagemagick)
108 graphviz Add support for the Graphviz library 添加对 Graphviz 库的支持
109 gsl Use the GNU scientific library for calculations 使用 GNU 科学库进行计算
110 gsm Add support for the gsm lossy speech compression codec 添加对 gsm 有损语音压缩编解码器的支持
111 gstreamer Add support for media-libs/gstreamer (Streaming media) 添加对 media-libs/gstreamer(流媒体)的支持
112 gtk Add support for x11-libs/gtk+ (The GIMP Toolkit) 添加对 x11-libs/gtk+(GIMP 工具包)的支持
113 gtk-doc Build and install gtk-doc based developer documentation for dev-util/devhelp, IDE and offline use 为 dev-util/devhelp、IDE 和离线使用构建和安装基于 gtk-doc 的开发人员文档
114 gui Enable support for a graphical user interface 启用对图形用户界面的支持
115 guile Add support for the guile Scheme interpreter 添加对 guile Scheme 解释器的支持
116 gzip Compress files with Lempel-Ziv coding (LZ77) 使用 Lempel-Ziv 编码 (LZ77) 压缩文件
117 handbook Enable handbooks generation for packages by KDE 启用 KDE 为软件包生成手册
118 hardened Activate default security enhancements for toolchain (gcc, glibc, binutils) 激活工具链的默认安全增强功能(gcc、glibc、binutils)
119 hddtemp Enable monitoring of hdd temperature (app-admin/hddtemp) 启用硬盘温度监控 (app-admin/hddtemp)
120 hdf5 Add support for the Hierarchical Data Format v5 添加对分层数据格式 v5 的支持
121 headers-only Install only C headers instead of whole package. Mainly used by sys-devel/crossdev for toolchain bootstrap. 只安装 C 头文件而不是整个包。主要由 sys-devel/crossdev 用于工具链引导。
122 hscolour Include coloured haskell sources to generated documentation (dev-haskell/hscolour) 在生成的文档中包含彩色的 haskell 源代码 (dev-haskell/hscolour)
123 ibm Add support for IBM ppc64 specific systems 添加对 IBM ppc64 特定系统的支持
124 iconv Enable support for the iconv character set conversion library 启用对 iconv 字符集转换库的支持
125 icu Enable ICU (Internationalization Components for Unicode) support, using dev-libs/icu 使用 dev-libs/icu 启用 ICU(Unicode 的国际化组件)支持
126 idn Enable support for Internationalized Domain Names 启用对国际化域名的支持
127 ieee1394 Enable FireWire/iLink IEEE1394 support (dv, camera, ...) 启用 FireWire/iLink IEEE1394 支持(dv、相机等)
128 imagemagick Enable optional support for the ImageMagick or GraphicsMagick image converter 启用对 ImageMagick 或 GraphicsMagick 图像转换器的可选支持
129 imap Add support for IMAP (Internet Mail Application Protocol) 添加对 IMAP(Internet 邮件应用协议)的支持
130 imlib Add support for imlib, an image loading and rendering library 添加对 imlib 的支持,这是一个图像加载和渲染库
131 infiniband Enable Infiniband RDMA transport support 启用 Infiniband RDMA 传输支持
132 inotify Enable inotify filesystem monitoring support 启用 inotify 文件系统监控支持
133 introspection Add support for GObject based introspection 添加对基于 GObject 的自省的支持
134 iodbc Add support for iODBC library 添加对 iODBC 库的支持
135 ios Enable support for Apple's iDevice with iOS operating system (iPad, iPhone, iPod, etc) 启用对带有 iOS 操作系统(iPad、iPhone、iPod 等)的 Apple iDevice 的支持
136 ipod Enable support for iPod device access 启用对 iPod 设备访问的支持
137 ipv6 Add support for IP version 6 添加对 IP 版本 6 的支持
138 jack Add support for the JACK Audio Connection Kit 添加对 JACK 音频连接套件的支持
139 java Add support for Java 添加对 Java 的支持
140 javascript Enable javascript support 启用 JavaScript 支持
141 jbig Enable jbig-kit support for tiff, Hylafax, ImageMagick, etc 启用对 tiff、Hylafax、ImageMagick 等的 jbig-kit 支持
142 jemalloc Use dev-libs/jemalloc for memory management 使用 dev-libs/jemalloc 进行内存管理
143 jit Enable just-in-time compilation for improved performance. May prevent use of some PaX memory protection features in Gentoo Hardened. 启用即时编译以提高性能。可能会阻止在 Gentoo Hardened 中使用某些 PaX 内存保护功能。
144 joystick Add support for joysticks in all packages 在所有软件包中添加对操纵杆的支持
145 jpeg Add JPEG image support 添加JPEG图像支持
146 jpeg2k Support for JPEG 2000, a wavelet-based image compression format 支持 JPEG 2000,一种基于小波的图像压缩格式
147 kde Add support for software made by KDE, a free software community 添加对自由软件社区 KDE 制作的软件的支持
148 kerberos Add kerberos support 添加kerberos支持
149 ladspa Enable the ability to support ladspa plugins 启用支持 ladspa 插件的功能
150 lame Prefer using LAME libraries for MP3 encoding support 更喜欢使用 LAME 库来支持 MP3 编码
151 lapack Add support for the virtual/lapack numerical library 添加对 virtual/lapack 数值库的支持
152 lash Add LASH Audio Session Handler support 添加 LASH 音频会话处理程序支持
153 latex Add support for LaTeX (typesetting package) 添加对 LaTeX 的支持(排版包)
154 lcms Add lcms support (color management engine) 添加lcms支持(色彩管理引擎)
155 ldap Add LDAP support (Lightweight Directory Access Protocol) 添加 LDAP 支持(轻量级目录访问协议)
156 libass SRT/SSA/ASS (SubRip / SubStation Alpha) subtitle support SRT/SSA/ASS (SubRip / SubStation Alpha) 字幕支持
157 libcaca Add support for colored ASCII-art graphics 添加对彩色 ASCII 艺术图形的支持
158 libedit Use the libedit library (replacement for readline) 使用 libedit 库(替代 readline)
159 libffi Enable support for Foreign Function Interface library 启用对外部函数接口库的支持
160 libnotify Enable desktop notification support 启用桌面通知支持
161 libsamplerate Build with support for converting sample rates using libsamplerate 构建支持使用 libsamplerate 转换采样率
162 libwww Add libwww support (General purpose WEB API) 添加 libwww 支持(通用 WEB API)
163 lirc Add support for lirc (Linux's Infra-Red Remote Control) 添加对 lirc(Linux 的红外线远程控制)的支持
164 livecd !!internal use only!! DO NOT SET THIS FLAG YOURSELF!, used during livecd building !!限内部使用!!不要自己设置这个标志!,在 livecd 构建期间使用
165 llvm-libunwind Use sys-libs/llvm-libunwind instead of sys-libs/libunwind 使用 sys-libs/llvm-libunwind 而不是 sys-libs/libunwind
166 lm-sensors Add linux lm-sensors (hardware sensors) support 添加 linux lm-sensors(硬件传感器)支持
167 lua Enable Lua scripting support 启用 Lua 脚本支持
168 luajit Use dev-lang/luajit instead of dev-lang/lua (ineffective with USE=-lua) 使用 dev-lang/luajit 代替 dev-lang/lua(使用 USE=-lua 无效)
169 lzma Support for LZMA (de)compression algorithm 支持 LZMA(解)压缩算法
170 lz4 Enable support for lz4 compression (as implemented in app-arch/lz4) 启用对 lz4 压缩的支持(在 app-arch/lz4 中实现)
171 lzo Enable support for lzo compression 启用对 lzo 压缩的支持
172 m17n-lib Enable m17n-lib support 启用 m17n-lib 支持
173 mad Add support for mad (high-quality mp3 decoder library and cli frontend) 添加对mad的支持(高质量的mp3解码器库和cli前端)
174 magic Add support for file type detection via magic bytes (usually via libmagic from sys-apps/file) 通过魔术字节添加对文件类型检测的支持(通常通过 sys-apps/file 中的 libmagic)
175 maildir Add support for maildir (~/.maildir) style mail spools 添加对 maildir (~/.maildir) 样式邮件假脱机的支持
176 man Build and install man pages 构建和安装手册页
177 matroska Add support for the matroska container format (extensions .mkv, .mka and .mks) 添加对 matroska 容器格式的支持(扩展名 .mkv、.mka 和 .mks)
178 mbox Add support for mbox (/var/spool/mail) style mail spools 添加对 mbox (/var/spool/mail) 样式邮件假脱机的支持
179 memcached Add support for memcached 添加对 memcached 的支持
180 mhash Add support for the mhash library 添加对 mhash 库的支持
181 mikmod Add libmikmod support to allow playing of SoundTracker-style music files 添加 libmikmod 支持以允许播放 SoundTracker 风格的音乐文件
182 milter Add sendmail mail filter (milter) support 添加 sendmail 邮件过滤器(milter)支持
183 minimal Install a very minimal build (disables, for example, plugins, fonts, most drivers, non-critical features) 安装一个非常小的版本(禁用,例如,插件、字体、大多数驱动程序、非关键功能)
184 mmap Add mmap (memory map) support 添加 mmap(内存映射)支持
185 mms Support for Microsoft Media Server (MMS) streams 支持 Microsoft 媒体服务器 (MMS) 流
186 mng Add support for libmng (MNG images) 添加对 libmng(MNG 图像)的支持
187 modplug Add libmodplug support for playing SoundTracker-style music files 添加 libmodplug 支持以播放 SoundTracker 风格的音乐文件
188 modules Build the kernel modules 构建内核模块
189 mono Build Mono bindings to support dotnet type stuff 构建 Mono 绑定以支持 dotnet 类型的东西
190 motif Add support for the Motif toolkit 添加对 Motif 工具包的支持
191 mp3 Add support for reading mp3 files 添加对读取 mp3 文件的支持
192 mp4 Support for MP4 container format 支持 MP4 容器格式
193 mpeg Add libmpeg3 support to various packages 为各种包添加 libmpeg3 支持
194 mpi Add MPI (Message Passing Interface) layer to the apps that support it 将 MPI(消息传递接口)层添加到支持它的应用程序
195 mplayer Enable mplayer support for playback or encoding 为播放或编码启用 mplayer 支持
196 mssql Add support for Microsoft SQL Server database 添加对 Microsoft SQL Server 数据库的支持
197 mtp Enable support for Media Transfer Protocol 启用对媒体传输协议的支持
198 multilib On 64bit systems, if you want to be able to compile 32bit and 64bit binaries 在 64 位系统上,如果您希望能够编译 32 位和 64 位二进制文件
199 musepack Enable support for the musepack audio codec 启用对 musepack 音频编解码器的支持
200 musicbrainz Lookup audio metadata using MusicBrainz community service (musicbrainz.org) 使用 MusicBrainz 社区服务 (musicbrainz.org) 查找音频元数据
201 mysql Add mySQL Database support 添加 mySQL 数据库支持
202 mysqli Add support for the improved mySQL libraries 添加对改进的 mySQL 库的支持
203 nas Add support for network audio sound 添加对网络音频声音的支持
204 ncurses Add ncurses support (console display library) 添加 ncurses 支持(控制台显示库)
205 neXt Enable neXt toolkit 启用下一个工具包
206 neon Enable optimization support for ARM NEON processors 启用对 ARM NEON 处理器的优化支持
207 netcdf Enable NetCDF data format support 启用 NetCDF 数据格式支持
208 networkmanager Enable net-misc/networkmanager support 启用 net-misc/networkmanager 支持
209 nis Support for NIS/YP services 支持 NIS/YP 服务
210 nls Add Native Language Support (using gettext - GNU locale utilities) 添加本地语言支持(使用 gettext - GNU 语言环境实用程序)
211 nntp Add support for newsgroups (Network News Transfer Protocol) 添加对新闻组的支持(网络新闻传输协议)
212 nocd Install all files required to run the application without a CD mounted 在不安装 CD 的情况下安装运行应用程序所需的所有文件
213 nsplugin Build plugin for browsers supporting the Netscape plugin architecture (that is almost any modern browser) 为支持 Netscape 插件架构的浏览器构建插件(几乎是任何现代浏览器)
214 nvenc Add support for NVIDIA Encoder/Decoder (NVENC/NVDEC) API for hardware accelerated encoding and decoding on NVIDIA cards (requires x11-drivers/nvidia-drivers) 添加对 NVIDIA 编码器/解码器 (NVENC/NVDEC) API 的支持,用于在 NVIDIA 卡上进行硬件加速编码和解码(需要 x11-drivers/nvidia-drivers)
215 ocaml Add support/bindings for the Ocaml language 添加对 Ocaml 语言的支持/绑定
216 ocamlopt Enable ocamlopt support (ocaml native code compiler) -- Produces faster programs (Warning: you have to disable/enable it at a global scale) 启用 ocamlopt 支持(ocaml 本机代码编译器)- 生成更快的程序(警告:您必须在全球范围内禁用/启用它)
217 oci8 Add Oracle 8 Database Support 添加 Oracle 8 数据库支持
218 oci8-instant-client Use dev-db/oracle-instantclient-basic as Oracle provider instead of requiring a full Oracle server install 使用 dev-db/oracle-instantclient-basic 作为 Oracle 提供程序,而不需要完整的 Oracle 服务器安装
219 odbc Add ODBC Support (Open DataBase Connectivity) 添加 ODBC 支持(开放数据库连接)
220 offensive Enable potentially offensive items in packages 在包裹中启用可能令人反感的物品
221 ofx Enable support for importing (and exporting) OFX (Open Financial eXchange) data files 启用对导入(和导出)OFX(Open Financial eXchange)数据文件的支持
222 ogg Add support for the Ogg container format (commonly used by Vorbis, Theora and flac) 添加对 Ogg 容器格式的支持(通常由 Vorbis、Theora 和 flac 使用)
223 openal Add support for the Open Audio Library 添加对开放音频库的支持
224 openexr Support for the OpenEXR graphics file format 支持 OpenEXR 图形文件格式
225 opengl Add support for OpenGL (3D graphics) 添加对 OpenGL(3D 图形)的支持
226 openmp Build support for the OpenMP (support parallel computing), requires >=sys-devel/gcc-4.2 built with USE="openmp" 构建对 OpenMP 的支持(支持并行计算),需要使用 USE="openmp" 构建 >=sys-devel/gcc-4.2
227 opus Enable Opus audio codec support 启用 Opus 音频编解码器支持
228 oracle Enable Oracle Database support 启用 Oracle 数据库支持
229 orc Use dev-lang/orc for just-in-time optimization of array operations 使用 dev-lang/orc 对数组操作进行实时优化
230 osc Enable support for Open Sound Control 启用对开放声音控制的支持
231 oss Add support for OSS (Open Sound System) 添加对 OSS(开放声音系统)的支持
232 pam Add support for PAM (Pluggable Authentication Modules) - DANGEROUS to arbitrarily flip 添加对 PAM (Pluggable Authentication Modules) 的支持 - 任意翻转的危险
233 pch Enable precompiled header support for faster compilation at the expense of disk space and memory (>=sys-devel/gcc-3.4 only) 启用预编译头支持以加快编译速度,但会占用磁盘空间和内存(仅限 >=sys-devel/gcc-3.4)
234 pcmcia Add support for PCMCIA slots/devices found on laptop computers 添加对笔记本电脑上的 PCMCIA 插槽/设备的支持
235 pcre Add support for Perl Compatible Regular Expressions 添加对 Perl 兼容正则表达式的支持
236 pda Add support for portable devices 添加对便携式设备的支持
237 pdf Add general support for PDF (Portable Document Format), this replaces the pdflib and cpdflib flags 添加对 PDF(可移植文档格式)的一般支持,这将替换 pdflib 和 cpdflib 标志
238 perl Add optional support/bindings for the Perl language 为 Perl 语言添加可选支持/绑定
239 php Include support for the PHP language 包括对 PHP 语言的支持
240 pie Build programs as Position Independent Executables (a security hardening technique) 将程序构建为与位置无关的可执行文件(一种安全强化技术)
241 plasma Build optional KDE plasma addons 构建可选的 KDE 等离子插件
242 plotutils Add support for plotutils (library for 2-D vector graphics) 添加对 plotutils 的支持(二维矢量图形库)
243 png Add support for libpng (PNG images) 添加对 libpng(PNG 图像)的支持
244 policykit Enable PolicyKit (polkit) authentication support 启用 PolicyKit (polkit) 身份验证支持
245 portaudio Add support for the crossplatform portaudio audio API 添加对跨平台 portaudio 音频 API 的支持
246 posix Add support for POSIX-compatible functions 添加对 POSIX 兼容函数的支持
247 postgres Add support for the postgresql database 添加对 postgresql 数据库的支持
248 postscript Enable support for the PostScript language (often with ghostscript-gpl or libspectre) 启用对 PostScript 语言的支持(通常使用 ghostscript-gpl 或 libspectre)
249 ppds Add support for automatically generated ppd (printing driver) files 添加对自动生成的 ppd(打印驱动程序)文件的支持
250 prefix Defines if a Gentoo Prefix offset installation is used 定义是否使用 Gentoo Prefix 偏移安装
251 profile Add support for software performance analysis (will likely vary from ebuild to ebuild) 添加对软件性能分析的支持(可能会因 ebuild 而异)
252 pulseaudio Add support for PulseAudio sound server 添加对 PulseAudio 声音服务器的支持
253 python Add optional support/bindings for the Python language 为 Python 语言添加可选的支持/绑定
254 qdbm Add support for the qdbm (Quick Database Manager) library 添加对 qdbm(快速数据库管理器)库的支持
255 qmail-spp Add support for qmail SMTP plugins 添加对 qmail SMTP 插件的支持
256 qt5 Add support for the Qt 5 application and UI framework 添加对 Qt 5 应用程序和 UI 框架的支持
257 quicktime Add support for OpenQuickTime 添加对 OpenQuickTime 的支持
258 radius Add support for RADIUS authentication 添加对 RADIUS 身份验证的支持
259 raw Add support for raw image formats 添加对原始图像格式的支持
260 rdp Enables RDP/Remote Desktop support 启用 RDP/远程桌面支持
261 readline Enable support for libreadline, a GNU line-editing library that almost everyone wants 启用对 libreadline 的支持,这是一个几乎每个人都想要的 GNU 行编辑库
262 recode Enable support for the GNU recode library 启用对 GNU 重新编码库的支持
263 rss Enable support for RSS feeds 启用对 RSS 提要的支持
264 ruby Add support/bindings for the Ruby language 为 Ruby 语言添加支持/绑定
265 samba Add support for SAMBA (Windows File and Printer sharing) 添加对 SAMBA(Windows 文件和打印机共享)的支持
266 sasl Add support for the Simple Authentication and Security Layer 添加对简单身份验证和安全层的支持
267 savedconfig Use this to restore your config from /etc/portage/savedconfig ${CATEGORY}/${PN}. Make sure your USE flags allow for appropriate dependencies 使用它从 /etc/portage/savedconfig ${CATEGORY}/${PN} 恢复您的配置。确保您的 USE 标志允许适当的依赖项
268 scanner Add support for scanner hardware (e.g. build the sane frontend in kdegraphics) 添加对扫描仪硬件的支持(例如在 kdegraphics 中构建健全的前端)
269 sctp Support for Stream Control Transmission Protocol 支持流控传输协议
270 sdl Add support for Simple Direct Layer (media library) 添加对简单直接层(媒体库)的支持
271 seccomp Enable seccomp (secure computing mode) to perform system call filtering at runtime to increase security of programs 启用seccomp(安全计算模式)在运行时进行系统调用过滤,以增加程序的安全性
272 selinux !!internal use only!! Security Enhanced Linux support, this must be set by the selinux profile or breakage will occur !!限内部使用!!安全性 增强的 Linux 支持,这必须由 selinux 配置文件设置,否则会发生损坏
273 semantic-desktop Cross-KDE support for semantic search and information retrieval 跨 KDE 支持语义搜索和信息检索
274 session Add persistent session support 添加持久会话支持
275 skey Enable S/Key (Single use password) authentication support 启用 S/Key(一次性密码)身份验证支持
276 slang Add support for the slang text display library (it's like ncurses, but different) 添加对俚语文本显示库的支持(类似于 ncurses,但不同)
277 smartcard Enable smartcard support 启用智能卡支持
278 smp Enable support for multiprocessors or multicore systems 启用对多处理器或多核系统的支持
279 snappy Enable support for Snappy compression (as implemented in app-arch/snappy) 启用对 Snappy 压缩的支持(在 app-arch/snappy 中实现)
280 sndfile Add support for libsndfile 添加对 libsndfile 的支持
281 snmp Add support for the Simple Network Management Protocol if available 如果可用,添加对简单网络管理协议的支持
282 soap Add support for SOAP (Simple Object Access Protocol) 添加对 SOAP(简单对象访问协议)的支持
283 sockets Add support for tcp/ip sockets 添加对 tcp/ip 套接字的支持
284 socks5 Add support for the socks5 proxy 添加对 socks5 代理的支持
285 sound Enable sound support 启用声音支持
286 source Zip the sources and install them 压缩源并安装它们
287 sox Add support for Sound eXchange (SoX) 添加对声音交换 (SoX) 的支持
288 speex Add support for the speex audio codec (used for speech) 添加对 speex 音频编解码器的支持(用于语音)
289 spell Add dictionary support 添加字典支持
290 split-usr Enable behavior to support maintaining /bin, /lib*, /sbin and /usr/sbin separately from /usr/bin and /usr/lib* 启用行为以支持与 /usr/bin 和 /usr/lib* 分开维护 /bin、/lib*、/sbin 和 /usr/sbin
291 sqlite Add support for sqlite - embedded sql database 添加对 sqlite 的支持 - 嵌入式 sql 数据库
292 ssl Add support for SSL/TLS connections (Secure Socket Layer / Transport Layer Security) 添加对 SSL/TLS 连接的支持(安全套接字层/传输层安全)
293 startup-notification Enable application startup event feedback mechanism 启用应用启动事件反馈机制
294 static !!do not set this during bootstrap!! Causes binaries to be statically linked instead of dynamically !!不要在引导过程中设置这个!!导致二进制文件被静态链接而不是动态链接
295 static-libs Build static versions of dynamic libraries as well 构建动态库的静态版本
296 subversion Enable subversion (version control system) support 启用颠覆(版本控制系统)支持
297 suid Enable setuid root program(s) 启用 setuid 根程序
298 svg Add support for SVG (Scalable Vector Graphics) 添加对 SVG(可缩放矢量图形)的支持
299 svga Add support for SVGAlib (graphics library) 添加对 SVGAlib(图形库)的支持
300 symlink Force kernel ebuilds to automatically update the /usr/src/linux symlink 强制内核 ebuild 自动更新 /usr/src/linux 符号链接
301 syslog Enable support for syslog 启用对系统日志的支持
302 systemd Enable use of systemd-specific libraries and features like socket activation or session tracking 启用特定于 systemd 的库和功能,如套接字激活或会话跟踪
303 szip Use the szip compression library 使用 szip 压缩库
304 taglib Enable tagging support with taglib 使用 taglib 启用标记支持
305 tcl Add support the Tcl language 添加对Tcl语言的支持
306 tcmalloc Use the dev-util/google-perftools libraries to replace the malloc() implementation with a possibly faster one 使用 dev-util/google-perftools 库将 malloc() 实现替换为可能更快的实现
307 tcpd Add support for TCP wrappers 添加对 TCP 包装器的支持
308 telemetry Send anonymized usage information to upstream so they can better understand our users 向上游发送匿名使用信息,以便他们更好地了解我们的用户
309 test Enable dependencies and/or preparations necessary to run tests (usually controlled by FEATURES=test but can be toggled independently) 启用运行测试所需的依赖项和/或准备工作(通常由 FEATURES=test 控制,但可以独立切换)
310 theora Add support for the Theora Video Compression Codec 添加对 Theora 视频压缩编解码器的支持
311 threads Add threads support for various packages. Usually pthreads 为各种包添加线程支持。通常是 pthreads
312 tidy Add support for HTML Tidy 添加对 HTML Tidy 的支持
313 tiff Add support for the TIFF image format 添加对 TIFF 图像格式的支持
314 timidity Build with Timidity++ (MIDI sequencer) support 使用 Timidity++(MIDI 音序器)支持构建
315 tk Add support for Tk GUI toolkit 添加对 Tk GUI 工具包的支持
316 truetype Add support for FreeType and/or FreeType2 fonts 添加对 FreeType 和/或 FreeType2 字体的支持
317 udev Enable virtual/udev integration (device discovery, power and storage device support, etc) 启用虚拟/udev 集成(设备发现、电源和存储设备支持等)
318 udisks Enable storage management support (automounting, volume monitoring, etc) 启用存储管理支持(自动挂载、卷监控等)
319 unicode Add support for Unicode 添加对 Unicode 的支持
320 unwind Add support for call stack unwinding and function name resolution 添加对调用堆栈展开和函数名称解析的支持
321 upnp Enable UPnP port mapping support 启用 UPnP 端口映射支持
322 upnp-av Enable UPnP audio/video streaming support 启用 UPnP 音频/视频流支持
323 upower Enable power management support 启用电源管理支持
324 usb Add USB support to applications that have optional USB support (e.g. cups) 将 USB 支持添加到具有可选 USB 支持的应用程序(例如杯子)
325 v4l Enable support for video4linux (using linux-headers or userspace libv4l libraries) 启用对 video4linux 的支持(使用 linux-headers 或用户空间 libv4l 库)
326 vaapi Enable Video Acceleration API for hardware decoding 为硬件解码启用视频加速 API
327 vala Enable bindings for dev-lang/vala 为 dev-lang/vala 启用绑定
328 vanilla Do not add extra patches which change default behaviour; DO NOT USE THIS ON A GLOBAL SCALE as the severity of the meaning changes drastically 不要添加改变默认行为的额外补丁;不要在全球范围内使用它,因为含义的严重性会发生巨大变化
329 vcd Video CD support 视频 CD 支持
330 vdpau Enable the Video Decode and Presentation API for Unix acceleration interface 为 Unix 加速接口启用 Video Decode and Presentation API
331 verify-sig Verify upstream signatures on distfiles 验证 distfile 上的上游签名
332 vhosts Add support for installing web-based applications into a virtual-hosting environment 添加对将基于 Web 的应用程序安装到虚拟主机环境中的支持
333 videos Install optional video files (used in some games) 安装可选视频文件(在某些游戏中使用)
334 vim-syntax Pulls in related vim syntax scripts 拉入相关的 vim 语法脚本
335 vnc Enable VNC (remote desktop viewer) support 启用 VNC(远程桌面查看器)支持
336 vorbis Add support for the OggVorbis audio codec 添加对 OggVorbis 音频编解码器的支持
337 wavpack Add support for wavpack audio compression tools 添加对 wavpack 音频压缩工具的支持
338 wayland Enable dev-libs/wayland backend 启用 dev-libs/wayland 后端
339 webkit Add support for the WebKit HTML rendering/layout engine 添加对 WebKit HTML 渲染/布局引擎的支持
340 webp Add support for the WebP image format 添加对 WebP 图像格式的支持
341 wifi Enable wireless network functions 启用无线网络功能
342 wmf Add support for the Windows Metafile vector image format 添加对 Windows Metafile 矢量图像格式的支持
343 wxwidgets Add support for wxWidgets/wxGTK GUI toolkit 添加对 wxWidgets/wxGTK GUI 工具包的支持
344 x264 Enable h264 encoding using x264 使用 x264 启用 h264 编码
345 xattr Add support for extended attributes (filesystem-stored metadata) 添加对扩展属性的支持(文件系统存储的元数据)
346 xcb Support the X C-language Binding, a replacement for Xlib 支持 X C-language Binding,替代 Xlib
347 xcomposite Enable support for the Xorg composite extension 启用对 Xorg 复合扩展的支持
348 xemacs Add support for XEmacs 添加对 XEmacs 的支持
349 xface Add xface support used to allow a small image of xface format to be included in an email via the header 'X-Face' 添加 xface 支持,用于允许通过标题“X-Face”将 xface 格式的小图像包含在电子邮件中
350 xft Build with support for XFT font renderer (x11-libs/libXft) 构建支持 XFT 字体渲染器 (x11-libs/libXft)
351 xine Add support for the XINE movie libraries 添加对 XINE 电影库的支持
352 xinerama Add support for querying multi-monitor screen geometry through the Xinerama API 添加对通过 Xinerama API 查询多显示器屏幕几何图形的支持
353 xinetd Add support for the xinetd super-server 添加对 xinetd 超级服务器的支持
354 xml Add support for XML files 添加对 XML 文件的支持
355 xmlrpc Support for xml-rpc library 支持 xml-rpc 库
356 xmp Enable support for Extensible Metadata Platform (Adobe XMP) 启用对可扩展元数据平台 (Adobe XMP) 的支持
357 xmpp Enable support for Extensible Messaging and Presence Protocol (XMPP) formerly known as Jabber 启用对以前称为 Jabber 的可扩展消息传递和状态协议 (XMPP) 的支持
358 xosd Sends display using the X On Screen Display library 使用 X On Screen Display 库发送显示
359 xpm Add support for XPM graphics format 添加对 XPM 图形格式的支持
360 xscreensaver Add support for XScreenSaver extension 添加对 XScreenSaver 扩展的支持
361 xv Add in optional support for the Xvideo extension (an X API for video playback) 添加对 Xvideo 扩展的可选支持(用于视频播放的 X API)
362 xvid Add support for xvid.org's open-source mpeg-4 codec 添加对 xvid.org 的开源 mpeg-4 编解码器的支持
363 zeroconf Support for DNS Service Discovery (DNS-SD) 支持 DNS 服务发现 (DNS-SD)
364 zip Enable support for ZIP archives 启用对 ZIP 存档的支持
365 zlib Add support for zlib (de)compression 添加对 zlib (de) 压缩的支持
366 zsh-completion Enable zsh completion support 启用 zsh 完成支持
367 zstd Enable support for ZSTD compression 启用对 ZSTD 压缩的支持

5.3 Local

Local列表共有9103个flags; 
不重名的有4604个, 很多同名的flags会在不同的软件内出现, 比如超过30个软件用到的名称有: 
flag flags数
tools 107
server 60
cuda 36
openssl 36
debug 35
utils 32
minimal 31
X 31
designer 30
doc 30
按大类分有20个类别; 按具体类别分有158个类别: 列出的软件名称为2781个。
大类 type数 flags数
acct 1 6
app 28 1207
dev 25 1722
games 16 326
gnome 2 67
gnustep 2 11
gui 3 46
kde 4 232
lxqt 1 38
mail 3 163
mate 2 26
media 8 1380
net 20 1844
sci 11 627
sec 1 4
sys 13 827
virtual 1 15
www 6 209
x11 9 337
xfce 2 16
合计 结果 158 9103
大类 type flags数
acct acct-user 6
app app-accessibility 22
app app-admin 159
app app-antivirus 12
app app-arch 28
app app-backup 34
app app-benchmarks 9
app app-cdr 8
app app-containers 36
app app-crypt 68
app app-dicts 4
app app-doc 15
app app-editors 62
app app-emacs 18
app app-emulation 232
app app-eselect 1
app app-forensics 26
app app-i18n 44
app app-laptop 9
app app-metrics 5
app app-misc 139
app app-mobilephone 12
app app-office 68
app app-pda 1
app app-portage 23
app app-shells 11
app app-text 159
app app-vim 1
app app-xemacs 1
dev dev-ada 24
dev dev-cpp 16
dev dev-db 82
dev dev-dotnet 1
dev dev-embedded 42
dev dev-games 69
dev dev-haskell 199
dev dev-java 62
dev dev-lang 152
dev dev-libs 413
dev dev-lisp 10
dev dev-lua 1
dev dev-ml 18
dev dev-perl 53
dev dev-php 18
dev dev-python 150
dev dev-qt 137
dev dev-ros 3
dev dev-ruby 20
dev dev-scheme 38
dev dev-tcltk 4
dev dev-tex 3
dev dev-texlive 1
dev dev-util 153
dev dev-vcs 53
games games-action 39
games games-arcade 14
games games-board 22
games games-emulation 52
games games-engines 26
games games-fps 69
games games-kids 1
games games-misc 3
games games-mud 3
games games-puzzle 7
games games-roguelike 7
games games-rpg 16
games games-simulation 25
games games-sports 3
games games-strategy 35
games games-util 4
gnome gnome-base 39
gnome gnome-extra 28
gnustep gnustep-apps 4
gnustep gnustep-base 7
gui gui-apps 20
gui gui-libs 13
gui gui-wm 13
kde kde-apps 143
kde kde-frameworks 36
kde kde-misc 7
kde kde-plasma 46
lxqt lxqt-base 38
mail mail-client 80
mail mail-filter 39
mail mail-mta 44
mate mate-base 14
mate mate-extra 12
media media-fonts 44
media media-gfx 188
media media-libs 330
media media-plugins 67
media media-radio 6
media media-sound 369
media media-tv 88
media media-video 288
net net-analyzer 261
net net-dialup 24
net net-dns 98
net net-firewall 40
net net-fs 57
net net-ftp 44
net net-im 156
net net-irc 82
net net-libs 184
net net-mail 50
net net-misc 452
net net-nds 25
net net-news 5
net net-nntp 8
net net-p2p 77
net net-print 20
net net-proxy 54
net net-voip 18
net net-vpn 62
net net-wireless 127
sci sci-astronomy 22
sci sci-biology 14
sci sci-calculators 3
sci sci-chemistry 34
sci sci-electronics 30
sci sci-geosciences 40
sci sci-libs 281
sci sci-mathematics 100
sci sci-misc 6
sci sci-physics 70
sci sci-visualization 27
sec sec-policy 4
sys sys-apps 260
sys sys-auth 38
sys sys-block 32
sys sys-boot 25
sys sys-cluster 105
sys sys-devel 81
sys sys-fabric 3
sys sys-firmware 18
sys sys-fs 77
sys sys-kernel 21
sys sys-libs 83
sys sys-power 57
sys sys-process 27
virtual virtual 15
www www-apache 14
www www-apps 31
www www-client 100
www www-misc 3
www www-plugins 6
www www-servers 55
x11 x11-apps 11
x11 x11-base 12
x11 x11-drivers 12
x11 x11-libs 47
x11 x11-misc 87
x11 x11-plugins 13
x11 x11-terms 34
x11 x11-themes 47
x11 x11-wm 74
xfce xfce-base 8
xfce xfce-extra 8
详细列表如下: 
sn1 type name flag https://www.gentoo.org/support/use-flags/ cn
1 acct-user git gitea Set home directory for git hosting via www-apps/gitea. 通过 www-apps/gitea 设置 git 托管的主目录。
2 acct-user git gitolite Set home directory for git hosting via dev-vcs/gitolite or dev-vcs/gitolite-gentoo. 通过 dev-vcs/gitolite 或 dev-vcs/gitolite-gentoo 设置 git 托管的主目录。
3 acct-user vdr graphlcd Prepare group membership for media-plugins/vdr-graphlcd. 为 media-plugins/vdr-graphlcd 准备组成员资格。
4 acct-user vdr legacy-homedir Keep old home directory /var/vdr of an existing installation. When this useflag is cleared, the home directory is switched to FHS conformant /var/lib/vdr 保留现有安装的旧主目录 /var/vdr。当这个 useflag 被清除时,主目录切换到符合 FHS 的 /var/lib/vdr
5 acct-user vdr remote Prepare group membership for media-plugins/vdr-remote. 为 media-plugins/vdr-remote 准备组成员资格。
6 acct-user vdr serial Prepare group membership for media-plugins/vdr-serial. 为 media-plugins/vdr-serial 准备组成员资格。
7 app-accessibility brltty api build brltty's application program interface 搭建brltty的应用程序接口
8 app-accessibility brltty beeper support the console tone generator 支持控制台音源
9 app-accessibility brltty contracted-braille support in-line contracted braille 支持在线缩略盲文
10 app-accessibility brltty fm support for the sound card synthesizer 支持声卡合成器
11 app-accessibility brltty louis Use braille translator dev-libs/liblouis 使用盲文翻译器 dev-libs/liblouis
12 app-accessibility brltty midi support the musical instrument digital interface 支持乐器数字接口
13 app-accessibility brltty pcm support for sound card digital audio 支持声卡数字音频
14 app-accessibility brltty speech speech support 语音支持
15 app-accessibility emacspeak espeak Adds support for the espeak tts engine 添加对 espeak tts 引擎的支持
16 app-accessibility espeak-ng async Enables asynchronous commands 启用异步命令
17 app-accessibility espeak-ng klatt Enables Klatt formant synthesis and implementation 启用 Klatt 共振峰合成和实现
18 app-accessibility espeak-ng l10n_ru Builds extended Russian Dictionary file 构建扩展的俄语词典文件
19 app-accessibility espeak-ng l10n_zh Builds extended Chinese (Mandarin and Cantonese) Dictionary files 构建扩展的中文(普通话和粤语)字典文件
20 app-accessibility espeak-ng man Builds and installs manpage with app-text/ronn 使用 app-text/ronn 构建和安装手册页
21 app-accessibility espeak-ng mbrola Adds support for mbrola voices 添加对 mbrola 声音的支持
22 app-accessibility flite voices Install synthetic voices 安装合成声音
23 app-accessibility freetts jsapi build Java Speech API (JSAPI) 构建 Java 语音 API (JSAPI)
24 app-accessibility freetts mbrola Adds support for mbrola voices 添加对 mbrola 声音的支持
25 app-accessibility orca braille Enable braille support 启用盲文支持
26 app-accessibility speech-dispatcher espeak Adds support for espeak speech engine 添加对espeak语音引擎的支持
27 app-accessibility speech-dispatcher espeak-ng Adds support for espeak-ng speech engine 添加对 espeak-ng 语音引擎的支持
28 app-accessibility speech-dispatcher flite Adds support for flite speech engine 添加对 flite 语音引擎的支持
29 app-admin clsync apidoc Provide doxygen generated API docs. 提供 doxygen 生成的 API 文档。
30 app-admin clsync cgroups Use cgroups to limit /dev access. 使用 cgroups 来限制 /dev 访问。
31 app-admin clsync clsync Build clsync binary. Most likely you want it. However it is possible to build only libclsync without clsync itself. 构建 clsync 二进制文件。很可能你想要它。但是,可以只构建 libclsync 而没有 clsync 本身。
32 app-admin clsync cluster Enable clustering support (allows master-master clsync on multiple hosts). Not fully implemented yet. 启用集群支持(允许在多个主机上进行 master-master clsync)。尚未完全实施。
33 app-admin clsync control-socket Enable AF_UNIX control socket support. 启用 AF_UNIX 控制套接字支持。
34 app-admin clsync extra-debug Enable extra debugging. This will hurt performance badly. Be ready for tons of output. 启用额外的调试。这将严重损害性能。准备好大量的输出。
35 app-admin clsync extra-hardened Enable extra security checks. This will hurt performance. 启用额外的安全检查。这会损害性能。
36 app-admin clsync gio Enable GIO for FS monitoring (glib based alternative to inotify interface, not recommended; if both are compiled, may be selected at runtime). 为 FS 监控启用 GIO(基于 glib 的 inotify 接口替代方案,不推荐;如果两者都被编译,可以在运行时选择)。
37 app-admin clsync highload-locks Allows to use spinlocks for short delays instead of mutexes, but only on SMP systems. 允许使用自旋锁代替互斥锁来实现短延迟,但仅限于 SMP 系统。
38 app-admin clsync lto Build with link time optimization (LTO). 使用链接时间优化 (LTO) 构建。
39 app-admin clsync namespaces Enable namespaces isolation. 启用命名空间隔离。
40 app-admin clsync socket-library Build the control and monitoring socket library: libclsync. 构建控制和监控套接字库:libclsync。
41 app-admin conky apcupsd Enable support for sys-power/apcupsd 启用对 sys-power/apcupsd 的支持
42 app-admin conky bundled-toluapp Enable support for bundled toluapp. This only makes sense in combination with the lua-* flags 启用对捆绑 toluapp 的支持。这仅在与 lua-* 标志结合使用时才有意义
43 app-admin conky cmus Enable monitoring of music played by media-sound/cmus 启用对 media-sound/cmus 播放的音乐的监控
44 app-admin conky ical Enable support for events from iCalendar (RFC 5545) files using dev-libs/libical 使用 dev-libs/libical 启用对来自 iCalendar (RFC 5545) 文件的事件的支持
45 app-admin conky intel-backlight Enable support for Intel backlight 启用对英特尔背光的支持
46 app-admin conky iostats Enable support for per-task I/O statistics 启用对每个任务 I/O 统计的支持
47 app-admin conky irc Enable support for displaying everything from an irc channel using net-libs/libircclient 启用对使用 net-libs/libircclient 显示来自 irc 频道的所有内容的支持
48 app-admin conky lua-cairo Enable if you want Lua Cairo bindings 如果您想要 Lua Cairo 绑定,请启用
49 app-admin conky lua-imlib Enable if you want Lua Imlib2 bindings 如果您想要 Lua Imlib2 绑定,请启用
50 app-admin conky lua-rsvg Enable if you want Lua RSVG bindings 如果您想要 Lua RSVG 绑定,请启用
51 app-admin conky math Enable support for glibc's libm math library 启用对 glibc 的 libm 数学库的支持
52 app-admin conky moc Enable monitoring of music played by media-sound/moc 启用对 media-sound/moc 播放的音乐的监控
53 app-admin conky mpd Enable monitoring of music controlled by media-sound/mpd 启用对由 media-sound/mpd 控制的音乐的监控
54 app-admin conky nano-syntax Enable syntax highlighting for app-editors/nano 为 app-editors/nano 启用语法高亮
55 app-admin conky nvidia Enable reading of nvidia card temperature sensors via x11-drivers/nvidia-drivers 通过 x11-drivers/nvidia-drivers 启用读取 nvidia 卡温度传感器
56 app-admin conky portmon Enable support for tcp (ip4) port monitoring 启用对 tcp (ip4) 端口监控的支持
57 app-admin conky thinkpad Enable support for IBM/Lenovo notebooks 启用对 IBM/Lenovo 笔记本电脑的支持
58 app-admin conky weather-metar Enable support for metar weather service 启用对气象服务的支持
59 app-admin conky webserver Enable support to act as a webserver serving conkys output using net-libs/libmicrohttpd 启用支持以充当使用 net-libs/libmicrohttpd 提供 conkys 输出的网络服务器
60 app-admin conky xmms2 Enable monitoring of music played by media-sound/xmms2 启用对 media-sound/xmms2 播放的音乐的监控
61 app-admin conserver freeipmi Compile in FreeIPMI support via sys-libs/freeipmi 通过 sys-libs/freeipmi 在 FreeIPMI 支持中编译
62 app-admin diradm automount Support for automount data in LDAP 支持 LDAP 中的自动挂载数据
63 app-admin diradm irixpasswd Support for storing separate IRIX passwords 支持存储单独的 IRIX 密码
64 app-admin doas persist Adds support for "persist" feature (experimental) 添加对“持久”功能的支持(实验性)
65 app-admin gkrellm X Build both the X11 gui (gkrellm) and the server (gkrellmd). Disabling this flag builds the server only 构建 X11 gui (gkrellm) 和服务器 (gkrellmd)。禁用此标志仅构建服务器
66 app-admin gkrellm gnutls Enable SSL support for mail checking with net-libs/gnutls (overrides 'ssl' USE flag) 使用 net-libs/gnutls 启用 SSL 对邮件检查的支持(覆盖 'ssl' USE 标志)
67 app-admin gkrellm hddtemp Enable monitoring harddrive temperatures via app-admin/hddtemp 通过 app-admin/hddtemp 启用监控硬盘温度
68 app-admin gkrellm lm-sensors Enable monitoring sensors via sys-apps/lm-sensors 通过 sys-apps/lm-sensors 启用监控传感器
69 app-admin gkrellm ntlm Enable NTLM authentication for mail checking with net-libs/libntlm 使用 net-libs/libntlm 为邮件检查启用 NTLM 身份验证
70 app-admin gkrellm ssl Enable SSL support for mail checking with dev-libs/openssl 使用 dev-libs/openssl 为邮件检查启用 SSL 支持
71 app-admin gtkdiskfree gtk2 Support GTK+ 2.x instead of GTK+ 3.x 支持 GTK+ 2.x 而不是 GTK+ 3.x
72 app-admin hddtemp network-cron Monthly cronjob to update hddtemp.db. 每月 cronjob 更新 hddtemp.db。
73 app-admin keepass aot Generate native code at build time, rather than runtime. 在构建时而不是运行时生成本机代码。
74 app-admin keepassxc autotype Add support to autotype the passwords into other applications 添加支持以将密码自动输入到其他应用程序中
75 app-admin keepassxc browser Enables browser plugin support 启用浏览器插件支持
76 app-admin keepassxc ccache Use dev-util/ccache to build keepassxc 使用 dev-util/ccache 构建 keepassxc
77 app-admin keepassxc keeshare Enable KeeShare sharing integration 启用 KeeShare 共享集成
78 app-admin keepassxc network Enable network support 启用网络支持
79 app-admin keepassxc yubikey Enable database unlocking via YubiKey. 通过 YubiKey 启用数据库解锁。
80 app-admin logrotate acl Installs acl support 安装acl支持
81 app-admin logrotate cron Installs cron file 安装 cron 文件
82 app-admin logrotate selinux Installs Security Enhanced Linux support 安装安全增强的 Linux 支持
83 app-admin logstash-bin x-pack Enable additional features (may need a license) 启用附加功能(可能需要许可证)
84 app-admin mcollective client Install client utilities 安装客户端实用程序
85 app-admin openrc-settingsd systemd Use the versions of dbus and polkit files provided by sys-apps/systemd 使用 sys-apps/systemd 提供的 dbus 和 polkit 文件的版本
86 app-admin pass X Use x11-misc/xclip to copy passwords to the clipboard. 使用 x11-misc/xclip 将密码复制到剪贴板。
87 app-admin pass dmenu Add support for x11-misc/dmenu with the 'passmenu' program. 使用“passmenu”程序添加对 x11-misc/dmenu 的支持。
88 app-admin pass git Use dev-vcs/git for password revisions. 使用 dev-vcs/git 修改密码。
89 app-admin pass importers Allow importing passwords from other password managers using various contributed scripts. 允许使用各种贡献的脚本从其他密码管理器导入密码。
90 app-admin pass-otp qrcode Add support for qrcodes using media-gfx/qrencode 使用 media-gfx/qrencode 添加对 qrcode 的支持
91 app-admin passwordsafe qr Enable QR code password display 开启二维码密码显示
92 app-admin passwordsafe xml Enable XML import support 启用 XML 导入支持
93 app-admin passwordsafe yubikey Enable support for Yubikey 启用对 Yubikey 的支持
94 app-admin prelude-manager dbx Enables Prelude Manager storing Prelude alerts into database through dev-libs/libpreludedb 启用 Prelude Manager 通过 dev-libs/libpreludedb 将 Prelude 警报存储到数据库中
95 app-admin puppet augeas Enable augeas support 启用 augeas 支持
96 app-admin puppet diff Enable diff support 启用差异支持
97 app-admin puppet rrdtool Enable rrdtool support 启用 rrdtool 支持
98 app-admin puppet shadow Enable shadow support 启用阴影支持
99 app-admin puppet-agent puppetdb Adds puppetdb support 添加 puppetdb 支持
100 app-admin puppetserver puppetdb Adds support for connecting to puppetdb 添加对连接到 puppetdb 的支持
101 app-admin pwgen livecd Install init script for root password scrambling on boot 在启动时安装用于 root 密码加扰的初始化脚本
102 app-admin rsyslog clickhouse Build the ClickHouse output module (requires net-misc/curl) 构建 ClickHouse 输出模块(需要 net-misc/curl)
103 app-admin rsyslog curl Enable http_request() function in RainerScript (requires net-misc/curl) 在 RainerScript 中启用 http_request() 函数(需要 net-misc/curl)
104 app-admin rsyslog dbi Build the general database output module (requires dev-db/libdbi) 构建通用数据库输出模块(需要 dev-db/libdbi)
105 app-admin rsyslog elasticsearch Build the Elasticsearch output module (requires net-misc/curl) 构建 Elasticsearch 输出模块(需要 net-misc/curl)
106 app-admin rsyslog gcrypt Add support for encrypted log files using dev-libs/libgcrypt 使用 dev-libs/libgcrypt 添加对加密日志文件的支持
107 app-admin rsyslog gnutls Build the GnuTLS network stream driver (requires net-libs/gnutls) 构建 GnuTLS 网络流驱动程序(需要 net-libs/gnutls)
108 app-admin rsyslog imhttp Build the http input module (requires www-servers/civetweb) 构建 http 输入模块(需要 www-servers/civetweb)
109 app-admin rsyslog impcap Build the pcap input module (requires net-libs/libpcap) 构建 pcap 输入模块(需要 net-libs/libpcap)
110 app-admin rsyslog kafka Build the Apache Kafka input/output module (requires dev-libs/librdkafka) 构建 Apache Kafka 输入/输出模块(需要 dev-libs/librdkafka)
111 app-admin rsyslog kerberos Build the GSSAPI input and output module (requires virtual/krb5) 构建 GSSAPI 输入输出模块(需要 virtual/krb5)
112 app-admin rsyslog kubernetes Build the kubernetes modify plugin (requires net-misc/curl) 构建 kubernetes 修改插件(需要 net-misc/curl)
113 app-admin rsyslog mdblookup Build the MaxMind DB lookup message modify plugin using dev-libs/libmaxminddb 使用 dev-libs/libmaxminddb 构建 MaxMind DB 查找消息修改插件
114 app-admin rsyslog mongodb Build the MongoDB output module (requires dev-libs/mongo-c-driver) 构建 MongoDB 输出模块(需要 dev-libs/mongo-c-driver)
115 app-admin rsyslog mysql Build the MySQL database output module (requires virtual/mysql) 构建 MySQL 数据库输出模块(需要 virtual/mysql)
116 app-admin rsyslog normalize Build the normalize modify module (requires dev-libs/libee and dev-libs/liblognorm) 构建规范化修改模块(需要 dev-libs/libee 和 dev-libs/liblognorm)
117 app-admin rsyslog omhttp Build the http output module (requires net-misc/curl) 构建 http 输出模块(需要 net-misc/curl)
118 app-admin rsyslog omhttpfs Build the httpfs output module (requires net-misc/curl) 构建 httpfs 输出模块(需要 net-misc/curl)
119 app-admin rsyslog omudpspoof Build the udpspoof output module (requires net-libs/libnet) 构建 udpspoof 输出模块(需要 net-libs/libnet)
120 app-admin rsyslog openssl Build the OpenSSL network stream driver (requires dev-libs/openssl) 构建 OpenSSL 网络流驱动程序(需要 dev-libs/openssl)
121 app-admin rsyslog postgres Build the PostgreSQL database output module (requires dev-db/postgresql) 构建 PostgreSQL 数据库输出模块(需要 dev-db/postgresql)
122 app-admin rsyslog rabbitmq Build the RabbitMQ output module (requires net-libs/rabbitmq-c) 构建 RabbitMQ 输出模块(需要 net-libs/rabbitmq-c)
123 app-admin rsyslog redis Build the Redis output module using (requires dev-libs/hiredis) 使用(需要 dev-libs/hiredis)构建 Redis 输出模块
124 app-admin rsyslog relp Build the Reliable Event Logging Protocol (RELP) output module (requires dev-libs/librelp) 构建可靠事件日志记录协议 (RELP) 输出模块(需要 dev-libs/librelp)
125 app-admin rsyslog rfc3195 Build the rfc3195 input module (requires dev-libs/liblogging) 构建 rfc3195 输入模块(需要 dev-libs/liblogging)
126 app-admin rsyslog rfc5424hmac Build the rfc5424hmac modify module (requires dev-libs/openssl) 构建 rfc5424hmac 修改模块(需要 dev-libs/openssl)
127 app-admin rsyslog snmp Build the snmp modify and output module (requires net-analyzer/net-snmp) 构建 snmp 修改和输出模块(需要 net-analyzer/net-snmp)
128 app-admin rsyslog ssl Add support for encrypted client/server communication (requires net-libs/gnutls) 添加对加密客户端/服务器通信的支持(需要 net-libs/gnutls)
129 app-admin rsyslog systemd Build the journal input and output module (requires sys-apps/systemd) 构建日志输入输出模块(需要 sys-apps/systemd)
130 app-admin rsyslog usertools Installs the user tools (rsgtutil, rscryutil...) corresponding to the set USE flags 安装与设置的 USE 标志对应的用户工具(rsgtutil、rscryutil...)
131 app-admin rsyslog uuid Include UUIDs in messages (requires sys-apps/util-linux) 在消息中包含 UUID(需要 sys-apps/util-linux)
132 app-admin rsyslog xxhash Enable xxHash support in fmhash module (requires dev-libs/xxhash) 在 fmhash 模块中启用 xxHash 支持(需要 dev-libs/xxhash)
133 app-admin rsyslog zeromq Build the ZeroMQ input and output modules (requires net-libs/czmq) 构建 ZeroMQ 输入和输出模块(需要 net-libs/czmq)
134 app-admin sagan libdnet Add support for dev-libs/libdnet 添加对 dev-libs/libdnet 的支持
135 app-admin sagan pcap Add support for network packet capture via net-libs/libpcap 通过 net-libs/libpcap 添加对网络数据包捕获的支持
136 app-admin sagan redis Add support for the Redis database via dev-libs/hiredis 通过 dev-libs/hiredis 添加对 Redis 数据库的支持
137 app-admin sagan smtp Build witch SMTP (E-Mail) support 构建女巫 SMTP(电子邮件)支持
138 app-admin salt cheetah Enable support for dev-python/cheetah3 启用对 dev-python/cheetah3 的支持
139 app-admin salt cherrypy Enable support for using cherrypy. 启用对使用 cherrypy 的支持。
140 app-admin salt genshi Enable support for dev-python/genshi 启用对 dev-python/genshi 的支持
141 app-admin salt gnupg Enable support for gnupg via python-gnupg. 通过 python-gnupg 启用对 gnupg 的支持。
142 app-admin salt keyring Enable support for keyrings via python-keyring. 通过 python-keyring 启用对密钥环的支持。
143 app-admin salt libcloud Enable salt-cloud support via libcloud. 通过 libcloud 启用 salt-cloud 支持。
144 app-admin salt libvirt Support managing virtual machines with app-emulation/libvirt. 支持使用 app-emulation/libvirt 管理虚拟机。
145 app-admin salt mako Add support for using the mako template engine for parsing salt states. 添加对使用 mako 模板引擎解析盐状态的支持。
146 app-admin salt mongodb Support returning data to a mongodb server. 支持向 mongodb 服务器返回数据。
147 app-admin salt neutron Support the OpenStack neutron network service. 支持 OpenStack neutron 网络服务。
148 app-admin salt nova Enable support for the OpenStack Nova API 启用对 OpenStack Nova API 的支持
149 app-admin salt openssl Add support for using TLS via OpenSSL. 添加对通过 OpenSSL 使用 TLS 的支持。
150 app-admin salt portage Add support for package state enforcement using sys-apps/portage 使用 sys-apps/portage 添加对包状态强制执行的支持
151 app-admin salt raet Add support for the new RAET transport. 添加对新 RAET 传输的支持。
152 app-admin salt redis Support returning data to a redis database. 支持将数据返回到 redis 数据库。
153 app-admin salt zeromq Add support for the zeromq transport. 添加对 zeromq 传输的支持。
154 app-admin setools infoflow Depend on dev-python/networkx to use seinfoflow 依赖 dev-python/networkx 使用 seinfoflow
155 app-admin sudo gcrypt Use message digest functions from dev-libs/libgcrypt instead of sudo's 使用来自 dev-libs/libgcrypt 的消息摘要函数而不是 sudo
156 app-admin sudo offensive Let sudo print insults when the user types the wrong password 当用户输入错误密码时让 sudo 打印侮辱
157 app-admin sudo secure-path Replace PATH variable with compile time secure paths 用编译时安全路径替换 PATH 变量
158 app-admin sudo sendmail Allow sudo to send emails with sendmail 允许 sudo 使用 sendmail 发送电子邮件
159 app-admin sudo sssd Add System Security Services Daemon support 添加系统安全服务守护进程支持
160 app-admin sysklogd logger Build the logger program 构建记录器程序
161 app-admin sysklogd logrotate use app-admin/logrotate for rotating logs rather than custom cron scripts 使用 app-admin/logrotate 来轮换日志,而不是自定义 cron 脚本
162 app-admin syslog-ng amqp Enable support for AMQP destinations 启用对 AMQP 目标的支持
163 app-admin syslog-ng geoip2 Add support for geo lookup based on IPs via dev-libs/libmaxminddb 通过 dev-libs/libmaxminddb 添加对基于 IP 的地理查找的支持
164 app-admin syslog-ng http Enable support for HTTP destinations 启用对 HTTP 目标的支持
165 app-admin syslog-ng json Enable support for JSON template formatting via dev-libs/json-c 通过 dev-libs/json-c 启用对 JSON 模板格式的支持
166 app-admin syslog-ng kafka Enable support for Kafka destinations 启用对 Kafka 目的地的支持
167 app-admin syslog-ng mongodb Enable support for mongodb destinations 启用对 mongodb 目的地的支持
168 app-admin syslog-ng pacct Enable support for reading Process Accounting files (EXPERIMENTAL, Linux only) 启用对读取进程记帐文件的支持(实验性,仅限 Linux)
169 app-admin syslog-ng redis Enable support for Redis destinations 启用对 Redis 目标的支持
170 app-admin syslog-ng smtp Enable support for SMTP destinations 启用对 SMTP 目标的支持
171 app-admin syslog-ng spoof-source Enable support for spoofed source addresses 启用对欺骗源地址的支持
172 app-admin sysstat dcron Adjust cronjobs to work properly under sys-process/dcron 调整 cronjobs 使其在 sys-process/dcron 下正常工作
173 app-admin testdisk ewf Include ewf library 包含 ewf 库
174 app-admin testdisk ntfs Include the ability to read NTFS filesystems 包括读取 NTFS 文件系统的能力
175 app-admin testdisk reiserfs Include reiserfs reading ability 包括reiserfs阅读能力
176 app-admin tripwire ssl Adds support for Secure Socket Layer connections 添加对安全套接字层连接的支持
177 app-admin tripwire static Builds the package statically 静态构建包
178 app-admin tripwire tools Installs app-admin/mktwpol, providing scripts for the installation/setup of tripwire, including generating the tripwire policy file and maintenance of the tripwire database 安装app-admin/mktwpol,提供tripwire的安装/设置脚本,包括生成tripwire策略文件和维护tripwire数据库
179 app-admin ulogd json Build JSON output plugin to save packets in JSON file format 构建 JSON 输出插件,以 JSON 文件格式保存数据包
180 app-admin ulogd nfacct Build NFACCT input plugin to support traffic accounting via nfnetlink_acct 通过 nfnetlink_acct 构建 NFACCT 输入插件以支持流量记帐
181 app-admin ulogd nfct Build NFCT input plugin to support stateful flow-based logging via nfnetlink_conntrack 通过 nfnetlink_conntrack 构建 NFCT 输入插件以支持基于流的状态日志记录
182 app-admin ulogd nflog Build NFLOG input plugin to support stateless packet-based logging via nfnetlink_log 通过 nfnetlink_log 构建 NFLOG 输入插件以支持基于数据包的无状态日志记录
183 app-admin ulogd pcap Build PCAP output plugin to save packets in libpcap file format 构建 PCAP 输出插件以将数据包保存为 libpcap 文件格式
184 app-admin ulogd ulog Build ULOG input plugin to support deprecated packet-based logging via ULOG target 通过 ULOG 目标构建 ULOG 输入插件以支持已弃用的基于数据包的日志记录
185 app-admin vault webui Enable the Web UI 启用网页界面
186 app-admin webalizer xtended Include the 404 extension 包括 404 扩展
187 app-admin webapp-config portage Propagate python_targets dependencies to sys-apps/portage 将 python_targets 依赖项传播到 sys-apps/portage
188 app-antivirus clamav clamapp Build applications (clamscan, clamd, clamdscan, clamonacc (also has its own USE flag), sigtool, clambc, clamav-milter (also requires milter USE flag), clamdtop, clamsubmit, clamconf). 构建应用程序(clamscan、clamd、clamdscan、clamonacc(也有自己的 USE 标志)、sigtool、clambc、clamav-milter(也需要 milter USE 标志)、clamdtop、clamsubmit、clamconf)。
189 app-antivirus clamav clamdtop A Top like tool which shows what clamd is currently scanning amongst other things 一个类似于 Top 的工具,它显示 clamd 当前正在扫描的内容以及其他内容
190 app-antivirus clamav clamonacc Build the clamonacc on-access scanner 构建 clamonacc 访问扫描器
191 app-antivirus clamav clamsubmit A tool to submit false positives / negatives 提交误报/否定的工具
192 app-antivirus clamav libclamav-only Bypass building of libfreshclam and the ClamAV CLI applications. 绕过 libfreshclam 和 ClamAV CLI 应用程序的构建。
193 app-antivirus clamav metadata-analysis-api Enables collection of file property metadata using ClamAV API for analysis by ClamAV bytecode programs. 允许使用 ClamAV API 收集文件属性元数据,以便 ClamAV 字节码程序进行分析。
194 app-antivirus clamav rar RAR support RAR 支持
195 app-antivirus clamav xml DMG and XAR support DMG 和 XAR 支持
196 app-antivirus clamtk kde Install the Dolphin plugin. 安装海豚插件。
197 app-antivirus clamtk nautilus Install the Nautilus plugin. 安装 Nautilus 插件。
198 app-antivirus clamtk nemo Install the Nemo plugin. 安装 Nemo 插件。
199 app-antivirus clamtk thunar Install the Thunar plugin. 安装 Thunar 插件。
200 app-arch cabextract extras Install experimental extra tools: wince_info and wince_rename for examining and processing Windows CE installation cabinet header files; cabinfo for examining the structure of a cab file. 安装实验性的额外工具:wince_info和wince_rename,用于检查和处理Windows CE安装柜头文件; cabinfo 用于检查 cab 文件的结构。
201 app-arch dpkg libmd Use app-crypt/libmd library for message digest functions 将 app-crypt/libmd 库用于消息摘要功能
202 app-arch dpkg update-alternatives Install update-alternatives 安装更新替代品
203 app-arch dump ermt encrypted rmt support 加密 rmt 支持
204 app-arch dump uuid Enable UUID support 启用 UUID 支持
205 app-arch engrampa caja Enable engrampa to integrate with mate-base/caja by providing entries in its context menu 通过在其上下文菜单中提供条目,使 engrampa 与 mate-base/caja 集成
206 app-arch engrampa packagekit Enable support for installing via Packagekit based on archive type 启用基于归档类型通过 Packagekit 安装的支持
207 app-arch file-roller nautilus Build contextual menu extension for gnome-base/nautilus. 为 gnome-base/nautilus 构建上下文菜单扩展。
208 app-arch gzip pic disable optimized assembly code that is not PIC friendly 禁用对 PIC 不友好的优化汇编代码
209 app-arch innoextract debug Enable debug logging and the --debug command-line option 启用调试日志记录和 --debug 命令行选项
210 app-arch innoextract lzma Enable support for extracting lzma-compressed installers using app-arch/xz-utils 启用对使用 app-arch/xz-utils 提取 lzma 压缩安装程序的支持
211 app-arch lbzip2 symlink Install symlinks which override app-arch/bzip2 implementation 安装覆盖 app-arch/bzip2 实现的符号链接
212 app-arch libarchive blake2 Enable Blake2 hash support via app-crypt/libb2. 通过 app-crypt/libb2 启用 Blake2 哈希支持。
213 app-arch libarchive bzip2 Allow accessing bzip2-compressed archives through libbz2 (which comes with app-arch/bzip2). This only affects libarchive's native support: bsdtar will keep using bunzip2 as a filter if that's not built-in. 允许通过 libbz2(app-arch/bzip2 附带)访问 bzip2 压缩的档案。这只会影响 libarchive 的原生支持:如果不是内置的,bsdtar 将继续使用 bunzip2 作为过滤器。
214 app-arch libarchive e2fsprogs Use file flags from sys-fs/e2fsprogs headers instead of virtual/os-headers headers 使用来自 sys-fs/e2fsprogs 标头的文件标志,而不是 virtual/os-headers 标头
215 app-arch libarchive nettle Use dev-libs/nettle as crypto backend 使用 dev-libs/nettle 作为加密后端
216 app-arch p7zip rar Enable support for non-free rar decoder 启用对非免费 rar 解码器的支持
217 app-arch pbzip2 symlink Install symlinks which override app-arch/bzip2 implementation 安装覆盖 app-arch/bzip2 实现的符号链接
218 app-arch pigz symlink Install symlinks which override app-arch/gzip implementation 安装覆盖 app-arch/gzip 实现的符号链接
219 app-arch rar all-sfx Install all SFX (Self-Extracting) files rather than just the native format (allows creation of Windows EXEs on Linux ELF systems) 安装所有 SFX(自解压)文件,而不仅仅是本机格式(允许在 Linux ELF 系统上创建 Windows EXE)
220 app-arch tar minimal just install `tar` 只需安装`tar`
221 app-arch unzip natspec Use dev-libs/libnatspec to correctly decode non-ascii file names archived in Windows. 使用 dev-libs/libnatspec 正确解码 Windows 中存档的非 ascii 文件名。
222 app-arch wimlib fuse Use fuse libraries 使用保险丝库
223 app-arch wimlib iso Install app-cdr/cdrtools in order to prepare iso images 安装 app-cdr/cdrtools 以准备 iso 映像
224 app-arch wimlib ntfs Use libntfs-3g library from sys-fs/ntfs3g 使用来自 sys-fs/ntfs3g 的 libntfs-3g 库
225 app-arch wimlib yasm Use yasm assembler instead of nasm 使用 yasm 汇编程序而不是 nasm
226 app-arch xz-utils extra-filters Build additional filters that are not used in any of the default xz presets. This includes delta and BCJ coders, additional match finders and SHA256 checks. 构建未在任何默认 xz 预设中使用的其他过滤器。这包括 delta 和 BCJ 编码器、额外的匹配查找器和 SHA256 检查。
227 app-arch zip natspec Use dev-libs/libnatspec to correctly decode non-ascii file names archived in Windows. 使用 dev-libs/libnatspec 正确解码 Windows 中存档的非 ascii 文件名。
228 app-backup amanda ndmp Support for the NDMP protocol 支持 NDMP 协议
229 app-backup amanda s3 Support for backing up to the Amazon S3 system 支持备份到 Amazon S3 系统
230 app-backup amanda xfs Support for backing up raw XFS filesystems using xfsdump 支持使用 xfsdump 备份原始 XFS 文件系统
231 app-backup backup-manager s3 Support for backing up to the Amazon S3 system 支持备份到 Amazon S3 系统
232 app-backup bacula bacula-clientonly Disable DB support, and just build a client 禁用数据库支持,只构建一个客户端
233 app-backup bacula bacula-nodir Disable building of director 禁用导演的建设
234 app-backup bacula bacula-nosd Disable building of storage daemon 禁用存储守护进程的构建
235 app-backup bacula batch-insert Enable batch insert into data base 启用批量插入数据库
236 app-backup bacula logwatch Install support files for logwatch 安装 logwatch 的支持文件
237 app-backup bareos ceph Enable ceph support 启用 ceph 支持
238 app-backup bareos clientonly Only install file-daemon (client) 仅安装文件守护程序(客户端)
239 app-backup bareos director Install director 安装导向器
240 app-backup bareos glusterfs Enable glusterfs storage backend 启用 glusterfs 存储后端
241 app-backup bareos jansson JSON API support using JANSSON for director JSON API 支持使用 JANSSON 进行导演
242 app-backup bareos lmdb enable build of LMDB support for faster accurate backup 启用构建 LMDB 支持以实现更快准确的备份
243 app-backup bareos logwatch Install support files for logwatch 安装 logwatch 的支持文件
244 app-backup bareos ndmp Enable support for NDMP (Network Data Management Protocol) 启用对 NDMP(网络数据管理协议)的支持
245 app-backup bareos scsi-crypto Enable low level SCSI crypto support 启用低级 SCSI 加密支持
246 app-backup bareos storage-daemon Install storage daemon (bareos-sd) 安装存储守护进程 (bareos-sd)
247 app-backup bareos vmware Enable bareos-fd VMware plugin 启用 bareos-fd VMware 插件
248 app-backup btrbk lsbtr Enable the lsbtr command-line tool 启用 lsbtr 命令行工具
249 app-backup btrbk mbuffer Use sys-block/mbuffer to enable progress bar and buffering/limiting functionality 使用 sys-block/mbuffer 启用进度条和缓冲/限制功能
250 app-backup dar argon2 Enable password hashing algorithm from app-crypt/argon2 从 app-crypt/argon2 启用密码哈希算法
251 app-backup dar dar32 Enables --enable-mode=32 option, which replace infinite by 32 bit integers 启用 --enable-mode=32 选项,将无限替换为 32 位整数
252 app-backup dar dar64 Enables --enable-mode=64 option, which replace infinite by 64 bit integers 启用 --enable-mode=64 选项,将无限替换为 64 位整数
253 app-backup dar gcrypt Enables strong encryption support 启用强大的加密支持
254 app-backup dar gpg Enables usage of asymmetric encryption algorithms 允许使用非对称加密算法
255 app-backup dar rsync Enables linking with net-libs/librsync for delta compression support 启用与 net-libs/librsync 链接以支持增量压缩
256 app-backup duplicity s3 Support for backing up to the Amazon S3 system 支持备份到 Amazon S3 系统
257 app-backup rear udev Have ReaR start backup when attaching your USB drive. 连接 USB 驱动器时让 ReaR 开始备份。
258 app-backup snapper lvm Enable LVM thinprovisioned snapshots support sys-fs/lvm2 启用 LVM 精简配置快照支持 sys-fs/lvm2
259 app-backup snapper xattr Add support for getting and setting POSIX extended attributes, through sys-apps/attr. 通过 sys-apps/attr 添加对获取和设置 POSIX 扩展属性的支持。
260 app-backup tsm tsm-cit IBM Tivoli Common Inventory Technology IBM Tivoli 公共库存技术
261 app-backup tsm tsm-hw Difference snapshot support for NetApp and N-Series file servers NetApp 和 N 系列文件服务器的差异快照支持
262 app-benchmarks filebench auto-completion Enable command-line autocompletion using dev-libs/libtecla 使用 dev-libs/libtecla 启用命令行自动完成
263 app-benchmarks httperf idleconn Build with the idleconn program 使用 idleconn 程序构建
264 app-benchmarks ioping netdata Add support for netdata 添加对网络数据的支持
265 app-benchmarks ramspeed pic Force shared libraries to be built as PIC (this is slower) 强制将共享库构建为 PIC(这比较慢)
266 app-benchmarks stress-ng apparmor Add support for AppArmor. 添加对 AppArmor 的支持。
267 app-benchmarks sysbench aio Add support for AIO. 添加对 AIO 的支持。
268 app-benchmarks sysbench attachsql Add support for AttachSQL. 添加对 AttachSQL 的支持。
269 app-benchmarks sysbench drizzle Add support for Drizzles. 添加对毛毛雨的支持。
270 app-benchmarks sysbench largefile Add support for large files. 添加对大文件的支持。
271 app-cdr brasero libburn Enable dev-libs/libburn backend 启用 dev-libs/libburn 后端
272 app-cdr brasero nautilus Build the gnome-base/nautilus extension 构建 gnome-base/nautilus 扩展
273 app-cdr brasero playlist Enable support for playlists through dev-libs/totem-pl-parser 通过 dev-libs/totem-pl-parser 启用对播放列表的支持
274 app-cdr brasero tracker Enable audio playlist search using the app-misc/tracker indexer 使用 app-misc/tracker indexer 启用音频播放列表搜索
275 app-cdr cdemu cdemu-daemon Pull app-cdr/cdemu-daemon dependency, useful in chroot environment (bug #315491). Do not disable until you know what you are doing. 拉取 app-cdr/cdemu-daemon 依赖项,在 chroot 环境中很有用(错误 #315491)。在您知道自己在做什么之前不要禁用。
276 app-cdr dvdisaster debug Enable memory debugging. 启用内存调试。
277 app-cdr gaffitter scripts Install additional gaffitter scripts for external programs 为外部程序安装额外的 gaffitter 脚本
278 app-cdr mirage2iso pinentry Support app-crypt/pinentry password input backend. 支持 app-crypt/pinentry 密码输入后端。
279 app-containers apptainer network Install network plug-ins 安装网络插件
280 app-containers apptainer suid Install SUID helper binary 安装 SUID 助手二进制文件
281 app-containers containerd apparmor Support for AppArmor 支持 AppArmor
282 app-containers containerd btrfs Support for BTRFS snapshot driver 支持 BTRFS 快照驱动程序
283 app-containers containerd cri Support for Kubernetes CRI 支持 Kubernetes CRI
284 app-containers containerd device-mapper Support for device mapper snapshot driver 支持设备映射器快照驱动程序
285 app-containers containers-storage btrfs Enables dependencies for the "btrfs" graph driver, including necessary kernel flags. 启用“btrfs”图形驱动程序的依赖项,包括必要的内核标志。
286 app-containers containers-storage device-mapper Enables dependencies for the "devicemapper" graph driver, including necessary kernel flags. 启用“devicemapper”图形驱动程序的依赖项,包括必要的内核标志。
287 app-containers cri-o btrfs Enables dependencies for the "btrfs" graph driver, including necessary kernel flags. 启用“btrfs”图形驱动程序的依赖项,包括必要的内核标志。
288 app-containers cri-o device-mapper Enables dependencies for the "devicemapper" graph driver, including necessary kernel flags. 启用“devicemapper”图形驱动程序的依赖项,包括必要的内核标志。
289 app-containers crun bpf Enable in Kernel, eBPF (enhanced Berkley Packet Filter) support for managing device controllers. 在内核中启用用于管理设备控制器的 eBPF(增强型伯克利包过滤器)支持。
290 app-containers crun criu Enable CRIU based checkpoint/restore support 启用基于 CRIU 的检查点/恢复支持
291 app-containers docker apparmor Enable AppArmor support. 启用 AppArmor 支持。
292 app-containers docker aufs Enables dependencies for the "aufs" graph driver, including necessary kernel flags. 启用“aufs”图形驱动程序的依赖项,包括必要的内核标志。
293 app-containers docker btrfs Enables dependencies for the "btrfs" graph driver, including necessary kernel flags. 启用“btrfs”图形驱动程序的依赖项,包括必要的内核标志。
294 app-containers docker cli This is a temporary use flag which pulls in app-containers/docker-cli, the docker command line client. This flag is here to assist in the transition to split packages and will be removed in a future release. 这是一个临时使用标志,它引入了 docker 命令行客户端 app-containers/docker-cli。此标志用于帮助过渡到拆分包,并将在将来的版本中删除。
295 app-containers docker container-init Makes the a staticly-linked init system tini available inside a container. 使静态链接的初始化系统 tini 在容器内可用。
296 app-containers docker device-mapper Enables dependencies for the "devicemapper" graph driver, including necessary kernel flags. 启用“devicemapper”图形驱动程序的依赖项,包括必要的内核标志。
297 app-containers docker overlay Enables dependencies for the "overlay" graph driver, including necessary kernel flags. 启用“覆盖”图形驱动程序的依赖项,包括必要的内核标志。
298 app-containers docker-credential-helpers gnome-keyring Build secretservice helper which works with gnome-keyring or kwallet using D-Bus. 使用 D-Bus 构建与 gnome-keyring 或 kwallet 一起使用的秘密服务助手。
299 app-containers docker-credential-helpers pass Build pass helper for the pass utility. 为 pass 实用程序构建 pass 助手。
300 app-containers lxc apparmor Enable AppArmor support 启用 AppArmor 支持
301 app-containers lxc io-uring Enable io_uring support, and use io_uring instead of epoll 启用 io_uring 支持,并使用 io_uring 代替 epoll
302 app-containers lxc tools Build and install additional command line tools 构建和安装额外的命令行工具
303 app-containers lxd apparmor Enable AppArmor support 启用 AppArmor 支持
304 app-containers podman apparmor Enable AppArmor support. 启用 AppArmor 支持。
305 app-containers podman btrfs Enables dependencies for the "btrfs" graph driver, including necessary kernel flags. 启用“btrfs”图形驱动程序的依赖项,包括必要的内核标志。
306 app-containers podman cgroup-hybrid Default to hybrid (legacy) cgroup hierarchy instead of unified (modern). 默认为混合(传统)cgroup 层次结构,而不是统一(现代)。
307 app-containers podman fuse Enables fuse dependencies (fuse-overlayfs is especially useful for rootless mode). 启用 fuse 依赖项(fuse-overlayfs 对于无根模式特别有用)。
308 app-containers podman init Enables catatonit dependency required for podman run --init. 启用 podman run --init 所需的 catatonit 依赖项。
309 app-containers podman rootless Enables dependencies for running in rootless mode. 启用在无根模式下运行的依赖项。
310 app-containers runc apparmor Enable AppArmor support. 启用 AppArmor 支持。
311 app-containers runc kmem Enable Kernel Memory Accounting. 启用内核内存记帐。
312 app-containers skopeo btrfs Enables dependencies for the "btrfs" graph driver. 启用“btrfs”图形驱动程序的依赖项。
313 app-containers snapd apparmor Enable AppArmor support. 启用 AppArmor 支持。
314 app-containers snapd forced-devmode Automatically disable application confinement if feature detection fails. 如果功能检测失败,自动禁用应用程序限制。
315 app-crypt aespipe asm Enable assembly modules 启用组装模块
316 app-crypt aespipe cpu_flags_x86_padlock Use VIA padlock instructions, detected at run time, code still works on non-padlock processors 使用威盛挂锁指令,在运行时检测到,代码在非挂锁处理器上仍然有效
317 app-crypt ccid kobil-midentity Build and install Kobil_mIDentity_switch tool 构建和安装 Kobil_mIDentity_switch 工具
318 app-crypt ccid twinserial Enable twinserial reader 启用双串行阅读器
319 app-crypt codecrypt cryptopp Build algorithms that need Crypto++ support dev-libs/crypto++ 构建需要 Crypto++ 的算法支持 dev-libs/crypto++
320 app-crypt dehydrated cron Install cron job to sign/renew non-existent/changed/expiring certificates 安装 cron 作业以签署/更新不存在/更改/过期的证书
321 app-crypt eid-mw dialogs Enable "askaccess" dialog box, by using x11-libs/gtk+ 使用 x11-libs/gtk+ 启用“askaccess”对话框
322 app-crypt eid-mw gtk All dialogs are available, by using x11-libs/gtk+ 所有对话框都可用,通过使用 x11-libs/gtk+
323 app-crypt eid-mw p11-kit Support for app-crypt/p11-kit. 支持 app-crypt/p11-kit。
324 app-crypt ekeyd minimal Only install the ekey-egd-linux service rather than the full ekeyd package. 只安装 ekey-egd-linux 服务而不是完整的 ekeyd 包。
325 app-crypt ekeyd munin Install a plugin for net-analyzer/munin to graph statistical data from ekeyd. 为 net-analyzer/munin 安装一个插件来绘制来自 ekeyd 的统计数据。
326 app-crypt ekeyd usb Build the libusb-based userland daemon for accessing the EntropyKey (alternative to the CDC USB driver). It is suggested to use this option by default, as the CDC driver in the kernel often seems to be fragile (or the gadget implementation on the EntropyKey is too buggy), and can cause various problems. 构建基于 libusb 的用户空间守护程序以访问 EntropyKey(替代 CDC USB 驱动程序)。建议默认使用此选项,因为内核中的 CDC 驱动程序通常看起来很脆弱(或者 EntropyKey 上的小工具实现错误太多),并且可能导致各种问题。
327 app-crypt gnupg smartcard Build scdaemon software. Enables usage of OpenPGP cards. For other type of smartcards, try app-crypt/gnupg-pkcs11-scd. Bring in dev-libs/libusb as a dependency; enable scdaemon. 构建 scdaemon 软件。启用 OpenPGP 卡的使用。对于其他类型的智能卡,请尝试 app-crypt/gnupg-pkcs11-scd。引入 dev-libs/libusb 作为依赖项;启用 scdaemon。
328 app-crypt gnupg tofu Enable support for Trust on First use trust model; requires dev-db/sqlite. 启用对首次使用信任模型的信任;需要 dev-db/sqlite。
329 app-crypt gnupg tools Install extra tools (including gpgsplit and gpg-zip). 安装额外的工具(包括 gpgsplit 和 gpg-zip)。
330 app-crypt gnupg tpm Enable TPM support via app-crypt/tpm2-tss and build tpm2d. 通过 app-crypt/tpm2-tss 启用 TPM 支持并构建 tpm2d。
331 app-crypt gnupg usb Build direct CCID access for scdaemon; requires dev-libs/libusb. 为 scdaemon 建立直接 CCID 访问权限;需要开发库/libusb。
332 app-crypt gnupg user-socket try a socket directory which is not removed by init manager at session end 在会话结束时尝试一个未被初始化管理器删除的套接字目录
333 app-crypt gnupg wks-server Install the wks-server 安装 wks-server
334 app-crypt gnupg-pkcs11-scd proxy Build the gnupg-pkcs11-scd-prox 构建 gnupg-pkcs11-scd-prox
335 app-crypt gpgme common-lisp Install common-lisp files 安装 common-lisp 文件
336 app-crypt hashcat brain Enable the hashcat brain 启用 hashcat 大脑
337 app-crypt heimdal hdb-ldap Adds support for LDAP as a database backend 添加对 LDAP 作为数据库后端的支持
338 app-crypt heimdal lmdb Add support for using dev-db/lmdb for lookup tables 添加对使用 dev-db/lmdb 查找表的支持
339 app-crypt heimdal otp Adds support for one-time passwords 添加对一次性密码的支持
340 app-crypt ima-evm-utils tpm Enable TPM support 启用 TPM 支持
341 app-crypt johntheripper-jumbo opencl Build with opencl/GPU cracking support 使用 opencl/GPU 破解支持构建
342 app-crypt johntheripper-jumbo pcap Build with pcap support 使用 pcap 支持构建
343 app-crypt kbfs git Build the Git remote helper for storing repositories in Keybase 构建用于在 Keybase 中存储存储库的 Git 远程助手
344 app-crypt kstart afs Enables afs support which means you can acquire an afs token and set PAGs. It's recommended to set this USE if you need authenticated access to an AFS cell for your daemon/app. 启用 afs 支持,这意味着您可以获取 afs 令牌并设置 PAG。如果您需要对守护程序/应用程序的 AFS 单元进行身份验证访问,建议设置此 USE。
345 app-crypt libb2 native-cflags Use CFLAGS as determined by configure script. These flags will enable all CPU specific features it find available, to further optimise the implementation. This discards any existing CFLAGS set in make.conf or similar. 使用由配置脚本确定的 CFLAGS。这些标志将启用它发现可用的所有 CPU 特定功能,以进一步优化实现。这将丢弃 make.conf 或类似文件中设置的任何现有 CFLAGS。
346 app-crypt libsecret tpm Enable Trusted Platform Module support via app-crypt/tpm2-tss 通过 app-crypt/tpm2-tss 启用可信平台模块支持
347 app-crypt libu2f-host systemd Use user ACLs rather than plugdev group to give user access to the HIDRAW device. 使用用户 ACL 而不是 plugdev 组来授予用户对 HIDRAW 设备的访问权限。
348 app-crypt mit-krb5 doc Creates and installs the API and implementation documentation. This is only useful if you want to develop software which depends on kerberos 创建并安装 API 和实现文档。这仅在您想开发依赖于 kerberos 的软件时才有用
349 app-crypt mit-krb5 keyutils Enable for the keyring ccache using keyutils 使用 keyutils 启用密钥环 ccache
350 app-crypt mit-krb5 lmdb Add support for using dev-db/lmdb for lookup tables 添加对使用 dev-db/lmdb 查找表的支持
351 app-crypt mit-krb5 openldap Enable support for ldap as a database backend 启用对 ldap 作为数据库后端的支持
352 app-crypt mit-krb5 pkinit Enable pkinit support for the initial ticket 为初始票证启用 pkinit 支持
353 app-crypt mkp224o pcre2 Search with a regex instead of prefix/suffix matching 使用正则表达式而不是前缀/后缀匹配进行搜索
354 app-crypt ophcrack tables Require the additional tables used to carry out cracking (app-crypt/ophcrack-tables) 需要用于执行破解的附加表(app-crypt/ophcrack-tables)
355 app-crypt ophcrack-tables vistafree Installs the free Vista ophcrack tables 安装免费的 Vista ophcrack 表
356 app-crypt ophcrack-tables xpfast Installs the fast XP ophcrack tables 安装快速 XP ophcrack 表
357 app-crypt ophcrack-tables xpsmall Installs the small free XP ophcrack tables 安装小型免费 XP ophcrack 表
358 app-crypt p11-kit asn1 Enable ASN.1 certificate support 启用 ASN.1 证书支持
359 app-crypt p11-kit trust Build the trust policy module 构建信任策略模块
360 app-crypt pinentry efl Build dev-libs/efl based pinentry 构建基于 dev-libs/efl 的 pinentry
361 app-crypt qca botan Enable botan plugin 启用植物插件
362 app-crypt qca gcrypt Enable gcrypt plugin 启用 gcrypt 插件
363 app-crypt qca gpg Enable GnuPG plugin 启用 GnuPG 插件
364 app-crypt qca logger Enable logger plugin 启用记录器插件
365 app-crypt qca nss Enable NSS plugin 启用 NSS 插件
366 app-crypt qca pkcs11 Enable PKCS#11 plugin 启用 PKCS#11 插件
367 app-crypt qca sasl Enable SASL plugin 启用 SASL 插件
368 app-crypt qca softstore Enable softstore plugin 启用软件商店插件
369 app-crypt seahorse ldap Enable seahorse to manipulate GPG keys on a LDAP server. 启用 seahorse 以操作 LDAP 服务器上的 GPG 密钥。
370 app-crypt swtpm fuse Support sys-fs/fuse based /dev/tpm interface 支持基于 sys-fs/fuse 的 /dev/tpm 接口
371 app-crypt tpm-emulator mtm-emulator Build the MTM emulator 构建 MTM 模拟器
372 app-crypt tpm-tools pkcs11 Build Token data management utilities based on OpenCryptoki's (dev-libs/opencryptoki) PKCS#11 implementation. 基于 OpenCryptoki 的 (dev-libs/opencryptoki) PKCS#11 实现构建令牌数据管理实用程序。
373 app-crypt tpm2-pkcs11 fapi Enable feature API backend 启用功能 API 后端
374 app-crypt tpm2-tools fapi Enable feature API tools 启用功能 API 工具
375 app-crypt tpm2-totp plymouth Add sys-boot/plymouth support 添加 sys-boot/plymouth 支持
376 app-crypt tpm2-tss fapi Enable feature API (requires openssl as crypto backend) 启用功能 API(需要 openssl 作为加密后端)
377 app-crypt tpm2-tss mbedtls Use net-libs/mbedtls as crypto engine 使用 net-libs/mbedtls 作为加密引擎
378 app-crypt tpm2-tss openssl Use dev-libs/openssl as crypto engine 使用 dev-libs/openssl 作为加密引擎
379 app-crypt veracrypt asm Enable assembly for optimization 启用装配以进行优化
380 app-crypt zulucrypt gnome Enable support for the freedesktop.org Secret Service API via app-crypt/libsecret 通过 app-crypt/libsecret 启用对 freedesktop.org Secret Service API 的支持
381 app-crypt zulucrypt kwallet Enable encrypted storage of passwords with kde-frameworks/kwallet 使用 kde-frameworks/kwallet 启用密码的加密存储
382 app-crypt zulucrypt udev Whether udev will be consulted when deciding if a volume is system or not 在决定卷是否为系统时是否会咨询 udev
383 app-dicts aspell-be classic Support classic spelling by default 默认支持经典拼写
384 app-dicts gwaei hunspell Enable app-text/hunspell spellchecking and morphological analysis 启用 app-text/hunspell 拼写检查和形态分析
385 app-dicts gwaei mecab Enable app-text/mecab support 启用 app-text/mecab 支持
386 app-dicts myspell-pt preao Use the pre ortographic agreement version of the dictionary 使用字典的预正字法协议版本
387 app-doc csound-manual html Install HTML documentation 安装 HTML 文档
388 app-doc devmanual offline Use alternative minimal stylesheet instead of Tyrian theme 使用替代的最小样式表而不是 Tyrian 主题
389 app-doc doxygen clang support for sys-devel/clang assisted parsing 支持 sys-devel/clang 辅助解析
390 app-doc doxygen dot allow to create dot graphs using media-gfx/graphviz 允许使用 media-gfx/graphviz 创建点图
391 app-doc doxygen doxysearch build doxyindexer and doxysearch.cgi 构建 doxyindexer 和 doxysearch.cgi
392 app-doc kicad-doc html Generate documentation in HTML format 生成 HTML 格式的文档
393 app-doc kicad-doc pdf Generate documentation in PDF format 生成 PDF 格式的文档
394 app-doc linuxfromscratch htmlsingle Install all-on-one-page HTML version. 安装全合一页 HTML 版本。
395 app-doc pms html Generate and install PMS as .html as well 生成并安装 PMS 为 .html
396 app-doc pms twoside Enable two-sided layout suitable for printing 启用适合打印的双面布局
397 app-doc pms-bin html Install PMS as .html as well 将 PMS 也安装为 .html
398 app-doc tldp-howto html Install multi-chapter HTML docs 安装多章 HTML 文档
399 app-doc tldp-howto htmlsingle Install all-on-one-page HTML docs 安装一页一页的 HTML 文档
400 app-doc tldp-howto pdf Install pdf docs 安装 pdf 文档
401 app-doc tldp-howto text Install plain-text docs 安装纯文本文档
402 app-editors bluefish gucharmap Enable gucharmap dictionary plugin 启用 gucharmap 字典插件
403 app-editors bluefish spell Enable spell checking capabilities via enchant library 通过附魔库启用拼写检查功能
404 app-editors emacs athena Enable the MIT Athena widget set (x11-libs/libXaw) 启用 MIT Athena 小部件集 (x11-libs/libXaw)
405 app-editors emacs dynamic-loading Enable loading of dynamic libraries (modules) at runtime 在运行时启用动态库(模块)的加载
406 app-editors emacs games Support shared score files for games 支持游戏的共享分数文件
407 app-editors emacs gconf Use gnome-base/gconf to read the system font name 使用 gnome-base/gconf 读取系统字体名称
408 app-editors emacs gfile Use gfile (dev-libs/glib) for file notification 使用 gfile (dev-libs/glib) 进行文件通知
409 app-editors emacs gmp Use the GNU multiple precision arithmetic library (dev-libs/gmp) instead of the bundled mini-gmp subset 使用 GNU 多精度算术库 (dev-libs/gmp) 而不是捆绑的 mini-gmp 子集
410 app-editors emacs gsettings Use gsettings (dev-libs/glib) to read the system font name 使用 gsettings (dev-libs/glib) 读取系统字体名称
411 app-editors emacs gzip-el Compress bundled Emacs Lisp source 压缩捆绑的 Emacs Lisp 源代码
412 app-editors emacs harfbuzz Use media-libs/harfbuzz as text shaping engine 使用 media-libs/harfbuzz 作为文本整形引擎
413 app-editors emacs imagemagick Use media-gfx/imagemagick for image processing 使用 media-gfx/imagemagick 进行图像处理
414 app-editors emacs jit Compile with Emacs Lisp native compiler support via libgccjit 通过 libgccjit 使用 Emacs Lisp 本机编译器支持进行编译
415 app-editors emacs json Compile with native JSON support using dev-libs/jansson 使用 dev-libs/jansson 编译原生 JSON 支持
416 app-editors emacs libxml2 Use dev-libs/libxml2 to parse XML instead of the internal Lisp implementations 使用 dev-libs/libxml2 来解析 XML 而不是内部的 Lisp 实现
417 app-editors emacs mailutils Retrieve e-mail using net-mail/mailutils instead of the internal movemail substitute 使用 net-mail/mailutils 而不是内部的 movemail 替代品检索电子邮件
418 app-editors emacs source Install C source files and make them available for find-function 安装 C 源文件并使其可用于查找功能
419 app-editors emacs threads Add elisp threading support 添加 elisp 线程支持
420 app-editors emacs toolkit-scroll-bars Use the selected toolkit's scrollbars in preference to Emacs' own scrollbars 优先使用所选工具包的滚动条而不是 Emacs 自己的滚动条
421 app-editors emacs wide-int Prefer wide Emacs integers (typically 62-bit). This option has an effect only on architectures where "long" and "long long" types have different size. 首选宽 Emacs 整数(通常为 62 位)。此选项仅对“long”和“long long”类型具有不同大小的体系结构有效。
422 app-editors emacs xwidgets Enable use of GTK widgets in Emacs buffers (requires GTK3) 在 Emacs 缓冲区中启用 GTK 小部件(需要 GTK3)
423 app-editors fe sendmail Send mail after editor abend 编辑异常结束后发送邮件
424 app-editors featherpad X Link application against X11 libraries which adds support for virtual desktop awareness and tab DND 将应用程序与 X11 库链接,这增加了对虚拟桌面感知和标签 DND 的支持
425 app-editors gedit-plugins charmap Insert special characters just by clicking on them 只需单击即可插入特殊字符
426 app-editors gedit-plugins git Shows document changes related to git's HEAD 显示与 git 的 HEAD 相关的文档更改
427 app-editors gedit-plugins terminal Embed a terminal in the bottom pane 在底部窗格中嵌入终端
428 app-editors gnome-latex latexmk Install dev-tex/latexmk (used by default for the build tools) 安装 dev-tex/latexmk(默认用于构建工具)
429 app-editors gnome-latex rubber Install dev-tex/rubber (can be used for the build tools) 安装 dev-tex/rubber(可用于构建工具)
430 app-editors gvim crypt Use dev-libs/libsodium for crypto support 使用 dev-libs/libsodium 进行加密支持
431 app-editors gvim cscope Enable cscope interface 启用 cscope 接口
432 app-editors gvim gtk2 Enable GTK+2 interface 启用 GTK+2 接口
433 app-editors gvim netbeans Include netbeans external editor integration support 包括 netbeans 外部编辑器集成支持
434 app-editors gvim racket Enable support for Scheme using dev-scheme/racket 使用 dev-scheme/racket 启用对 Scheme 的支持
435 app-editors jasspa-microemacs nanoemacs Build NanoEmacs instead of MicroEmacs 构建 NanoEmacs 而不是 MicroEmacs
436 app-editors joe xterm Enable full xterm clipboard support 启用完整的 xterm 剪贴板支持
437 app-editors leafpad emacs Enable Emacs key theme 启用 Emacs 关键主题
438 app-editors nano debug Enable debug messages and assert warnings. Note that these will all be sent straight to stderr rather than some logging facility. 启用调试消息和断言警告。请注意,这些都将直接发送到 stderr 而不是某些日志记录工具。
439 app-editors nano justify Enable justify/unjustify functions for text formatting. 为文本格式启用 justify/unjustify 功能。
440 app-editors nano magic Add magic file support (sys-apps/file) to automatically detect appropriate syntax highlighting 添加魔术文件支持(sys-apps/file)以自动检测适当的语法突出显示
441 app-editors nano minimal Disable all fancy features, including ones that otherwise have a dedicated USE flag (such as spelling). 禁用所有花哨的功能,包括那些具有专用 USE 标志(例如拼写)的功能。
442 app-editors nano split-usr Enable this if /bin and /usr/bin are separate directories 如果 /bin 和 /usr/bin 是单独的目录,请启用此选项
443 app-editors neovim lto Build with Link Time Optimization (LTO) 使用链接时间优化 (LTO) 构建
444 app-editors neovim nvimpager Install nvimpager symlink to less.sh macro 将 nvimpager 符号链接安装到 less.sh 宏
445 app-editors neovim tui Build the neovim unix tui 构建neovim unix tui
446 app-editors okteta designer Build plugins for dev-qt/designer 为 dev-qt/designer 构建插件
447 app-editors qhexedit2 gui Install Qt5 hex editor 安装 Qt5 十六进制编辑器
448 app-editors tea aspell Enable spellchecking using app-text/aspell 使用 app-text/aspell 启用拼写检查
449 app-editors tea hunspell Enable spellchecking using app-text/hunspell 使用 app-text/hunspell 启用拼写检查
450 app-editors tea qml Enable support for plugins using QML 启用对使用 QML 的插件的支持
451 app-editors vim X Link console vim against X11 libraries to enable title and clipboard features in xterm 将控制台 vim 与 X11 库链接以在 xterm 中启用标题和剪贴板功能
452 app-editors vim crypt Use dev-libs/libsodium for crypto support 使用 dev-libs/libsodium 进行加密支持
453 app-editors vim cscope Enable cscope interface 启用 cscope 接口
454 app-editors vim racket Enable support for Scheme using dev-scheme/racket 使用 dev-scheme/racket 启用对 Scheme 的支持
455 app-editors vim terminal Enable terminal emulation support 启用终端仿真支持
456 app-editors vim vim-pager Install vimpager and vimmanpager links 安装 vimpager 和 vimmanpager 链接
457 app-editors vis tre more memory efficient regex search using dev-libs/tre 使用 dev-libs/tre 进行内存效率更高的正则表达式搜索
458 app-editors xemacs athena Chooses the MIT Athena widget set 选择 MIT Athena 小部件集
459 app-editors xemacs dnd Enables support for the x11-libs/dnd drag-n-drop library 启用对 x11-libs/dnd 拖放库的支持
460 app-editors xemacs eolconv Support detection and translation of newline conventions 支持换行约定的检测和翻译
461 app-editors xemacs mule Add multi-language support to XEmacs 为 XEmacs 添加多语言支持
462 app-editors xemacs pop Support POP for mail retrieval 支持POP邮件检索
463 app-editors xemacs xim Enable X11 XiM input method 启用 X11 XiM 输入法
464 app-emacs auctex preview-latex Use bundled preview-latex 使用捆绑的 preview-latex
465 app-emacs bbdb tex Install plain TeX support files 安装纯 TeX 支持文件
466 app-emacs bbdb vm Add support for app-emacs/vm 添加对 app-emacs/vm 的支持
467 app-emacs bbdb wanderlust Add support for app-emacs/wanderlust 添加对 app-emacs/wanderlust 的支持
468 app-emacs calfw howm Add support for the app-emacs/howm note-taking tool 添加对 app-emacs/howm 笔记工具的支持
469 app-emacs elscreen wanderlust Include support for app-emacs/wanderlust 包括对 app-emacs/wanderlust 的支持
470 app-emacs emacs-common games Support shared score files for games 支持游戏的共享分数文件
471 app-emacs emacs-w3m gzip-el Compress bundled Emacs Lisp source 压缩捆绑的 Emacs Lisp 源代码
472 app-emacs mu-cite bbdb Include support for app-emacs/bbdb 包括对 app-emacs/bbdb 的支持
473 app-emacs org-mode contrib Install user-contributed files 安装用户提供的文件
474 app-emacs org-mode odt-schema Install non-free schema files for OpenDocument Text exporter 为 OpenDocument 文本导出器安装非免费模式文件
475 app-emacs remember bbdb Include support for app-emacs/bbdb 包括对 app-emacs/bbdb 的支持
476 app-emacs remember planner Include support for app-emacs/planner 包括对 app-emacs/planner 的支持
477 app-emacs slime xref Install xref.lisp cross-referencing tool 安装 xref.lisp 交叉引用工具
478 app-emacs sly xref Install xref.lisp cross-referencing tool 安装 xref.lisp 交叉引用工具
479 app-emacs vm bbdb Include support for app-emacs/bbdb 包括对 app-emacs/bbdb 的支持
480 app-emacs wanderlust bbdb Include support for app-emacs/bbdb 包括对 app-emacs/bbdb 的支持
481 app-emacs wikipedia-mode outline-magic Enable support for outline-mode extensions (app-emacs/outline-magic) 启用对大纲模式扩展的支持 (app-emacs/outline-magic)
482 app-emulation 86Box dinput Enable legacy Dinput mode instead of Xinput for older controllers. 为旧控制器启用旧版 Dinput 模式而不是 Xinput。
483 app-emulation 86Box dynarec Enable dynamic recompiler, which should provide a better emulation speed. 启用动态重新编译器,它应该提供更好的仿真速度。
484 app-emulation 86Box experimental Enable hardware from devbranch, which may be unstable or unusable. 从 devbranch 启用硬件,这可能不稳定或无法使用。
485 app-emulation 86Box fluidsynth Enable MIDI support through media-sound/fluidsynth. 通过 media-sound/fluidsynth 启用 MIDI 支持。
486 app-emulation 86Box munt Enable MIDI MT-32 support through media-libs/munt-mt32emu. 通过 media-libs/munt-mt32emu 启用 MIDI MT-32 支持。
487 app-emulation 86Box new-dynarec Enable new dynamic recompiler from PCem 15, which should provide an even better emulation speed. 从 PCem 15 启用新的动态重新编译器,它应该提供更好的仿真速度。
488 app-emulation aranym clipboard Enable bidirectional clipboard transfer between the host and FreeMiNT 启用主机和 FreeMiNT 之间的双向剪贴板传输
489 app-emulation aranym jit Build Just-In-Time compiler variant with increased performance 构建具有更高性能的即时编译器变体
490 app-emulation aranym lilo Enable support for directly booting kernels such as Linux 启用对直接引导内核(例如 Linux)的支持
491 app-emulation aranym osmesa Allow images to be rendered in memory using the host CPU 允许使用主机 CPU 在内存中渲染图像
492 app-emulation aranym pmmu Build full PMMU variant, required for running mainline Linux 构建完整的 PMMU 变体,运行主线 Linux 所需
493 app-emulation aranym standard Build standard (no JIT or PMMU) variant 构建标准(无 JIT 或 PMMU)变体
494 app-emulation bochs 3dnow Enable support for emulating 3DNow! instructions (incomplete) 启用对模拟 3DNow 的支持!说明(不完整)
495 app-emulation bochs avx Enable support for emulating Advanced Vector Extensions (AVX) 启用对模拟高级矢量扩展 (AVX) 的支持
496 app-emulation bochs debugger Enable debugger (slows down emulation) 启用调试器(减慢仿真速度)
497 app-emulation bochs gdb Enable support for the remote GDB stub 启用对远程 GDB 存根的支持
498 app-emulation bochs x86-64 Enable support for emulation of 64-bit CPUs 启用对 64 位 CPU 仿真的支持
499 app-emulation crossover-bin capi Enable ISDN support via CAPI 通过 CAPI 启用 ISDN 支持
500 app-emulation crossover-bin opencl Enable OpenCL support 启用 OpenCL 支持
501 app-emulation crossover-bin osmesa Add support for OpenGL in bitmaps using libOSMesa 使用 libOSMesa 在位图中添加对 OpenGL 的支持
502 app-emulation crossover-bin pcap Support packet capture software (e.g. wireshark) 支持抓包软件(如wireshark)
503 app-emulation crossover-bin vulkan Enable Vulkan drivers 启用 Vulkan 驱动程序
504 app-emulation dosemu fluidsynth use media-sound/fluidsynth for MIDI emulation 使用 media-sound/fluidsynth 进行 MIDI 仿真
505 app-emulation dxvk crossdev-mingw Use sys-devel/crossdev for the toolchain rather than dev-util/mingw64-toolchain (requires manual setting up) 使用 sys-devel/crossdev 作为工具链而不是 dev-util/mingw64-toolchain(需要手动设置)
506 app-emulation dxvk d3d10 Enable support for DirectX 10 (d3d10.dll) 启用对 DirectX 10 (d3d10.dll) 的支持
507 app-emulation dxvk d3d11 Enable support for DirectX 11 (d3d11.dll) 启用对 DirectX 11 (d3d11.dll) 的支持
508 app-emulation dxvk d3d9 Enable support for DirectX 9 (d3d9.dll) 启用对 DirectX 9 (d3d9.dll) 的支持
509 app-emulation dxvk dxgi Enable support for the DirectX Graphics Infrastructure (dxgi.dll) 启用对 DirectX 图形基础结构 (dxgi.dll) 的支持
510 app-emulation faudio dumpvoices FAudio dumps buffer data to individual files with RIFF/XWMA headers, usable with players like ffplay/testxwma. FAudio 将缓冲区数据转储到带有 RIFF/XWMA 标头的单个文件中,可用于 ffplay/testxwma 等播放器。
511 app-emulation faudio test Build and run faudio testsuite. 构建并运行 faudio 测试套件。
512 app-emulation faudio utils Build all faudio utilities. 构建所有 faudio 实用程序。
513 app-emulation faudio xnasong Build support for optional XNG_SONG component (note: this not required by app-emulation/wine-staging, app-emulation/wine-vanilla for faudio XAudio support). 构建对可选 XNG_SONG 组件的支持(注意:对于 faudio XAudio 支持,app-emulation/wine-staging、app-emulation/wine-vanilla 不需要此组件)。
514 app-emulation fs-uae fmv Enable support for CD32 FMV (full motion video) 启用对 CD32 FMV(全动态视频)的支持
515 app-emulation fs-uae glew Enable support for The OpenGL Extension Wrangler Library (media-libs/glew) 启用对 OpenGL 扩展牧马人库 (media-libs/glew) 的支持
516 app-emulation fs-uae-launcher lha Enable LHA archive support 启用 LHA 存档支持
517 app-emulation fuse backend-X Use X11 rendering backend 使用 X11 渲染后端
518 app-emulation fuse backend-fbcon Use framebuffer rendering backend 使用帧缓冲渲染后端
519 app-emulation fuse backend-gtk3 Use Gtk+ rendering backend 使用 Gtk+ 渲染后端
520 app-emulation fuse backend-sdl Use SDL rendering backend 使用 SDL 渲染后端
521 app-emulation fuse backend-svga Use svgalib rendering backend 使用 svgalib 渲染后端
522 app-emulation fuse memlimit Add compile-time memory usage limiting 添加编译时内存使用限制
523 app-emulation fuse-utils gcrypt Use dev-libs/libgcrypt for low-level crypto of some features, including logfiles. 使用 dev-libs/libgcrypt 进行一些功能的低级加密,包括日志文件。
524 app-emulation grub-xen-host pvh Build an additional grub bin for pvh. 为 pvh 构建一个额外的 grub bin。
525 app-emulation hyperd libvirt Enable support for KVM via libvirt 通过 libvirt 启用对 KVM 的支持
526 app-emulation hyperd xen Enable support for the Xen Hypervisor 启用对 Xen Hypervisor 的支持
527 app-emulation libcacard passthrough Enable smartcard passthrough support via sys-apps/pcsc-lite 通过 sys-apps/pcsc-lite 启用智能卡直通支持
528 app-emulation libguestfs erlang Build Erlang bindings 构建 Erlang 绑定
529 app-emulation libguestfs fuse Enable image mount support via sys-fs/fuse 通过 sys-fs/fuse 启用镜像挂载支持
530 app-emulation libguestfs inspect-icons Use media-gfx/icoutils for accessing/inspecting icon file within images 使用 media-gfx/icoutils 访问/检查图像中的图标文件
531 app-emulation libguestfs libvirt Use app-emulation/libvirt to manipulate VMs 使用 app-emulation/libvirt 操作虚拟机
532 app-emulation libguestfs systemtap Use dev-util/systemtap to inspect VM via "probes" 使用 dev-util/systemtap 通过“探针”检查 VM
533 app-emulation libspectrum gcrypt Use dev-libs/libgcrypt for low-level crypto of some features, including logfiles. 使用 dev-libs/libgcrypt 进行一些功能的低级加密,包括日志文件。
534 app-emulation libvirt apparmor Enable AppArmor support 启用 AppArmor 支持
535 app-emulation libvirt dtrace Enable dtrace support via dev-util/systemtap 通过 dev-util/systemtap 启用 dtrace 支持
536 app-emulation libvirt firewalld DBus interface to iptables/ebtables allowing for better runtime management of your firewall. DBus 与 iptables/ebtables 的接口允许更好地对防火墙进行运行时管理。
537 app-emulation libvirt fuse Allow LXC to use sys-fs/fuse for mount points 允许 LXC 使用 sys-fs/fuse 作为挂载点
538 app-emulation libvirt glusterfs Enable GlusterFS support via sys-cluster/glusterfs 通过 sys-cluster/glusterfs 启用 GlusterFS 支持
539 app-emulation libvirt iscsi Allow using an iSCSI remote storage server as pool for disk image storage 允许使用 iSCSI 远程存储服务器作为磁盘映像存储池
540 app-emulation libvirt iscsi-direct Allow using libiscsi for iSCSI storage pool backend 允许将 libiscsi 用于 iSCSI 存储池后端
541 app-emulation libvirt libssh Use net-libs/libssh to communicate with remote libvirtd hosts, for example: qemu+libssh://server/system 使用 net-libs/libssh 与远程 libvirtd 主机通信,例如:qemu+libssh://server/system
542 app-emulation libvirt libssh2 Use net-libs/libssh2 to communicate with remote libvirtd hosts, for example: qemu+libssh2://server/system 使用 net-libs/libssh2 与远程 libvirtd 主机通信,例如:qemu+libssh2://server/system
543 app-emulation libvirt libvirtd Builds the libvirtd daemon as well as the client utilities instead of just the client utilities 构建 libvirtd 守护进程以及客户端实用程序,而不仅仅是客户端实用程序
544 app-emulation libvirt lvm Allow using the Logical Volume Manager (sys-fs/lvm2) as pool for disk image storage 允许使用逻辑卷管理器 (sys-fs/lvm2) 作为磁盘映像存储池
545 app-emulation libvirt lxc Support management of Linux Containers virtualisation (app-containers/lxc) 支持 Linux Containers 虚拟化管理 (app-containers/lxc)
546 app-emulation libvirt nfs Allow using Network File System mounts as pool for disk image storage 允许使用网络文件系统挂载作为磁盘映像存储池
547 app-emulation libvirt numa Use NUMA for memory segmenting via sys-process/numactl and sys-process/numad 通过 sys-process/numactl 和 sys-process/numad 使用 NUMA 进行内存分段
548 app-emulation libvirt openvz Support management of OpenVZ virtualisation (openvz-sources) 支持 OpenVZ 虚拟化管理 (openvz-sources)
549 app-emulation libvirt parted Allow using real disk partitions as pool for disk image storage, using sys-block/parted to create, resize and delete them. 允许使用真实磁盘分区作为磁盘映像存储池,使用 sys-block/parted 来创建、调整大小和删除它们。
550 app-emulation libvirt pcap Support auto learning IP addreses for routing 支持自动学习IP地址进行路由
551 app-emulation libvirt qemu Support management of QEMU virtualisation (app-emulation/qemu) 支持 QEMU 虚拟化管理 (app-emulation/qemu)
552 app-emulation libvirt rbd Enable rados block device support via sys-cluster/ceph 通过 sys-cluster/ceph 启用 rados 块设备支持
553 app-emulation libvirt virt-network Enable virtual networking (NAT) support for guests. Includes all the dependencies for NATed network mode. Effectively any network setup that relies on libvirt to setup and configure network interfaces on your host. This can include bridged and routed networks ONLY if you are allowing libvirt to create and manage the underlying devices for you. In some cases this requires enabling the 'netcf' USE flag (currently unavailable). 为来宾启用虚拟网络 (NAT) 支持。包括 NATed 网络模式的所有依赖项。实际上,任何依赖 libvirt 的网络设置都可以在您的主机上设置和配置网络接口。仅当您允许 libvirt 为您创建和管理底层设备时,这可以包括桥接和路由网络。在某些情况下,这需要启用 'netcf' USE 标志(当前不可用)。
554 app-emulation libvirt virtualbox Support management of VirtualBox virtualisation (app-emulation/virtualbox) 支持 VirtualBox 虚拟化管理(app-emulation/virtualbox)
555 app-emulation libvirt wireshark-plugins Build the net-analyzer/wireshark plugin for the Libvirt RPC protocol 为 Libvirt RPC 协议构建 net-analyzer/wireshark 插件
556 app-emulation libvirt xen Support management of Xen virtualisation (app-emulation/xen) 支持 Xen 虚拟化管理 (app-emulation/xen)
557 app-emulation libvirt zfs Enable ZFS backend storage sys-fs/zfs 启用 ZFS 后端存储 sys-fs/zfs
558 app-emulation nemu network-map Adds possibility of exporting network map to SVG 增加了将网络地图导出到 SVG 的可能性
559 app-emulation nemu ovf Adds support for OVA/OVF import 添加对 OVA/OVF 导入的支持
560 app-emulation nemu savevm Adds support for QEMU savevm snapshots (experimental, QEMU must be patched) 添加对 QEMU savevm 快照的支持(实验性,QEMU 必须打补丁)
561 app-emulation nemu spice Adds Spice protocol support 添加 Spice 协议支持
562 app-emulation nemu vnc-client Adds support for external VNC client 添加对外部 VNC 客户端的支持
563 app-emulation open-vm-tools deploypkg Build deploypkg plugin 构建 deploypkg 插件
564 app-emulation open-vm-tools dnet Enable support for nicinfo 启用对 nicinfo 的支持
565 app-emulation open-vm-tools doc Generate API documentation 生成 API 文档
566 app-emulation open-vm-tools fuse Enable vmblock-fuse/vmhgfs-fuse 启用 vmblock-fuse/vmhgfs-fuse
567 app-emulation open-vm-tools gtkmm Compile with Gtkmm and sigc++ (Recommended) 使用 Gtkmm 和 sigc++ 编译(推荐)
568 app-emulation open-vm-tools multimon Enable multimon (Requires X) 启用多监视器(需要 X)
569 app-emulation open-vm-tools resolutionkms Build the linux/unix resolutionkms module 构建 linux/unix resolutionkms 模块
570 app-emulation open-vm-tools vgauth Build vgauth 构建 vgauth
571 app-emulation pcem networking Enable support for emulation of network cards. 启用对网卡仿真的支持。
572 app-emulation punes cg Add support for Nvidia CG Toolkit 添加对 Nvidia CG Toolkit 的支持
573 app-emulation q4wine ico Enable ico support via media-gfx/icoutils 通过 media-gfx/icoutils 启用 ico 支持
574 app-emulation q4wine iso Support unprivileged mounting of ISO9660 images via sys-fs/fuseiso 支持通过 sys-fs/fuseiso 非特权挂载 ISO9660 镜像
575 app-emulation q4wine wineappdb Enable Wine AppDB browser support 启用 Wine AppDB 浏览器支持
576 app-emulation qemu accessibility Adds support for braille displays using brltty 使用 brltty 添加对盲文显示器的支持
577 app-emulation qemu aio Enables support for Linux's Async IO 启用对 Linux 的 Async IO 的支持
578 app-emulation qemu alsa Enable alsa output for sound emulation 为声音仿真启用 alsa 输出
579 app-emulation qemu bpf Enable eBPF support for RSS implementation. 为 RSS 实现启用 eBPF 支持。
580 app-emulation qemu capstone Enable disassembly support with dev-libs/capstone 使用 dev-libs/capstone 启用反汇编支持
581 app-emulation qemu curl Support ISOs / -cdrom directives via HTTP or HTTPS. 通过 HTTP 或 HTTPS 支持 ISO/-cdrom 指令。
582 app-emulation qemu fdt Enables firmware device tree support 启用固件设备树支持
583 app-emulation qemu fuse Enables FUSE block device export 启用 FUSE 块设备导出
584 app-emulation qemu glusterfs Enables GlusterFS cluster fileystem via sys-cluster/glusterfs 通过 sys-cluster/glusterfs 启用 GlusterFS 集群文件系统
585 app-emulation qemu gnutls Enable TLS support for the VNC console server. For 1.4 and newer this also enables WebSocket support. For 2.0 through 2.3 also enables disk quorum support. 为 VNC 控制台服务器启用 TLS 支持。对于 1.4 和更新版本,这也启用了 WebSocket 支持。对于 2.0 到 2.3 还启用磁盘仲裁支持。
586 app-emulation qemu io-uring Enable efficient I/O via sys-libs/liburing. 通过 sys-libs/liburing 启用高效的 I/O。
587 app-emulation qemu iscsi Enable direct iSCSI support via net-libs/libiscsi instead of indirectly via the Linux block layer that sys-block/open-iscsi does. 通过 net-libs/libiscsi 启用直接 iSCSI 支持,而不是通过 sys-block/open-iscsi 的 Linux 块层间接启用。
588 app-emulation qemu jemalloc Enable jemalloc allocator support 启用 jemalloc 分配器支持
589 app-emulation qemu jpeg Enable jpeg image support for the VNC console server 为 VNC 控制台服务器启用 jpeg 图像支持
590 app-emulation qemu multipath Enable multipath persistent reservation passthrough via sys-fs/multipath-tools. 通过 sys-fs/multipath-tools 启用多路径持久保留直通。
591 app-emulation qemu ncurses Enable the ncurses-based console 启用基于 ncurses 的控制台
592 app-emulation qemu nfs Enable NFS support 启用 NFS 支持
593 app-emulation qemu numa Enable NUMA support 启用 NUMA 支持
594 app-emulation qemu pin-upstream-blobs Pin the versions of BIOS firmware to the version included in the upstream release. This is needed to sanely support migration/suspend/resume/snapshotting/etc... of instances. When the blobs are different, random corruption/bugs/crashes/etc... may be observed. 将 BIOS 固件的版本固定到上游版本中包含的版本。这需要合理地支持实例的迁移/暂停/恢复/快照/等。当 blob 不同时,可能会观察到随机损坏/错误/崩溃/等。
595 app-emulation qemu plugins Enable qemu plugin API via shared library loading. 通过共享库加载启用 qemu 插件 API。
596 app-emulation qemu png Enable png image support for the VNC console server 为 VNC 控制台服务器启用 png 图像支持
597 app-emulation qemu pulseaudio Enable pulseaudio output for sound emulation 为声音仿真启用脉冲音频输出
598 app-emulation qemu rbd Enable rados block device backend support, see https://docs.ceph.com/en/mimic/rbd/qemu-rbd/ 启用 rados 块设备后端支持,请参阅 https://docs.ceph.com/en/mimic/rbd/qemu-rbd/
599 app-emulation qemu sdl Enable the SDL-based console 启用基于 SDL 的控制台
600 app-emulation qemu sdl-image SDL Image support for icons 图标的 SDL Image 支持
601 app-emulation qemu slirp Enable TCP/IP in hypervisor via net-libs/libslirp 通过 net-libs/libslirp 在管理程序中启用 TCP/IP
602 app-emulation qemu spice Enable Spice protocol support via app-emulation/spice 通过 app-emulation/spice 启用 Spice 协议支持
603 app-emulation qemu ssh Enable SSH based block device support via net-libs/libssh2 通过 net-libs/libssh2 启用基于 SSH 的块设备支持
604 app-emulation qemu static Build the User and Software MMU (system) targets as well as tools as static binaries 构建用户和软件 MMU(系统)目标以及作为静态二进制文件的工具
605 app-emulation qemu static-user Build the User targets as static binaries 将用户目标构建为静态二进制文件
606 app-emulation qemu systemtap Enable SystemTAP/DTrace tracing 启用 SystemTAP/DTrace 跟踪
607 app-emulation qemu usb Enable USB passthrough via dev-libs/libusb 通过 dev-libs/libusb 启用 USB 直通
608 app-emulation qemu usbredir Use sys-apps/usbredir to redirect USB devices to another machine over TCP 使用 sys-apps/usbredir 通过 TCP 将 USB 设备重定向到另一台机器
609 app-emulation qemu vde Enable VDE-based networking 启用基于 VDE 的网络
610 app-emulation qemu vhost-net Enable accelerated networking using vhost-net, see https://www.linux-kvm.org/page/VhostNet 使用 vhost-net 启用加速网络,请参阅 https://www.linux-kvm.org/page/VhostNet
611 app-emulation qemu vhost-user-fs Enable shared file system access using the FUSE protocol carried over virtio. 使用通过 virtio 携带的 FUSE 协议启用共享文件系统访问。
612 app-emulation qemu virgl Enable experimental Virgil 3d (virtual software GPU) 启用实验性 Virgil 3d(虚拟软件 GPU)
613 app-emulation qemu virtfs Enable VirtFS via virtio-9p-pci / fsdev. See https://wiki.qemu.org/Documentation/9psetup 通过 virtio-9p-pci / fsdev 启用 VirtFS。见 https://wiki.qemu.org/Documentation/9psetup
614 app-emulation qemu vte Enable terminal support (x11-libs/vte) in the GTK+ interface 在 GTK+ 界面中启用终端支持 (x11-libs/vte)
615 app-emulation qemu xattr Add support for getting and setting POSIX extended attributes, through sys-apps/attr. Requisite for the virtfs backend. 通过 sys-apps/attr 添加对获取和设置 POSIX 扩展属性的支持。 virtfs 后端所必需的。
616 app-emulation qemu xen Enables support for Xen backends 启用对 Xen 后端的支持
617 app-emulation runv libvirt Enable support for KVM via libvirt 通过 libvirt 启用对 KVM 的支持
618 app-emulation runv xen Enable support for the Xen Hypervisor 启用对 Xen Hypervisor 的支持
619 app-emulation ski debug enable extra binary emulation debugging via sys-libs/binutils-libs 通过 sys-libs/binutils-libs 启用额外的二进制仿真调试
620 app-emulation spice smartcard Enable smartcard remoting using app-emulation/libcacard 使用 app-emulation/libcacard 启用智能卡远程处理
621 app-emulation uade fuse Enable sys-fs/fuse uadefs frontend for on-the-fly WAV conversion 启用 sys-fs/fuse uadefs 前端以进行即时 WAV 转换
622 app-emulation vice cpuhistory Enable 65xx CPU history support (may decrease performance) 启用 65xx CPU 历史支持(可能会降低性能)
623 app-emulation vice ethernet Enable ethernet emulation 启用以太网仿真
624 app-emulation vice headless Include the headless variant of the emulator 包括模拟器的无头变体
625 app-emulation vice mpg123 Enable mp3@64 cartridge support 启用 mp3@64 磁带支持
626 app-emulation vice parport Enable parallel port SID support 启用并行端口 SID 支持
627 app-emulation vice pci Enable PCI device discovery using sys-apps/pciutils 使用 sys-apps/pciutils 启用 PCI 设备发现
628 app-emulation virt-manager policykit Enables sys-auth/polkit authentication support, required when using app-emulation/libvirt with PolicyKit authentication 启用 sys-auth/polkit 身份验证支持,在将 app-emulation/libvirt 与 PolicyKit 身份验证一起使用时需要
629 app-emulation virt-manager sasl Depend on the proper libraries needed to connect to SASL-enabled libvirtd instances (e.g. Kerberos-protected instances). 取决于连接到启用 SASL 的 libvirtd 实例(例如受 Kerberos 保护的实例)所需的适当库。
630 app-emulation virt-viewer libvirt Support connecting to virtual machines managed by libvirt. 支持连接 libvirt 管理的虚拟机。
631 app-emulation virt-viewer spice Support connecting to SPICE-enabled virtual machines. 支持连接到启用 SPICE 的虚拟机。
632 app-emulation virt-viewer vnc Support connecting to VNC-enabled virtual machines. 支持连接到启用 VNC 的虚拟机。
633 app-emulation virt-viewer vte Enable terminal support (x11-libs/vte) in the GTK+ interface 在 GTK+ 界面中启用终端支持 (x11-libs/vte)
634 app-emulation virt-what dmi Use sys-apps/dmidecode to read firmware data 使用 sys-apps/dmidecode 读取固件数据
635 app-emulation virtualbox dtrace Install dtrace Extension Pack 安装 dtrace 扩展包
636 app-emulation virtualbox headless Build without any graphic frontend 无需任何图形前端即可构建
637 app-emulation virtualbox lvm Build VBoxVolInfo that needs devicemapper from sys-fs/lvm2. 从 sys-fs/lvm2 构建需要 devicemapper 的 VBoxVolInfo。
638 app-emulation virtualbox pax-kernel Apply patch needed for pax enabled kernels. 应用启用 pax 的内核所需的补丁。
639 app-emulation virtualbox sdk Enable building of SDK 启用 SDK 构建
640 app-emulation virtualbox udev Controls installation of special USB udev rules. 控制特殊 USB udev 规则的安装。
641 app-emulation virtualbox vboxwebsrv Build and install the VirtualBox webservice 构建和安装 VirtualBox 网络服务
642 app-emulation virtualbox-modules pax-kernel Apply patch needed for pax enabled kernels 应用启用 pax 的内核所需的补丁
643 app-emulation vkd3d spirv-tools Enable SPIRV shader debugging support using dev-util/spirv-tools 使用 dev-util/spirv-tools 启用 SPIRV 着色器调试支持
644 app-emulation vkd3d-proton crossdev-mingw Use sys-devel/crossdev for the toolchain rather than dev-util/mingw64-toolchain (requires manual setting up) 使用 sys-devel/crossdev 作为工具链而不是 dev-util/mingw64-toolchain(需要手动设置)
645 app-emulation vkd3d-proton extras Install extra tools and demos in /usr/lib/vkd3d-proton 在 /usr/lib/vkd3d-proton 中安装额外的工具和演示
646 app-emulation wine-gecko shared Install pre-unpacked files which do not need to be copied into the Wine prefix 安装不需要复制到 Wine 前缀中的预解压文件
647 app-emulation wine-mono shared Install pre-unpacked files which do not need to be copied into the Wine prefix 安装不需要复制到 Wine 前缀中的预解压文件
648 app-emulation wine-staging capi Enable ISDN support via CAPI 通过 CAPI 启用 ISDN 支持
649 app-emulation wine-staging crossdev-mingw Use sys-devel/crossdev for the toolchain rather than dev-util/mingw64-toolchain (requires manual setting up) 使用 sys-devel/crossdev 作为工具链而不是 dev-util/mingw64-toolchain(需要手动设置)
650 app-emulation wine-staging custom-cflags Bypass strip-flags; use at your own peril 绕过带状标志;使用后果自负
651 app-emulation wine-staging dos Pull in games-emulation/dosbox to run DOS applications 拉入 games-emulation/dosbox 以运行 DOS 应用程序
652 app-emulation wine-staging gecko Add support for the Gecko engine when using iexplore 使用 iexplore 时添加对 Gecko 引擎的支持
653 app-emulation wine-staging gssapi Use GSSAPI (Kerberos SSP support) 使用 GSSAPI(Kerberos SSP 支持)
654 app-emulation wine-staging gstreamer Use media-libs/gstreamer to provide DirectShow functionality; 使用 media-libs/gstreamer 提供 DirectShow 功能;
655 app-emulation wine-staging mingw Build PE files using a MinGW cross compiler 使用 MinGW 交叉编译器构建 PE 文件
656 app-emulation wine-staging mono Add support for .NET using Wine's Mono add-on 使用 Wine 的 Mono 插件添加对 .NET 的支持
657 app-emulation wine-staging netapi Use libnetapi from net-fs/samba to support Windows networks in netapi32.dll 使用 net-fs/samba 中的 libnetapi 在 netapi32.dll 中支持 Windows 网络
658 app-emulation wine-staging opencl Enable OpenCL support 启用 OpenCL 支持
659 app-emulation wine-staging osmesa Add support for OpenGL in bitmaps using libOSMesa 使用 libOSMesa 在位图中添加对 OpenGL 的支持
660 app-emulation wine-staging pcap Support packet capture software (e.g. wireshark) 支持抓包软件(如wireshark)
661 app-emulation wine-staging perl Install helpers written in perl (winedump/winemaker) 安装用 perl 编写的助手(winedump/winemaker)
662 app-emulation wine-staging pipelight Apply Wine-Staging patches for Pipelight/Silverlight support 为 Pipelight/Silverlight 支持应用 Wine-Staging 补丁
663 app-emulation wine-staging realtime Pull in sys-auth/rtkit for low-latency pulseaudio support 引入 sys-auth/rtkit 以获得低延迟脉冲音频支持
664 app-emulation wine-staging run-exes Use Wine to open and run .EXE and .MSI files 使用 Wine 打开和运行 .EXE 和 .MSI 文件
665 app-emulation wine-staging samba Add support for NTLM auth. See: https://web.archive.org/web/20160108123008/http://wiki.winehq.org:80/NtlmAuthSetupGuide and https://web.archive.org/web/20150906013746/http://wiki.winehq.org/NtlmSigningAndSealing (these pages are not currently in the updated WineHQ Wiki). 添加对 NTLM 身份验证的支持。请参阅:https://web.archive.org/web/20160108123008/http://wiki.winehq.org:80/NtlmAuthSetupGuide 和 https://web.archive.org/web/20150906013746/http://wiki。 winehq.org/NtlmSigningAndSealing(这些页面目前不在更新后的 WineHQ Wiki 中)。
666 app-emulation wine-staging sdl Add support for gamepad detection using SDL 使用 SDL 添加对游戏手柄检测的支持
667 app-emulation wine-staging staging Apply Wine-Staging patches for advanced feature support that haven't made it into upstream Wine yet 应用 Wine-Staging 补丁以获得尚未进入上游 Wine 的高级功能支持
668 app-emulation wine-staging udev Use virtual/libudev to provide plug and play support 使用 virtual/libudev 提供即插即用支持
669 app-emulation wine-staging unwind Use sys-libs/libunwind to unwind the stack 使用 sys-libs/libunwind 展开堆栈
670 app-emulation wine-staging usb Use virtual/libusb to provide USB support 使用 virtual/libusb 提供 USB 支持
671 app-emulation wine-staging vulkan Enable Vulkan drivers 启用 Vulkan 驱动程序
672 app-emulation wine-vanilla capi Enable ISDN support via CAPI 通过 CAPI 启用 ISDN 支持
673 app-emulation wine-vanilla crossdev-mingw Use sys-devel/crossdev for the toolchain rather than dev-util/mingw64-toolchain (requires manual setting up) 使用 sys-devel/crossdev 作为工具链而不是 dev-util/mingw64-toolchain(需要手动设置)
674 app-emulation wine-vanilla custom-cflags Bypass strip-flags; use at your own peril 绕过带状标志;使用后果自负
675 app-emulation wine-vanilla dos Pull in games-emulation/dosbox to run DOS applications 拉入 games-emulation/dosbox 以运行 DOS 应用程序
676 app-emulation wine-vanilla gecko Add support for the Gecko engine when using iexplore 使用 iexplore 时添加对 Gecko 引擎的支持
677 app-emulation wine-vanilla gssapi Use GSSAPI (Kerberos SSP support) 使用 GSSAPI(Kerberos SSP 支持)
678 app-emulation wine-vanilla gstreamer Use media-libs/gstreamer to provide DirectShow functionality; 使用 media-libs/gstreamer 提供 DirectShow 功能;
679 app-emulation wine-vanilla mingw Build PE files using a MinGW cross compiler 使用 MinGW 交叉编译器构建 PE 文件
680 app-emulation wine-vanilla mono Add support for .NET using Wine's Mono add-on 使用 Wine 的 Mono 插件添加对 .NET 的支持
681 app-emulation wine-vanilla netapi Use libnetapi from net-fs/samba to support Windows networks in netapi32.dll 使用 net-fs/samba 中的 libnetapi 在 netapi32.dll 中支持 Windows 网络
682 app-emulation wine-vanilla opencl Enable OpenCL support 启用 OpenCL 支持
683 app-emulation wine-vanilla osmesa Add support for OpenGL in bitmaps using libOSMesa 使用 libOSMesa 在位图中添加对 OpenGL 的支持
684 app-emulation wine-vanilla pcap Support packet capture software (e.g. wireshark) 支持抓包软件(如wireshark)
685 app-emulation wine-vanilla perl Install helpers written in perl (winedump/winemaker) 安装用 perl 编写的助手(winedump/winemaker)
686 app-emulation wine-vanilla realtime Pull in sys-auth/rtkit for low-latency pulseaudio support 引入 sys-auth/rtkit 以获得低延迟脉冲音频支持
687 app-emulation wine-vanilla run-exes Use Wine to open and run .EXE and .MSI files 使用 Wine 打开和运行 .EXE 和 .MSI 文件
688 app-emulation wine-vanilla samba Add support for NTLM auth. See: https://web.archive.org/web/20160108123008/http://wiki.winehq.org:80/NtlmAuthSetupGuide and https://web.archive.org/web/20150906013746/http://wiki.winehq.org/NtlmSigningAndSealing (these pages are not currently in the updated WineHQ Wiki). 添加对 NTLM 身份验证的支持。请参阅:https://web.archive.org/web/20160108123008/http://wiki.winehq.org:80/NtlmAuthSetupGuide 和 https://web.archive.org/web/20150906013746/http://wiki。 winehq.org/NtlmSigningAndSealing(这些页面目前不在更新后的 WineHQ Wiki 中)。
689 app-emulation wine-vanilla sdl Add support for gamepad detection using SDL 使用 SDL 添加对游戏手柄检测的支持
690 app-emulation wine-vanilla udev Use virtual/libudev to provide plug and play support 使用 virtual/libudev 提供即插即用支持
691 app-emulation wine-vanilla unwind Use sys-libs/libunwind to unwind the stack 使用 sys-libs/libunwind 展开堆栈
692 app-emulation wine-vanilla usb Use virtual/libusb to provide USB support 使用 virtual/libusb 提供 USB 支持
693 app-emulation wine-vanilla vkd3d Use app-emulation/vkd3d to provide Direct3D 12 support 使用 app-emulation/vkd3d 提供 Direct3D 12 支持
694 app-emulation wine-vanilla vulkan Enable Vulkan drivers 启用 Vulkan 驱动程序
695 app-emulation winetricks rar Pull in app-arch/unrar for extraction of rar-compressed game files 拉入 app-arch/unrar 以提取 rar 压缩的游戏文件
696 app-emulation x48 readline Enables support for libreadline 启用对 libreadline 的支持
697 app-emulation xe-guest-utilities xenstore Use xenstore binaries bundled by Citrix instead of building app-emulation/xen-tools 使用 Citrix 捆绑的 xenstore 二进制文件,而不是构建 app-emulation/xen-tools
698 app-emulation xen boot-symlinks Symlink xen.gz variants in /boot, disable on fat filesystems /boot 中的符号链接 xen.gz 变体,在胖文件系统上禁用
699 app-emulation xen efi Adds efi boot support, requires LDFLAG -melf_x86_64 for amd64 添加 efi 引导支持,需要 LDFLAG -melf_x86_64 用于 amd64
700 app-emulation xen flask Enable the Flask XSM module from NSA 从 NSA 启用 Flask XSM 模块
701 app-emulation xen-tools api Build the C libxenapi bindings 构建 C libxenapi 绑定
702 app-emulation xen-tools hvm Enable support for hardware based virtualization (VT-x,AMD-v) 启用对基于硬件的虚拟化(VT-x、AMD-v)的支持
703 app-emulation xen-tools ipxe Enable ipxe support 启用 ipxe 支持
704 app-emulation xen-tools ovmf Enable support to boot UEFI guest vm, needed by hvm 启用支持以启动 hvm 需要的 UEFI 来宾 vm
705 app-emulation xen-tools pygrub Install the pygrub boot loader 安装 pygrub 引导加载程序
706 app-emulation xen-tools qemu Enable IOEMU support via the use of qemu-dm 通过使用 qemu-dm 启用 IOMU 支持
707 app-emulation xen-tools qemu-traditional Build the old qemu traditional device model (useful only if you cannot change to the new device model e.g. Windows VMs) 构建旧的 qemu 传统设备模型(仅当您无法更改为新设备模型时才有用,例如 Windows VM)
708 app-emulation xen-tools rombios Enable rombios support, needed by ipxe 启用 rombios 支持,ipxe 需要
709 app-emulation xen-tools screen Enable support for running domain U console in an app-misc/screen session 启用对在 app-misc/screen 会话中运行域 U 控制台的支持
710 app-emulation xen-tools system-ipxe Using sys-firmware/ipxe instead of the bundled one 使用 sys-firmware/ipxe 而不是捆绑的
711 app-emulation xen-tools system-qemu Using app-emulation/qemu instead of the bundled one 使用 app-emulation/qemu 而不是捆绑的
712 app-emulation xen-tools system-seabios Using sys-firmware/seabios instead of the bundled one 使用 sys-firmware/seabios 而不是捆绑的
713 app-emulation xtrs ls-dos Install LS-DOS disk images for Model 4P 为 Model 4P 安装 LS-DOS 磁盘映像
714 app-eselect eselect-php fpm Enable the FastCGI Process Manager SAPI 启用 FastCGI 进程管理器 SAPI
715 app-forensics afflib fuse Enable extra fuse thingies 启用额外的保险丝
716 app-forensics afflib qemu Enable qemu stuff 启用 qemu 东西
717 app-forensics afflib s3 Enable support for Amazon S3 启用对 Amazon S3 的支持
718 app-forensics aide curl Use curl for http,https and ftp backends 将 curl 用于 http、https 和 ftp 后端
719 app-forensics aide e2fs Enable support for checking file attributes on ext2/ext3/ext4 filesystems 启用对检查 ext2/ext3/ext4 文件系统上的文件属性的支持
720 app-forensics chkrootkit cron Install cron script for weekly rootkit scans 为每周的 rootkit 扫描安装 cron 脚本
721 app-forensics honggfuzz clang Enable clang support (pull sys-libs/blocksruntime dependency). 启用 clang 支持(拉 sys-libs/blocksruntime 依赖项)。
722 app-forensics libewf bfio Enables libbfio for chaining file in file handling 启用 libbfio 以在文件处理中链接文件
723 app-forensics libewf fuse Enable fuse support for ewfmount 为 ewfmount 启用熔断器支持
724 app-forensics libewf uuid Enable UUID support in the ewftools 在 ewftools 中启用 UUID 支持
725 app-forensics lynis cron Install /etc/cron.* files 安装 /etc/cron.* 文件
726 app-forensics sleuthkit aff Enable extra aff formats 启用额外的 aff 格式
727 app-forensics sleuthkit ewf Enable libewf support 启用 libewf 支持
728 app-forensics volatility3 crypt support plugins that decrypt passwords, password hashes, etc. 支持解密密码、密码哈希等的插件。
729 app-forensics volatility3 disasm support plugins that perform malware analysis and disassemble code 支持执行恶意软件分析和反汇编代码的插件
730 app-forensics volatility3 jsonschema improve error messages regarding improperly configured ISF files 改进有关不正确配置的 ISF 文件的错误消息
731 app-forensics volatility3 leechcore support memory acquisition via leechcore 支持通过leechcore获取内存
732 app-forensics volatility3 snappy support AVMLs native compression format 支持 AVMLs 原生压缩格式
733 app-forensics volatility3 yara support YARA pattern matching engine 支持YARA模式匹配引擎
734 app-forensics yara cuckoo Enable cockoo module 启用 cockoo 模块
735 app-forensics yara dex Enable dex module 启用 dex 模块
736 app-forensics yara dotnet Enable dotnet module 启用 dotnet 模块
737 app-forensics yara macho Enable macho module 启用男子气概模块
738 app-forensics yara magic Enable magic module 启用魔法模块
739 app-forensics yara profiling Enable rules profiling 启用规则分析
740 app-forensics yara python Pulls in python binding via dev-python/yara-python 通过 dev-python/yara-python 引入 python 绑定
741 app-i18n fcitx autostart Enable XDG-compatible autostart of Fcitx 启用与 XDG 兼容的 Fcitx 自动启动
742 app-i18n fcitx enchant Enable Enchant backend (using app-text/enchant) for spelling hinting 启用 Enchant 后端(使用 app-text/enchant)进行拼写提示
743 app-i18n fcitx gtk2 Install input method module for GTK+ 2 为 GTK+ 2 安装输入法模块
744 app-i18n fcitx gtk3 Install input method module for GTK+ 3 为 GTK+ 3 安装输入法模块
745 app-i18n fcitx opencc Enable OpenCC engine (using app-i18n/opencc) for converter between Simplified Chinese and Traditional Chinese 启用 OpenCC 引擎(使用 app-i18n/opencc)进行简体中文和繁体中文之间的转换
746 app-i18n fcitx pango Enable support for x11-libs/pango 启用对 x11-libs/pango 的支持
747 app-i18n fcitx table Install table input methods for Simplified Chinese 安装简体中文表格输入法
748 app-i18n fcitx xkb Enable support for XKB (required for fcitx-xkb, fcitx-xkbdbus, part of fcitx-keyboard) 启用对 XKB 的支持(fcitx-xkb、fcitx-xkbdbus、fcitx-keyboard 的一部分需要)
749 app-i18n fcitx-libpinyin dictionary-manager Install dictionary manager 安装字典管理器
750 app-i18n fcitx-rime configuration_tool Install configuration tool 安装配置工具
751 app-i18n fcitx-unikey macro-editor Install macro editor 安装宏编辑器
752 app-i18n freewnn uum Build uum 建立 uum
753 app-i18n ibus emoji Enable support for Emoji 启用对表情符号的支持
754 app-i18n ibus gtk2 Enable the GTK-2 input method module 启用 GTK-2 输入法模块
755 app-i18n ibus gtk3 Enable the GTK-3 input method module 启用 GTK-3 输入法模块
756 app-i18n ibus gtk4 Enable the GTK-4 input method module 启用 GTK-4 输入法模块
757 app-i18n ibus unicode Enable support for Unicode choice 启用对 Unicode 选择的支持
758 app-i18n ibus-chewing gconf Enable support for gnome-base/gconf 启用对 gnome-base/gconf 的支持
759 app-i18n ibus-handwrite zinnia Enable support for app-i18n/zinnia 启用对 app-i18n/zinnia 的支持
760 app-i18n ibus-libpinyin boost Compile against dev-libs/boost libraries 针对 dev-libs/boost 库编译
761 app-i18n ibus-libpinyin opencc Enable support for app-i18n/opencc 启用对 app-i18n/opencc 的支持
762 app-i18n ibus-pinyin boost Enable support for dev-libs/boost 启用对 dev-libs/boost 的支持
763 app-i18n ibus-sunpinyin gui Install graphical user interface tool (ibus-setup-sunpinyin) 安装图形用户界面工具(ibus-setup-sunpinyin)
764 app-i18n im-chooser xfce Enable support for XFCE panel 启用对 XFCE 面板的支持
765 app-i18n imsettings gconf Enable support for gnome-base/gconf 启用对 gnome-base/gconf 的支持
766 app-i18n imsettings xfconf Enable support for xfce-base/xfconf 启用对 xfce-base/xfconf 的支持
767 app-i18n librime debug Enable debugging (including logging of input of RIME input methods) 启用调试(包括记录 RIME 输入法的输入)
768 app-i18n mozc fcitx4 Enable support for app-i18n/fcitx 4 启用对 app-i18n/fcitx 4 的支持
769 app-i18n mozc gui Install graphical user interface tool (mozc_tool) 安装图形用户界面工具(mozc_tool)
770 app-i18n mozc ibus Enable support for app-i18n/ibus 启用对 app-i18n/ibus 的支持
771 app-i18n mozc renderer Enable native candidate window 启用原生候选窗口
772 app-i18n pyzy boost Enable support for dev-libs/boost 启用对 dev-libs/boost 的支持
773 app-i18n pyzy doc Generate API documentation 生成 API 文档
774 app-i18n pyzy opencc Enable support for app-i18n/opencc 启用对 app-i18n/opencc 的支持
775 app-i18n rime-data extra Install extra packages 安装额外的包
776 app-i18n scim gtk3 Enable support for x11-libs/gtk+:3 启用对 x11-libs/gtk+:3 的支持
777 app-i18n scim-anthy gtk3 Enable support for x11-libs/gtk+:3 启用对 x11-libs/gtk+:3 的支持
778 app-i18n scim-anthy kasumi Use Anthy dictionary maintenance tool (app-dicts/kasumi) 使用Anthy字典维护工具(app-dicts/kasumi)
779 app-i18n scim-sunpinyin gtk3 Enable support for x11-libs/gtk+:3 启用对 x11-libs/gtk+:3 的支持
780 app-i18n tomoe hyperestraier Enable support for app-text/hyperestraier 启用对 app-text/hyperestraier 的支持
781 app-i18n uim anthy Enable support for app-i18n/anthy 启用对 app-i18n/anthy 的支持
782 app-i18n uim eb Enable support for dev-libs/eb 启用对 dev-libs/eb 的支持
783 app-i18n uim gtk2 Enable support for x11-libs/gtk+:2 启用对 x11-libs/gtk+:2 的支持
784 app-i18n uim skk Enable support for app-i18n/skk-jisyo 启用对 app-i18n/skk-jisyo 的支持
785 app-laptop hdapsd libconfig Require dev-libs/libconfig to allow the daemon to read a configuration file at startup 需要 dev-libs/libconfig 以允许守护进程在启动时读取配置文件
786 app-laptop ibam gkrellm Enable building of app-admin/gkrellm module 启用 app-admin/gkrellm 模块的构建
787 app-laptop laptop-mode-tools apm Add APM (Advanced Power Management) support 添加 APM(高级电源管理)支持
788 app-laptop pbbuttonsd ibam Enable support for Intelligent Battery Monitoring 启用对智能电池监控的支持
789 app-laptop pbbuttonsd macbook Enable support for the Macbook and Macbook Pro 启用对 Macbook 和 Macbook Pro 的支持
790 app-laptop thinkfan atasmart include libatasmart support to get disc temperature 包括 libatasmart 支持以获取光盘温度
791 app-laptop thinkfan nvidia allow thinkfan to read GPU temperature from the proprietary nVidia driver 允许 thinkfan 从专有的 nVidia 驱动程序读取 GPU 温度
792 app-laptop thinkfan yaml use YAML format for config file 配置文件使用 YAML 格式
793 app-laptop tp_smapi hdaps Install a compatible HDAPS module 安装兼容的 HDAPS 模块
794 app-metrics collectd contrib Install user-contributed files in the doc directory 在 doc 目录中安装用户提供的文件
795 app-metrics collectd filecaps When set collectd daemon will have set required capabilities to run most plugins even if run as unprivileged user 当设置 collectd 守护程序将设置运行大多数插件所需的功能,即使以非特权用户身份运行
796 app-metrics collectd java Must be set (workaround for java-pkg-opt-2 eclass limitation) when you want java or genericjmx plugin 当您需要 java 或 genericjmx 插件时,必须设置(java-pkg-opt-2 eclass 限制的解决方法)
797 app-metrics collectd udev Enable optional udev usage in disk plugin; Required for smart plugin 在磁盘插件中启用可选的 udev 使用;智能插件需要
798 app-metrics collectd xfs Enable optional capability to filter on XFS file system in df plugin; Requires XFS headers from sys-fs/xfsprogs 在 df 插件中启用过滤 XFS 文件系统的可选功能;需要来自 sys-fs/xfsprogs 的 XFS 头文件
799 app-misc blink1 mini-tool Build and install command-line mini-tool blink1-mini-tool (normally used for embedded devices) 构建和安装命令行小工具 blink1-mini-tool(通常用于嵌入式设备)
800 app-misc blink1 server Build and install REST API server (currently hard-coded to TCP port 8080) 构建和安装 REST API 服务器(目前硬编码到 TCP 端口 8080)
801 app-misc blink1 tool Build and install command-line tool blink1-tool 构建和安装命令行工具 blink1-tool
802 app-misc broot X X11 clipboard interaction X11剪贴板交互
803 app-misc byobu screen Use app-misc/screen as the default backend 使用 app-misc/screen 作为默认后端
804 app-misc ca-certificates cacert Include root/class3 certs from CAcert (https://www.cacert.org/) 包括来自 CAcert (https://www.cacert.org/) 的 root/class3 证书
805 app-misc carbon-c-relay lz4 add support for LZ4 compressed transport 添加对 LZ4 压缩传输的支持
806 app-misc carbon-c-relay oniguruma use dev-libs/oniguruma as regex implementation 使用 dev-libs/oniguruma 作为正则表达式实现
807 app-misc carbon-c-relay pcre2 use dev-libs/libpcre2 as regex implementation 使用 dev-libs/libpcre2 作为正则表达式实现
808 app-misc carbon-c-relay snappy add support for Snappy compressed transport 添加对 Snappy 压缩传输的支持
809 app-misc ddccontrol pci enable direct PCI memory access (the setuid ddcpci util) 启用直接 PCI 内存访问(setuid ddcpci 实用程序)
810 app-misc ddcutil drm Use x11-libs/libdrm for more verbose diagnostics. 使用 x11-libs/libdrm 进行更详细的诊断。
811 app-misc ddcutil usb-monitor Adds support for monitors attached via USB. 添加对通过 USB 连接的监视器的支持。
812 app-misc ddcutil user-permissions Adds a udev rules to allow non-root users in the i2c group to access the /dev/i2c-* devices. If usb-monitor is selected, users will need to be added to the video group to access the USB monitor. Otherwise, only root will be able to use ddcutil. 添加 udev 规则以允许 i2c 组中的非 root 用户访问 /dev/i2c-* 设备。如果选择 usb-monitor,则需要将用户添加到视频组才能访问 USB 监视器。否则,只有 root 才能使用 ddcutil。
813 app-misc digitemp ds2490 Build support for the ds2490 sensor 构建对 ds2490 传感器的支持
814 app-misc digitemp ds9097 Build support for the ds9097 sensor 构建对 ds9097 传感器的支持
815 app-misc digitemp ds9097u Build support for the ds9097u sensor 构建对 ds9097u 传感器的支持
816 app-misc g810-led hidapi Use dev-libs/hidapi instead of virtual/libusb for talking to the device (advertised to be faster) 使用 dev-libs/hidapi 而不是 virtual/libusb 与设备对话(宣传更快)
817 app-misc geoclue modemmanager Enable geolocation through 3G or GPS enabled hardware through net-misc/modemmanager. 通过 net-misc/modemmanager 通过 3G 或 GPS 启用的硬件启用地理定位。
818 app-misc geoclue zeroconf Enable retrieval of GPS location from Android devices with https://wiki.gnome.org/Apps/GeoclueShare 使用 https://wiki.gnome.org/Apps/GeoclueShare 从 Android 设备检索 GPS 位置
819 app-misc gramps berkdb Support BerkeleyDB-based family trees produced by older versions of Gramps 支持旧版本 Gramps 生成的基于 BerkeleyDB 的家谱
820 app-misc gramps geo Enable rendering of geographical data using sci-geosciences/osm-gps-map 使用 sci-geosciences/osm-gps-map 启用地理数据渲染
821 app-misc gramps rcs Adds support for family tree archives via dev-vcs/rcs 通过 dev-vcs/rcs 添加对家谱档案的支持
822 app-misc gramps reports All external software that is needed for graphical reports will be installed 将安装图形报告所需的所有外部软件
823 app-misc graphlcd-base fontconfig Add support for media-libs/fontconfig font names. 添加对 media-libs/fontconfig 字体名称的支持。
824 app-misc graphlcd-base freetype Add support for media-libs/freetype. 添加对 media-libs/freetype 的支持。
825 app-misc graphlcd-base graphicsmagick Add support for media-gfx/graphicsmagick. 添加对 media-gfx/graphicsmagick 的支持。
826 app-misc graphlcd-base imagemagick Add support for media-gfx/imagemagick. 添加对 media-gfx/imagemagick 的支持。
827 app-misc irtrans-irserver mono Enable mono support 启用单声道支持
828 app-misc jdupes dedupe Enable deduplication support 启用重复数据删除支持
829 app-misc jdupes lowmem Enable support for low-memory operation 启用对低内存操作的支持
830 app-misc jp jpp Install jpp which is an extended superset of the jp CLI for JMESPath 安装 jpp,它是 JMESPath 的 jp CLI 的扩展超集
831 app-misc jpipe jp-symlink Install a jp symlink that points to jpipe. 安装一个指向 jpipe 的 jp 符号链接。
832 app-misc jpipe jpp-symlink Install a jpp symlink that points to jpipe. 安装一个指向 jpipe 的 jpp 符号链接。
833 app-misc jq oniguruma Use dev-libs/oniguruma for regular expression support 使用 dev-libs/oniguruma 支持正则表达式
834 app-misc kryoflux-dtc demos Install example floppy game files. 安装示例软盘游戏文件。
835 app-misc kryoflux-dtc fast-firmware Install fast firmware instead of slow firmware. 安装快速固件而不是慢速固件。
836 app-misc lcd4linux apm Enable the APM plugin. 启用 APM 插件。
837 app-misc lcd4linux asterisk Enable the Asterisk plugin. 启用星号插件。
838 app-misc lcd4linux button-exec Enable the Button plugin, to execute something on keypress. 启用 Button 插件,在按键上执行某些操作。
839 app-misc lcd4linux cpuinfo Enable the cpuinfo plugin. 启用 cpuinfo 插件。
840 app-misc lcd4linux dbus Enable the dbus plugin. 启用 dbus 插件。
841 app-misc lcd4linux diskstats Enable the diskstats plugin. 启用 diskstats 插件。
842 app-misc lcd4linux dmalloc Enable dmalloc for debugging. 启用 dmalloc 进行调试。
843 app-misc lcd4linux dvb Enable support for the DVB plugin. 启用对 DVB 插件的支持。
844 app-misc lcd4linux event Enable the event plugin. 启用事件插件。
845 app-misc lcd4linux exec Enable the exec plugin, to read output from external programs. 启用 exec 插件,以读取外部程序的输出。
846 app-misc lcd4linux fifo Enable the FIFO (First-In, First-Out) plugin. 启用 FIFO(先进先出)插件。
847 app-misc lcd4linux file Enable the file plugin, to read from input from files. 启用文件插件,从文件中读取输入。
848 app-misc lcd4linux gps Enable the gps plugin, for reading gps coordinates. 启用 gps 插件,用于读取 gps 坐标。
849 app-misc lcd4linux hddtemp Enable the hddtemp plugin, to read from the hddtemp daemon. 启用 hddtemp 插件,从 hddtemp 守护程序读取。
850 app-misc lcd4linux huawei Enable the huawei plugin, to read from a huawei device. 启用华为插件,从华为设备读取。
851 app-misc lcd4linux i2c-sensors Enable the i2c_sensors plugin, to read sensor data. 启用 i2c_sensors 插件,以读取传感器数据。
852 app-misc lcd4linux iconv Enable the iconv plugin, to convert between encodings. 启用 iconv 插件,在编码之间进行转换。
853 app-misc lcd4linux isdn Enable the isdn plugin, to get information about ISDN. 启用 isdn 插件,以获取有关 ISDN 的信息。
854 app-misc lcd4linux kvv Enable the kvv plugin, to get realtime train schedule from the Karlsruher Verkehrsverbund. 启用 kvv 插件,从 Karlsruher Verkehrsverbund 获取实时列车时刻表。
855 app-misc lcd4linux loadavg Enable the loadavg plugin, to get stats load 启用 loadavg 插件,以获取统计数据加载
856 app-misc lcd4linux meminfo Enable the meminfo plugin, to get memory statistics. 启用 meminfo 插件,以获取内存统计信息。
857 app-misc lcd4linux mpd Enable the mpd plugin, to read from the Music Player Daemon. 启用 mpd 插件,以从音乐播放器守护程序中读取。
858 app-misc lcd4linux mpris-dbus Enable the mpris plugin, to read data via dbus for mpris. 启用 mpris 插件,通过 dbus 为 mpris 读取数据。
859 app-misc lcd4linux mysql Enable the mysql plugin, to get mysql database information. 启用 mysql 插件,获取 mysql 数据库信息。
860 app-misc lcd4linux netdev Enable the netdev plugin, to get interface statistics. 启用 netdev 插件,以获取接口统计信息。
861 app-misc lcd4linux netinfo Enable the netinfo plugin, to get more interface statistic. 启用 netinfo 插件,获取更多接口统计信息。
862 app-misc lcd4linux outb Enable raw i/o access. 启用原始 i/o 访问。
863 app-misc lcd4linux pop3 Enable the pop3 plugin, to get notified about new mails. 启用 pop3 插件,以获取有关新邮件的通知。
864 app-misc lcd4linux proc-stat Enable the proc_stat plugin, to read data from the proc file system. 启用 proc_stat 插件,从 proc 文件系统读取数据。
865 app-misc lcd4linux python Enable support for dev-lang/python and enable the python plugin, to execute own python scripts. 启用对 dev-lang/python 的支持并启用 python 插件,以执行自己的 python 脚本。
866 app-misc lcd4linux qnaplog Enable the qnaplog plugin, to read a log from a QNAP device. 启用 qnaplog 插件,以从 QNAP 设备读取日志。
867 app-misc lcd4linux raspi Enable the raspi plugin, to read sensor data from a Raspberry Pi. 启用 raspi 插件,从 Raspberry Pi 读取传感器数据。
868 app-misc lcd4linux sample Enable the sample plugin. 启用示例插件。
869 app-misc lcd4linux statfs Enable the statfs plugin, to get statistics about the file system. 启用 statfs 插件,以获取有关文件系统的统计信息。
870 app-misc lcd4linux uname Enable the uname plugin, to get the output of uname. 启用 uname 插件,以获取 uname 的输出。
871 app-misc lcd4linux uptime Enable the uptime plugin. 启用正常运行时间插件。
872 app-misc lcd4linux w1retap Enable the w1retap plugin. 启用 w1retap 插件。
873 app-misc lcd4linux wireless Enable the wireless plugin, to get wireless statistics. 启用无线插件,获取无线统计信息。
874 app-misc lcdproc ethlcd Enable support for ethlcd in the hd44780 driver. 在 hd44780 驱动程序中启用对 ethlcd 的支持。
875 app-misc lcdproc extra-charmaps Enable extra language specific charmaps. 启用额外的语言特定charmaps。
876 app-misc lcdproc menu Enable menu support in the lcdproc client. 在 lcdproc 客户端中启用菜单支持。
877 app-misc lcdproc nfs Display NFS filesystem stats in the lcdproc client. 在 lcdproc 客户端中显示 NFS 文件系统统计信息。
878 app-misc lcdproc png Enable support for media-libs/libpng in the glcd driver. 在 glcd 驱动程序中启用对 media-libs/libpng 的支持。
879 app-misc lcdproc samba Display SMBFS filesystem stats in the lcdproc client. 在 lcdproc 客户端中显示 SMBFS 文件系统统计信息。
880 app-misc lcdproc test-menu Enable test menu support for the lcdproc server. 为 lcdproc 服务器启用测试菜单支持。
881 app-misc lcdproc truetype Enable support for media-libs/freetype in the glcd driver. 在 glcd 驱动程序中启用对 media-libs/freetype 的支持。
882 app-misc libdatovka openssl Use openssl backend 使用 openssl 后端
883 app-misc lirc audio Support using an audio device connected to an IR receiver 支持使用连接到 IR 接收器的音频设备
884 app-misc lirc devinput Support the devinput input device 支持devinput输入设备
885 app-misc lirc ftdi Support FTDI devices 支持FTDI设备
886 app-misc lirc gtk Include GTK support which enables the use of lirc-setup 包括支持使用 lirc-setup 的 GTK 支持
887 app-misc lirc inputlirc Add a dependency on app-misc/inputlircd 添加对 app-misc/inputlircd 的依赖
888 app-misc lirc uinput Enable support for uinput 启用对 uinput 的支持
889 app-misc mc edit Compile and install the mcedit application 编译并安装 mcedit 应用程序
890 app-misc mc sftp Add support for sftp (uses net-libs/libssh2 for it). 添加对 sftp 的支持(使用 net-libs/libssh2)。
891 app-misc mc slang Use sys-libs/slang instead of sys-libs/ncurses. 使用 sys-libs/slang 而不是 sys-libs/ncurses。
892 app-misc mime-types nginx Enable mime-types support for www-servers/nginx package 为 www-servers/nginx 包启用 mime-types 支持
893 app-misc mosquitto bridge Enable bridge support in the MQTT broker. 在 MQTT 代理中启用网桥支持。
894 app-misc mosquitto persistence Store messages and subscriptions to a file. 将消息和订阅存储到文件。
895 app-misc mosquitto srv Include SRV lookup support. 包括 SRV 查找支持。
896 app-misc mosquitto websockets Support the WebSocket protocol. 支持 WebSocket 协议。
897 app-misc muttprint doc Builds documentation 构建文档
898 app-misc neofetch X Enable support for detecting DEs, WMs, screen resolutions, and showing images from an X terminal 启用对检测 DE、WM、屏幕分辨率和从 X 终端显示图像的支持
899 app-misc note general Add support for ascii flatfile backend 添加对 ascii 平面文件后端的支持
900 app-misc note text Add support for text backend 添加对文本后端的支持
901 app-misc pax-utils python Install a more powerful/faster version of lddtree 安装更强大/更快的 lddtree 版本
902 app-misc recoll camelcase Enable indexing for camelCase sentences and words 为 camelCase 句子和单词启用索引
903 app-misc recoll chm Enable CHM file support via dev-python/pychm 通过 dev-python/pychm 启用 CHM 文件支持
904 app-misc recoll inotify Use the Linux Kernel notification subsystem for monitoring file alterations in realtime 使用 Linux 内核通知子系统实时监控文件更改
905 app-misc recoll session Stop monitoring file alterations when X11 session terminates X11 会话终止时停止监视文件更改
906 app-misc recoll webengine Use dev-qt/qtwebengine for fancy result list display 使用 dev-qt/qtwebengine 进行精美的结果列表显示
907 app-misc rlwrap debug Enable debug 启用调试
908 app-misc screen multiuser Enable multiuser support (by setting correct permissions) 启用多用户支持(通过设置正确的权限)
909 app-misc screen nethack Express error messages in nethack style 以 nethack 风格表达错误信息
910 app-misc screenfetch X Use the media-gfx/scrot package to take screenshots 使用 media-gfx/scrot 包截图
911 app-misc skim tmux Install sk-tmux script to run skim in a tmux pane 安装 sk-tmux 脚本以在 tmux 窗格中运行skim
912 app-misc skim vim Install vim plugin for skim 为skim安装vim插件
913 app-misc sphinx id64 use 64-bit document and word IDs 使用 64 位文档和单词 ID
914 app-misc sphinx mariadb Add mariadb database support 添加 mariadb 数据库支持
915 app-misc sphinx stemmer Enable language stemming support 启用语言词干支持
916 app-misc task sync Enable "task sync" support 启用“任务同步”支持
917 app-misc tmux utempter Include libutempter support 包括 libuempter 支持
918 app-misc tracker miners Install the app-misc/tracker-miners package for actual data mining support for tracker 安装 app-misc/tracker-miners 包以获得对 tracker 的实际数据挖掘支持
919 app-misc tracker stemmer Add word stemming via dev-libs/snowball-stemmer. 通过 dev-libs/snowball-stemmer 添加词干。
920 app-misc tracker-miners cue Enable cue sheet parsing 启用提示表解析
921 app-misc tracker-miners gsf Enable gnome-extra/libgsf based data extractor and for ODT. 启用基于 gnome-extra/libgsf 的数据提取器和 ODT。
922 app-misc tracker-miners iptc Enable extraction of IPTC data from pictures 启用从图片中提取 IPTC 数据
923 app-misc tracker-miners iso Enable extraction of metadata from ISO disk images 启用从 ISO 磁盘映像中提取元数据
924 app-misc tracker-miners playlist Add support for playlists 添加对播放列表的支持
925 app-misc tracker-miners xps Add support for XPS file format through app-text/libgxps. 通过 app-text/libgxps 添加对 XPS 文件格式的支持。
926 app-misc unfoo minimal Do not install all support archive binaries 不要安装所有支持存档二进制文件
927 app-misc vcontrold vclient Build the vclient helper program to talk to vcontrold 构建 vclient 帮助程序以与 vcontrold 对话
928 app-misc vcontrold vsim Build the vsim helper program (simulates the heating's answers, for development and debugging) 构建 vsim 帮助程序(模拟加热的答案,用于开发和调试)
929 app-misc vifm developer Enable features of interest to developers 启用开发人员感兴趣的功能
930 app-misc vifm extended-keys Support for extended keys (arrows, home etc) 支持扩展键(箭头、主页等)
931 app-misc vifm gtk Use gtk+ to determine mimetypes 使用 gtk+ 确定 mimetypes
932 app-misc vifm vim Install the vifm vim plugin and vim-compatible documentation 安装 vifm vim 插件和 vim 兼容文档
933 app-misc wildq hcl HCL support via pyhcl 通过 pyhcl 支持 HCL
934 app-misc wildq toml TOML support via pytoml 通过 pytoml 支持 TOML
935 app-misc wildq xml XML support via xmltodict 通过 xmltodict 支持 XML
936 app-misc worker avfs Enable support for sys-fs/avfs 启用对 sys-fs/avfs 的支持
937 app-misc zygrib maps Installs additional GSHHS maps for high resolution coastline data and cities 为高分辨率海岸线数据和城市安装额外的 GSHHS 地图
938 app-mobilephone gammu curl Enables curl support 启用 curl 支持
939 app-mobilephone gammu irda Enables infrared support 启用红外支持
940 app-mobilephone gammu mysql Use mysql for data storage 使用mysql进行数据存储
941 app-mobilephone gammu nls Enable native language support 启用本地语言支持
942 app-mobilephone gammu odbc Use ODBC as DB connector 使用 ODBC 作为数据库连接器
943 app-mobilephone gammu postgres Use PostgreSQL for data storage 使用 PostgreSQL 进行数据存储
944 app-mobilephone gammu usb Enable USB suport 启用 USB 支持
945 app-mobilephone gnokii ical Enable support for dev-libs/libical 启用对 dev-libs/libical 的支持
946 app-mobilephone gnokii irda Enable infrared support 启用红外支持
947 app-mobilephone gnokii pcsc-lite Enable smartcard support with sys-apps/pcsc-lite 使用 sys-apps/pcsc-lite 启用智能卡支持
948 app-mobilephone gnokii sms Enable SMS support (build smsd) 启用 SMS 支持(构建 smsd)
949 app-mobilephone smstools stats Enable statistic reporting 启用统计报告
950 app-office abiword collab Enable collaborative editing plugin 启用协作编辑插件
951 app-office abiword goffice Enable goffice plugin 启用 goffice 插件
952 app-office abiword grammar Enable grammar checking via dev-libs/link-grammar 通过 dev-libs/link-grammar 启用语法检查
953 app-office abiword map Enable world map support through media-libs/libchamplain 通过 media-libs/libchamplain 启用世界地图支持
954 app-office abiword math Enable support for x11-libs/gtkmathview 启用对 x11-libs/gtkmathview 的支持
955 app-office abiword ots Enable Text Summarizer plugin 启用文本摘要器插件
956 app-office abiword plugins Enable plugins build (see http://www.abisource.com/wiki/PluginMatrix for more information). If your file cannot be opened due lack of support, try enabling this. 启用插件构建(有关更多信息,请参阅 http://www.abisource.com/wiki/PluginMatrix)。如果您的文件由于缺乏支持而无法打开,请尝试启用此功能。
957 app-office abiword redland Enables support redland and raptor libs. 启用支持 redland 和 raptor 库。
958 app-office abiword thesaurus Enable thesaurus support 启用词库支持
959 app-office abiword wordperfect Enable wordperfect file support via app-text/libwpd 通过 app-text/libwpd 启用 wordperfect 文件支持
960 app-office calligra activities Enable kactivities support 启用 kactivities 支持
961 app-office calligra charts Build chartshape plugin for creating business charts with dev-libs/kdiagram 使用 dev-libs/kdiagram 构建用于创建业务图表的 chartshape 插件
962 app-office calligra gemini Enable tablet and 2:1 devices support 启用平板电脑和 2:1 设备支持
963 app-office calligra import-filter Enable support for various import filter file formats like WordPerfect, Visio and Apple Keynote 支持各种导入过滤器文件格式,如 WordPerfect、Visio 和 Apple Keynote
964 app-office calligra lcms Build colorengine plugins using media-libs/lcms 使用 media-libs/lcms 构建颜色引擎插件
965 app-office calligra okular Enable bindings for kde-apps/okular 为 kde-apps/okular 启用绑定
966 app-office calligra phonon Build stage/eventplugins and videoshape plugin using media-libs/phonon 使用 media-libs/phonon 构建 stage/eventplugins 和 videoshape 插件
967 app-office calligra spacenav Enable support for the 3Dconnexion spacenav input device via dev-libs/libspnav 通过 dev-libs/libspnav 启用对 3Dconnexion spacenav 输入设备的支持
968 app-office calligraplan activities Enable kactivities support 启用 kactivities 支持
969 app-office calligraplan holidays Enable kde-frameworks/kholidays integration 启用 kde-frameworks/kholidays 集成
970 app-office calligraplan kwallet Enable access to encrypted OpenDocument files with kde-frameworks/kwallet storage 使用 kde-frameworks/kwallet 存储启用对加密 OpenDocument 文件的访问
971 app-office glabels barcode Enable barcode support through external libraries. 通过外部库启用条形码支持。
972 app-office gnucash aqbanking Connect to some internet banks via AqBanking 通过 AqBanking 连接到一些网上银行
973 app-office gnucash quotes Enable Online Stock Quote retrieval 启用在线股票报价检索
974 app-office gnucash register2 Use the new register (Experimental) 使用新的寄存器(实验)
975 app-office gnumeric libgda Enable database support through gnome-extra/libgda. 通过 gnome-extra/libgda 启用数据库支持。
976 app-office gnumeric perl Enable perl plugin loader. 启用 perl 插件加载器。
977 app-office grisbi goffice enable goffice graphic support 启用 goffice 图形支持
978 app-office kexi experimental Enable features deemed experimental by upstream 启用上游认为是实验性的功能
979 app-office kexi marble Enable displaying of maps using kde-apps/marble 使用 kde-apps/marble 启用地图显示
980 app-office kexi mdb Enable support for Microsoft Access database 启用对 Microsoft Access 数据库的支持
981 app-office kmymoney activities Enable kde-frameworks/kactivities integration 启用 kde-frameworks/kactivities 集成
982 app-office kmymoney addressbook Enable kde-apps/akonadi contact integration 启用 kde-apps/akonadi 联系人集成
983 app-office kmymoney hbci Enable HBCI support using net-libs/aqbanking 使用 net-libs/aqbanking 启用 HBCI 支持
984 app-office kmymoney holidays Enable kde-frameworks/kholidays integration 启用 kde-frameworks/kholidays 集成
985 app-office kraft pim Enable support for KDE PIM resources integration 启用对 KDE PIM 资源集成的支持
986 app-office libalkimia webengine Use dev-qt/qtwebengine for embedded web browser widget 将 dev-qt/qtwebengine 用于嵌入式 Web 浏览器小部件
987 app-office libreoffice base Enable full support for LibreOffice Base databases (involves additional bundled libs) 启用对 LibreOffice Base 数据库的完全支持(涉及额外的捆绑库)
988 app-office libreoffice clang Use Clang compiler instead of GCC 使用 Clang 编译器而不是 GCC
989 app-office libreoffice coinmp Use sci-libs/coinor-mp as alternative solver 使用 sci-libs/coinor-mp 作为替代求解器
990 app-office libreoffice googledrive Enable support for remote files on Google Drive 启用对 Google Drive 上的远程文件的支持
991 app-office libreoffice mariadb Prefer mariadb connector over mysql connector 首选 mariadb 连接器而不是 mysql 连接器
992 app-office libreoffice odk Build the Office Development Kit 构建 Office 开发工具包
993 app-office libreoffice pdfimport Enable PDF import via the Poppler library 通过 Poppler 库启用 PDF 导入
994 app-office libreoffice vulkan Enable Vulkan usage via the skia library (clang recommended) 通过 skia 库启用 Vulkan 使用(推荐使用 clang)
995 app-office libreoffice-l10n offlinehelp Install help files locally instead of using the LibreOffice Wiki 在本地安装帮助文件,而不是使用 LibreOffice Wiki
996 app-office lyx aspell Add support for aspell spellchecking 添加对 aspell 拼写检查的支持
997 app-office lyx dia Add support for diagrams (app-office/dia) 添加对图表的支持(app-office/dia)
998 app-office lyx dot Add support for DOT import (media-gfx/graphviz) 添加对 DOT 导入的支持 (media-gfx/graphviz)
999 app-office lyx enchant Add support for enchant spellchecking wrapper (both aspell and hunspell can be used by LyX). 添加对附魔拼写检查包装器的支持(LyX 可以使用 aspell 和 hunspell)。
1000 app-office lyx gnumeric Add support for importing Gnumeric/OpenOffice/MS Excel spreadsheets into LyX. 添加对将 Gnumeric/OpenOffice/MS Excel 电子表格导入 LyX 的支持。
1001 app-office lyx html Add support for HTML import 添加对 HTML 导入的支持
1002 app-office lyx hunspell Add support for spellchecking based on hunspell and reuse system-wide OpenOffice dictionaries. This also enable thesaurus dictionaries not accessible via aspell. 添加对基于 hunspell 的拼写检查的支持并重用系统范围的 OpenOffice 词典。这也使同义词词典无法通过 aspell 访问。
1003 app-office lyx monolithic-build This should speed up compilation significantly when you have enough RAM (> 600 MB) 当您有足够的 RAM (> 600 MB) 时,这应该会显着加快编译速度
1004 app-office lyx rcs Add support for revision control via dev-vcs/rcs 通过 dev-vcs/rcs 添加对版本控制的支持
1005 app-office lyx rtf Add support for RTF import/export packages 添加对 RTF 导入/导出包的支持
1006 app-office magicpoint contrib Install additional contributed scripts 安装其他贡献的脚本
1007 app-office mdbtools glib Use functions provided by dev-libs/glib, not built-in 使用 dev-libs/glib 提供的函数,不是内置的
1008 app-office scribus boost Enable support for Boost based enhancement 启用对基于 Boost 的增强的支持
1009 app-office scribus hunspell Enable support for spell checking with app-text/hunspell 使用 app-text/hunspell 启用对拼写检查的支持
1010 app-office scribus minimal Don't install headers (only required for e.g. plug-in developers) 不要安装头文件(例如插件开发者才需要)
1011 app-office scribus osg 3D rendering via dev-games/openscenegraph 通过 dev-games/openscenegraph 进行 3D 渲染
1012 app-office scribus scripts Install the scripts 安装脚本
1013 app-office scribus templates Document templates 文档模板
1014 app-office scribus tk Install tk based scripts e.g. FontSample.py 安装基于 tk 的脚本,例如 FontSample.py
1015 app-office skrooge activities Enable kactivities support 启用 kactivities 支持
1016 app-office texmacs netpbm Add support for media-libs/netpbm 添加对 media-libs/netpbm 的支持
1017 app-office texstudio video Use phonon for video embedding 使用声子进行视频嵌入
1018 app-pda gtkpod clutter Enable clutter support for displaying coverart 启用杂乱支持以显示封面
1019 app-portage conf-update colordiff Use colors when displaying diffs (app-misc/colordiff) 显示差异时使用颜色 (app-misc/colordiff)
1020 app-portage eix debug Build with upstream's CXXFLAGS/LDFLAGS for debugging support; not recommended for normal use. 使用上游的 CXXFLAGS/LDFLAGS 构建以提供调试支持;不建议正常使用。
1021 app-portage eix doc Create description of the eix cache file additionally in html format 以 html 格式另外创建 eix 缓存文件的描述
1022 app-portage eix sqlite Compile in support for portage's sqlite backend; to actually use it you need additional configuration of portage and eix 编译支持portage的sqlite后端;要实际使用它,您需要额外配置 portage 和 eix
1023 app-portage g-sorcery bson Support BSON file format for package DB 支持包 DB 的 BSON 文件格式
1024 app-portage gemato gpg Install dependencies needed for OpenPGP signature verification support 安装 OpenPGP 签名验证支持所需的依赖项
1025 app-portage gemato tools Install additional utilities (benchmarks, hash testing tools, fast Manifest generators) to /usr/share/gemato. 将其他实用程序(基准、哈希测试工具、快速清单生成器)安装到 /usr/share/gemato。
1026 app-portage grs server Install all the tools building systems 安装所有工具构建系统
1027 app-portage kuroneko scraper Include the dependencies necessary for Bugzilla scraping. 包括 Bugzilla 抓取所需的依赖项。
1028 app-portage layman cvs Support dev-vcs/cvs based overlays 支持基于 dev-vcs/cvs 的覆盖
1029 app-portage layman darcs Support dev-vcs/darcs based overlays 支持基于 dev-vcs/darcs 的覆盖
1030 app-portage layman g-sorcery Support app-portage/g-sorcery based overlays 支持基于 app-portage/g-sorcery 的覆盖
1031 app-portage layman git Support dev-vcs/git based overlays 支持基于 dev-vcs/git 的覆盖
1032 app-portage layman gpg Support app-crypt/gnupg signed overlays lists and manifests 支持 app-crypt/gnupg 签名的覆盖列表和清单
1033 app-portage layman mercurial Support dev-vcs/mercurial based overlays 支持基于 dev-vcs/mercurial 的覆盖
1034 app-portage layman squashfs Support mounting squashfs image overlays locally read-only 支持以只读方式在本地挂载 squashfs 图像覆盖
1035 app-portage layman subversion Support dev-vcs/subversion based overlays 支持基于 dev-vcs/subversion 的覆盖
1036 app-portage layman sync-plugin-portage Install the sys-apps/portage sync module 安装 sys-apps/portage 同步模块
1037 app-portage nattka depgraph-order Process packages in depgraph order whenever possible. 尽可能按 depgraph 顺序处理包。
1038 app-portage pfl network-cron Adds a cron job which does a weekly submit of the package database 添加一个每周提交包数据库的 cron 作业
1039 app-portage portage-utils qmanifest Build qmanifest applet, this adds additional dependencies for GPG, OpenSSL and BLAKE2B hashing 构建 qmanifest 小程序,这为 GPG、OpenSSL 和 BLAKE2B 散列添加了额外的依赖项
1040 app-portage portage-utils qtegrity Build qtegrity applet, this adds additional dependencies for OpenSSL 构建 qtegrity 小程序,这为 OpenSSL 添加了额外的依赖项
1041 app-portage tatt templates Install template scripts to be used with tatt 安装要与 tatt 一起使用的模板脚本
1042 app-shells autojump ipython Add support for dev-python/ipython 添加对 dev-python/ipython 的支持
1043 app-shells bash bashlogger Log ALL commands typed into bash; should ONLY be used in restricted environments such as honeypots 记录所有输入 bash 的命令;只能在受限环境中使用,例如蜜罐
1044 app-shells bash mem-scramble Build with custom malloc/free overwriting allocated/freed memory 使用自定义 malloc/free 覆盖分配/释放的内存构建
1045 app-shells bash net Enable /dev/tcp/host/port redirection 启用 /dev/tcp/host/port 重定向
1046 app-shells bash plugins Add support for loading builtins at runtime via 'enable' 通过“启用”添加对在运行时加载内置函数的支持
1047 app-shells bash-completion eselect Support blacklisting of completions via 'eselect bash-completion'. This enables custom Gentoo patching of upstream completion loader. 支持通过“eselect bash-completion”将完成列入黑名单。这启用了上游完成加载器的自定义 Gentoo 补丁。
1048 app-shells mksh lksh variant that uses POSIX-compliant arithmetics with the host “long” data type and is automatically in POSIX mode when called as /bin/sh 使用符合 POSIX 的算术和主机“long”数据类型的变体,并且在调用 /bin/sh 时自动处于 POSIX 模式
1049 app-shells nushell extra Install extra plugins: binaryview, tree, clipboard-cli, trash-support and others 安装额外的插件:binaryview、tree、clipboard-cli、trash-support 等
1050 app-shells pdsh rsh This allows the use of rsh (remote shell) and rcp (remote copy) for authoring websites. sftp is a much more secure protocol and is preferred. 这允许使用 rsh(远程 shell)和 rcp(远程复制)来创作网站。 sftp 是一个更安全的协议,是首选。
1051 app-shells pwsh-bin pwsh-symlink Install a pwsh symlink that points to pwsh-bin. 安装指向 pwsh-bin 的 pwsh 符号链接。
1052 app-shells shish diet Use dev-libs/dietlibc 使用 dev-libs/dietlibc
1053 app-text atril caja Enable property page extension in mate-base/caja 在 mate-base/caja 中启用属性页扩展
1054 app-text atril dvi Enable build-in DVI viewer 启用内置 DVI 查看器
1055 app-text atril epub Enable build-in DVI viewer using net-libs/webkit-gtk 使用 net-libs/webkit-gtk 启用内置 DVI 查看器
1056 app-text atril synctex Enable search highlighting through synctex (virtual/tex-base) 通过 synctex (virtual/tex-base) 启用搜索突出显示
1057 app-text atril t1lib Enable the Type-1 fonts for the build-in DVI viewer (media-libs/t1lib) 为内置 DVI 查看器 (media-libs/t1lib) 启用 Type-1 字体
1058 app-text atril xps Enable XPS viewer using app-text/libgxps 使用 app-text/libgxps 启用 XPS 查看器
1059 app-text blogc git Build blogc-git-receiver tool 构建 blogc-git-receiver 工具
1060 app-text blogc httpd Build blogc-runserver tool 构建 blogc-runserver 工具
1061 app-text blogc make Build blogc-make tool 构建 blogc-make 工具
1062 app-text coolreader wxwidgets Use x11-libs/wxGTK instead of Qt5 使用 x11-libs/wxGTK 而不是 Qt5
1063 app-text crm114 mew Add support for using the mewdecode mime decoder (app-emacs/mew) 添加对使用 mewdecode mime 解码器的支持 (app-emacs/mew)
1064 app-text crm114 mimencode Add support for using the mimencode mime (net-mail/metamail) 添加对使用 mimencode mime (net-mail/metamail) 的支持
1065 app-text crm114 normalizemime Add support for using the normalizemime (mail-filter/normalizemime) 添加对使用 normalizemime (mail-filter/normalizemime) 的支持
1066 app-text dblatex inkscape Use inkscape to convert SVG. Disable to use gnome-base/librsvg instead. 使用 inkscape 转换 SVG。禁用改为使用 gnome-base/librsvg。
1067 app-text dictd judy Build Judy-based (dev-libs/judy) plugin implementing fast "exact" and especially "lev" strategies 构建基于 Judy (dev-libs/judy) 的插件,实现快速“精确”,尤其是“lev”策略
1068 app-text dictd minimal Don't build server but dict client, dictzip and dictfmt only. 不要构建服务器,只构建 dict 客户端、dictzip 和 dictfmt。
1069 app-text docbook-sgml-utils jadetex Add support for processing tex files produced by the TeX backend of Jade 添加对处理 Jade 的 TeX 后端生成的 tex 文件的支持
1070 app-text docbook-xsl-ns-stylesheets ruby Install the Ruby-based dbtoepub script; requires an interpreter compatible with app-eselect/eselect-ruby. 安装基于 Ruby 的 dbtoepub 脚本;需要与 app-eselect/eselect-ruby 兼容的解释器。
1071 app-text docbook-xsl-stylesheets ruby Install the Ruby-based dbtoepub script; requires an interpreter compatible with app-eselect/eselect-ruby. 安装基于 Ruby 的 dbtoepub 脚本;需要与 app-eselect/eselect-ruby 兼容的解释器。
1072 app-text ebook-tools lit2epub Install lit2epub script 安装 lit2epub 脚本
1073 app-text editorconfig-core-c cli Install command line interface. 安装命令行界面。
1074 app-text enchant aspell Adds support for app-text/aspell spell checker 添加对 app-text/aspell 拼写检查器的支持
1075 app-text enchant hunspell Adds support for app-text/hunspell spell checker 添加对 app-text/hunspell 拼写检查器的支持
1076 app-text enchant nuspell Adds support for app-text/nuspell spell checker 添加对 app-text/nuspell 拼写检查器的支持
1077 app-text enchant voikko Adds support for dev-libs/libvoikko spell checker 添加对 dev-libs/libvoikko 拼写检查器的支持
1078 app-text evince dvi Enable the built-in DVI viewer 启用内置 DVI 查看器
1079 app-text evince nautilus Enable property page extension in gnome-base/nautilus 在 gnome-base/nautilus 中启用属性页扩展
1080 app-text evince postscript Enable support for PostScript and Adobe Illustrator documents with app-text/libspectre 使用 app-text/libspectre 启用对 PostScript 和 Adobe Illustrator 文档的支持
1081 app-text evince spell Enable inline spell check for annotations via app-text/gspell 通过 app-text/gspell 启用注释的内联拼写检查
1082 app-text evince xps Enable XPS viewer using app-text/libgxps 使用 app-text/libgxps 启用 XPS 查看器
1083 app-text foliate handy Use gui-libs/libhandy 使用 gui-libs/libhandy
1084 app-text ghostscript-gpl unicode Add support for unicode passwords via net-dns/libidn 通过 net-dns/libidn 添加对 unicode 密码的支持
1085 app-text groonga abort Enable query abortion 启用查询中止
1086 app-text groonga benchmark Build benchmark programs 构建基准程序
1087 app-text groonga dynamic-malloc-change Allow dynamic memory allocation change for testing 允许动态内存分配更改以进行测试
1088 app-text groonga exact-alloc-count Atomic counting for memory alloc count 内存分配计数的原子计数
1089 app-text groonga fmalloc Make memory allocation failed in specified condition for debug 使内存分配在指定条件下失败以进行调试
1090 app-text groonga futex Use futex 使用 futex
1091 app-text groonga libevent Enable dev-libs/libevent used for suggestion 启用用于建议的 dev-libs/libevent
1092 app-text groonga mecab Use app-text/mecab for morphological analysis 使用 app-text/mecab 进行形态分析
1093 app-text groonga msgpack Enable dev-libs/msgpack used for suggestion 启用用于建议的 dev-libs/msgpack
1094 app-text groonga nfkc Use nfkc based utf8 normalization 使用基于 nfkc 的 utf8 标准化
1095 app-text groonga sphinx Enable document generation by app-misc/sphinx 通过 app-misc/sphinx 启用文档生成
1096 app-text groonga uyield Build for detecting race conditions 为检测竞争条件而构建
1097 app-text groonga zeromq Enable net-libs/zeromq used for suggestion 启用用于建议的 net-libs/zeromq
1098 app-text htmltidy deprecated Install tools and header files which are now considered deprecated 安装现在被认为已弃用的工具和头文件
1099 app-text hyperestraier mecab Enable app-text/mecab support for Estraier 为 Estraier 启用 app-text/mecab 支持
1100 app-text kbibtex webengine Use dev-qt/qtwebengine for HTML previews 使用 dev-qt/qtwebengine 进行 HTML 预览
1101 app-text kbibtex zotero Enable support for synchronisation with zotero.org web service 启用与 zotero.org Web 服务同步的支持
1102 app-text kjots speech Enable text-to-speech support 启用文本转语音支持
1103 app-text lcdf-typetools kpathsea Enable integration with kpathsea search library (TeX related) 启用与 kpathsea 搜索库的集成(TeX 相关)
1104 app-text libebook tools Build file conversion tools 构建文件转换工具
1105 app-text libmwaw tools Build file conversion tools 构建文件转换工具
1106 app-text libqxp tools Build file conversion tools 构建文件转换工具
1107 app-text libstaroffice tools Build conversion tools 构建转换工具
1108 app-text libstaroffice zlib Enable support for compressed data 启用对压缩数据的支持
1109 app-text libwpd tools Build file conversion tools 构建文件转换工具
1110 app-text libwps tools Build file conversion tools 构建文件转换工具
1111 app-text mandoc cgi build man.cgi web plugin for viewing man pages 构建 man.cgi web 插件以查看手册页
1112 app-text mandoc system-man set as the default man provider 设置为默认的 man 提供者
1113 app-text mathtex png Generate png images by default instead of gif 默认生成png图片而不是gif
1114 app-text msort heap Use heap instead of alloca() 使用堆而不是 alloca()
1115 app-text msort icu Use dev-libs/icu instead of dev-libs/libutf8proc. 使用 dev-libs/icu 而不是 dev-libs/libutf8proc。
1116 app-text msort libuninum Use dev-libs/libuninum for conversion. 使用 dev-libs/libuninum 进行转换。
1117 app-text pandoc embed-data-files Embed data files in binary for relocatable executable. 将数据文件嵌入二进制文件以实现可重定位的可执行文件。
1118 app-text pandoc optimize Enable -O1 optimizations (requires ~16GiB memory) 启用 -O1 优化(需要 ~16GiB 内存)
1119 app-text pandoc trypandoc Build trypandoc cgi executable. 构建 trypandoc cgi 可执行文件。
1120 app-text pandoc-bin pandoc-symlink Install pandoc symlink that points to pandoc-bin 安装指向 pandoc-bin 的 pandoc 符号链接
1121 app-text pastebinit crypt Install pbputs for gpg-encrypted pastes 为 gpg 加密的粘贴安装 pbputs
1122 app-text pdfgrep unac Removing accents and ligatures before search 在搜索前删除重音符号和连字
1123 app-text pelican markdown Markdown support 降价支持
1124 app-text podofo boost Add support for boost 添加对提升的支持
1125 app-text podofo tools Build and install commandline tools. 构建和安装命令行工具。
1126 app-text poppler boost Use boost::small_vector for a serious performance gain 使用 boost::small_vector 获得显着的性能提升
1127 app-text poppler nss Enable signatures handling with dev-libs/nss 使用 dev-libs/nss 启用签名处理
1128 app-text poppler utils Install command-line PDF converters and various utilities. 安装命令行 PDF 转换器和各种实用程序。
1129 app-text qpdfview fitz Use experimental fitz rendering, provided by app-text/mupdf, instead of poppler 使用 app-text/mupdf 提供的实验性 fitz 渲染,而不是 poppler
1130 app-text qpdfview synctex Add support for searching TeX sources 添加对搜索 TeX 源的支持
1131 app-text robodoc examples Installs usage examples in /usr/share for Perl 在 /usr/share 中安装 Perl 的使用示例
1132 app-text sdcv darkterm Improve readability of color output on terminals with dark background. 提高深色背景终端上颜色输出的可读性。
1133 app-text sigil plugins Installed needed Python packages for using Sigil plugins 安装了使用 Sigil 插件所需的 Python 包
1134 app-text sigil system-mathjax Use the system-wide dev-libs/mathjax instead of bundled 使用系统范围的 dev-libs/mathjax 而不是捆绑
1135 app-text stardict advertisement Enable stardict advertisements plugin 启用stardict广告插件
1136 app-text stardict cal Enable calendar support using cal program 使用 cal 程序启用日历支持
1137 app-text stardict dictdotcn Enable dict.cn network plugin (for Chinese language) 启用dict.cn网络插件(中文)
1138 app-text stardict espeak Enable text to speech synthesizer plugin using app-accessibility/espeak engine 使用 app-accessibility/espeak 引擎启用文本到语音合成器插件
1139 app-text stardict flite Enable text to speech synthesizer plugin using app-accessibility/flite engine 使用 app-accessibility/flite 引擎启用文本到语音合成器插件
1140 app-text stardict fortune Enable plugin to read fortune messages using games-misc/fortune-mod. You may consider installing games-misc/fortune-mod-all to get all fortune messages. 启用插件以使用 games-misc/fortune-mod 读取财富消息。您可以考虑安装 games-misc/fortune-mod-all 以获取所有财富信息。
1141 app-text stardict gucharmap Enable plugin for unicode symbols description using gnome-extra/gucharmap 使用 gnome-extra/gucharmap 启用 unicode 符号描述插件
1142 app-text stardict htmlparse Enable plugin to parse dictionaries with html content 启用插件来解析带有 html 内容的字典
1143 app-text stardict info Enable plugin to read info pages 启用插件以读取信息页面
1144 app-text stardict man Enable plugin to read manual pages 启用插件以阅读手册页
1145 app-text stardict powerwordparse Enable plugin to parse powerword dictionaries 启用插件解析词霸词典
1146 app-text stardict pronounce Install WyabdcRealPeopleTTS package (it is just many .wav files) to make StarDict pronounce English words 安装 WyabdcRealPeopleTTS 包(它只是许多 .wav 文件)以使 StarDict 发音英语单词
1147 app-text stardict qqwry Enable QQWry plugin, which provides information (in Chinese language) about geographical positions, owner, etc. for IP addresses 启用QQWry插件,提供IP地址的地理位置、所有者等信息(中文)
1148 app-text stardict tools Build and install dictionary management tools and converters from various dictionary formats 从各种字典格式构建和安装字典管理工具和转换器
1149 app-text stardict updateinfo Enable plugin to check for stardict updates 启用插件以检查 stardict 更新
1150 app-text stardict wikiparse Enable plugin to parse dictionaries in wikimedia format 启用插件以解析维基媒体格式的字典
1151 app-text stardict wordnet Enable wordnet plugin to find similar English words using lexical database 启用 wordnet 插件以使用词汇数据库查找相似的英语单词
1152 app-text stardict xdxfparse Enable plugin to parse dictionaries in xdxf (XML Dictionary eXchange Format) 启用插件以解析 xdxf 中的字典(XML 字典交换格式)
1153 app-text stardict youdaodict Enable youdao.com network plugin (for Chinese language) 启用有道网插件(中文版)
1154 app-text sword clucene Use dev-cpp/clucene for lucene search support 使用 dev-cpp/clucene 获得 lucene 搜索支持
1155 app-text sword-modules esoteric Install modules with no linguistic content, in unknown languages etc. 安装没有语言内容、未知语言等的模块。
1156 app-text tessdata_best osd Enable support orientation and script detection. 启用支持方向和脚本检测。
1157 app-text tessdata_fast osd Enable support orientation and script detection. 启用支持方向和脚本检测。
1158 app-text tessdata_legacy math Enable support for recognition of equations. 启用对方程识别的支持。
1159 app-text tessdata_legacy osd Enable support orientation and script detection. 启用支持方向和脚本检测。
1160 app-text tesseract float32 Support float for model training and text recognition (faster, requires less RAM) 支持模型训练和文本识别的浮点数(更快,需要更少的 RAM)
1161 app-text tesseract opencl Enable opencl support for speedup using GPU computation. 启用 opencl 支持以使用 GPU 计算加速。
1162 app-text tesseract training Install training applications to add support for new languages. 安装培训应用程序以增加对新语言的支持。
1163 app-text texlive context Add support for the ConTeXt format (dev-texlive/texlive-context) 添加对 ConTeXt 格式的支持 (dev-texlive/texlive-context)
1164 app-text texlive extra Add support for extra TeXLive packages 添加对额外 TeXLive 包的支持
1165 app-text texlive games Add typesetting support for games (chess, etc.) (dev-texlive/texlive-games) 添加对游戏(国际象棋等)的排版支持(dev-texlive/texlive-games)
1166 app-text texlive graphics Add support for several graphics packages (pgf, tikz,...) 添加对多个图形包(pgf、tikz、...)的支持
1167 app-text texlive humanities Add LaTeX support for the humanities (dev-texlive/texlive-humanities) 添加对人文学科的 LaTeX 支持 (dev-texlive/texlive-humanities)
1168 app-text texlive luatex Add extra support for luatex 添加对 luatex 的额外支持
1169 app-text texlive metapost Add support for metapost: A tool for creating graphics in scalable PostScript 添加对 metapost 的支持:在可扩展 PostScript 中创建图形的工具
1170 app-text texlive music Add support for music typesetting (dev-texlive/texlive-music) 添加对音乐排版的支持(dev-texlive/texlive-music)
1171 app-text texlive pdfannotextractor Add dev-tex/pdfannotextractor support, for extracting annotations from PDF files 添加 dev-tex/pdfannotextractor 支持,用于从 PDF 文件中提取注释
1172 app-text texlive pstricks Add pstricks packages (dev-texlive/texlive-pstricks) 添加 pstricks 包 (dev-texlive/texlive-pstricks)
1173 app-text texlive publishers Add support for publishers (dev-texlive/texlive-publishers) 添加对发布者的支持 (dev-texlive/texlive-publishers)
1174 app-text texlive science Add typesetting support for natural and computer sciences (dev-texlive/texlive-mathscience) 添加对自然和计算机科学的排版支持 (dev-texlive/texlive-mathscience)
1175 app-text texlive tex4ht Add support for dev-tex/tex4ht (for converting (La)TeX to (X)HTML, XML and OO.org) 添加对 dev-tex/tex4ht 的支持(用于将 (La)TeX 转换为 (X)HTML、XML 和 OO.org)
1176 app-text texlive texi2html Add support for app-text/texi2html which converts texi files to HTML 添加对将 texi 文件转换为 HTML 的 app-text/texi2html 的支持
1177 app-text texlive xetex Add support for XeTeX macros (dev-texlive/texlive-xetex) 添加对 XeTeX 宏的支持 (dev-texlive/texlive-xetex)
1178 app-text texlive-core luajittex Add support for LuaJitTeX: LuaTeX based on LuaJIT which is usually faster. 添加对 LuaJitTeX 的支持:基于 LuaJIT 的 LuaTeX 通常更快。
1179 app-text texlive-core xetex Add support for XeTeX: a TeX system with Unicode and modern font technologies. 添加对 XeTeX 的支持:具有 Unicode 和现代字体技术的 TeX 系统。
1180 app-text texlive-core xindy Add support for Xindy: A general-purpose index processor. 添加对 Xindy 的支持:通用索引处理器。
1181 app-text wdiff experimental Build experimental utilities (mdiff, unify, wdiff2) 构建实验性实用程序(mdiff、unify、wdiff2)
1182 app-text webgen builder Enable programmatic HTML/XML generation 启用程序化 HTML/XML 生成
1183 app-text webgen highlight Enable syntax highlighting for certain plugins 为某些插件启用语法高亮
1184 app-text webgen markdown Markdown support 降价支持
1185 app-text writerperfect abiword Add support for abiword format using app-text/libabw 使用 app-text/libabw 添加对 abiword 格式的支持
1186 app-text writerperfect ebook Add support for various ebook formats using app-text/libebook 使用 app-text/libebook 添加对各种电子书格式的支持
1187 app-text writerperfect epub Add support for conversion to ePub format using app-text/libepubgen 添加对使用 app-text/libepubgen 转换为 ePub 格式的支持
1188 app-text writerperfect freehand Add support for freehand format using media-libs/libfreehand 使用 media-libs/libfreehand 添加对手绘格式的支持
1189 app-text writerperfect gsf Add support for structured files using gnome-extra/libgsf 使用 gnome-extra/libgsf 添加对结构化文件的支持
1190 app-text writerperfect keynote Add support for keynote format using app-text/libetonyek 使用 app-text/libetonyek 添加对主题格式的支持
1191 app-text writerperfect mspub Add support to mspub format using app-text/libmspub 使用 app-text/libmspub 添加对 mspub 格式的支持
1192 app-text writerperfect mwaw Add support to mwaw formats using app-text/libmwaw 使用 app-text/libmwaw 添加对 mwaw 格式的支持
1193 app-text writerperfect pagemaker Add support to pagemaker formats using media-libs/libpagemaker 使用 media-libs/libpagemaker 添加对 pagemaker 格式的支持
1194 app-text writerperfect qxp Add support for QuarkXpress documents using app-text/libqxp 使用 app-text/libqxp 添加对 QuarkXpress 文档的支持
1195 app-text writerperfect visio Add support for visio format using media-libs/libvisio 使用 media-libs/libvisio 添加对 visio 格式的支持
1196 app-text writerperfect wpd Add support for wpd format using app-text/libwpd 使用 app-text/libwpd 添加对 wpd 格式的支持
1197 app-text writerperfect wpg Add support for wpg format using app-text/libwpg 使用 app-text/libwpg 添加对 wpg 格式的支持
1198 app-text writerperfect wps Add support for wps format using app-text/libwps 使用 app-text/libwps 添加对 wps 格式的支持
1199 app-text writerperfect zmf Add support for Zoner Callisto/Draw documents format using media-libs/libzmf 使用 media-libs/libzmf 添加对 Zoner Callisto/Draw 文档格式的支持
1200 app-text wv tools Install optional utilities considered deprecated in favor of using AbiWord. 安装被认为已弃用的可选实用程序,以支持使用 AbiWord。
1201 app-text xmlto text Support conversion from XML to plain text 支持从 XML 到纯文本的转换
1202 app-text xpdf cmyk Include support for CMYK rasterization 包括对 CMYK 光栅化的支持
1203 app-text xpdf i18n Enable support non-UTF8 national charsets 启用支持非 UTF8 国家字符集
1204 app-text xpdf icons Generate desktop PNG icons using media-gfx/inkscape 使用 media-gfx/inkscape 生成桌面 PNG 图标
1205 app-text xpdf libpaper Use app-text/libpaper to get paper preferences 使用 app-text/libpaper 获取纸张偏好
1206 app-text xpdf metric Use A4 instead of US Letter paper size by default for PostScript output. This option has effect only if libpaper USE flag is disabled PostScript 输出默认使用 A4 而不是 US Letter 纸张尺寸。此选项仅在禁用 libpaper USE 标志时有效
1207 app-text xpdf opi Include support for OPI (Open Prepress Interface) comments 包括对 OPI(开放式印前界面)注释的支持
1208 app-text xpdf textselect Allow text selection 允许文本选择
1209 app-text xpdf utils Install command-line PDF converters and various utilities 安装命令行 PDF 转换器和各种实用程序
1210 app-text zathura synctex Use libsynctex to get latex codeline from pdf 使用 libsynctex 从 pdf 获取乳胶代码行
1211 app-text zathura-meta cb Install plug-in for ComicBook support 安装 ComicBook 支持插件
1212 app-vim gentoo-syntax ignore-glep31 Remove GLEP 31 (UTF-8 file encodings) settings 删除 GLEP 31(UTF-8 文件编码)设置
1213 app-xemacs xemacs-packages-all mule Add multi-language support to XEmacs 为 XEmacs 添加多语言支持
1214 dev-ada gnatcoll-bindings shared Build shared library 构建共享库
1215 dev-ada gnatcoll-bindings static-pic Build shared library 构建共享库
1216 dev-ada gnatcoll-core shared Build shared library 构建共享库
1217 dev-ada gnatcoll-core static-pic Build static library with pic code 用图片代码构建静态库
1218 dev-ada gnatcoll-db db2ada Build gnatcoll_db2ada 构建 gnatcoll_db2ada
1219 dev-ada gnatcoll-db gnatinspect Build gnatinspect 构建 gnatinspect
1220 dev-ada gnatcoll-db shared Build shared library 构建共享库
1221 dev-ada gnatcoll-db sql Build sql library 构建sql库
1222 dev-ada gnatcoll-db static-pic Build shared library 构建共享库
1223 dev-ada gnatcoll-db xref Build xref library 构建外部参照库
1224 dev-ada gtkada shared Build gtkada as shared library 将 gtkada 构建为共享库
1225 dev-ada gtkada static-pic Build static library with pic code 用图片代码构建静态库
1226 dev-ada langkit shared Build shared library 构建共享库
1227 dev-ada langkit static-pic Build static library with pic code 用图片代码构建静态库
1228 dev-ada libadalang static-pic Build static library with pic code 用图片代码构建静态库
1229 dev-ada libadalang-tools shared Build shared library 构建共享库
1230 dev-ada libadalang-tools static-pic Build static library with pic code 用图片代码构建静态库
1231 dev-ada libgpr shared Build shared library 构建共享库
1232 dev-ada libgpr static-pic Build static library with pic code 用图片代码构建静态库
1233 dev-ada spawn glib Add support to dev-libs/glib-based mainloop. 添加对基于 dev-libs/glib 的主循环的支持。
1234 dev-ada spawn shared Build shared library 构建共享库
1235 dev-ada spawn static-pic Build static library with pic code 用图片代码构建静态库
1236 dev-ada xmlada shared Build shared library 构建共享库
1237 dev-ada xmlada static-pic Build static library with pic code 用图片代码构建静态库
1238 dev-cpp abseil-cpp cxx17 Build with -DCMAKE_CXX_STANDARD=17 (required by some revdeps) 使用 -DCMAKE_CXX_STANDARD=17 构建(某些 revdeps 需要)
1239 dev-cpp benchmark lto Optimize the build using Link Time Optimization (LTO) 使用链接时间优化 (LTO) 优化构建
1240 dev-cpp eigen cuda Build with cuda support 使用 cuda 支持构建
1241 dev-cpp glog gflags Use dev-cpp/gflags for flag parsing 使用 dev-cpp/gflags 进行标志解析
1242 dev-cpp glog libunwind Use libunwind library (sys-libs/libunwind or sys-libs/llvm-libunwind) instead of built-in fallback implementation for stack unwinding 使用 libunwind 库(sys-libs/libunwind 或 sys-libs/llvm-libunwind)而不是内置的回退实现进行堆栈展开
1243 dev-cpp libcmis tools Build client tool for testing and viewing features 构建用于测试和查看功能的客户端工具
1244 dev-cpp libjson-rpc-cpp http-client Build support for HTTP client using net-misc/curl 使用 net-misc/curl 构建对 HTTP 客户端的支持
1245 dev-cpp libjson-rpc-cpp http-server Build support for HTTP server using net-libs/libmicrohttpd 使用 net-libs/libmicrohttpd 构建对 HTTP 服务器的支持
1246 dev-cpp libjson-rpc-cpp redis-client Build support for Redis client using dev-libs/hiredis 使用 dev-libs/hiredis 构建对 Redis 客户端的支持
1247 dev-cpp libjson-rpc-cpp redis-server Build support for Redis server using dev-libs/hiredis 使用 dev-libs/hiredis 构建对 Redis 服务器的支持
1248 dev-cpp libjson-rpc-cpp stubgen Build header stub code generator (needed for development and when pregenerated headers are not bundled) 构建标头存根代码生成器(需要开发和未捆绑预生成的标头时)
1249 dev-cpp opentelemetry-cpp jaeger Include the jaeger exporter 包括 jaeger 出口商
1250 dev-cpp opentelemetry-cpp prometheus include the Prometheus Client in the SDK 在 SDK 中包含 Prometheus 客户端
1251 dev-cpp sdbus-c++ systemd Use external libsystemd instead of statically-linked build 使用外部 libsystemd 而不是静态链接的构建
1252 dev-cpp sdbus-c++ tools Install interface stub code generator 安装接口存根代码生成器
1253 dev-cpp sourcetrail examples Install example projects. 安装示例项目。
1254 dev-db etcd server Installs etcd daemon 安装 etcd 守护进程
1255 dev-db firebird server Install the server components of Firebird, not just the client 安装 Firebird 的服务器组件,而不仅仅是客户端
1256 dev-db firebird xinetd Install ClassicServer 安装经典服务器
1257 dev-db mariadb backup Build mariadb-backup which supports SST and hot backup of InnoDB, Aria and MyISAM including compression and encryption 构建支持 SST 和 InnoDB、Aria 和 MyISAM 的热备份的 mariadb-backup,包括压缩和加密
1258 dev-db mariadb client-libs Build the client libraries from the server package instead of the C Connector packages 从服务器包而不是 C 连接器包构建客户端库
1259 dev-db mariadb columnstore Build the ColumnStore storage engine 构建ColumnStore存储引擎
1260 dev-db mariadb extraengine Add support for alternative storage engines (Archive, CSV, Blackhole, Federated(X), Partition) 添加对替代存储引擎(存档、CSV、Blackhole、Federated(X)、分区)的支持
1261 dev-db mariadb galera Enables galera replication 启用 galera 复制
1262 dev-db mariadb innodb-lz4 Enables lz4 compression methods for InnoDB/XtraDB 为 InnoDB/XtraDB 启用 lz4 压缩方法
1263 dev-db mariadb innodb-lzo Enables lzo compression methods for InnoDB/XtraDB 为 InnoDB/XtraDB 启用 lzo 压缩方法
1264 dev-db mariadb innodb-snappy Enables snappy compression methods for InnoDB/XtraDB using app-arch/snappy 使用 app-arch/snappy 为 InnoDB/XtraDB 启用 snappy 压缩方法
1265 dev-db mariadb jdbc Enable the CONNECT engine to access foreign databases via JDBC 启用 CONNECT 引擎通过 JDBC 访问外部数据库
1266 dev-db mariadb latin1 Use LATIN1 encoding instead of UTF8 使用 LATIN1 编码而不是 UTF8
1267 dev-db mariadb mroonga Add support for the Mroonga engine for interfacing with the Groonga text search 添加对与 Groonga 文本搜索接口的 Mroonga 引擎的支持
1268 dev-db mariadb numa Enable NUMA support using sys-process/numactl (NUMA kernel support is also required) 使用 sys-process/numactl 启用 NUMA 支持(还需要 NUMA 内核支持)
1269 dev-db mariadb oqgraph Add support for the Open Query GRAPH engine 添加对 Open Query GRAPH 引擎的支持
1270 dev-db mariadb pam Enable the optional PAM authentication plugin for the server 为服务器启用可选的 PAM 身份验证插件
1271 dev-db mariadb profiling Add support for statement profiling (requires USE=community). 添加对语句分析的支持(需要 USE=community)。
1272 dev-db mariadb rocksdb Add support for RocksDB; a key/value, LSM database optimized for flash storage 添加对 RocksDB 的支持;针对闪存存储优化的键/值 LSM 数据库
1273 dev-db mariadb s3 Build the S3 storage engine 构建 S3 存储引擎
1274 dev-db mariadb server Build the server program 构建服务器程序
1275 dev-db mariadb sphinx Add suport for the sphinx full-text search engine 添加对 sphinx 全文搜索引擎的支持
1276 dev-db mariadb sst-mariabackup Add tools needed to support the mariabackup SST method 添加支持 mariabackup SST 方法所需的工具
1277 dev-db mariadb sst-rsync Add tools needed to support the rsync SST method 添加支持 rsync SST 方法所需的工具
1278 dev-db mariadb sst-xtrabackup Add tools needed to support the xtrabackup and xtrabackup-v2 SST methods 添加支持 xtrabackup 和 xtrabackup-v2 SST 方法所需的工具
1279 dev-db mariadb systemtap Build support for profiling and tracing using dev-util/systemtap 使用 dev-util/systemtap 构建对分析和跟踪的支持
1280 dev-db mariadb test Install upstream testsuites for end use. 安装上游测试套件以供最终使用。
1281 dev-db mariadb tokudb Add support for TokuDB storage engine 添加对 TokuDB 存储引擎的支持
1282 dev-db mariadb yassl Enable SSL connections and crypto functions using the bundled yaSSL 使用捆绑的 yaSSL 启用 SSL 连接和加密功能
1283 dev-db mongodb lto Adds support for link time optimization 添加对链接时间优化的支持
1284 dev-db mongodb mongosh Install the MongoDB shell from app-admin/mongosh-bin 从 app-admin/mongosh-bin 安装 MongoDB shell
1285 dev-db mongodb tools Install the MongoDB tools (mongoimport, mongodump...) from app-admin/mongo-tools 从 app-admin/mongo-tools 安装 MongoDB 工具(mongoimport、mongodump...)
1286 dev-db mycli ssh Add support for connection over SSH tunnel 添加对通过 SSH 隧道进行连接的支持
1287 dev-db mysql cjk Add CJK support for InnoDB fulltext search using app-text/mecab 使用 app-text/mecab 添加对 InnoDB 全文搜索的 CJK 支持
1288 dev-db mysql client-libs Build the client libraries from the server package instead of the C Connector packages (not recommended) 从服务器包而不是 C 连接器包构建客户端库(不推荐)
1289 dev-db mysql experimental Build experimental features aka "rapid" plugins 构建实验性功能,即“快速”插件
1290 dev-db mysql latin1 Use LATIN1 encoding instead of UTF8 使用 LATIN1 编码而不是 UTF8
1291 dev-db mysql numa Enable NUMA support using sys-process/numactl (NUMA kernel support is also required) 使用 sys-process/numactl 启用 NUMA 支持(还需要 NUMA 内核支持)
1292 dev-db mysql profiling Add support for statement profiling (requires USE=community). 添加对语句分析的支持(需要 USE=community)。
1293 dev-db mysql router Build the MySQL router program 构建 MySQL 路由器程序
1294 dev-db mysql server Build the server program 构建服务器程序
1295 dev-db mysql systemtap Build support for profiling and tracing using dev-util/systemtap 使用 dev-util/systemtap 构建对分析和跟踪的支持
1296 dev-db mysql test Install upstream testsuites for end use. 安装上游测试套件以供最终使用。
1297 dev-db mysql-connector-c++ gcov Build coverage support 构建覆盖支持
1298 dev-db mysql-connector-c++ legacy Build the legacy 1.x API as well as the DevX API 构建旧版 1.x API 以及 DevX API
1299 dev-db oracle-instantclient jdbc Support for XA, Internationalization, and RowSet operations under JDBC 支持 JDBC 下的 XA、国际化和 RowSet 操作
1300 dev-db oracle-instantclient odbc Libraries for enabling ODBC applications 用于启用 ODBC 应用程序的库
1301 dev-db oracle-instantclient precomp “proc" binary and related files to precompile a Pro*C application 用于预编译 Pro*C 应用程序的“proc”二进制文件和相关文件
1302 dev-db oracle-instantclient sdk Header files and an example makefile for developing Oracle applications 用于开发 Oracle 应用程序的头文件和示例生成文件
1303 dev-db oracle-instantclient sqlplus The SQL*Plus command line tool for SQL and PL/SQL queries 用于 SQL 和 PL/SQL 查询的 SQL*Plus 命令行工具
1304 dev-db oracle-instantclient tools Data Pump, SQL*Loader and Workload Replay Client 数据泵、SQL*Loader 和工作负载重放客户端
1305 dev-db percona-server cjk Add CJK support for InnoDB fulltext search using app-text/mecab 使用 app-text/mecab 添加对 InnoDB 全文搜索的 CJK 支持
1306 dev-db percona-server latin1 Use LATIN1 encoding instead of UTF8 使用 LATIN1 编码而不是 UTF8
1307 dev-db percona-server numa Enable NUMA support using sys-process/numactl (NUMA kernel support is also required) 使用 sys-process/numactl 启用 NUMA 支持(还需要 NUMA 内核支持)
1308 dev-db percona-server profiling Add support for statement profiling (requires USE=community). 添加对语句分析的支持(需要 USE=community)。
1309 dev-db percona-server rocksdb Add support for RocksDB; a key/value, LSM database optimized for flash storage 添加对 RocksDB 的支持;针对闪存存储优化的键/值 LSM 数据库
1310 dev-db percona-server router Build the MySQL router program 构建 MySQL 路由器程序
1311 dev-db percona-server server Build the server program 构建服务器程序
1312 dev-db percona-server tokudb Add support for TokuDB storage engine 添加对 TokuDB 存储引擎的支持
1313 dev-db percona-server tokudb-backup-plugin Builds the TokuDB backup plugin 构建 TokuDB 备份插件
1314 dev-db pgbouncer c-ares Use c-ares as the DNS backend instead of evdns (libevent). 使用 c-ares 作为 DNS 后端而不是 evdns (libevent)。
1315 dev-db pgbouncer udns Use udns as the DNS backend instead of evdns (libevent). Supports IPv4 only. 使用 udns 作为 DNS 后端而不是 evdns (libevent)。仅支持 IPv4。
1316 dev-db pgpool2 memcached Use memcached for query caching. 使用 memcached 进行查询缓存。
1317 dev-db phpmyadmin setup Installs the phpMyAdmin setup utility. Users who don't use the utility should disable this USE flag for security reasons as the setup tool was the target of various exploits in the past. 安装 phpMyAdmin 设置实用程序。出于安全原因,不使用该实用程序的用户应禁用此 USE 标志,因为该设置工具是过去各种攻击的目标。
1318 dev-db postgis address-standardizer Normalize US and CA postal addresses 规范美国和加拿大邮政地址
1319 dev-db postgis gtk Build graphical interface for shp2pgsql (shp2pgsql-gui) 为 shp2pgsql (shp2pgsql-gui) 构建图形界面
1320 dev-db postgis topology Build topology spatial types and functions 构建拓扑空间类型和功能
1321 dev-db postgresql llvm Add support for llvm JIT engine 添加对 llvm JIT 引擎的支持
1322 dev-db postgresql server Disable to build and install the clients and libraries only. 仅禁用构建和安装客户端和库。
1323 dev-db postgresql uuid Enable server side UUID generation (via dev-libs/ossp-uuid). 启用服务器端 UUID 生成(通过 dev-libs/ossp-uuid)。
1324 dev-db psqlodbc iodbc Use dev-db/libiodbc. Disable to use dev-db/unixODBC. 使用 dev-db/libiodbc。禁止使用 dev-db/unixODBC。
1325 dev-db redis tcmalloc Use tcmalloc from dev-util/google-perftools for allocations. 使用 dev-util/google-perftools 中的 tcmalloc 进行分配。
1326 dev-db spatialite geos Add the sci-libs/geos library for exact topological tests 添加 sci-libs/geos 库以进行精确的拓扑测试
1327 dev-db spatialite proj Add the sci-libs/proj library for reprojection features 为重投影功能添加 sci-libs/proj 库
1328 dev-db spatialite xls Add the dev-libs/freexl library for xls import support 添加用于 xls 导入支持的 dev-libs/freexl 库
1329 dev-db sqldeveloper sybase Add support for the Sybase SQL Database Server 添加对 Sybase SQL 数据库服务器的支持
1330 dev-db sqlite secure-delete Enable overwriting of deleted content with zeros by default (http://sqlite.org/pragma.html#pragma_secure_delete), causing some performance penalty 默认情况下启用用零覆盖已删除内容(http://sqlite.org/pragma.html#pragma_secure_delete),导致一些性能损失
1331 dev-db sqlite tools Install additional tools, among which are included: sqlite3-analyzer, sqlite3-changeset, sqlite3-db-dump, sqlite3-diff, sqlite3-rbu, sqlite3-expert and others. 安装附加工具,其中包括:sqlite3-analyzer、sqlite3-changeset、sqlite3-db-dump、sqlite3-diff、sqlite3-rbu、sqlite3-expert 等。
1332 dev-db sqlitestudio cli Build CLI interface 构建 CLI 界面
1333 dev-db timescaledb proprietary-extensions Enable proprietary features/extensions licensed under the TimeScale License 启用根据 TimeScale 许可证许可的专有功能/扩展
1334 dev-db unixODBC minimal Disable bundled drivers and extra libraries (most users don't need these) 禁用捆绑的驱动程序和额外的库(大多数用户不需要这些)
1335 dev-db unixODBC odbcmanual Administrator, Internal Structure, Programmer and User documentation 管理员、内部结构、程序员和用户文档
1336 dev-dotnet dotnet-sdk-bin dotnet-symlink Install a dotnet symlink that points to dotnet-bin. 安装指向 dotnet-bin 的 dotnet 符号链接。
1337 dev-embedded avrdude ftdi Enable support for USB FTDI chips via dev-embedded/libftdi 通过 dev-embedded/libftdi 启用对 USB FTDI 芯片的支持
1338 dev-embedded libftdi tools build ftdi_eeprom helper tool 构建 ftdi_eeprom 辅助工具
1339 dev-embedded openocd capstone Use dev-libs/capstone for disassembly support 使用 dev-libs/capstone 提供反汇编支持
1340 dev-embedded openocd cmsis-dap Support for CMSIS-DAP compliant adapters 支持 CMSIS-DAP 兼容适配器
1341 dev-embedded openocd dummy Build the dummy port driver 构建虚拟端口驱动程序
1342 dev-embedded openocd ftdi Enable support for USB FTDI chips via dev-embedded/libftdi 通过 dev-embedded/libftdi 启用对 USB FTDI 芯片的支持
1343 dev-embedded openocd jlink Build the SEGGER J-Link driver 构建 SEGGER J-Link 驱动程序
1344 dev-embedded openocd parport Enable support for parport JTAG devices 启用对 parport JTAG 设备的支持
1345 dev-embedded openocd verbose-io Verbose IO and comm JTAG and USB messages 详细的 IO 和通信 JTAG 和 USB 消息
1346 dev-embedded sdcc avr Add support for AVR -- not supported upstream 添加对 AVR 的支持——上游不支持
1347 dev-embedded sdcc boehm-gc Enable Hans Boehm's garbage collector dev-libs/boehm-gc 启用 Hans Boehm 的垃圾收集器 dev-libs/boehm-gc
1348 dev-embedded sdcc device-lib Enable built of devices libraries 启用内置设备库
1349 dev-embedded sdcc ds390 Add support for Dallas DS390 添加对达拉斯 DS390 的支持
1350 dev-embedded sdcc ds400 Add support for Dallas DS400 添加对达拉斯 DS400 的支持
1351 dev-embedded sdcc ez80-z80 Add support for EZ80-Z80 添加对 EZ80-Z80 的支持
1352 dev-embedded sdcc gbz80 Add support for Gameboy gbz80 添加对 Gameboy gbz80 的支持
1353 dev-embedded sdcc hc08 Add support for Freescale/Motorola HC08 based 添加对基于飞思卡尔/摩托罗拉 HC08 的支持
1354 dev-embedded sdcc mcs51 Add support for Intel mcs51 添加对英特尔 mcs51 的支持
1355 dev-embedded sdcc non-free Enable non-free runtime library parts 启用非自由运行时库部件
1356 dev-embedded sdcc packihx Enable Intel HEX files pack utility 启用英特尔 HEX 文件包实用程序
1357 dev-embedded sdcc pdk13 Add support for PDK13 添加对 PDK13 的支持
1358 dev-embedded sdcc pdk14 Add support for PDK14 添加对 PDK14 的支持
1359 dev-embedded sdcc pdk15 Add support for PDK15 添加对 PDK15 的支持
1360 dev-embedded sdcc pdk16 Add support for PDK16 添加对 PDK16 的支持
1361 dev-embedded sdcc pic14 Add support for Microchip 14 bits PICs 添加对 Microchip 14 位 PIC 的支持
1362 dev-embedded sdcc pic16 Add support for Microchip 16 bits PICs 添加对 Microchip 16 位 PIC 的支持
1363 dev-embedded sdcc r2k Add support for Rabbit 2000 添加对 Rabbit 2000 的支持
1364 dev-embedded sdcc r2ka Add support for Rabbit 2000A 添加对 Rabbit 2000A 的支持
1365 dev-embedded sdcc r3ka Add support for Rabbit 3000A 添加对 Rabbit 3000A 的支持
1366 dev-embedded sdcc s08 Add support for Freescale/Motorola S08 添加对飞思卡尔/摩托罗拉 S08 的支持
1367 dev-embedded sdcc sdbinutils Enable SDCC library archive utilities sdar, sdranlib, sdnm 启用 SDCC 库归档实用程序 sdar、sdranlib、sdnm
1368 dev-embedded sdcc sdcdb Enable SDCC source level debugger 启用 SDCC 源代码级调试器
1369 dev-embedded sdcc sdcpp Enable SDCC preprocessor based on GCC cpp 启用基于 GCC cpp 的 SDCC 预处理器
1370 dev-embedded sdcc stm8 Add support for STMicroelectronics STM8 添加对意法半导体STM8的支持
1371 dev-embedded sdcc tlcs90 Add support for TLCS-90 添加对 TLCS-90 的支持
1372 dev-embedded sdcc ucsim Enable software simulator for microcontrollers 为微控制器启用软件模拟器
1373 dev-embedded sdcc z180 Add support for Zilog Z180 添加对 Zilog Z180 的支持
1374 dev-embedded sdcc z80 Add support for Zilog Z80 添加对 Zilog Z80 的支持
1375 dev-embedded sdcc z80n Add support for Zilog Z80N 添加对 Zilog Z80N 的支持
1376 dev-embedded u-boot-tools envtools Build only the target-side environment tools 仅构建目标端环境工具
1377 dev-embedded urjtag ftd2xx Enable support for USB FTDI chips via dev-embedded/libftd2xx 通过 dev-embedded/libftd2xx 启用对 USB FTDI 芯片的支持
1378 dev-embedded urjtag ftdi Enable support for USB FTDI chips via dev-embedded/libftdi 通过 dev-embedded/libftdi 启用对 USB FTDI 芯片的支持
1379 dev-games aseprite bundled-libs Use the upstream provided bundled version of allegro 4.4.2 使用上游提供的 allegro 4.4.2 捆绑版本
1380 dev-games aseprite gtk3 Enable support for the experimental native GTK File Dialog 启用对实验性原生 GTK 文件对话框的支持
1381 dev-games cegui devil Build the DevIL based ImageCodec module 构建基于 DevIL 的 ImageCodec 模块
1382 dev-games cegui freeimage Build the FreeImage based ImageCodec module 构建基于 FreeImage 的 ImageCodec 模块
1383 dev-games cegui irrlicht Enable the Irrlicht renderer 启用 Irrlicht 渲染器
1384 dev-games cegui ogre Enable the OGRE renderer 启用 OGRE 渲染器
1385 dev-games cegui tinyxml Enable the Tiny XML parser module 启用 Tiny XML 解析器模块
1386 dev-games cegui xerces-c Enable the Xerces-C++ XML parser module 启用 Xerces-C++ XML 解析器模块
1387 dev-games cegui zip Enable the Minizip resource provider 启用 Minizip 资源提供程序
1388 dev-games guichan allegro Build the Allegro frontend 构建 Allegro 前端
1389 dev-games mygui l10n_ru Install some additional russian docs if 'doc' useflag enabled 如果启用了“doc”useflag,请安装一些额外的俄语文档
1390 dev-games mygui ogre Use the ogre render subsystem. (cannot combine with opengl) 使用 ogre 渲染子系统。 (不能与opengl结合)
1391 dev-games mygui opengl Use the opengl render subsystem. (cannot combine with ogre) 使用 opengl 渲染子系统。 (不能与食人魔结合)
1392 dev-games mygui plugins Build MyGUI plugins 构建 MyGUI 插件
1393 dev-games mygui samples Install MyGUI demos (needs ogre USE flag) 安装 MyGUI 演示(需要 ogre USE 标志)
1394 dev-games mygui tools Build the tools for development 构建开发工具
1395 dev-games ode double-precision more precise calculations at the expense of speed 以速度为代价进行更精确的计算
1396 dev-games ode gyroscopic enable gyroscopic term (may cause instability) 启用陀螺仪项(可能导致不稳定)
1397 dev-games ogre assimp Use media-libs/assimp to import assets from 3D files 使用 media-libs/assimp 从 3D 文件导入资源
1398 dev-games ogre boost Enable boost support 启用升压支持
1399 dev-games ogre cache Enable GL state cache support 启用 GL 状态缓存支持
1400 dev-games ogre cg NVIDIA toolkit plugin NVIDIA 工具包插件
1401 dev-games ogre deprecated Build deprecated component 'HLMS' and nodeless positioning of Lights and Cameras. 构建已弃用的组件“HLMS”以及灯光和相机的无节点定位。
1402 dev-games ogre double-precision More precise calculations at the expense of speed 以速度为代价进行更精确的计算
1403 dev-games ogre egl Use egl instead of glx 使用 egl 而不是 glx
1404 dev-games ogre fine-granularity Enable fine light mask granularity. This impacts on performance and should not be enabled unless an application really needs it. 启用精细的光蒙版粒度。这会影响性能,除非应用程序确实需要它,否则不应启用它。
1405 dev-games ogre freeimage Support images via media-libs/freeimage 通过 media-libs/freeimage 支持图片
1406 dev-games ogre gl3plus Build OpenGL 3+ RenderSystem (EXPERIMENTAL) 构建 OpenGL 3+ 渲染系统(实验)
1407 dev-games ogre gles2 Build OpenGL ES 2.x RenderSystem 构建 OpenGL ES 2.x 渲染系统
1408 dev-games ogre gles3 Enable OpenGL ES 3.x Features 启用 OpenGL ES 3.x 功能
1409 dev-games ogre json Use dev-libs/rapidjson (needed by Hlms JSON materials) 使用 dev-libs/rapidjson(Hlms JSON 材料需要)
1410 dev-games ogre legacy-animations Use the skeletal animation from 1.x. It's much slower, but the new system is still experimental. 使用 1.x 中的骨骼动画。它要慢得多,但新系统仍处于试验阶段。
1411 dev-games ogre ois Pull in Object-oriented Input System library dev-games/ois for samples 为示例引入面向对象的输入系统库 dev-games/ois
1412 dev-games ogre poco When USE=threads, use poco for threading 当 USE=threads 时,使用 poco 进行线程处理
1413 dev-games ogre resman-pedantic Resource Manager PEDANTIC : require an explicit resource group. Case sensitive lookup. Some demos might not work with this setting. (default: case-insensitive + sensitive lookup in all groups) 资源管理器 PEDANTIC :需要一个明确的资源组。区分大小写的查找。某些演示可能不适用于此设置。 (默认:不区分大小写+所有组中的敏感查找)
1414 dev-games ogre tbb When USE=threads, use tbb for threading 当 USE=threads 时,使用 tbb 进行线程
1415 dev-games ogre tools Build and install AssimpConverter (assimp USE flag is enabled), MeshUpgrader, VRMLConverter and XMLConverter 构建和安装 AssimpConverter(启用 assimp USE 标志)、MeshUpgrader、VRMLConverter 和 XMLConverter
1416 dev-games openscenegraph collada Enable DAE file support via dev-libs/collada-dom 通过 dev-libs/collada-dom 启用 DAE 文件支持
1417 dev-games openscenegraph dicom Enable DICOM medical image file support via sci-libs/dcmtk 通过 sci-libs/dcmtk 启用 DICOM 医学图像文件支持
1418 dev-games openscenegraph egl Enable EGL support 启用 EGL 支持
1419 dev-games openscenegraph fox Build examples using x11-libs/fox library 使用 x11-libs/fox 库构建示例
1420 dev-games openscenegraph gdal Enable support for sci-libs/gdal library 启用对 sci-libs/gdal 库的支持
1421 dev-games openscenegraph las Enable support for geospatial data LAS LiDAR format using sci-geosciences/liblas 使用 sci-geosciences/liblas 启用对地理空间数据 LAS LiDAR 格式的支持
1422 dev-games openscenegraph openinventor Build OpenInventor plugin 构建 OpenInventor 插件
1423 dev-games openscenegraph osgapps Build osg applications 构建 osg 应用程序
1424 dev-games openscenegraph sdl2 Use media-libs/libsdl2 additionally to media-libs/libsdl 在 media-libs/libsdl 之外使用 media-libs/libsdl2
1425 dev-games openscenegraph xrandr Enable support for the X xrandr extension 启用对 X xrandr 扩展的支持
1426 dev-games openscenegraph-openmw collada Enable DAE file support via dev-libs/collada-dom 通过 dev-libs/collada-dom 启用 DAE 文件支持
1427 dev-games openscenegraph-openmw dicom Enable DICOM medical image file support via sci-libs/dcmtk 通过 sci-libs/dcmtk 启用 DICOM 医学图像文件支持
1428 dev-games openscenegraph-openmw egl Enable EGL support 启用 EGL 支持
1429 dev-games openscenegraph-openmw fox Build examples using x11-libs/fox library 使用 x11-libs/fox 库构建示例
1430 dev-games openscenegraph-openmw gdal Enable support for sci-libs/gdal library 启用对 sci-libs/gdal 库的支持
1431 dev-games openscenegraph-openmw las Enable support for geospatial data LAS LiDAR format using sci-geosciences/liblas 使用 sci-geosciences/liblas 启用对地理空间数据 LAS LiDAR 格式的支持
1432 dev-games openscenegraph-openmw openinventor Build OpenInventor plugin 构建 OpenInventor 插件
1433 dev-games openscenegraph-openmw osgapps Build osg applications 构建 osg 应用程序
1434 dev-games openscenegraph-openmw sdl2 Use media-libs/libsdl2 additionally to media-libs/libsdl 在 media-libs/libsdl 之外使用 media-libs/libsdl2
1435 dev-games openscenegraph-openmw xrandr Enable support for the X xrandr extension 启用对 X xrandr 扩展的支持
1436 dev-games physfs 7zip Enable 7zip/lzma archive support 启用 7zip/lzma 存档支持
1437 dev-games physfs grp Enable Build Engine GRP archive support 启用构建引擎 GRP 存档支持
1438 dev-games physfs hog Enable Descent I/II HOG archive support 启用 Descent I/II HOG 存档支持
1439 dev-games physfs iso Enable ISO9660 file support 启用 ISO9660 文件支持
1440 dev-games physfs mvl Enable Descent I/II MVL archive support 启用 Descent I/II MVL 存档支持
1441 dev-games physfs qpak Enable Quake I/II QPAK archive support 启用 Quake I/II QPAK 存档支持
1442 dev-games physfs slb Enable Independence War SLB archive support 启用独立战争 SLB 存档支持
1443 dev-games physfs vdf Enable Gothic/Gothic II VDF archive support 启用 Gothic/Gothic II VDF 存档支持
1444 dev-games physfs wad Enable Doom WAD archive support 启用 Doom WAD 存档支持
1445 dev-games simgear dns Enable DNS resolver via net-libs/udns 通过 net-libs/udns 启用 DNS 解析器
1446 dev-games simgear gdal Enable alternative terrain engine based on pagedLOD via sci-libs/gdal 通过 sci-libs/gdal 启用基于 pagedLOD 的替代地形引擎
1447 dev-games simgear subversion Enable terrasync scenery downloader 启用 terrasync 风景下载器
1448 dev-haskell abstract-deque usecas Enable the reference implementation to use hardware compare-and-swap. 启用参考实现以使用硬件比较和交换。
1449 dev-haskell aeson cffi Controls whether to include c-ffi bits or pure haskell. Default to False for security. 控制是否包含 c-ffi 位或纯 haskell。出于安全考虑,默认为 False。
1450 dev-haskell aeson fast compile without optimizations 编译不优化
1451 dev-haskell aeson-pretty lib-only don't build 'aeson-pretty' executable. 不要构建“aeson-pretty”可执行文件。
1452 dev-haskell ansi-terminal example Build the example application. 构建示例应用程序。
1453 dev-haskell ansi-wl-pprint example Build the example application. 构建示例应用程序。
1454 dev-haskell attoparsec-iso8601 developer operate in developer mode 以开发者模式运行
1455 dev-haskell attoparsec-iso8601 fast compile without optimizations 编译不优化
1456 dev-haskell authenticate network-uri Get Network.URI from the network-uri package 从 network-uri 包中获取 Network.URI
1457 dev-haskell aws network-3 Use network-3 使用网络 3
1458 dev-haskell bifunctors semigroups You can disable the use of the `semigroups` package using `-f-semigroups`. Disabing this is an unsupported configuration, but it may be useful for accelerating builds in sandboxes for expert users. 您可以使用 `-f-semigroups` 禁用 `semigroups` 包的使用。禁用此配置不受支持,但它可能有助于为专家用户加速沙箱中的构建。
1459 dev-haskell bifunctors tagged You can disable the use of the `tagged` package using `-f-tagged`. Disabing this is an unsupported configuration, but it may be useful for accelerating builds in sandboxes for expert users. 您可以使用 `-f-tagged` 禁用 `tagged` 包的使用。禁用此配置不受支持,但它可能有助于为专家用户加速沙箱中的构建。
1460 dev-haskell biosff fclip Build the 'fclip' executable. 构建“fclip”可执行文件。
1461 dev-haskell biosff flower Build the 'flower' executable. 构建“花”可执行文件。
1462 dev-haskell biosff frecover Build the 'frecover' executable. 构建“frecover”可执行文件。
1463 dev-haskell bytedump executable build executable file 构建可执行文件
1464 dev-haskell bytes test-doctests Enable the doctest suite when using the enable-tests option for cabal. 使用 cabal 的 enable-tests 选项时启用 doctest 套件。
1465 dev-haskell c2hs regression run regression tests 运行回归测试
1466 dev-haskell cabal-install native-dns Enable use of the resolv and windns packages for performing DNS lookups 启用使用 resolv 和 windns 包来执行 DNS 查找
1467 dev-haskell chaselev-deque debug Enable the extra internal checks. 启用额外的内部检查。
1468 dev-haskell chell color-output use colors in program output 在程序输出中使用颜色
1469 dev-haskell chimera representable Define Representable instance from adjunctions package 从附件包中定义 Representable 实例
1470 dev-haskell citeproc executable Build citeproc executable 构建 citeproc 可执行文件
1471 dev-haskell citeproc icu Use Haskell bindings to the ICU library 使用 Haskell 绑定到 ICU 库
1472 dev-haskell cmark system-cmark use app-text/cmark instead of bundled copy 使用 app-text/cmark 而不是捆绑副本
1473 dev-haskell cmdargs quotation Build quote module 建立报价模块
1474 dev-haskell cmdargs testprog Build the test program 构建测试程序
1475 dev-haskell comonad indexed-traversable You can disable the use of the `indexed-traversable` package using `-f-indexed-traversable`. Disabling this is an unsupported configuration, but it may be useful for accelerating builds in sandboxes for expert users. If disabled we will not supply instances of `FunctorWithIndex` 您可以使用 `-f-indexed-traversable` 禁用`indexed-traversable` 包的使用。禁用此配置不受支持,但它可能有助于为专家用户加速沙箱中的构建。如果禁用,我们将不提供 `FunctorWithIndex` 的实例
1476 dev-haskell contravariant semigroups You can disable the use of the `semigroups` package using `-f-semigroups`. Disabling this is an unsupported configuration, but it may be useful for accelerating builds in sandboxes for expert users. 您可以使用 `-f-semigroups` 禁用 `semigroups` 包的使用。禁用此配置不受支持,但它可能有助于为专家用户加速沙箱中的构建。
1477 dev-haskell contravariant statevar You can disable the use of the `StateVar` package using `-f-StateVar`. Disabling this is an unsupported configuration, but it may be useful for accelerating builds in sandboxes for expert users. 您可以使用 `-f-StateVar` 禁用`StateVar` 包的使用。禁用此配置不受支持,但它可能有助于为专家用户加速沙箱中的构建。
1478 dev-haskell contravariant tagged You can disable the use of the `tagged` package on older versons of GHC using `-f-tagged`. Disabling this is an unsupported configuration, but it may be useful for accelerating builds in sandboxes for expert users. 您可以使用 `-f-tagged` 在旧版 GHC 上禁用`tagged` 包的使用。禁用此配置不受支持,但它可能有助于为专家用户加速沙箱中的构建。
1479 dev-haskell criterion embed-data-files Embed the data files in the binary for a relocatable executable 将数据文件嵌入二进制文件以获得可重定位的可执行文件
1480 dev-haskell crypto-api all-cpolys Build all the CMAC polynomes up to 10000 bits instead of just the usual ones 构建高达 10000 位的所有 CMAC 多项式,而不仅仅是通常的多项式
1481 dev-haskell cryptonite integer-gmp Whether or not to use GMP for some functions 某些功能是否使用 GMP
1482 dev-haskell entropy halvm Build for the HaLVM. 为 HaLVM 构建。
1483 dev-haskell filestore maxcount Make use of a recent (>= 2.3.0) Darcs feature which vastly improves the performance of 'latest'. You should disable this flag if you plan to use gitit with an older version of Darcs, or 'latest' will raise an error. 利用最近的 (>= 2.3.0) Darcs 功能,它极大地提高了“最新”的性能。如果您打算将 gitit 与较旧版本的 Darcs 一起使用,则应禁用此标志,否则 'latest' 将引发错误。
1484 dev-haskell foundation experimental enable building experimental features, known as highly unstable or without good support cross-platform 允许构建实验性功能,称为高度不稳定或没有良好的跨平台支持
1485 dev-haskell glib closure-signals Use the the GClosure-based signals implementation. 使用基于 GClsure 的信号实现。
1486 dev-haskell gtk deprecated Include definitions in this library that are considered obsolete. 在此库中包含被认为已过时的定义。
1487 dev-haskell gtk fmode-binary Set the default file translation mode for file I/O operations to _O_BINARY. 将文件 I/O 操作的默认文件转换模式设置为 _O_BINARY。
1488 dev-haskell gtk gio Depend on GIO package, thereby enabling certain features. 依赖 GIO 包,从而启用某些功能。
1489 dev-haskell gtk2hs-buildtools closuresignals Use the the GClosure-based signals implementation. 使用基于 GClsure 的信号实现。
1490 dev-haskell gtk3 fmode-binary Set the default file translation mode for file I/O operations to _O_BINARY. 将文件 I/O 操作的默认文件转换模式设置为 _O_BINARY。
1491 dev-haskell gtk3 gio Depend on GIO package, thereby enabling certain features. 依赖 GIO 包,从而启用某些功能。
1492 dev-haskell hackage-security lukko Use @lukko@ for file-locking, otherwise use @GHC.IO.Handle.Lock@ 使用@lukko@ 进行文件锁定,否则使用@GHC.IO.Handle.Lock@
1493 dev-haskell hackage-security network-uri Get Network.URI from the network-uri package. 从 network-uri 包中获取 Network.URI。
1494 dev-haskell hakyll buildwebsite Build the hakyll website 建立 hakyll 网站
1495 dev-haskell hakyll checkexternal Include external link checking 包括外部链接检查
1496 dev-haskell hakyll previewserver Include the preview server 包括预览服务器
1497 dev-haskell hakyll usepandoc Include Pandoc support 包括 Pandoc 支持
1498 dev-haskell hakyll watchserver wait for filesystem changes and rebuild pages 等待文件系统更改并重建页面
1499 dev-haskell happstack-server network-uri Get Network.URI from the network-uri package 从 network-uri 包中获取 Network.URI
1500 dev-haskell hashtables bounds-checking if on, use bounds-checking array accesses 如果打开,则使用边界检查数组访问
1501 dev-haskell hashtables detailed-profiling add detailed profiling information to profiled build-depends 将详细的分析信息添加到分析的 build-depends
1502 dev-haskell hashtables portable if on, use only pure Haskell code and no GHC extensions. 如果打开,则仅使用纯 Haskell 代码而不使用 GHC 扩展。
1503 dev-haskell hashtables unsafe-tricks turn on unsafe GHC tricks 打开不安全的 GHC 技巧
1504 dev-haskell haskeline terminfo Use the terminfo package for POSIX consoles. 对 POSIX 控制台使用 terminfo 包。
1505 dev-haskell hdbc-sqlite3 splitbase Choose the new smaller, split-up package. 选择新的更小的拆分包。
1506 dev-haskell highlighting-kate executable Build the Highlight executable. 构建 Highlight 可执行文件。
1507 dev-haskell highlighting-kate pcre-light Use the pcre-light library instead of regex-pcre-builtin. 使用 pcre-light 库而不是 regex-pcre-builtin。
1508 dev-haskell hlint gpl Use GPL libraries, specifically hscolour 使用 GPL 库,特别是 hscolour
1509 dev-haskell hlint hsyaml Use HsYAML instead of yaml 使用 HsYAML 代替 yaml
1510 dev-haskell hlint threaded Build with support for multithreaded execution 构建支持多线程执行
1511 dev-haskell hps build-exec Build the `hps-fractals' executable 构建“hps-fractals”可执行文件
1512 dev-haskell hs3 network-uri Get Network.URI from the network-uri package 从 network-uri 包中获取 Network.URI
1513 dev-haskell hslogger network-3 Use network-3 使用网络 3
1514 dev-haskell hslua hardcode-reg-keys Don't use CAPI to determine the names of certain registry key names but Use hard coded values for instead. This flag is required when compiling against Lua 5.3.3 or earlier, as those do not expose the necessary information in the @lauxlib.h@ header file. 不要使用 CAPI 来确定某些注册表项名称的名称,而是使用硬编码值。在针对 Lua 5.3.3 或更早版本进行编译时需要此标志,因为它们不会在 @lauxlib.h@ 头文件中公开必要的信息。
1515 dev-haskell hsopenssl fast-bignum Enable fast moving of bignums between OpenSSL and GMP (GHC Only) 在 OpenSSL 和 GMP 之间实现 bignums 的快速移动(仅限 GHC)
1516 dev-haskell http conduit10 Use version 1.0.x or below of the conduit package (for the test suite). 使用 1.0.x 或更低版本的管道包(用于测试套件)。
1517 dev-haskell http network-uri Get Network.URI from the network-uri package. 从 network-uri 包中获取 Network.URI。
1518 dev-haskell http-client network-uri Get Network.URI from the network-uri package. 从 network-uri 包中获取 Network.URI。
1519 dev-haskell http-streams network-uri Get Network.URI from the network-uri package. 从 network-uri 包中获取 Network.URI。
1520 dev-haskell httpd-shed buildexamples Build example executables. 构建示例可执行文件。
1521 dev-haskell httpd-shed network-bsd Get Network.BSD from the network-bsd package. 从 network-bsd 包中获取 Network.BSD。
1522 dev-haskell httpd-shed network-uri Get Network.URI from the network-uri package. 从 network-uri 包中获取 Network.URI。
1523 dev-haskell io-streams network Include network support 包括网络支持
1524 dev-haskell io-streams zlib Include zlib support 包括 zlib 支持
1525 dev-haskell json mapdict Encode Haskell maps as JSON dicts 将 Haskell 映射编码为 JSON 字典
1526 dev-haskell json parsec Add support for parsing with Parsec 添加对 Parsec 解析的支持
1527 dev-haskell json pretty Add support for using pretty printing combinators 添加对使用漂亮打印组合器的支持
1528 dev-haskell language-dot executable Build the `ppdot' executable 构建“ppdot”可执行文件
1529 dev-haskell lens benchmark-uniplate Enable benchmarking against Neil Mitchell's uniplate library for comparative performance analysis. Defaults to being turned off to avoid the extra dependency. 针对 Neil Mitchell 的单板库启用基准测试以进行比较性能分析。默认关闭以避免额外的依赖。
1530 dev-haskell lens dump-splices Build and run the doctests test-suite. 构建并运行 doctests 测试套件。
1531 dev-haskell lens inlining Generate inline pragmas when using template-haskell. This defaults to enabled, but you can to shut it off to benchmark the relative performance impact, or as last ditch effort to address compile errors resulting from the myriad versions of template-haskell that all purport to be 2.8. 使用 template-haskell 时生成内联编译指示。这默认为启用,但您可以将其关闭以对相对性能影响进行基准测试,或者作为最后的努力来解决由无数版本的 template-haskell 导致的编译错误,这些版本都声称是 2.8。
1532 dev-haskell lens j Attempt a parallel build with GHC 7.8. 尝试使用 GHC 7.8 进行并行构建。
1533 dev-haskell lens safe Disallow unsafeCoerce 禁止不安全强制
1534 dev-haskell lens trustworthy Assert that we are trustworthy when we can 在可能的情况下断言我们是值得信赖的
1535 dev-haskell libyaml no-unicode Don't enable unicode output. Instead, unicode characters will be escaped. 不要启用 unicode 输出。相反,Unicode 字符将被转义。
1536 dev-haskell libyaml system-libyaml Use the system-wide libyaml instead of the bundled copy 使用系统范围的 libyaml 而不是捆绑的副本
1537 dev-haskell linear template-haskell You can disable the use of the `template-haskell` package using `-f-template-haskell`. Disabling this is an unsupported configuration, but it may be useful for accelerating builds in sandboxes for expert users. 您可以使用 `-f-template-haskell` 禁用`template-haskell` 包的使用。禁用此配置不受支持,但它可能有助于为专家用户加速沙箱中的构建。
1538 dev-haskell lukko ofd-locking Enable open file descriptor locking. Available on Linux (kernel 3.15, released Jun 8, 2014). 启用打开文件描述符锁定。在 Linux 上可用(内核 3.15,2014 年 6 月 8 日发布)。
1539 dev-haskell missingh network-3 Use network-3 使用网络 3
1540 dev-haskell mod semirings Derive semiring instances 派生半环实例
1541 dev-haskell monad-logger template-haskell Enable Template Haskell support. 启用模板 Haskell 支持。
1542 dev-haskell monad-par chaselev Use Chase-Lev Deques for higher-perf work-stealing. 使用 Chase-Lev Deques 进行更高性能的工作窃取。
1543 dev-haskell nats binary enable binary instances 启用二进制实例
1544 dev-haskell nats hashable enable hashable instances 启用可散列实例
1545 dev-haskell nats template-haskell enable template_haskell 启用 template_haskell
1546 dev-haskell netlink generators build the generator scripts for constants 为常量构建生成器脚本
1547 dev-haskell network-data small-base Build the split-up base package. 构建拆分的基础包。
1548 dev-haskell optparse-simple build-example Build the example executable 构建示例可执行文件
1549 dev-haskell pandoc-citeproc bibutils Use Chris Putnam's Bibutils. 使用 Chris Putnam 的 Bibutils。
1550 dev-haskell pandoc-citeproc debug Turn on debug tracing. 打开调试跟踪。
1551 dev-haskell pandoc-citeproc embed-data-files Embed locale files into the library (needed for windows packaging) 将语言环境文件嵌入到库中(windows 打包需要)
1552 dev-haskell pandoc-citeproc static Use static linking. 使用静态链接。
1553 dev-haskell pandoc-citeproc unicode-collation Use Haskell bindings to the International Components for Unicode (ICU) libraries 使用 Haskell 绑定到 International Components for Unicode (ICU) 库
1554 dev-haskell parsec-numbers parsec1 use dev-haskell/parsec1 instead of dev-haskell/parsec 使用 dev-haskell/parsec1 而不是 dev-haskell/parsec
1555 dev-haskell parsers attoparsec Enable the use of the `attoparsec` package 启用 `attoparsec` 包的使用
1556 dev-haskell parsers parsec Enable the use of the `parsec` package 启用 `parsec` 包的使用
1557 dev-haskell persistent-sqlite build-sanity-exe Build a sanity check test executable. 构建健全性检查测试可执行文件。
1558 dev-haskell pointed comonad optional instances 可选实例
1559 dev-haskell pointed containers optional instances 可选实例
1560 dev-haskell pointed kan-extensions optional instances 可选实例
1561 dev-haskell pointed semigroupoids optional instances 可选实例
1562 dev-haskell pointed semigroups optional instances 可选实例
1563 dev-haskell pointed stm optional instances 可选实例
1564 dev-haskell pointed tagged optional instances 可选实例
1565 dev-haskell pointed transformers optional instances 可选实例
1566 dev-haskell pointed unordered-containers optional instances 可选实例
1567 dev-haskell publicsuffixlist create export Network.PublicSuffixList.Create module 导出 Network.PublicSuffixList.Create 模块
1568 dev-haskell publicsuffixlist runtimelist read suffix list from dist at startup instead of embedding list into library 在启动时从 dist 读取后缀列表,而不是将列表嵌入到库中
1569 dev-haskell quickcheck template-haskell Enable additional test modules requiring Template Haskell support. 启用需要模板 Haskell 支持的其他测试模块。
1570 dev-haskell quickcheck-classes aeson Enable the use of the `aeson` package. This may be useful for accelerating builds in sandboxes for expert users. 启用 `aeson` 包的使用。这对于加速专家用户在沙箱中的构建可能很有用。
1571 dev-haskell quickcheck-classes binary-laws Include infrastructure for testing class laws of binary type constructors. Disabling `unary-laws` while keeping `binary-laws` enabled is an unsupported configuration. 包括用于测试二进制类型构造函数的类法则的基础设施。在启用 `binary-laws` 的同时禁用 `unary-laws` 是不受支持的配置。
1572 dev-haskell quickcheck-classes semigroupoids Enable the use of the `semigroupoids` package. This may be useful for accelerating builds in sandboxes for expert users. 启用 `semigroupoids` 包的使用。这对于加速专家用户在沙箱中的构建可能很有用。
1573 dev-haskell quickcheck-classes semirings Enable the use of the `semirings` package. This may be useful for accelerating builds in sandboxes for expert users. 启用 `semirings` 包的使用。这对于加速专家用户在沙箱中的构建可能很有用。
1574 dev-haskell quickcheck-classes unary-laws Include infrastructure for testing class laws of unary type constructors. 包括用于测试一元类型构造函数的类法则的基础设施。
1575 dev-haskell quickcheck-classes vector Enable the use of the `vector` package. This may be useful for accelerating builds in sandboxes for expert users. 启用“vector”包的使用。这对于加速专家用户在沙箱中的构建可能很有用。
1576 dev-haskell quickcheck-classes-base binary-laws Include infrastructure for testing class laws of binary type constructors. Disabling `unary-laws` while keeping `binary-laws` enabled is an unsupported configuration. 包括用于测试二进制类型构造函数的类法则的基础设施。在启用 `binary-laws` 的同时禁用 `unary-laws` 是不受支持的配置。
1577 dev-haskell quickcheck-classes-base unary-laws Include infrastructure for testing class laws of unary type constructors. 包括用于测试一元类型构造函数的类法则的基础设施。
1578 dev-haskell recaptcha network-uri Get Network.URI from the network-uri package. 从 network-uri 包中获取 Network.URI。
1579 dev-haskell rfc5051 mkunicodedata build codes generator itself 构建代码生成器本身
1580 dev-haskell sandi conduit Build with conduit 用导管建造
1581 dev-haskell semigroupoid-extras profunctors You can disable the use of the `profunctors` package using `-f-profunctors`. Disabing this is an unsupported configuration, but it may be useful for accelerating builds in sandboxes for expert users. 您可以使用 `-f-profunctors` 禁用 `profunctors` 包的使用。禁用此配置不受支持,但它可能有助于为专家用户加速沙箱中的构建。
1582 dev-haskell semigroupoids contravariant You can disable the use of the `contravariant` package using `-f-contravariant`. Disabling this is an unsupported configuration, but it may be useful for accelerating builds in sandboxes for expert users. If disabled we will not supply instances of `Contravariant` 您可以使用 `-f-contravariant` 禁用 `convariant` 包的使用。禁用此配置不受支持,但它可能有助于为专家用户加速沙箱中的构建。如果禁用,我们将不提供“逆变”的实例
1583 dev-haskell semigroupoids distributive You can disable the use of the `distributive` package using `-f-distributive`. Disabling this is an unsupported configuration, but it may be useful for accelerating builds in sandboxes for expert users. If disabled we will not supply instances of `Distributive` 您可以使用 `-f-distributive` 禁用`distributive` 包的使用。禁用此配置不受支持,但它可能有助于为专家用户加速沙箱中的构建。如果禁用,我们将不提供“分布式”的实例
1584 dev-haskell semigroupoids tagged You can disable the use of the `tagged` package using `-f-tagged`. Disabing this is an unsupported configuration, but it may be useful for accelerating builds in sandboxes for expert users. 您可以使用 `-f-tagged` 禁用 `tagged` 包的使用。禁用此配置不受支持,但它可能有助于为专家用户加速沙箱中的构建。
1585 dev-haskell semigroupoids unordered-containers Enable the use of the `unordered-containers` package (and also its dependency `hashable`). Disabling this is an unsupported configuration, but it may be useful for accelerating builds in sandboxes for expert users. 启用 `unordered-containers` 包(以及它的依赖项 `hashable`)。禁用此配置不受支持,但它可能有助于为专家用户加速沙箱中的构建。
1586 dev-haskell semigroups binary provide instances for binary package 为二进制包提供实例
1587 dev-haskell semigroups transformers provide instances for transformers package. 提供变压器包的实例。
1588 dev-haskell semirings containers Enable the use of the `containers` package. Disabling this may be useful for accelerating builds in sandboxes for expert users. 启用“容器”包的使用。禁用此功能可能有助于为专家用户加速沙盒中的构建。
1589 dev-haskell semirings hashable Enisable the use of the `hashable` package. Disabling this may be useful for accelerating builds in sandboxes for expert users. Note: `-hashable` implies `-unordered-containers`, as we are necessarily not able to supply those instances as well. 启用 `hashable` 包的使用。禁用此功能可能有助于为专家用户加速沙盒中的构建。注意:`-hashable` 意味着`-unordered-containers`,因为我们也不一定能够提供这些实例。
1590 dev-haskell semirings unordered-containers Enable the use of the `unordered-containers` package. Disabling this may be useful for accelerating builds in sandboxes for expert users. 启用使用 `unordered-containers` 包。禁用此功能可能有助于为专家用户加速沙盒中的构建。
1591 dev-haskell sendfile portable Explicitly enable portable sendfile support (implemented in Haskell) 显式启用可移植的 sendfile 支持(在 Haskell 中实现)
1592 dev-haskell sha exe Build a sha1 and a sha384 executable similar to 'md5sum'. 构建类似于 'md5sum' 的 sha1 和 sha384 可执行文件。
1593 dev-haskell shakespeare test-coffee Render tests through coffeescript render function. 通过 coffeescript 渲染函数渲染测试。
1594 dev-haskell shakespeare test-export Test export. 测试导出。
1595 dev-haskell shakespeare test-roy Render tests through roy render function. 通过 roy 渲染函数渲染测试。
1596 dev-haskell shelly lifted run the tests against Shelly.Lifted 针对 Shelly.Lifted 运行测试
1597 dev-haskell simple-sendfile allow-bsd Allow use of BSD sendfile (disable on GNU/kFreeBSD) 允许使用 BSD 发送文件(在 GNU/kFreeBSD 上禁用)
1598 dev-haskell skein big-endian When manually selecting the endianness, use big-endian (default is little-endian). 手动选择字节序时,使用 big-endian(默认为 little-endian)。
1599 dev-haskell skein force-endianness Use a manually selected endian when compiling (see flag 'big-endian'). 编译时使用手动选择的字节序(参见标志“big-endian”)。
1600 dev-haskell skein reference Use the reference implementation instead of the optimized one. 使用参考实现而不是优化的实现。
1601 dev-haskell skylighting executable Build the skylighting executable. 构建天窗可执行文件。
1602 dev-haskell skylighting-core executable Build the skylighting executable. 构建天窗可执行文件。
1603 dev-haskell snap-core portable No non-haskell unportable code. 没有非 Haskell 不可移植的代码。
1604 dev-haskell snap-server build-pong Build a server that just returns "PONG” 构建一个只返回“PONG”的服务器
1605 dev-haskell snap-server openssl enable https support using dev-haskell/hsopenssl 使用 dev-haskell/hsopenssl 启用 https 支持
1606 dev-haskell snap-server portable no non-haskell unportable code. 没有非 Haskell 不可移植的代码。
1607 dev-haskell splitmix optimised-mixer Use JavaScript for mix32 为 mix32 使用 JavaScript
1608 dev-haskell splitmix random Providen RandomGen SMGen instance 提供的 RandomGen SMGen 实例
1609 dev-haskell stack developer-mode By default, should extra developer information be output? 默认情况下,是否应该输出额外的开发者信息?
1610 dev-haskell store-core force-alignment No description 没有说明
1611 dev-haskell texmath executable Compile test executable. 编译测试可执行文件。
1612 dev-haskell texmath network-uri Get Network.URI from the network-uri package. 从 network-uri 包中获取 Network.URI。
1613 dev-haskell text-short asserts Enable runtime-checks via 'assert' 通过“断言”启用运行时检查
1614 dev-haskell thyme bug-for-bug bug-for-bug compatibility with time bug-for-bug 与时间的兼容性
1615 dev-haskell thyme lens use the full lens package 使用完整的镜头包
1616 dev-haskell thyme show-internal instance Show of internal representation 内部表示的实例展示
1617 dev-haskell tls compat Accept SSLv2 compatible handshake. 接受与 SSLv2 兼容的握手。
1618 dev-haskell tls network Use the base network library. 使用基本网络库。
1619 dev-haskell transformers-base orphaninstances Build instances for orphan datatypes. 为孤立数据类型构建实例。
1620 dev-haskell unix-compat old-time build against old-time package 针对旧包构建
1621 dev-haskell uri-encode network-uri Get Network.URI from the network-uri package. 从 network-uri 包中获取 Network.URI。
1622 dev-haskell uri-encode tools Build executables. 构建可执行文件。
1623 dev-haskell uuagc loag Use MiniSat as external SAT-solver to schedule all Linear Ordered AGs 使用 MiniSat 作为外部 SAT 求解器来调度所有线性有序 AG
1624 dev-haskell vector boundschecks Enable bounds checking 启用边界检查
1625 dev-haskell vector internalchecks Enable internal consistency checks at the cost of a significant performance penalty 以显着性能损失为代价启用内部一致性检查
1626 dev-haskell vector unsafechecks Enable bounds checking in unsafe operations at the cost of a significant performance penalty 在不安全的操作中启用边界检查,代价是显着的性能损失
1627 dev-haskell vector-algorithms bench Build a benchmarking program. 建立一个基准测试程序。
1628 dev-haskell vector-algorithms boundschecks Enable bounds checking. 启用边界检查。
1629 dev-haskell vector-algorithms internalchecks Enable internal consistency checks at the cost of a significant performance penalty. 以显着性能损失为代价启用内部一致性检查。
1630 dev-haskell vector-algorithms properties Enable quickcheck tests. 启用快速检查测试。
1631 dev-haskell vector-algorithms unsafechecks Enable bounds checking in unsafe operations at the cost of a significant performance penalty. 在不安全的操作中启用边界检查,代价是显着的性能损失。
1632 dev-haskell vector-instances hashable use dev-haskell/hashable 使用 dev-haskell/hashable
1633 dev-haskell void safe dissable effective but unsafe coersions 禁用有效但不安全的强制转换
1634 dev-haskell wai-app-static print print debug info. 打印调试信息。
1635 dev-haskell warp allow-sendfilefd Allow use of sendfileFd (not available on GNU/kFreeBSD). 允许使用 sendfileFd(在 GNU/kFreeBSD 上不可用)。
1636 dev-haskell warp warp-debug Add additional debuging information 添加额外的调试信息
1637 dev-haskell wcwidth cli Enable command line tool 启用命令行工具
1638 dev-haskell wreq aws Enable AWS tests 启用 AWS 测试
1639 dev-haskell wreq httpbin Install client 安装客户端
1640 dev-haskell yaml no-examples don't build the examples 不要构建示例
1641 dev-haskell yaml no-exe don't install the yaml2json executable 不要安装 yaml2json 可执行文件
1642 dev-haskell yesod-auth network-uri Get Network.URI from the network-uri package 从 network-uri 包中获取 Network.URI
1643 dev-haskell yesod-form network-uri Get Network.URI from the network-uri package 从 network-uri 包中获取 Network.URI
1644 dev-haskell zip-archive executable Build the Zip executable. 构建 Zip 可执行文件。
1645 dev-haskell zlib bundled-c-zlib Use the bundled zlib C sources. Requires pkg-config to be False. For windows, this is the default. 使用捆绑的 zlib C 源代码。要求 pkg-config 为 False。对于 Windows,这是默认设置。
1646 dev-haskell zlib non-blocking-ffi The (de)compression calls can sometimes take a long time, which prevents other Haskell threads running. Enabling this flag avoids this unfairness, but with greater overall cost. (解)压缩调用有时会花费很长时间,这会阻止其他 Haskell 线程运行。启用此标志可避免这种不公平,但总体成本更高。
1647 dev-java ant antlr Enable ANTLR Ant tasks 启用 ANTLR Ant 任务
1648 dev-java ant bcel Enable bcel (bytecode manipulation) Ant tasks 启用 bcel(字节码操作)Ant 任务
1649 dev-java ant bsf Enable support for Apache Bean Scripting Framework (dev-java/bsf) 启用对 Apache Bean 脚本框架 (dev-java/bsf) 的支持
1650 dev-java ant commonslogging Enable commons-logging Ant tasks 启用公共日志记录 Ant 任务
1651 dev-java ant commonsnet Enable commons-net Ant tasks 启用 commons-net Ant 任务
1652 dev-java ant jai Enable JAI (Java Imaging) Ant task 启用 JAI (Java Imaging) Ant 任务
1653 dev-java ant javamail Enable JavaMail Ant task 启用 JavaMail Ant 任务
1654 dev-java ant jdepend Enable Jdepend Ant tasks 启用 Jdepend Ant 任务
1655 dev-java ant jmf Enable JMF (Java Media Framework) Ant tasks 启用 JMF(Java 媒体框架)Ant 任务
1656 dev-java ant jsch Disable Jsch (ssh, scp and related) Ant tasks 禁用 Jsch(ssh、scp 和相关)Ant 任务
1657 dev-java ant junit Enable JUnit Ant tasks 启用 JUnit Ant 任务
1658 dev-java ant junit4 Enable JUnit4 Ant tasks 启用 JUnit4 Ant 任务
1659 dev-java ant junitlauncher Enable JUnit5 Ant tasks 启用 JUnit5 Ant 任务
1660 dev-java ant log4j Enable Apache log4j Ant tasks 启用 Apache log4j Ant 任务
1661 dev-java ant oro Enable Apache Oro Ant tasks 启用 Apache Oro Ant 任务
1662 dev-java ant regexp Enable Apache Regexp Ant tasks 启用 Apache Regexp Ant 任务
1663 dev-java ant resolver Enable Apache Resolver Ant tasks 启用 Apache Resolver Ant 任务
1664 dev-java ant swing Enable Swing Ant tasks 启用 Swing Ant 任务
1665 dev-java ant testutil Enable optional test util classes 启用可选的测试工具类
1666 dev-java ant xz Enable XZ Ant tasks 启用 XZ Ant 任务
1667 dev-java commons-logging avalon-framework Add optional support for avalon-framework 添加对 avalon-framework 的可选支持
1668 dev-java commons-logging avalon-logkit Add optional support for avalon-logkit 添加对 avalon-logkit 的可选支持
1669 dev-java commons-logging log4j Add optional support for log4j 添加对 log4j 的可选支持
1670 dev-java commons-logging servletapi Add optional support for servletapi 添加对 servletapi 的可选支持
1671 dev-java dom4j jaxen Includes org.jaxen.dom4j package 包括 org.jaxen.dom4j 包
1672 dev-java eclipse-ecj ant Support using ecj in Ant builds via dev-java/ant-eclipse-ecj 支持通过 dev-java/ant-eclipse-ecj 在 Ant 构建中使用 ecj
1673 dev-java emma launcher Install /usr/bin/emma. Collides with sci-biology/emboss. 安装 /usr/bin/emma。与科学生物学/浮雕碰撞。
1674 dev-java icedtea cacao Use the CACAO virtual machine rather than HotSpot. 使用 CACAO 虚拟机而不是 HotSpot。
1675 dev-java icedtea cups Link against the CUPS library at compile time, rather than using it dynamically at runtime. 在编译时链接 CUPS 库,而不是在运行时动态使用它。
1676 dev-java icedtea headless-awt Don't install the X backend for AWT, needed by some GUIs (used to be X flag) 不要为 AWT 安装 X 后端,某些 GUI 需要(以前是 X 标志)
1677 dev-java icedtea jamvm Use the JamVM virtual machine rather than HotSpot. 使用 JamVM 虚拟机而不是 HotSpot。
1678 dev-java icedtea jbootstrap If possible, recompile the final IcedTea executables with itself. 如果可能,请自行重新编译最终的 IcedTea 可执行文件。
1679 dev-java icedtea kerberos Link against Kerberos in order to obtain the cache location. 链接 Kerberos 以获得缓存位置。
1680 dev-java icedtea pax-kernel Apply patch needed for pax enabled kernels. 应用启用 pax 的内核所需的补丁。
1681 dev-java icedtea pch Build using pre-compiled headers. 使用预编译的头文件构建。
1682 dev-java icedtea sctp Build the SCTP NIO channel implementation against lksctp 针对 lksctp 构建 SCTP NIO 通道实现
1683 dev-java icedtea shenandoah Include the Shenandoah ultra-low pause time garbage collector (-XX:+UseShenandoahGC) (arm64 and x86_64 only) 包括 Shenandoah 超低暂停时间垃圾收集器 (-XX:+UseShenandoahGC)(仅限 arm64 和 x86_64)
1684 dev-java icedtea smartcard Build the PCSC driver against pcsc-lite 针对 pcsc-lite 构建 PCSC 驱动程序
1685 dev-java icedtea system-lcms Build against the system LCMS installation rather than the in-tree copy. 针对系统 LCMS 安装而不是树内副本构建。
1686 dev-java icedtea zero Enable Zero assembler port (usually for non-HotSpot architectures) 启用零汇编端口(通常用于非 HotSpot 架构)
1687 dev-java icedtea-bin headless-awt Don't install the X backend for AWT, needed by some GUIs (used to be X flag) 不要为 AWT 安装 X 后端,某些 GUI 需要(以前是 X 标志)
1688 dev-java jaxen dom4j Includes org.jaxen.dom4j package 包括 org.jaxen.dom4j 包
1689 dev-java jaxen jdom Includes org.jaxen.jdom package 包括 org.jaxen.jdom 包
1690 dev-java jaxen xom Includes org.jaxen.xom package 包括 org.jaxen.xom 包
1691 dev-java miglayout swt Add support for the SWT toolkit. 添加对 SWT 工具包的支持。
1692 dev-java openjdk gentoo-vm Allow this JDK to be recognised by Gentoo (package manager, eselect, java-config, EXPERIMENTAL!) 允许 Gentoo 识别这个 JDK(包管理器、eselect、java-config、EXPERIMENTAL!)
1693 dev-java openjdk headless-awt Don't install the X backend for AWT, needed by some GUIs 不要为 AWT 安装 X 后端,某些 GUI 需要
1694 dev-java openjdk javafx Import OpenJFX modules at build time, via dev-java/openjfx 在构建时通过 dev-java/openjfx 导入 OpenJFX 模块
1695 dev-java openjdk jbootstrap Build OpenJDK twice, the second time using the result of the first 两次构建 OpenJDK,第二次使用第一次的结果
1696 dev-java openjdk source Install JVM sources 安装 JVM 源
1697 dev-java openjdk system-bootstrap Bootstrap using installed openjdk 使用已安装的 openjdk 进行引导
1698 dev-java openjdk systemtap Enable SystemTAP/DTrace tracing 启用 SystemTAP/DTrace 跟踪
1699 dev-java openjdk-bin gentoo-vm Allow this JDK to be recognised by Gentoo (package manager, eselect, java-config, EXPERIMENTAL!) 允许 Gentoo 识别这个 JDK(包管理器、eselect、java-config、EXPERIMENTAL!)
1700 dev-java openjdk-bin headless-awt Don't install the X backend for AWT, needed by some GUIs (used to be X flag) 不要为 AWT 安装 X 后端,某些 GUI 需要(以前是 X 标志)
1701 dev-java openjdk-bin source Install JVM sources 安装 JVM 源
1702 dev-java openjdk-jre-bin gentoo-vm Allow this JDK to be recognised by Gentoo (package manager, eselect, java-config, EXPERIMENTAL!) 允许 Gentoo 识别这个 JDK(包管理器、eselect、java-config、EXPERIMENTAL!)
1703 dev-java openjdk-jre-bin headless-awt Don't install the X backend for AWT, needed by some GUIs (used to be X flag) 不要为 AWT 安装 X 后端,某些 GUI 需要(以前是 X 标志)
1704 dev-java openjfx media Compile media module, based on gstreamer-minimal (does not pull gstreamer) 编译媒体模块,基于 gstreamer-minimal(不拉 gstreamer)
1705 dev-java openjfx source Install JavaFX sources 安装 JavaFX 源
1706 dev-java pdfbox tools Build and install pdfbox-tools 构建和安装 pdfbox-tools
1707 dev-java rxtx lfd Installs and uses LockFileServer daemon (lfd) 安装和使用 LockFileServer 守护进程 (lfd)
1708 dev-java sbt binary Install from (Gentoo-compiled) binary instead of building from sources. Set this when you run out of memory during build. 从(Gentoo 编译的)二进制文件安装,而不是从源代码构建。在构建期间内存不足时设置此项。
1709 dev-lang R lto Use link-time optimization for R and its recommended packages. 对 R 及其推荐的包使用链接时优化。
1710 dev-lang bas lr0 Use the LR0 parser instead of the recursive descending parser 使用 LR0 解析器而不是递归降序解析器
1711 dev-lang crystal debug Build each module as a separate object file. Speeds build up. 将每个模块构建为单独的目标文件。速度积累。
1712 dev-lang erlang hipe HIgh Performance Erlang extension 高性能 Erlang 扩展
1713 dev-lang erlang kpoll Enable kernel polling support 启用内核轮询支持
1714 dev-lang gdl eigen Build matrix manipulation with dev-cpp/eigen 使用 dev-cpp/eigen 构建矩阵操作
1715 dev-lang gdl glpk Use GNU Linear Programming Kit sci-mathematics/glpk 使用 GNU 线性规划工具包 sci-mathematics/glpk
1716 dev-lang gdl gshhs Add support for projection adn continent maps with sci-geosciences/gshhs-data 使用 sci-geosciences/gshhs-data 添加对投影和大陆地图的支持
1717 dev-lang gdl hdf Add support for the Hierarchical Data Format v.4 添加对分层数据格式 v.4 的支持
1718 dev-lang gdl proj Add support for sci-libs/proj (geographic projections) 添加对 sci-libs/proj(地理投影)的支持
1719 dev-lang gdl udunits Add support for manipulating units of physical quantities 添加对操纵物理量单位的支持
1720 dev-lang gforth check Enable build-time sanity check. 启用构建时完整性检查。
1721 dev-lang ghc binary Install the binary version directly, rather than using it to build the source version. 直接安装二进制版本,而不是使用它来构建源版本。
1722 dev-lang ghc elfutils Enable DWARF-based backtraces using dev-libs/elfutils. 使用 dev-libs/elfutils 启用基于 DWARF 的回溯。
1723 dev-lang ghc ghcbootstrap Internal: Bootstrap GHC from an existing GHC installation. 内部:从现有 GHC 安装引导 GHC。
1724 dev-lang ghc ghcmakebinary Internal: Build binary friendly for redistribution. 内部:为重新分发构建友好的二进制文件。
1725 dev-lang ghc gmp Use dev-libs/gmp for integer operations (works faster, but an external depend). 使用 dev-libs/gmp 进行整数运算(工作速度更快,但依赖于外部)。
1726 dev-lang ghc numa Enable NUMA thread balancing policy using sys-process/numactl. 使用 sys-process/numactl 启用 NUMA 线程平衡策略。
1727 dev-lang gnat-gpl ada Build the ADA language (GNAT) frontend 构建 ADA 语言 (GNAT) 前端
1728 dev-lang gnat-gpl bootstrap Used to bootstrap gnat-gpl 用于引导 gnat-gpl
1729 dev-lang gnat-gpl cet Enable support for Intel Control Flow Enforcement Technology (CET) 启用对英特尔控制流强制技术 (CET) 的支持
1730 dev-lang gnat-gpl d Enable support for the D programming language 启用对 D 编程语言的支持
1731 dev-lang gnat-gpl fixed-point Enable fixed-point arithmetic support for MIPS targets in gcc (Warning: significantly increases compile time!) 在 gcc 中为 MIPS 目标启用定点算术支持(警告:显着增加编译时间!)
1732 dev-lang gnat-gpl go Build the GCC Go language frontend. 构建 GCC Go 语言前端。
1733 dev-lang gnat-gpl graphite Add support for the framework for loop optimizations based on a polyhedral intermediate representation 添加对基于多面体中间表示的循环优化框架的支持
1734 dev-lang gnat-gpl libssp Build SSP support into a dedicated library rather than use the code in the C library (DO NOT ENABLE THIS IF YOU DON'T KNOW WHAT IT DOES) 将 SSP 支持构建到专用库中,而不是使用 C 库中的代码(如果您不知道它的作用,请不要启用它)
1735 dev-lang gnat-gpl lto Build using Link Time Optimizations (LTO) 使用链接时间优化 (LTO) 构建
1736 dev-lang gnat-gpl nptl Enable support for Native POSIX Threads Library, the new threading module (requires linux-2.6 or better usually) 启用对 Native POSIX 线程库的支持,新的线程模块(通常需要 linux-2.6 或更高版本)
1737 dev-lang gnat-gpl objc Build support for the Objective C code language 构建对 Objective C 代码语言的支持
1738 dev-lang gnat-gpl objc++ Build support for the Objective C++ language 构建对 Objective C++ 语言的支持
1739 dev-lang gnat-gpl objc-gc Build support for the Objective C code language Garbage Collector 构建对 Objective C 代码语言垃圾收集器的支持
1740 dev-lang gnat-gpl pgo Build GCC using Profile Guided Optimization (PGO) 使用配置文件引导优化 (PGO) 构建 GCC
1741 dev-lang gnat-gpl sanitize Build support for various sanitizer functions (ASAN/TSAN/etc...) 构建对各种消毒剂功能(ASAN/TSAN/etc...)的支持
1742 dev-lang gnat-gpl ssp Build packages with stack smashing protector on by default 默认情况下使用堆栈粉碎保护器构建包
1743 dev-lang gnat-gpl systemtap enable systemtap static probe points 启用 systemtap 静态探测点
1744 dev-lang gnat-gpl vtv Build support for virtual table verification (a C++ hardening feature) 构建对虚拟表验证的支持(C++ 强化功能)
1745 dev-lang idris2 chez build using dev-scheme/chez 使用 dev-scheme/chez 构建
1746 dev-lang idris2 racket build using dev-scheme/racket 使用开发方案/球拍构建
1747 dev-lang idris2 test-full pull in depedndencies to run all tests 拉入依赖项以运行所有测试
1748 dev-lang inform tools Install blorbtools for manipulating Blorb files 安装 blorbtools 以操作 Blorb 文件
1749 dev-lang janet static-libs install janet static library archive, you must enable this flag for using `jpm build` 安装 janet 静态库存档,您必须启用此标志才能使用 `jpm build`
1750 dev-lang jerryscript debugger Install jerry-debugger 安装 jerry-debugger
1751 dev-lang jsonnet custom-optimization Build with user-specified compiler optimizations (-Os, -O0, -O1, -O2, -O3) from CFLAGS (unsupported) 使用来自 CFLAGS 的用户指定的编译器优化(-Os、-O0、-O1、-O2、-O3)构建(不支持)
1752 dev-lang julia system-llvm (Try to) Use the system LLVM install. YMMV. (尝试)使用系统 LLVM 安装。 YMMV。
1753 dev-lang lazarus minimal Don't build extra packages from the bigide component 不要从 bigide 组件构建额外的包
1754 dev-lang logtalk fop Support for generating pdf documentation using fop 支持使用 fop 生成 pdf 文档
1755 dev-lang logtalk xslt Support for generating html documentation using xslt 支持使用 xslt 生成 html 文档
1756 dev-lang lua deprecated make deprecated data structures/routines available 使不推荐使用的数据结构/例程可用
1757 dev-lang lua test-complete Run the complete (non-portable) testsuite 运行完整的(非便携式)测试套件
1758 dev-lang luajit lua52compat Enable some upwards-compatible features from Lua 5.2 that are unlikely to break existing code. 启用 Lua 5.2 中一些不太可能破坏现有代码的向上兼容功能。
1759 dev-lang mercury erlang Support Mercury Erlang grade 支持 Mercury Erlang 等级
1760 dev-lang mercury trail Support Mercury trail grades 支持 Mercury 跟踪等级
1761 dev-lang mercury-extras tommath Enable support for tommath library 启用对 tommath 库的支持
1762 dev-lang mlton binary install a binary version 安装二进制版本
1763 dev-lang mlton bootstrap-smlnj Boostrap mlton with dev-lang/smlnj (takes a long time) 使用 dev-lang/smlnj Boostrap mlton(需要很长时间)
1764 dev-lang mlton pax-kernel Enable if the user plans to run the package under a pax enabled hardened kernel 如果用户计划在启用了 pax 的强化内核下运行包,则启用
1765 dev-lang mlton stage3 After bootstrap building mlton with dev-lang/smlnj, rebuild mlton with the second stage build of mlton (recommended). 在使用 dev-lang/smlnj 引导构建 mlton 之后,使用 mlton 的第二阶段构建重建 mlton(推荐)。
1766 dev-lang moarvm asan Enable clang's Address Sanitizer functionality. Expect longer compile time. 启用 clang 的 Address Sanitizer 功能。期望更长的编译时间。
1767 dev-lang moarvm clang Use clang compiler instead of GCC 使用 clang 编译器而不是 GCC
1768 dev-lang moarvm jit Enable Just-In-Time-Compiler. Has no effect except on AMD64 and Darwin. 启用即时编译器。除了对 AMD64 和 Darwin 没有影响。
1769 dev-lang moarvm optimize Enable optimization via CFLAGS 通过 CFLAGS 启用优化
1770 dev-lang moarvm ubsan Enable clang's Undefined Behavior Sanitizer functionality. Expect longer compile time. 启用 clang 的 Undefined Behavior Sanitizer 功能。期望更长的编译时间。
1771 dev-lang mono pax-kernel Enable if the user plans to run the package under a pax enabled hardened kernel 如果用户计划在启用了 pax 的强化内核下运行包,则启用
1772 dev-lang mono xen Make mono generate code that is considerably faster on xen VMs but slightly slower on for normal systems. 使 mono 生成代码在 xen VM 上要快得多,但在普通系统上要慢一些。
1773 dev-lang neko apache Build Apache modules 构建 Apache 模块
1774 dev-lang nqp clang Toggle usage of the clang compiler in conjunction with MoarVM 切换 clang 编译器与 MoarVM 的结合使用
1775 dev-lang nqp moar Build the MoarVM backend (experimental/broken) 构建 MoarVM 后端(实验性/已损坏)
1776 dev-lang ocaml flambda Enables the Flambda optimizer: A new intermediate representation (introduced in ocaml 4.03) in the depths of the compiler designed to allow for better inlining. 启用 Flambda 优化器:一种新的中间表示(在 ocaml 4.03 中引入),位于编译器的深处,旨在允许更好的内联。
1777 dev-lang ocaml spacetime Enables the Spacetime memory profiler. See https://caml.inria.fr/pub/docs/manual-ocaml/spacetime.html for more information. 启用时空内存分析器。有关更多信息,请参阅 https://caml.inria.fr/pub/docs/manual-ocaml/spacetime.html。
1778 dev-lang perl ithreads Enable Perl threads, has some compatibility problems 启用 Perl 线程,有一些兼容性问题
1779 dev-lang perl quadmath Enable 128bit floating point arithmetic via libquadmath 通过 libquadmath 启用 128 位浮点运算
1780 dev-lang php apparmor Support FPM application confinement through sys-libs/libapparmor 通过 sys-libs/libapparmor 支持 FPM 应用程序限制
1781 dev-lang php argon2 Enable password hashing algorithm from app-crypt/argon2 从 app-crypt/argon2 启用密码哈希算法
1782 dev-lang php bcmath Add support for libbcmath 添加对 libbcmath 的支持
1783 dev-lang php cli Enable CLI SAPI 启用 CLI SAPI
1784 dev-lang php coverage Include gcov symbols for test coverage and lcov reports. Only useful for extension developers, and requires GCC. 包括用于测试覆盖率和 lcov 报告的 gcov 符号。仅对扩展开发人员有用,并且需要 GCC。
1785 dev-lang php ctype Enable ctype functions 启用 ctype 函数
1786 dev-lang php embed Enable embed SAPI 启用嵌入 SAPI
1787 dev-lang php enchant Add supports Enchant spelling library. 添加支持附魔拼写库。
1788 dev-lang php ffi Add foreign function interface (ffi extension) support 添加外部函数接口(ffi扩展)支持
1789 dev-lang php fileinfo Add fileinfo extension support 添加文件信息扩展支持
1790 dev-lang php filter Add filter extension support 添加过滤器扩展支持
1791 dev-lang php flatfile Add dbm support for flat files 添加对平面文件的 dbm 支持
1792 dev-lang php fpm Enable the FastCGI Process Manager SAPI 启用 FastCGI 进程管理器 SAPI
1793 dev-lang php gd Adds support for gd (bundled with PHP) 添加对 gd 的支持(与 PHP 捆绑)
1794 dev-lang php inifile Add dbm support for .ini files 添加对 .ini 文件的 dbm 支持
1795 dev-lang php intl Enables the intl extension for extended internalization support 启用 intl 扩展以扩展内部化支持
1796 dev-lang php jit Enable PCRE JIT support 启用 PCRE JIT 支持
1797 dev-lang php json Enable JSON support 启用 JSON 支持
1798 dev-lang php ldap-sasl Add SASL support for the PHP LDAP extension 添加对 PHP LDAP 扩展的 SASL 支持
1799 dev-lang php lmdb Enable support for dev-db/lmdb db backend 启用对 dev-db/lmdb 数据库后端的支持
1800 dev-lang php opcache Enables built-in opcode cache, replacing pecl-apc et al. 启用内置操作码缓存,替换 pecl-apc 等。
1801 dev-lang php pcntl Add support for process creation functions 添加对流程创建功能的支持
1802 dev-lang php pdo Enable the bundled PDO extensions 启用捆绑的 PDO 扩展
1803 dev-lang php phar Enables the phar extension to provide phar archive support 启用 phar 扩展以提供 phar 归档支持
1804 dev-lang php phpdbg Enable the PHP Debug Command Line SAPI (like gdb for php) 启用 PHP 调试命令行 SAPI(如 gdb for php)
1805 dev-lang php session-mm Include dev-libs/mm support for session storage 包括对会话存储的 dev-libs/mm 支持
1806 dev-lang php sharedmem Add support for shared memory use 添加对共享内存使用的支持
1807 dev-lang php simplexml Support for SimpleXML 支持 SimpleXML
1808 dev-lang php sodium Enable support for crypto through dev-libs/libsodium 通过 dev-libs/libsodium 启用对加密的支持
1809 dev-lang php sysvipc Support for System V-compatible inter-process communication 支持 System V 兼容的进程间通信
1810 dev-lang php tokenizer Add support for the PHP file parser 添加对 PHP 文件解析器的支持
1811 dev-lang php tokyocabinet Enable support for dev-db/tokyocabinet db backend 启用对 dev-db/tokyocabinet db 后端的支持
1812 dev-lang php webp Enable webp support for GD in php-7.x 在 php-7.x 中启用对 GD 的 webp 支持
1813 dev-lang php xmlreader Enable XMLReader support 启用 XMLReader 支持
1814 dev-lang php xmlwriter Enable XMLWriter support 启用 XMLWriter 支持
1815 dev-lang php xslt Enable the XSL extension 启用 XSL 扩展
1816 dev-lang polyml portable Build the portable interpreter version of Poly/ML instead of native 构建 Poly/ML 的便携式解释器版本而不是原生版本
1817 dev-lang python bluetooth Build Bluetooth protocol support in socket module 在套接字模块中构建蓝牙协议支持
1818 dev-lang python libedit Link readline extension against dev-libs/libedit instead of sys-libs/readline. 针对 dev-libs/libedit 而不是 sys-libs/readline 链接 readline 扩展。
1819 dev-lang python lto Optimize the build using Link Time Optimization (LTO) 使用链接时间优化 (LTO) 优化构建
1820 dev-lang python pgo Optimize the build using Profile Guided Optimization (PGO) 使用配置文件引导优化 (PGO) 优化构建
1821 dev-lang python wininst Install Windows executables required to create an executable installer for MS Windows. 安装为 MS Windows 创建可执行安装程序所需的 Windows 可执行文件。
1822 dev-lang python-exec native-symlinks Install generic symlinks like python and python3. If this flag is disabled, only versioned python3.X executables will be available to end users and ebuilds not using python eclasses. 安装通用符号链接,如 python 和 python3。如果禁用此标志,则最终用户和不使用 python eclass 的 ebuild 只能使用版本化的 python3.X 可执行文件。
1823 dev-lang qu-prolog pedro Pedro subscription/notification communications system Pedro 订阅/通知通信系统
1824 dev-lang rakudo clang Use Clang to compile the MoarVM backend 使用 Clang 编译 MoarVM 后端
1825 dev-lang rakudo moar Use the MoarVM as backend 使用 MoarVM 作为后端
1826 dev-lang ruby rdoc Install dev-ruby/rdoc after installing Ruby. 安装 Ruby 后安装 dev-ruby/rdoc。
1827 dev-lang ruby rubytests Install ruby tests that can only be run after ruby is installed 安装只能在安装 ruby 后运行的 ruby 测试
1828 dev-lang ruby systemtap Enable SystemTAP/DTrace tracing 启用 SystemTAP/DTrace 跟踪
1829 dev-lang rust clippy Install clippy, Rust code linter 安装 clippy,Rust 代码 linter
1830 dev-lang rust dist Install dist tarballs (used for bootstrapping) 安装 dist tarball(用于引导)
1831 dev-lang rust miri Install miri, an interpreter for Rust's mid-level intermediate representation (requires USE=nightly, sometimes is broken) 安装 miri,一个用于 Rust 中级中间表示的解释器(需要 USE=nightly,有时会损坏)
1832 dev-lang rust nightly Enable nightly (UNSTABLE) features (NOTE: it does not install nightly version, just enables features marked as nightly at time of release) 启用 nightly (UNSTABLE) 功能(注意:它不安装 nightly 版本,仅启用在发布时标记为 nightly 的功能)
1833 dev-lang rust parallel-compiler Build a multi-threaded rustc (experimental, not tested by upstream) 构建一个多线程的 rustc(实验性的,没有被上游测试过)
1834 dev-lang rust profiler Build the profiler runtime and rust-demangler tool (needed for '-C profile-generate' or '-C instrument-coverage' codegen opts) 构建分析器运行时和 rust-demangler 工具('-C profile-generate' 或 '-C instrument-coverage' codegen opts 需要)
1835 dev-lang rust rls Install rls, Rust Language Server (used with IDEs supporting RLS protocol) 安装 rls,Rust Language Server(与支持 RLS 协议的 IDE 一起使用)
1836 dev-lang rust rust-src Install rust-src, needed by developer tools and for build-std (cross) 安装开发工具和 build-std (cross) 所需的 rust-src
1837 dev-lang rust rustfmt Install rustfmt, Rust code formatter 安装 rustfmt,Rust 代码格式化程序
1838 dev-lang rust system-bootstrap Bootstrap using installed rust compiler 使用已安装的 rust 编译器进行引导
1839 dev-lang rust system-llvm Use the system LLVM installation 使用系统 LLVM 安装
1840 dev-lang rust wasm Build support for the wasm32-unknown-unknown target 构建对 wasm32-unknown-unknown 目标的支持
1841 dev-lang rust-bin clippy Install clippy, Rust code linter 安装 clippy,Rust 代码 linter
1842 dev-lang rust-bin rls Install rls, Rust Language Server (used with IDEs supporting RLS protocol) 安装 rls,Rust Language Server(与支持 RLS 协议的 IDE 一起使用)
1843 dev-lang rust-bin rust-src Install rust-src, needed by developer tools and for build-std (cross) 安装开发工具和 build-std (cross) 所需的 rust-src
1844 dev-lang rust-bin rustfmt Install rustfmt, Rust code formatter 安装 rustfmt,Rust 代码格式化程序
1845 dev-lang scala binary Install from (Gentoo-compiled) binary instead of building from sources. Set this when you run out of memory during build. 从(Gentoo 编译的)二进制文件安装,而不是从源代码构建。在构建期间内存不足时设置此项。
1846 dev-lang smlnj pax-kernel Enable if the user plans to run the package under a pax enabled hardened kernel 如果用户计划在启用了 pax 的强化内核下运行包,则启用
1847 dev-lang spidermonkey clang Use Clang compiler instead of GCC 使用 Clang 编译器而不是 GCC
1848 dev-lang spidermonkey custom-optimization Build with user-specified compiler optimizations (-Os, -O0, -O1, -O2, -O3) from CFLAGS (unsupported) 使用来自 CFLAGS 的用户指定的编译器优化(-Os、-O0、-O1、-O2、-O3)构建(不支持)
1849 dev-lang spidermonkey debug Enable assertions to allow for easier debugging of programs that link to spidermonkey -- note this will often crash software on regular end-user systems 启用断言以允许更轻松地调试链接到 spidermonkey 的程序 - 请注意,这通常会使常规最终用户系统上的软件崩溃
1850 dev-lang spidermonkey lto Enable Link Time Optimization (LTO) 启用链接时间优化 (LTO)
1851 dev-lang spidermonkey system-icu Use the system-wide dev-libs/icu instead of bundled -- note, only takes effect when icu flag is enabled 使用系统范围的 dev-libs/icu 而不是 bundled -- 注意,仅在启用 icu 标志时生效
1852 dev-lang swi-prolog archive Use libarchive for extension packs 将 libarchive 用于扩展包
1853 dev-lang swi-prolog uuid Use ossp-uuid for UUID pack 使用 ossp-uuid 作为 UUID 包
1854 dev-lang swi-prolog yaml Use libyaml for YAML pack 将 libyaml 用于 YAML 包
1855 dev-lang swig ccache build ccache-swig(a fast compiler cache) 构建 ccache-swig(一个快速的编译器缓存)
1856 dev-lang vala valadoc Installs valadoc documentation generation tool 安装 valadoc 文档生成工具
1857 dev-lang xsb mariadb Enable support for the mariadb database backend 启用对 mariadb 数据库后端的支持
1858 dev-lang yap R Enable support for connecting R to Prolog 启用对将 R 连接到 Prolog 的支持
1859 dev-lang yap raptor Enable support for Raptor RDF syntax libarary 启用对 Raptor RDF 语法库的支持
1860 dev-lang zig stage2 Install stage2 compiler (written in Zig) alongside stage1 compiler (written in C++ and Zig) 安装 stage2 编译器(用 Zig 编写)和 stage1 编译器(用 C++ 和 Zig 编写)
1861 dev-libs aml examples Build and install examples 构建和安装示例
1862 dev-libs antlr-c debugger Compiles debug info into the library 将调试信息编译到库中
1863 dev-libs appstream apt Enables Debians APT support 启用 Debians APT 支持
1864 dev-libs appstream-glib fonts Enable fonts support for appstream-builder. 为 appstream-builder 启用字体支持。
1865 dev-libs appstream-glib stemmer Add word stemming via dev-libs/snowball-stemmer. 通过 dev-libs/snowball-stemmer 添加词干。
1866 dev-libs apr older-kernels-compatibility Enable binary compatibility with older kernels 启用与旧内核的二进制兼容性
1867 dev-libs apr urandom Use /dev/urandom instead of /dev/random 使用 /dev/urandom 而不是 /dev/random
1868 dev-libs apr-util nss Install apr_crypto_nss module 安装 apr_crypto_nss 模块
1869 dev-libs apr-util openssl Install apr_crypto_openssl module 安装 apr_crypto_openssl 模块
1870 dev-libs atcore gui Build test GUI 构建测试 GUI
1871 dev-libs aws-sdk-cpp access-management AWS Access Management, a meta-flag that enables: AWS Certificate Manager (ACM): Provision, manage, and deploy SSL/TLS certificates on AWS managed resources. AWS Data Exchange : A service that makes it easy for customers to find, subscribe to, and use third-party data in the AWS Cloud. AWS IAM Access Analyzer : Identify any policies that grant access to an external principal. Identity and Access Management (IAM): A web service for securely controlling access to AWS services. Resource Access Manager (RAM): Customers who operate multiple accounts can create resources centrally and use AWS RAM to share them with all of their accounts to reduce operational overhead. SSO : AWS Single Sign-On (SSO) makes it easy to centrally manage access to multiple AWS accounts and business applications and provide users with single sign-on access to all their assigned accounts and applications from one place. Also enables acm-pca, identity-management, identitystore, sso-admin, sso-oidc and sts (Security Token Service). AWS Access Management,一个启用以下功能的元标志: AWS Certificate Manager (ACM):在 AWS 托管资源上预置、管理和部署 SSL/TLS 证书。 AWS Data Exchange :一项服务,让客户可以轻松地在 AWS 云中查找、订阅和使用第三方数据。 AWS IAM 访问分析器:识别任何授予外部委托人访问权限的策略。身份和访问管理 (IAM):一种用于安全控制对 AWS 服务的访问的 Web 服务。资源访问管理器 (RAM):运营多个账户的客户可以集中创建资源并使用 AWS RAM 与所有账户共享资源,以减少运营开销。 SSO:AWS Single Sign-On (SSO) 可以轻松集中管理对多个 AWS 账户和业务应用程序的访问,并为用户提供从一个地方对其所有分配的账户和应用程序的单点登录访问。还启用 acm-pca、identity-management、identitystore、sso-admin、sso-oidc 和 sts(安全令牌服务)。
1872 dev-libs aws-sdk-cpp apigateway Create and deploy your own REST and WebSocket APIs at any scale. Also enables apigatewaymanagementapi and apigatewayv2. 以任意规模创建和部署您自己的 REST 和 WebSocket API。还启用 apigatewaymanagementapi 和 apigatewayv2。
1873 dev-libs aws-sdk-cpp appconfig Quickly deploy application configurations to applications of any size. 快速将应用程序配置部署到任何规模的应用程序。
1874 dev-libs aws-sdk-cpp backup AWS Backup is a fully managed backup service AWS Backup 是一项完全托管的备份服务
1875 dev-libs aws-sdk-cpp batch Run batch computing workloads on the AWS Cloud 在 AWS 云上运行批处理计算工作负载
1876 dev-libs aws-sdk-cpp budgets Use AWS Budgets to plan service usage, service costs, and instance reservations. Also enables the following related modules: AWS Cost Explorer (CE) : Programmatically query cost and usage data. Cost and Usage Report (CUR): Programmatically create, query, and delete AWS Cost and Usage report definitions. 使用 AWS 预算来计划服务使用、服务成本和实例预留。还启用以下相关模块: AWS Cost Explorer (CE):以编程方式查询成本和使用数据。成本和使用情况报告 (CUR):以编程方式创建、查询和删除 AWS 成本和使用情况报告定义。
1877 dev-libs aws-sdk-cpp chime Amazon Chime, a secure, real-time, unified communications service. Amazon Chime,一种安全、实时、统一的通信服务。
1878 dev-libs aws-sdk-cpp cloud-desktop AWS end user computing services. AppStream 2.0: Fully managed, secure application streaming service. WorkDocs : Fully managed, secure enterprise storage and sharing service. WorkLink : Fully managed, cloud-based service that enables secure, one-click access to internal websites and web apps from mobile devices. WorkMail : Managed email and calendaring service. WorkSpaces : Cloud-based desktop experience for end users. Also enabled workmailmessageflow. AWS 最终用户计算服务。 AppStream 2.0:完全托管的安全应用程序流服务。 WorkDocs:完全托管、安全的企业存储和共享服务。 WorkLink :完全托管的基于云的服务,支持从移动设备安全地一键访问内部网站和 Web 应用程序。 WorkMail:托管电子邮件和日历服务。 WorkSpaces:面向最终用户的基于云的桌面体验。还启用了工作邮件消息流。
1879 dev-libs aws-sdk-cpp cloud-dev Enables in-cloud developer tools: Cloud9 : Cloud-based integrated development environment IDE to write, run, and debug code. CodeArtifact: Secure and scalable artifact management service for software development. CodeBuild : Managed build service that compiles, runs unit tests and produces artifacts. CodeCommit : Privately store and manage Git repositories in the AWS cloud. CodeDeploy : Automate the deployment and updating of applications. CodeGuru : Provides intelligent recommendations for improving application performance, efficiency, and code quality in your Java applications. CodePipeline: Continuous delivery service to model, visualize, and automate the steps required to release software. CodeStar : Quickly develop, build, and deploy applications on AWS. Also enables codestar-connections and codestar-notifications. Honey Code : Fully managed service to quickly build mobile and web apps for teams. Queues : Simple queue class. Allows standard queue operations top, delete, and push. Also has higher level, asynchronous interface with callbacks. X-Ray : Provides request tracing, exception collection, and profiling capabilities. 启用云内开发工具: Cloud9:基于云的集成开发环境 IDE 来编写、运行和调试代码。 CodeArtifact:用于软件开发的安全且可扩展的工件管理服务。 CodeBuild :用于编译、运行单元测试和生成工件的托管构建服务。 CodeCommit :在 AWS 云中私有存储和管理 Git 存储库。 CodeDeploy :自动部署和更新应用程序。 CodeGuru :为提高 Java 应用程序中的应用程序性能、效率和代码质量提供智能建议。 CodePipeline:持续交付服务,用于对发布软件所需的步骤进行建模、可视化和自动化。 CodeStar:在 AWS 上快速开发、构建和部署应用程序。还启用 codestar-connections 和 codestar-notifications。 Honey Code:完全托管的服务,可快速为团队构建移动和 Web 应用程序。队列:简单的队列类。允许标准队列操作置顶、删除和推送。还具有更高级别的带有回调的异步接口。 X-Ray :提供请求跟踪、异常收集和分析功能。
1880 dev-libs aws-sdk-cpp cloud-media AWS Media modules for transforming, converting, delivering and streaming media. Elastic Transcoder : Convert media files stored in Amazon S3 into media files in the formats required by consumer playback devices. Elemental Media Connect: Secure and flexible transport service for live video. Elemental Media Convert: Format and compress offline video content for delivery to televisions or connected devices. Elemental Media Live : Video service that allows easy and reliable creation of live outputs for broadcast and streaming delivery. Elemental Media Package: Just-in-time video packaging and origination service. (Includes mediapackage-vod) Elemental Media Store : Video origination and storage service.Manage video assets as objects in containers to build dependable, cloud-based media workflows. (Includes mediastore-data) Elemental Media Tailor : Personalization and monetization service that allows scalable server- side ad insertion. 用于转换、转换、交付和流媒体的 AWS 媒体模块。 Elastic Transcoder :将存储在 Amazon S3 中的媒体文件转换为消费者播放设备所需格式的媒体文件。 Elemental Media Connect:安全灵活的实时视频传输服务。 Elemental Media Convert:格式化和压缩离线视频内容,以便传送到电视或连接的设备。 Elemental Media Live :视频服务,允许轻松可靠地创建直播输出以进行广播和流传输。 Elemental Media Package:即时视频打包和创作服务。 (包括 mediapackage-vod) Elemental Media Store:视频创作和存储服务。将视频资产作为容器中的对象进行管理,以构建可靠的基于云的媒体工作流程。 (包括 mediastore-data) Elemental Media Tailor:个性化和货币化服务,允许可扩展的服务器端广告插入。
1881 dev-libs aws-sdk-cpp cloud-mobile AWS Mobile modules for handling mobile application management and delivery. Amplify : Comprehensive set of SDKs, libraries, tools, and documentation for client app development. AppSync : Enterprise level, fully managed GraphQL service with real-time data synchronization and offline programming features. Device Farm: Test iOS, Android and Fire OS apps on real, physical phones and tablets that are hosted by AWS. PinPoint : Engage customers by sending them email, SMS and voice messages, and push notifications. (Includes pinpoint-email and sms-voice) SNS : Amazon Simple Notification Service, see USE flag sns. Also enables mobile and mobileanalytics. 用于处理移动应用程序管理和交付的 AWS Mobile 模块。 Amplify :用于客户端应用程序开发的全套 SDK、库、工具和文档。 AppSync:企业级、完全托管的 GraphQL 服务,具有实时数据同步和离线编程功能。 Device Farm:在 AWS 托管的真实实体手机和平板电脑上测试 iOS、Android 和 Fire OS 应用程序。 PinPoint:通过向客户发送电子邮件、SMS 和语音消息以及推送通知来吸引客户。 (包括 pinpoint-email 和 sms-voice) SNS:Amazon Simple Notification Service,请参阅 USE flag sns。还支持移动和移动分析。
1882 dev-libs aws-sdk-cpp cloudformation Create and provision AWS infrastructure deployments predictably and repeatedly. Use a template file to create and delete a collection of resources together as a single unit (a stack). 以可预测的方式重复创建和预置 AWS 基础设施部署。使用模板文件将资源集合作为一个单元(堆栈)一起创建和删除。
1883 dev-libs aws-sdk-cpp cloudfront Delivers static and dynamic web content through a worldwide network of edge locations that provide low latency and high performance. 通过提供低延迟和高性能的全球边缘位置网络提供静态和动态 Web 内容。
1884 dev-libs aws-sdk-cpp cloudhsm Secure cryptographic key storage by providing managed hardware security modules in the AWS Cloud. Also enables cloudhsmv2. 通过在 AWS 云中提供托管硬件安全模块来保护加密密钥存储。还启用 cloudhsmv2。
1885 dev-libs aws-sdk-cpp cloudsearch Fully managed service in the cloud to set up, manage, and scale a search solution for websites. Also enables cloudsearchdomain. 云中的完全托管服务,用于设置、管理和扩展网站搜索解决方案。还启用了 cloudsearchdomain。
1886 dev-libs aws-sdk-cpp cloudwatch Amazon CloudWatch monitors Amazon Web Services (AWS) resources and the applications run on AWS in real time. The following modules besides monitoring are also enabled: Application Insights: Monitor .NET and SQL Server applications. App Mesh : Monitor and control microservices running on AWS. Audit Manager : Helps to continuously audit your AWS usage to simplify how you manage risk and compliance with regulations and industry standards. CloudTrail : Monitor AWS deployments in the cloud by getting a history of AWS API calls, including API calls made via the AWS Management Console, the AWS SDKs, the command line tools, and higher-level AWS services. Compute Optimizer : Recommends optimal AWS compute resources for your workloads. Detective : Analyze, investigate, and identify the root cause of security findings or suspicious activities. DevOps Guru : Generates operational insights using machine learning to help to improve the performance of operational applications. GuardDuty : Continuous security monitoring service. Health : Provides personalized information about events that can affect the AWS infrastructure, guides through scheduled changes, and accelerates the troubleshooting of issues that affect AWS resources and accounts. Inspector : A security vulnerability assessment service that helps improve the security and compliance of AWS resources. Logs : Monitor, store, and access log files from Amazon EC2 instances, AWS CloudTrail, or other sources. Synthetics : Create canaries, configurable scripts that run on a schedule, to monitor your endpoints and APIs. Amazon CloudWatch 监控 Amazon Web Services (AWS) 资源和在 AWS 上实时运行的应用程序。除了监视之外,还启用了以下模块: Application Insights:监视 .NET 和 SQL Server 应用程序。 App Mesh:监控和控制在 AWS 上运行的微服务。审计经理:帮助持续审计您的 AWS 使用情况,以简化您管理风险以及遵守法规和行业标准的方式。 CloudTrail :通过获取 AWS API 调用的历史记录来监控云中的 AWS 部署,包括通过 AWS 管理控制台、AWS SDK、命令行工具和更高级别的 AWS 服务进行的 API 调用。 Compute Optimizer :为您的工作负载推荐最佳 AWS 计算资源。侦探:分析、调查和确定安全发现或可疑活动的根本原因。 DevOps Guru:使用机器学习生成运营洞察力,以帮助提高运营应用程序的性能。 GuardDuty:持续的安全监控服务。 Health :提供有关可能影响 AWS 基础设施的事件的个性化信息,指导计划的更改,并加快对影响 AWS 资源和账户的问题的故障排除。 Inspector :一种安全漏洞评估服务,有助于提高 AWS 资源的安全性和合规性。日志:监控、存储和访问来自 Amazon EC2 实例、AWS CloudTrail 或其他来源的日志文件。 Synthetics :创建金丝雀,按计划运行的可配置脚本,以监控您的端点和 API。
1887 dev-libs aws-sdk-cpp cognito Create unique identities, authenticate these identities with identity providers and save mobile user data in the AWS Cloud. Enables cognito-identity, cognito-idp and cognito-sync 创建唯一身份,通过身份提供商对这些身份进行身份验证,并将移动用户数据保存在 AWS 云中。启用 cognito-identity、cognito-idp 和 cognito-sync
1888 dev-libs aws-sdk-cpp config Provides a detailed view of the resources associated with your AWS account, including how they are configured, how they are related to one another, and how the configurations and their relationships have changed over time. 提供与您的 AWS 账户关联的资源的详细视图,包括它们的配置方式、它们之间的关系以及配置及其关系如何随时间变化。
1889 dev-libs aws-sdk-cpp dlm Amazon Data Lifecycle Manager (DLM): Manage the lifecycle of AWS resources. Create lifecycle policies to automate operations on specified resources. Amazon Data Lifecycle Manager (DLM):管理 AWS 资源的生命周期。创建生命周期策略以自动执行指定资源的操作。
1890 dev-libs aws-sdk-cpp ebs Amazon Elastic Block Store (Amazon EBS) is a web service that provides block level storage volumes for use with EC2 instances. EBS volumes are highly available and reliable storage volumes that can be attached to any running instance and used like a hard drive. Amazon Elastic Block Store (Amazon EBS) 是一种 Web 服务,它提供用于 EC2 实例的块级存储卷。 EBS 卷是高度可用且可靠的存储卷,可以附加到任何正在运行的实例并像硬盘驱动器一样使用。
1891 dev-libs aws-sdk-cpp ec2 Amazon Elastic Compute Cloud (EC2) is a web service that provides resizeable computing capacity. This flag also enables the following modules: Auto Scaling : Set up dynamic and predictive scaling for scalable AWS resources. Also enables autoscaling-plans and application-autoscaling. EC2 Image Builder : Fully-managed AWS service that makes it easier to automate the creation, management, and deployment of customized, secure, and up-to-date “golden” server images that are pre-installed and pre-configured with software and settings to meet specific IT standards. Elastic File System: EFS provides file storage for Amazon EC2 instances. Savings Plan : Flexible pricing model that helps you save a significant percentage on Amazon EC2 and Fargate usage. Amazon Elastic Compute Cloud (EC2) 是一项提供可调整计算容量的 Web 服务。此标志还启用以下模块: Auto Scaling:为可扩展的 AWS 资源设置动态和预测性扩展。还启用自动缩放计划和应用程序自动缩放。 EC2 Image Builder:完全托管的 AWS 服务,可以更轻松地自动创建、管理和部署定制的、安全的和最新的“黄金”服务器映像,这些映像预安装和预配置了软件和设置以满足特定的 IT 标准。弹性文件系统:EFS 为 Amazon EC2 实例提供文件存储。 Savings Plan :灵活的定价模式,可帮助您节省大量 Amazon EC2 和 Fargate 使用量。
1892 dev-libs aws-sdk-cpp ecr Amazon Elastic Container Registry (ECR) is a fully managed Docker container registry. Also enables Amazon ECR Public. Amazon Elastic Container Registry (ECR) 是一个完全托管的 Docker 容器注册表。还启用 Amazon ECR Public。
1893 dev-libs aws-sdk-cpp ecs Amazon Elastic Container Service (ECS) is a highly scalable, fast, container management service. Amazon Elastic Container Service (ECS) 是一种高度可扩展、快速的容器管理服务。
1894 dev-libs aws-sdk-cpp eks Amazon Elastic Kubernetes Service (EKS) is a managed service to run Kubernetes on AWS without own Kubernetes clusters. Also enables Amazon EMR on EKS. Amazon Elastic Kubernetes Service (EKS) 是一项托管服务,无需自己的 Kubernetes 集群即可在 AWS 上运行 Kubernetes。还可以在 EKS 上启用 Amazon EMR。
1895 dev-libs aws-sdk-cpp elastic-inference Amazon Elastic Inference is a service that allows you to attach low-cost GPU-powered acceleration to many Amazon machine instances in order to reduce the cost of running deep learning inference by up to 75%. Amazon Elastic Inference supports TensorFlow, Apache MXNet, and ONNX models through MXNet. Amazon Elastic Inference 是一项服务,可让您将低成本 GPU 驱动的加速附加到许多 Amazon 机器实例,从而将运行深度学习推理的成本降低多达 75%。 Amazon Elastic Inference 通过 MXNet 支持 TensorFlow、Apache MXNet 和 ONNX 模型。
1896 dev-libs aws-sdk-cpp elasticache Set up, manage, and scale distributed in-memory cache environments in the AWS Cloud 在 AWS 云中设置、管理和扩展分布式内存缓存环境
1897 dev-libs aws-sdk-cpp elasticbeanstalk Quickly deploy and manage applications in the AWS Cloud. 在 AWS 云中快速部署和管理应用程序。
1898 dev-libs aws-sdk-cpp elasticloadbalancing Automatically distribute incoming application traffic across multiple targets, such as EC2 instances. Also enables elasticloadbalancingv2. 跨多个目标(例如 EC2 实例)自动分配传入的应用程序流量。还启用了 elasticloadbalancingv2。
1899 dev-libs aws-sdk-cpp elasticmapreduce Amazon Elastic MapReduce (EMR) processes large amounts of data efficiently using Hadoop processing combined with several AWS products. Amazon Elastic MapReduce (EMR) 使用 Hadoop 处理与多个 AWS 产品高效地处理大量数据。
1900 dev-libs aws-sdk-cpp email Amazon Simple Email Service (Amazon SES): An email platform to send and receive email using ones own email addresses and domains. See: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/Welcome.html Also enables sesv2 Amazon Simple Email Service (Amazon SES):一个使用自己的电子邮件地址和域发送和接收电子邮件的电子邮件平台。请参阅:https://docs.aws.amazon.com/ses/latest/DeveloperGuide/Welcome.html 也启用 sesv2
1901 dev-libs aws-sdk-cpp es Amazon Elasticsearch Configuration Service (ES) is an API to create, configure, and manage Elasticsearch domains. Amazon Elasticsearch Configuration Service (ES) 是一种用于创建、配置和管理 Elasticsearch 域的 API。
1902 dev-libs aws-sdk-cpp events Serverless event bus service to connect applications with data from a variety of sources. Also enables eventbridge. 无服务器事件总线服务,用于将应用程序与来自各种来源的数据连接起来。还启用事件桥。
1903 dev-libs aws-sdk-cpp forecast Amazon Forecast is a fully managed deep learning service for time-series forecasting. Time- series forecasting is useful in multiple domains, including retail, financial planning, supply chain, and healthcare. Also enables the forecastquery module. Amazon Forecast 是用于时间序列预测的完全托管的深度学习服务。时间序列预测在多个领域都很有用,包括零售、财务规划、供应链和医疗保健。还启用了预测查询模块。
1904 dev-libs aws-sdk-cpp frauddetector Amazon Fraud Detector is a fully managed service that helps you detect suspicious online activities such as the creation of fake accounts and online payment fraud. With Amazon Fraud Detector, you can create a fraud detection ML model with just a few clicks and use it to evaluate online activities in milliseconds. Amazon Fraud Detector 是一项完全托管的服务,可帮助您检测可疑的在线活动,例如创建虚假账户和在线支付欺诈。借助 Amazon Fraud Detector,您只需单击几下即可创建欺诈检测 ML 模型,并使用它在几毫秒内评估在线活动。
1905 dev-libs aws-sdk-cpp fsx Amazon FSx is a fully managed service to launch and use shared file storage. Amazon FSx 是一项完全托管的服务,用于启动和使用共享文件存储。
1906 dev-libs aws-sdk-cpp globalaccelerator AWS Global Accelerator is a network layer service for accelerators to improve availability and performance for internet applications used by a global audience. AWS Global Accelerator 是一种用于加速器的网络层服务,用于提高全球受众使用的互联网应用程序的可用性和性能。
1907 dev-libs aws-sdk-cpp http Enable http support via net-misc/curl 通过 net-misc/curl 启用 http 支持
1908 dev-libs aws-sdk-cpp iot AWS IoT This is a meta-flag for all Internet of Things modules provided by the SDK: iot : enables secure, bi-directional communication between Internet-connected things (such as sensors, actuators, embedded devices, or smart appliances) and the AWS Cloud over MQTT and HTTP. greengrass : Extends AWS onto physical devices so they can act locally on the data they generate. Installed are both Version 1 and Version 2. iot1click : A service for simple devices to trigger AWS Lambda functions that execute a specific action. iotanalytics : Provides advanced data analysis for AWS IoT. iotevents : Monitor equipment or device fleets for failures or changes in operation, and trigger actions when such events occur. iotsitewise : Easily collect, organize, and analyze data from industrial equipment at scale. iotthingsgraph: Integrated set of tools that enable developers to build IoT applications using devices and services that use different data representation standards and communication protocols. Also enables iot1click-devices, iot1click-projects, iotdeviceadvisor, iot-data, iotevents-data, iotfleethub, iot-jobs-data, iotsecuretunneling and iotwireless. AWS IoT 这是 SDK 提供的所有物联网模块的元标志: iot :实现联网事物(如传感器、执行器、嵌入式设备或智能设备)与 AWS 之间的安全、双向通信基于 MQTT 和 HTTP 的云。 greengrass :将 AWS 扩展到物理设备上,以便它们可以在本地对其生成的数据进行操作。安装了版本 1 和版本 2。 iot1click :用于简单设备触发执行特定操作的 AWS Lambda 函数的服务。 iotanalytics :为 AWS IoT 提供高级数据分析。 iotevents :监控设备或设备组的故障或操作变化,并在发生此类事件时触发操作。 iotsitewise:轻松从工业设备中大规模收集、组织和分析数据。 iotthingsgraph:一组集成的工具,使开发人员能够使用使用不同数据表示标准和通信协议的设备和服务来构建物联网应用程序。还启用 iot1click-devices、iot1click-projects、iotdeviceadvisor、iot-data、iotevents-data、iotfleethub、iot-jobs-data、iotsecuretunneling 和 iotwireless。
1909 dev-libs aws-sdk-cpp kendra Amazon Kendra is a search service, powered by machine learning, that enables users to search unstructured text using natural language. Amazon Kendra 是一项由机器学习提供支持的搜索服务,使用户能够使用自然语言搜索非结构化文本。
1910 dev-libs aws-sdk-cpp kinesis Amazon Kinesis Collect, process, and analyze video and data streams in real time. The following modules besides kinesis are enabled: firehose : Load data streams into AWS data stores. ivs : Managed live streaming solution for creating interactive video experiences. kinesisanalytics: Process and analyze streaming data using SQL or Java. (Also enables kinesisanalyticsv2) kinesisvideo : Capture, process, and store video streams for analytics and machine learning. Additionally kinesis-video-archived-media, kinesis-video-media and kinesis-video-signaling are enabled. Amazon Kinesis 实时收集、处理和分析视频和数据流。除了 kinesis 之外,还启用了以下模块: firehose :将数据流加载到 AWS 数据存储中。 ivs:用于创建交互式视频体验的托管直播流媒体解决方案。 kinesisanalytics:使用 SQL 或 Java 处理和分析流数据。 (也启用 kinesisanalyticsv2) kinesisvideo:捕获、处理和存储视频流以进行分析和机器学习。此外,还启用了 kinesis-video-archived-media、kinesis-video-media 和 kinesis-video-signaling。
1911 dev-libs aws-sdk-cpp kms AWS Key Management Service (KMS) An encryption and key management service scaled for the cloud. AWS Key Management Service (KMS) 针对云扩展的加密和密钥管理服务。
1912 dev-libs aws-sdk-cpp lambda AWS Lambda: Run code without provisioning or managing servers. AWS Lambda:无需预置或管理服务器即可运行代码。
1913 dev-libs aws-sdk-cpp lex Amazon Lex is an AWS service for building conversational interfaces into applications using voice and text. Installed are both Version1 and Version 2. Also enables lex-models. Amazon Lex 是一项 AWS 服务,用于使用语音和文本将会话界面构建到应用程序中。安装了版本 1 和版本 2。还启用了 lex 模型。
1914 dev-libs aws-sdk-cpp license-manager Streamlines the process of bringing software vendor licenses to the cloud. 简化将软件供应商许可证引入云的过程。
1915 dev-libs aws-sdk-cpp lightsail The easiest way to get started with AWS for developers who just need virtual private servers 适用于只需要虚拟私有服务器的开发人员开始使用 AWS 的最简单方法
1916 dev-libs aws-sdk-cpp lookoutvision Amazon Lookout for Vision enables you to find visual defects in industrial products, accurately and at scale. Amazon Lookout for Vision 使您能够准确、大规模地发现工业产品中的视觉缺陷。
1917 dev-libs aws-sdk-cpp machinelearning The algorithms of Amazon Machine Learning create machine learning (ML) models by finding patterns in existing data. The service uses these models to process new data and generate predictions for application. Amazon Machine Learning 的算法通过在现有数据中查找模式来创建机器学习 (ML) 模型。该服务使用这些模型来处理新数据并为应用程序生成预测。
1918 dev-libs aws-sdk-cpp macie A security service that uses machine learning to automatically discover, classify, and protect sensitive data in AWS. Also enables macie2 一种使用机器学习自动发现、分类和保护 AWS 中的敏感数据的安全服务。还启用 macie2
1919 dev-libs aws-sdk-cpp managedblockchain Create and manage scalable blockchain networks using popular open source frameworks. Currently, Managed Blockchain supports the Hyperledger Fabric open source framework. 使用流行的开源框架创建和管理可扩展的区块链网络。目前,Managed Blockchain 支持 Hyperledger Fabric 开源框架。
1920 dev-libs aws-sdk-cpp marketplace AWS Marketplace is an online store where you can buy or sell software that runs on Amazon Web Services (AWS). Marketplace support consists of the marketplacecommerceanalytics module plus: Marketplace Entitlement Service: A contract verification feature that AWS Marketplace sellers can use to verify the amount of the sellers product (for example, end user licenses or storage, data, or compute capacity) the customer has purchased. Marketplace Metering Service : A pricing and metering feature that AWS Marketplace sellers can use to directly charge for their software along one of four dimensions: users, data, bandwidth, or hosts. Also enables marketplace-catalog, pricing and servicecatalog-appregistry. AWS Marketplace 是一个在线商店,您可以在其中购买或销售在 Amazon Web Services (AWS) 上运行的软件。 Marketplace 支持包括marketplacecommerceanalytics 模块以及: Marketplace Entitlement Service:AWS Marketplace 卖家可以用来验证客户拥有的卖家产品数量(例如,最终用户许可证或存储、数据或计算能力)的合同验证功能购买。 Marketplace Metering Service :AWS Marketplace 卖家可以使用其根据以下四个维度之一直接为其软件收费的定价和计量功能:用户、数据、带宽或主机。还启用市场目录、定价和服务目录应用注册表。
1921 dev-libs aws-sdk-cpp mwaa Amazon Managed Workflows for Apache Airflow (Amazon MWAA) is a managed service for Apache Airflow that makes it easy for you to build and manage your workflows in the cloud. Amazon Managed Workflows for Apache Airflow (Amazon MWAA) 是 Apache Airflow 的一项托管服务,可让您轻松地在云中构建和管理工作流。
1922 dev-libs aws-sdk-cpp networkmanager Transit Gateway Network Manager (Network Manager) enables you to create a global network, in which you can monitor your AWS and on-premises networks that are built around transit gateways. Transit Gateway Network Manager (Network Manager) 使您能够创建一个全球网络,您可以在其中监控您的 AWS 和围绕中转网关构建的本地网络。
1923 dev-libs aws-sdk-cpp opsworks AWS OpsWorks is a simple and flexible way to create and manage stacks and applications. Also enables opsworkscm. AWS OpsWorks 是一种简单而灵活的方式来创建和管理堆栈和应用程序。还启用 opsworkscm。
1924 dev-libs aws-sdk-cpp organizations Account management service that to consolidate multiple AWS accounts into an organization to be centrally managed. 账户管理服务,将多个 AWS 账户整合到一个组织中进行集中管理。
1925 dev-libs aws-sdk-cpp other This is a meta-flag for rarely needed modules that in themselves need not much build time. If you would like to have any of the following modules to have their own USE flag, please open a bug report and it will most probably get one. The modules are: AWSMigrationHub, alexaforbusiness, appflow, appintegrations, braket, clouddirectory, comprehend, comprehendmedical, connect, connect-contact-lens, customer-profiles, datapipeline, databrew, datasync, directconnect, discovery, dms, docdb, ds, dynamodb, gamelift, glue, groundstation, healthlake, importexport, kafka, lakeformation, migrationhub-config, mq, mturk-requester, neptune, quicksight, redshift, robomaker, sdb, schemas, service-quotas, servicecatalog, servicediscovery, signer, sms, snowball, ssm, states, storagegateway, support and swf. 这是很少需要的模块的元标志,这些模块本身不需要太多的构建时间。如果您想让以下任何模块拥有自己的 USE 标志,请打开一个错误报告,它很可能会得到一个。这些模块是:AWSMigrationHub、alexaforbusiness、appflow、appintegrations、bracket、clouddirectory、comprehend、comprehendmedical、connect、connect-contact-lens、customer-profiles、datapipeline、databrew、datasync、directconnect、discovery、dms、docdb、ds、dynamodb、 gamelift、glue、groundstation、healthlake、importexport、kafka、lakeformation、migrationhub-config、mq、mturk-requester、neptune、quicksight、redshift、robomaker、sdb、模式、服务配额、服务目录、服务发现、签名者、短信、雪球、 ssm、状态、存储网关、支持和 swf。
1926 dev-libs aws-sdk-cpp outposts AWS Outposts brings native AWS services, infrastructure, and operating models to virtually any data center, co-location space, or on-premises facility. You can use the same services, tools, and partner solutions to develop for the cloud and on premises. Also enables s3outposts. AWS Outposts 将原生 AWS 服务、基础设施和运营模式带入几乎任何数据中心、托管空间或本地设施。您可以使用相同的服务、工具和合作伙伴解决方案为云和本地进行开发。还启用 s3outposts。
1927 dev-libs aws-sdk-cpp personalize Real-time personalization and recommendations, based on the same technology used at Amazon.com. Also enables personalize-events and personalize-runtime. 实时个性化和推荐,基于 Amazon.com 使用的相同技术。还启用个性化事件和个性化运行时。
1928 dev-libs aws-sdk-cpp polly Amazon Polly A Text-to-Speech (TTS) cloud service that converts text into lifelike speech. Also enables text-to-speech, which needs you to enable pulseaudio support to work. Amazon Polly 一种文本转语音 (TTS) 云服务,可将文本转换为逼真的语音。还启用文本到语音,这需要您启用 pulseaudio 支持才能工作。
1929 dev-libs aws-sdk-cpp qldb Amazon Quantum Ledger Database (Amazon QLDB) is a fully managed ledger database that provides a transparent, immutable, and cryptographically verifiable transaction log owned by a central trusted authority. You can use Amazon QLDB to track all application data changes, and maintain a complete and verifiable history of changes over time. Also enables qldb-session. Amazon Quantum Ledger Database (Amazon QLDB) 是一个完全托管的分类帐数据库,它提供由中央可信机构拥有的透明、不可变和可加密验证的事务日志。您可以使用 Amazon QLDB 跟踪所有应用程序数据更改,并维护完整且可验证的更改历史记录。还启用 qldb-session。
1930 dev-libs aws-sdk-cpp queues AWS Queues is a simple queue class. Allows standard queue operations top, delete, and push. Also has higher level, asynchronous interface with callbacks. AWS Queues 是一个简单的队列类。允许标准队列操作置顶、删除和推送。还具有更高级别的带有回调的异步接口。
1931 dev-libs aws-sdk-cpp rds Amazon Relational Database Service (RDS) is a web service to set up, operate, and scale a relational database in the cloud. Also enables pi (Performance Insights) and rds-data. Amazon Relational Database Service (RDS) 是一种用于在云中设置、操作和扩展关系数据库的 Web 服务。还启用 pi (Performance Insights) 和 rds-data。
1932 dev-libs aws-sdk-cpp rekognition Add image and video analysis to applications. 将图像和视频分析添加到应用程序。
1933 dev-libs aws-sdk-cpp resource-groups AWS Resource Groups and Tag Editor Organize AWS resources into groups, tag resources using virtually any criteria, and manage, monitor, and automate tasks on grouped resources. Also enables resourcegroupstaggingapi. (Resource Groups Tagging API) AWS 资源组和标签编辑器将 AWS 资源组织成组,使用几乎任何标准标记资源,以及管理、监控和自动化分组资源上的任务。还启用了资源组标记 API。 (资源组标记 API)
1934 dev-libs aws-sdk-cpp route53 AWS Route 53 is a highly available and scalable Domain Name System (DNS) web service. Also enables route53domains and route53resolver. AWS Route 53 是一种高度可用且可扩展的域名系统 (DNS) Web 服务。还启用 route53domains 和 route53resolver。
1935 dev-libs aws-sdk-cpp rtti Flag to enable/disable rtti within the library 在库中启用/禁用 rtti 的标志
1936 dev-libs aws-sdk-cpp s3 Amazon Simple Storage Service Storage for the internet. Additionally to the s3 module, the following modules are activated: Athena : Interactive query service to analyze data in Amazon S3 using standard SQL. Glacier : Storage solution for cold data. Transfer for SFTP: Transfer files directly into and out of Amazon S3 using SFTP. Also enables s3-encryption, s3control and transfer. 用于 Internet 的 Amazon Simple Storage Service 存储。除了 s3 模块之外,还激活了以下模块: Athena:交互式查询服务,使用标准 SQL 分析 Amazon S3 中的数据。 Glacier:冷数据的存储解决方案。为 SFTP 传输:使用 SFTP 将文件直接传入和传出 Amazon S3。还启用 s3 加密、s3control 和传输。
1937 dev-libs aws-sdk-cpp sagemaker Amazon SageMaker Fully managed machine learning service. With Amazon SageMaker, data scientists and developers can quickly and easily build and train machine learning models, and then directly deploy them into a production-ready hosted environment. Also enables sagemaker-a2i-runtime, sagemaker-edge, sagemaker-featurestore-runtime and sagemaker-runtime. Amazon SageMaker 完全托管的机器学习服务。借助 Amazon SageMaker,数据科学家和开发人员可以快速轻松地构建和训练机器学习模型,然后将它们直接部署到生产就绪的托管环境中。还启用 sagemaker-a2i-runtime、sagemaker-edge、sagemaker-featurestore-runtime 和 sagemaker-runtime。
1938 dev-libs aws-sdk-cpp secretsmanager Encrypt, store, and retrieve credentials for databases and other services. 加密、存储和检索数据库和其他服务的凭据。
1939 dev-libs aws-sdk-cpp securityhub Provides a comprehensive view of the security state of AWS resources. 提供 AWS 资源安全状态的全面视图。
1940 dev-libs aws-sdk-cpp serverlessrepo AWS Serverless Application Repository Enables teams, organizations, and individual developers to find, deploy, publish, share, store, and easily assemble serverless architectures. AWS Serverless Application Repository 使团队、组织和个人开发人员能够查找、部署、发布、共享、存储和轻松组装无服务器架构。
1941 dev-libs aws-sdk-cpp shield AWS Shield, protection against DDoS attacks AWS Shield,防御 DDoS 攻击
1942 dev-libs aws-sdk-cpp sns Amazon Simple Notification Service (SNS) is a web service that enables applications, end-users, and devices to instantly send and receive notifications from the cloud. Amazon Simple Notification Service (SNS) 是一项 Web 服务,使应用程序、最终用户和设备能够即时发送和接收来自云的通知。
1943 dev-libs aws-sdk-cpp sqs Amazon Simple Queue Service (SQS): Fully managed message queuing service that makes it easy to decouple and scale microservices, distributed systems, and serverless applications. Amazon Simple Queue Service (SQS):完全托管的消息队列服务,可轻松解耦和扩展微服务、分布式系统和无服务器应用程序。
1944 dev-libs aws-sdk-cpp textract Amazon Textract to add document text detection and analysis to applications. Amazon Textract 向应用程序添加文档文本检测和分析。
1945 dev-libs aws-sdk-cpp timestream Store and analyze sensor data for IoT applications, metrics for DevOps use cases, and telemetry for application monitoring scenarios such as clickstream data analysis. Note: The two modules enabled are timestream-query and timestream-write. 存储和分析 IoT 应用程序的传感器数据、DevOps 用例的指标以及应用程序监控场景的遥测数据,例如点击流数据分析。注意:启用的两个模块是 timestream-query 和 timestream-write。
1946 dev-libs aws-sdk-cpp transcribe A transcription services for audio files. It uses advanced machine learning technologies to recognize spoken words and transcribe them into text. Also enables transcribestreaming. 音频文件的转录服务。它使用先进的机器学习技术来识别口语并将其转录成文本。还启用转录流。
1947 dev-libs aws-sdk-cpp translate A neural machine translation service for translating text to and from English across a breadth of supported languages. 一种神经机器翻译服务,用于在多种受支持的语言中将文本与英语进行翻译。
1948 dev-libs aws-sdk-cpp unity-build Build using a single unified .cpp file for each service library. Reduces the size of static library binaries 为每个服务库使用一个统一的 .cpp 文件进行构建。减少静态库二进制文件的大小
1949 dev-libs aws-sdk-cpp waf The Web Application Firewall (WAF) can monitor web requests that are forwarded to Amazon CloudFront distributions or an Application Load Balancer. Can also be used to block or allow requests based on conditions such as the IP addresses that requests originate from or values in the requests. Also enables fms, network-firewall, waf-regional and wafv2 Web 应用程序防火墙 (WAF) 可以监控转发到 Amazon CloudFront 分配或应用程序负载均衡器的 Web 请求。还可用于根据条件(例如请求源自的 IP 地址或请求中的值)来阻止或允许请求。还启用 fms、network-firewall、waf-regional 和 wafv2
1950 dev-libs aws-sdk-cpp wellarchitected Use the AWS Well-Architected Tool to review your workloads against current AWS architectural best practices. The AWS Well-Architected Tool measures the workload and provides recommendations on how to improve your architecture. 使用 AWS Well-Architected Tool 根据当前的 AWS 架构最佳实践检查您的工作负载。 AWS Well-Architected Tool 测量工作负载并就如何改进您的架构提供建议。
1951 dev-libs bitset tcmalloc Use tcmalloc from dev-util/google-perftools for allocations 使用 dev-util/google-perftools 中的 tcmalloc 进行分配
1952 dev-libs boehm-gc large optimize for large heap size (also increases max root sets)x 针对大堆大小进行优化(也增加最大根集)x
1953 dev-libs boost context Build and install the Boost.Context (and Boost.Fiber) library and all other Boost libraries that depend on it 构建并安装 Boost.Context(和 Boost.Fiber)库和所有其他依赖它的 Boost 库
1954 dev-libs boost debug Build and install only the debug version of the Boost libraries. Only enable this flag if you're developing against boost. 仅构建和安装 Boost 库的调试版本。仅当您针对 boost 进行开发时才启用此标志。
1955 dev-libs boost doc Install the full API documentation documentation. This takes over 200MB of extra disk space. 安装完整的 API 文档文档。这需要超过 200MB 的额外磁盘空间。
1956 dev-libs boost nls Build libboost_locale. This library requires compatible C library interfaces, which might not be provided by uClibc or other embedded libraries. 构建 libboost_locale。该库需要兼容的 C 库接口,uClibc 或其他嵌入式库可能不提供这些接口。
1957 dev-libs boost numpy Optionally build NumPy extensions when Boost.Python is enabled 启用 Boost.Python 时可选择构建 NumPy 扩展
1958 dev-libs boost tools Build and install the boost tools (bcp, quickbook, inspect, wave) 构建和安装 boost 工具(bcp、quickbook、inspect、wave)
1959 dev-libs botan boost Use dev-libs/boost 使用 dev-libs/boost
1960 dev-libs botan tools Install optional tools for e.g. hashing 安装可选工具,例如散列
1961 dev-libs check subunit Enable support for the subunit unit test protocol 启用对子单元测试协议的支持
1962 dev-libs crypto++ asm Support assembly hand optimized crypto functions (i.e. faster run time) 支持汇编手工优化的加密功能(即更快的运行时间)
1963 dev-libs cudnn cuda11-5 On Nvidia CUDA 11.5 在英伟达 CUDA 11.5 上
1964 dev-libs cyberjack tools Build and install optional management tools. 构建和安装可选的管理工具。
1965 dev-libs cyrus-sasl authdaemond Add Courier-IMAP authdaemond unix socket support (net-mail/courier-imap, mail-mta/courier) 添加 Courier-IMAP authdaemond unix socket 支持 (net-mail/courier-imap, mail-mta/courier)
1966 dev-libs cyrus-sasl ldapdb Enable ldapdb plugin 启用 ldapdb 插件
1967 dev-libs cyrus-sasl openldap Add ldap support for saslauthd 添加对 saslauthd 的 ldap 支持
1968 dev-libs cyrus-sasl sample Enable sample client and server 启用示例客户端和服务器
1969 dev-libs cyrus-sasl srp Enable SRP authentication 启用 SRP 身份验证
1970 dev-libs cyrus-sasl urandom Use /dev/urandom instead of /dev/random 使用 /dev/urandom 而不是 /dev/random
1971 dev-libs date only-c-locale Build only the C locale 仅构建 C 语言环境
1972 dev-libs dbus-c++ ecore Use Ecore integration 使用 Ecore 集成
1973 dev-libs dbus-c++ glib Use glib integration 使用 glib 集成
1974 dev-libs eekboard libcanberra Enable support for media-libs/libcanberra 启用对 media-libs/libcanberra 的支持
1975 dev-libs eekboard xtest Enable support for x11-libs/libXtst 启用对 x11-libs/libXtst 的支持
1976 dev-libs efl avif Enable AVIF image loader 启用 AVIF 图像加载器
1977 dev-libs efl bmp Enable WBMP image loader 启用 WBMP 图像加载器
1978 dev-libs efl dds Enable DDS image loader 启用 DDS 图像加载器
1979 dev-libs efl drm Enable DRM engine 启用 DRM 引擎
1980 dev-libs efl eet Enable Eet image loader 启用 Eet 图像加载器
1981 dev-libs efl efl-one Combine multiple core libraries into one libefl.so 将多个核心库合并为一个 libefl.so
1982 dev-libs efl fribidi Enable bidirectional text support 启用双向文本支持
1983 dev-libs efl glib Enable dev-libs/glib support 启用 dev-libs/glib 支持
1984 dev-libs efl harfbuzz Enable complex text shaping and layout support 启用复杂的文本整形和布局支持
1985 dev-libs efl heif Enable HEIF image loader 启用 HEIF 图像加载器
1986 dev-libs efl hyphen Enable text hyphenation support 启用文本断字支持
1987 dev-libs efl ibus Enable Intelligent Input Bus 启用智能输入总线
1988 dev-libs efl ico Enable Ico image loader 启用 Ico 图像加载器
1989 dev-libs efl json Enable lottie animation support 启用乐天动画支持
1990 dev-libs efl mono Enable mono bindings 启用单声道绑定
1991 dev-libs efl physics Enable Bullet physics effects and support 启用子弹物理效果和支持
1992 dev-libs efl pmaps Enable PMAPS image loader 启用 PMAPS 图像加载器
1993 dev-libs efl psd Enable PSD image loader 启用 PSD 图像加载器
1994 dev-libs efl scim Enable Smart Common Input Method 启用智能通用输入法
1995 dev-libs efl system-lz4 Use system liblz4 instead of bundled one 使用系统 liblz4 而不是捆绑一个
1996 dev-libs efl tga Enable Tga image loader 启用 Tga 图像加载器
1997 dev-libs efl tgv Enable Tgv image loader 启用 Tgv 图像加载器
1998 dev-libs efl tslib Enable x11-libs/tslib for touchscreen events 为触摸屏事件启用 x11-libs/tslib
1999 dev-libs efl unwind Enable debug support via sys-libs/libunwind 通过 sys-libs/libunwind 启用调试支持
2000 dev-libs efl xcf Enable XCF image loader 启用 XCF 图像加载器
2001 dev-libs efl xim Enable X Input Method 启用 X 输入法
2002 dev-libs efl xpresent Enable x11-libs/libXpresent support 启用 x11-libs/libXpresent 支持
2003 dev-libs elfutils lzma Support automatic decompression of LZMA-compressed files and kernel images 支持LZMA压缩文件和内核镜像的自动解压
2004 dev-libs elfutils threads Build the libraries with thread safe support 构建具有线程安全支持的库
2005 dev-libs elfutils utils Install command-line utilities (all the eu-* programs) 安装命令行实用程序(所有 eu-* 程序)
2006 dev-libs elfutils valgrind Add support for memory debugging using dev-util/valgrind 使用 dev-util/valgrind 添加对内存调试的支持
2007 dev-libs fcgi html Install HTML documentation 安装 HTML 文档
2008 dev-libs folks telepathy Load contacts from the Telepathy framework 从 Telepathy 框架加载联系人
2009 dev-libs folks utils Build the folks-inspect utility 构建 people-inspect 实用程序
2010 dev-libs fstrm utils Build fstrm utility programs 构建 fstrm 实用程序
2011 dev-libs gf2x custom-tune Extra long compile time for tuning hardware specific low-level routines 用于调整特定于硬件的低级例程的超长编译时间
2012 dev-libs gf2x fft Build an FFT API for multiplication of 2 polynomials over GF(2) 为 GF(2) 上的 2 个多项式相乘构建 FFT API
2013 dev-libs gjs sysprof Enable profiling data capture support using dev-util/sysprof-capture 使用 dev-util/sysprof-capture 启用分析数据捕获支持
2014 dev-libs glib dbus Enable dependencies required by glib libraries using dbus service to manage settings saving 使用 dbus 服务启用 glib 库所需的依赖项以管理设置保存
2015 dev-libs glib elf Enable support for listing and extracting from ELF resource files with gresource tool 启用对使用 gresource 工具列出和提取 ELF 资源文件的支持
2016 dev-libs glib mime Pull in shared MIME database that many glib-based applications require at runtime to detect or open files. Warning: do not disable this flag unless installing on a headless server. 拉入许多基于 glib 的应用程序在运行时检测或打开文件所需的共享 MIME 数据库。警告:除非安装在无头服务器上,否则不要禁用此标志。
2017 dev-libs glib sysprof Enable profiling data capture support using dev-util/sysprof-capture 使用 dev-util/sysprof-capture 启用分析数据捕获支持
2018 dev-libs glib systemtap Build support for profiling and tracing using dev-util/systemtap 使用 dev-util/systemtap 构建对分析和跟踪的支持
2019 dev-libs glib utils Install gtester-report utility to generate test report files for your software; build gresource utility with ELF support. 安装 gtester-report 实用程序为您的软件生成测试报告文件;构建具有 ELF 支持的 gresource 实用程序。
2020 dev-libs gmime smime Enable experimental S/MIME support 启用实验性 S/MIME 支持
2021 dev-libs gmp asm Enable use of hand optimized assembly routines (faster execution) 启用手动优化的装配例程(更快的执行)
2022 dev-libs gmp pic Force static libraries to be built as PIC to avoid TEXTRELs. 强制将静态库构建为 PIC 以避免 TEXTREL。
2023 dev-libs gobject-introspection doctool Install g-ir-doc-tool for generating documentation from introspected data 安装 g-ir-doc-tool 以从自省数据生成文档
2024 dev-libs hidapi fox Build a x11-libs/fox GUI 构建 x11-libs/fox GUI
2025 dev-libs imath large-stack Enables code to take advantage of large stack support 使代码能够利用大堆栈支持
2026 dev-libs input-pad eekboard Enable support for dev-libs/eekboard 启用对 dev-libs/eekboard 的支持
2027 dev-libs input-pad xtest Enable support for x11-libs/libXtst 启用对 x11-libs/libXtst 的支持
2028 dev-libs intel-compute-runtime l0 Install the oneAPI Level Zero driver alongside the OpenCL one 在 OpenCL 一旁安装 oneAPI Level Zero 驱动程序
2029 dev-libs intel-compute-runtime vaapi Support the sharing of surfaces with Video Acceleration API (OpenCL Extension #36) 支持与 Video Acceleration API 共享表面(OpenCL Extension #36)
2030 dev-libs jemalloc lazy-lock Enable lazy locking (only lock when multi-threaded) 启用延迟锁定(仅在多线程时锁定)
2031 dev-libs jemalloc prof Enable allocation profiling 启用分配分析
2032 dev-libs jemalloc stats Enable statistics calculation/reporting 启用统计计算/报告
2033 dev-libs jemalloc xmalloc Add support for xmalloc (abort-on-out-of-memory) 添加对 xmalloc 的支持(内存不足时中止)
2034 dev-libs kosmindoormap openinghours Enable support for highlighting currently open amenities/shops/etc. 启用对突出显示当前开放的便利设施/商店/等的支持。
2035 dev-libs kreport marble Enable displaying of maps using kde-apps/marble 使用 kde-apps/marble 启用地图显示
2036 dev-libs kreport scripting Support Qml scripting using dev-qt/qtdeclarative 使用 dev-qt/qtdeclarative 支持 Qml 脚本
2037 dev-libs libbase58 tools Build command line base58 tool 构建命令行base58工具
2038 dev-libs libbytesize tools Build bscalc python CLI tool 构建 bscalc python CLI 工具
2039 dev-libs libcbor custom-alloc Custom, dynamically defined allocator support 自定义、动态定义的分配器支持
2040 dev-libs libcdio minimal Only build the libcdio library and little more, just to be used to link against from multimedia players. With this USE flag enabled, none of the command-line utilities are built, nor is the CDDA library. 仅构建 libcdio 库,仅用于连接多媒体播放器。启用此 USE 标志后,不会构建任何命令行实用程序,也不会构建 CDDA 库。
2041 dev-libs libcec cubox Enable support for enable support for the TDA995x 启用对 TDA995x 的启用支持
2042 dev-libs libcec exynos Enable support for Exynos chipsets 启用对 Exynos 芯片组的支持
2043 dev-libs libcec kernel-cec Enable support for Linux kernel CEC framework 启用对 Linux 内核 CEC 框架的支持
2044 dev-libs libcec raspberry-pi Enable support for the Raspberry Pi 启用对 Raspberry Pi 的支持
2045 dev-libs libcec tools Enable build of cec-client and other test and demo executable tools 启用 cec-client 和其他测试和演示可执行工具的构建
2046 dev-libs libcec udev Enable detection of USB-CEC port by udev 启用 udev 检测 USB-CEC 端口
2047 dev-libs libcec xrandr Enable detection of active HDMI using xrandr extensions 使用 xrandr 扩展启用活动 HDMI 检测
2048 dev-libs libcgroup daemon Install the configuration tools and init/config files. 安装配置工具和 init/config 文件。
2049 dev-libs libcgroup tools Install the cgroup rules processing daemon and init/config files. 安装 cgroup 规则处理守护进程和 init/config 文件。
2050 dev-libs libcharon client Install the charon client library 安装 charon 客户端库
2051 dev-libs libdbusmenu gtk Enable support for GTK+2 启用对 GTK+2 的支持
2052 dev-libs libdbusmenu gtk3 Enable support for GTK+3 启用对 GTK+3 的支持
2053 dev-libs libdynd cuda Enable NVIDIA CUDA toolkit support 启用 NVIDIA CUDA 工具包支持
2054 dev-libs libevent clock-gettime Disable use of clock_gettime even if it is available 禁止使用clock_gettime,即使它可用
2055 dev-libs libevent debug Support for running in debug mode 支持在调试模式下运行
2056 dev-libs libevent malloc-replacement Support for replacing the memory management functions 支持替换内存管理功能
2057 dev-libs libevent mbedtls Support for net-libs/mbedtls encryption 支持 net-libs/mbedtls 加密
2058 dev-libs libevent ssl Support for dev-libs/openssl encryption 支持 dev-libs/openssl 加密
2059 dev-libs libevent verbose-debug Support for verbose debug logging 支持详细调试日志记录
2060 dev-libs libffi exec-static-trampoline Don't rely on dynamic code generation for trampolines. 不要依赖蹦床的动态代码生成。
2061 dev-libs libffi experimental-loong Add experimental LoongArch patchset 添加实验性 LoongArch 补丁集
2062 dev-libs libffi pax-kernel Use PaX emulated trampolines, for we can't use PROT_EXEC 使用 PaX 模拟蹦床,因为我们不能使用 PROT_EXEC
2063 dev-libs libffi-compat pax-kernel Use PaX emulated trampolines, for we can't use PROT_EXEC 使用 PaX 模拟蹦床,因为我们不能使用 PROT_EXEC
2064 dev-libs libfido2 nfc Enable experimental NFC support 启用实验性 NFC 支持
2065 dev-libs libflatarray cuda Enables plugins for NVIDIA GPUs (e.g. CUDAAllocator) 为 NVIDIA GPU 启用插件(例如 CUDAAllocator)
2066 dev-libs libgcrypt asm Enable assembly for optimization 启用装配以进行优化
2067 dev-libs libgdata crypt Use app-crypt/gcr for keeping tokens and passwords in non-pageable memory for improved security 使用 app-crypt/gcr 将令牌和密码保存在不可分页的内存中以提高安全性
2068 dev-libs libgdata gnome-online-accounts Enable net-libs/gnome-online-accounts support 启用 net-libs/gnome-online-accounts 支持
2069 dev-libs libgit2 gssapi Enable GSSAPI support for SPNEGO auth 为 SPNEGO 身份验证启用 GSSAPI 支持
2070 dev-libs libgit2 ssh Enable SSH transport support 启用 SSH 传输支持
2071 dev-libs libgit2 trace Enable tracing support 启用跟踪支持
2072 dev-libs libgit2-glib ssh Enable SSH transport support 启用 SSH 传输支持
2073 dev-libs libgpg-error common-lisp Install common-lisp files 安装 common-lisp 文件
2074 dev-libs libgpiod tools Build some useful gpio tools that use libgpiod. 构建一些使用 libgpiod 的有用的 gpio 工具。
2075 dev-libs libgweather glade Installs catalog files for dev-util/glade 为 dev-util/glade 安装目录文件
2076 dev-libs libical glib Enable dev-libs/glib interface support 启用 dev-libs/glib 接口支持
2077 dev-libs libisoburn external-filters Allow the use of external processes as file content filters (Note: this is a potential security risk) 允许使用外部进程作为文件内容过滤器(注意:这是一个潜在的安全风险)
2078 dev-libs libisoburn external-filters-setuid Also allow the use of external setuid processes as file content filters (Note: this is a potential security risk) 还允许使用外部 setuid 进程作为文件内容过滤器(注意:这是一个潜在的安全风险)
2079 dev-libs libisoburn frontend-optional Use dev-tcltk/bwidget which is not strictly required for the frontend 使用前端不严格要求的 dev-tcltk/bwidget
2080 dev-libs libisoburn launch-frontend Enable the tcl gui for xorriso 为 xorriso 启用 tcl gui
2081 dev-libs libisoburn launch-frontend-setuid Enable the tcl gui for xorriso under setuid 在 setuid 下为 xorriso 启用 tcl gui
2082 dev-libs libisofs verbose-debug Enable verbose debug messages 启用详细调试消息
2083 dev-libs libjcat gpg Enable GPG verification support via app-crypt/gpgme 通过 app-crypt/gpgme 启用 GPG 验证支持
2084 dev-libs libjcat pkcs7 Enable PKCS7 verification support via net-libs/gnutls 通过 net-libs/gnutls 启用 PKCS7 验证支持
2085 dev-libs liblogging rfc3195 Enables RFC 3195 protocol (aka syslog-reliable) support. If you don't know what this is, you don't need it! 启用 RFC 3195 协议(又名 syslog-reliable)支持。如果你不知道这是什么,你就不需要它!
2086 dev-libs liblogging stdlog Enables liblogging's core component (think of it as a the next version of the syslog(3) API). 启用 liblogging 的核心组件(将其视为 syslog(3) API 的下一个版本)。
2087 dev-libs libmemcached hsieh Use Hsieh hash algorithm. 使用 Hsieh 哈希算法。
2088 dev-libs libmemcached libevent Use the libevent event loop interface. 使用 libevent 事件循环接口。
2089 dev-libs libmemcached sasl Use sasl auth for communications. 使用 sasl auth 进行通信。
2090 dev-libs libmemcached-awesome libevent Use the libevent event loop interface. 使用 libevent 事件循环接口。
2091 dev-libs libmemcached-awesome sasl Use sasl auth for communications. 使用 sasl auth 进行通信。
2092 dev-libs libnfc pcsc-lite Enable NFC drivers that require pcsc-lite 启用需要 pcsc-lite 的 NFC 驱动程序
2093 dev-libs libnl python Install experimental dev-lang/python bindings 安装实验性 dev-lang/python 绑定
2094 dev-libs libnl utils Install command line interface utils 安装命令行界面工具
2095 dev-libs liborcus spreadsheet-model Enable the spreadsheet model implementation 启用电子表格模型实现
2096 dev-libs liborcus tools Build various low-level parsers 构建各种低级解析器
2097 dev-libs libowfat diet Compile against dev-libs/dietlibc 针对 dev-libs/dietlibc 编译
2098 dev-libs libp11 doc Generate and install API documentation for the package. 为包生成和安装 API 文档。
2099 dev-libs libpcre bzip2 Add support for pcregrep command to search within bzip2-compressed files (via app-arch/bzip2). 添加对 pcregrep 命令的支持以在 bzip2 压缩文件中搜索(通过 app-arch/bzip2)。
2100 dev-libs libpcre pcre16 Build PCRE library for 16 bit characters (e.g. UTF-16). 为 16 位字符(例如 UTF-16)构建 PCRE 库。
2101 dev-libs libpcre pcre32 Build PCRE library for 32 bit characters (e.g. UTF-32). 为 32 位字符(例如 UTF-32)构建 PCRE 库。
2102 dev-libs libpcre readline Add support for command line editing to pcretest, through sys-libs/readline. 通过 sys-libs/readline 为 pcretest 添加对命令行编辑的支持。
2103 dev-libs libpcre zlib Add support for pcregrep command to search within gzip-compressed files (via sys-libs/zlib). 添加对 pcregrep 命令的支持以在 gzip 压缩文件中搜索(通过 sys-libs/zlib)。
2104 dev-libs libpcre2 bzip2 Add support for pcregrep command to search within bzip2-compressed files (via app-arch/bzip2). 添加对 pcregrep 命令的支持以在 bzip2 压缩文件中搜索(通过 app-arch/bzip2)。
2105 dev-libs libpcre2 pcre16 Build PCRE library for 16 bit characters (e.g. UTF-16). 为 16 位字符(例如 UTF-16)构建 PCRE 库。
2106 dev-libs libpcre2 pcre32 Build PCRE library for 32 bit characters (e.g. UTF-32). 为 32 位字符(例如 UTF-32)构建 PCRE 库。
2107 dev-libs libpcre2 readline Add support for command line editing to pcretest, through sys-libs/readline. 通过 sys-libs/readline 为 pcretest 添加对命令行编辑的支持。
2108 dev-libs libpcre2 zlib Add support for pcregrep command to search within gzip-compressed files (via sys-libs/zlib). 添加对 pcregrep 命令的支持以在 gzip 压缩文件中搜索(通过 sys-libs/zlib)。
2109 dev-libs libpeas glade Install the glade catalog 安装林间空地目录
2110 dev-libs libpeas python Build support for loading dev-lang/python plugins 构建对加载 dev-lang/python 插件的支持
2111 dev-libs libpy sparsehash Include libpy wrappers for dev-cpp/sparsehash 包括用于 dev-cpp/sparsehash 的 libpy 包装器
2112 dev-libs librdkafka lz4 Enable support for Kafka's LZ4 compression based on KIP-57 (uses app-arch/lz4) 启用对基于 KIP-57 的 Kafka 的 LZ4 压缩的支持(使用 app-arch/lz4)
2113 dev-libs librelp gnutls Use GnuTLS 使用 GnuTLS
2114 dev-libs librelp openssl Use OpenSSL 使用 OpenSSL
2115 dev-libs libsecp256k1 asm Enable x86_64 assembly optimisation 启用 x86_64 程序集优化
2116 dev-libs libsecp256k1 ecdh Enable ECDH shared secret computation 启用 ECDH 共享密钥计算
2117 dev-libs libsecp256k1 endomorphism Enable endomorphism 启用内同态
2118 dev-libs libsecp256k1 experimental Allow experimental USE flags 允许实验性 USE 标志
2119 dev-libs libsecp256k1 extrakeys Enable extrakeys module 启用额外键模块
2120 dev-libs libsecp256k1 lowmem Reduce runtime memory usage at the expense of performance (ecmult window size 2, gen precision 2) 以牺牲性能为代价减少运行时内存使用(ecmult 窗口大小 2,gen 精度 2)
2121 dev-libs libsecp256k1 precompute-ecmult Use over 512 MB memory at runtime for better performance (ecmult window size 24, gen precision 8) 在运行时使用超过 512 MB 的内存以获得更好的性能(ecmult 窗口大小 24,gen 精度 8)
2122 dev-libs libsecp256k1 recovery Enable ECDSA pubkey recovery module 启用 ECDSA 公钥恢复模块
2123 dev-libs libsecp256k1 schnorr Enable Schnorr signature module 启用 Schnorr 签名模块
2124 dev-libs libsecp256k1 test-openssl Enable OpenSSL comparison tests 启用 OpenSSL 比较测试
2125 dev-libs libsecp256k1 valgrind Compile in valgrind memory hints 在 valgrind 内存提示中编译
2126 dev-libs libslz tools Install additional tools (zenc, zdec) 安装附加工具(zenc、zdec)
2127 dev-libs libsodium asm Enables assembly implementations 启用程序集实现
2128 dev-libs libsodium urandom Use /dev/urandom instead of /dev/random 使用 /dev/urandom 而不是 /dev/random
2129 dev-libs libtasn1 valgrind Enable usage of dev-util/valgrind in debug 在调试中启用 dev-util/valgrind
2130 dev-libs libtermkey demos Install demos, which pulls in dev-libs/glib 安装演示,它会引入 dev-libs/glib
2131 dev-libs libtomcrypt libtommath Uses dev-libs/libtommath for mathematical operations 使用 dev-libs/libtommath 进行数学运算
2132 dev-libs libtomcrypt tomsfastmath Uses dev-libs/tomsfastmath for mathematical operations 使用 dev-libs/tomsfastmath 进行数学运算
2133 dev-libs libucl regex Enable regex support 启用正则表达式支持
2134 dev-libs libucl sign Enable signatures check 启用签名检查
2135 dev-libs libucl urls Enable URLs fetch 启用 URL 获取
2136 dev-libs libucl utils Install utils for checking other configs 安装用于检查其他配置的实用程序
2137 dev-libs libunibreak doc Install html API documentation. 安装 html API 文档。
2138 dev-libs libverto glib Support event loops using dev-libs/glib 使用 dev-libs/glib 支持事件循环
2139 dev-libs libverto libev Support event loops using dev-libs/libev 使用 dev-libs/libev 支持事件循环
2140 dev-libs libverto libevent Support event loops using dev-libs/libevent 使用 dev-libs/libevent 支持事件循环
2141 dev-libs libverto tevent Support event loops using sys-libs/tevent 使用 sys-libs/tevent 支持事件循环
2142 dev-libs libvoikko expvfst Enable experimental features of VFST morphology backend 启用 VFST 形态学后端的实验功能
2143 dev-libs libvoikko hfst Enable HFST morphology backend 启用 HFST 形态后端
2144 dev-libs libxmlb stemmer Enable language stemming support 启用语言词干支持
2145 dev-libs libzia ftdi Enable support for FTDI USB chips 启用对 FTDI USB 芯片的支持
2146 dev-libs libzip mbedtls Use net-libs/mbedtls as TLS provider 使用 net-libs/mbedtls 作为 TLS 提供者
2147 dev-libs libzip tools Install binary tools to compare, modify and merge zip files 安装二进制工具来比较、修改和合并 zip 文件
2148 dev-libs link-grammar aspell Adds support for app-text/aspell spell checker 添加对 app-text/aspell 拼写检查器的支持
2149 dev-libs link-grammar hunspell Adds support for app-text/hunspell spell checker 添加对 app-text/hunspell 拼写检查器的支持
2150 dev-libs log4cplus explicit-initialization Require explicit initialization 需要显式初始化
2151 dev-libs log4cplus iconv Use inconv for wchar_t <-> char conversions. See also log4cplus's unicode.txt documentation 将 inconv 用于 wchar_t <-> char 转换。另请参阅 log4cplus 的 unicode.txt 文档
2152 dev-libs log4cplus server Build the logging server 构建日志服务器
2153 dev-libs log4cplus working-c-locale Use the C99 locale facilities for wchar_t <-> char conversions. See also log4cplus's unicode.txt documentation 使用 C99 语言环境工具进行 wchar_t <-> 字符转换。另请参阅 log4cplus 的 unicode.txt 文档
2154 dev-libs log4cplus working-locale Use C++'s std::locale for wchar_t <-> char conversions. See also log4cplus's unicode.txt documentation 使用 C++ 的 std::locale 进行 wchar_t <-> char 转换。另请参阅 log4cplus 的 unicode.txt 文档
2155 dev-libs log4cxx smtp Offer SMTP support via net-libs/libesmtp 通过 net-libs/libesmtp 提供 SMTP 支持
2156 dev-libs m17n-lib X Build the Graphical User Interface API and utilities 构建图形用户界面 API 和实用程序
2157 dev-libs m17n-lib anthy Enable support for app-i18n/anthy input method 启用对 app-i18n/anthy 输入法的支持
2158 dev-libs m17n-lib athena Enable the MIT Athena widget set (x11-libs/libXaw) 启用 MIT Athena 小部件集 (x11-libs/libXaw)
2159 dev-libs m17n-lib gd Build API and utilities based on media-libs/gd. This flag is only meaningful if the X USE flag is also enabled 基于 media-libs/gd 构建 API 和实用程序。此标志仅在 X USE 标志也启用时才有意义
2160 dev-libs m17n-lib libotf Use dev-libs/libotf to handle OpenType fonts 使用 dev-libs/libotf 处理 OpenType 字体
2161 dev-libs m17n-lib libxml2 Use dev-libs/libxml2 to parse XML 使用 dev-libs/libxml2 解析 XML
2162 dev-libs msgpack boost Enable boost support 启用升压支持
2163 dev-libs ncnn tools Enable installation of various tools in addition to the library 除了库之外,还可以安装各种工具
2164 dev-libs ncnn vulkan Enable vulkan compute support 启用 vulkan 计算支持
2165 dev-libs nettle asm Support assembly hand optimized crypto functions (i.e. faster run time) 支持汇编手工优化的加密功能(即更快的运行时间)
2166 dev-libs nss cacert Include root/class3 certs from CAcert (https://www.cacert.org/) 包括来自 CAcert (https://www.cacert.org/) 的 root/class3 证书
2167 dev-libs nss utils Install utilities included with the library 安装库中包含的实用程序
2168 dev-libs ocl-icd khronos-headers Install Khronos OpenCL headers. 安装 Khronos OpenCL 头文件。
2169 dev-libs onigmo combination-explosion-check enable combination explosion check 启用组合爆炸检查
2170 dev-libs onigmo crnl-as-line-terminator enable CR+NL as line terminator 启用 CR+NL 作为行终止符
2171 dev-libs oniguruma crnl-as-line-terminator Enable CR+NL as line terminator 启用 CR+NL 作为行终止符
2172 dev-libs opencryptoki tpm Enable support for Trusted Platform Module (TPM) using app-crypt/trousers 使用 app-crypt/trousers 启用对可信平台模块 (TPM) 的支持
2173 dev-libs openct debug Add debug output to the driver library for pcsc-lite. 将调试输出添加到 pcsc-lite 的驱动程序库。
2174 dev-libs openct pcsc-lite Build a driver library for sys-apps/pcsc-lite, providing PC/SC API access to devices supported by OpenCT. 为 sys-apps/pcsc-lite 构建驱动程序库,提供对 OpenCT 支持的设备的 PC/SC API 访问。
2175 dev-libs openobex irda Enable IrDA support 启用 IrDA 支持
2176 dev-libs opensc ctapi Use CT-API for accessing Smartcard hardware 使用 CT-API 访问智能卡硬件
2177 dev-libs opensc notify Enable notifications 启用通知
2178 dev-libs opensc openct Use dev-libs/openct (and CT-API) for accessing Smartcard hardware 使用 dev-libs/openct(和 CT-API)访问智能卡硬件
2179 dev-libs opensc pcsc-lite Use sys-apps/pcsc-lite (and PC/SC API) for accessing Smartcard hardware 使用 sys-apps/pcsc-lite(和 PC/SC API)访问智能卡硬件
2180 dev-libs opensc secure-messaging Enable secure messaging 启用安全消息传递
2181 dev-libs openssl asm Support assembly hand optimized crypto functions (i.e. faster run time) 支持汇编手工优化的加密功能(即更快的运行时间)
2182 dev-libs openssl bindist Disable/Restrict EC algorithms (as they seem to be patented) -- note: changes the ABI 禁用/限制 EC 算法(因为它们似乎已获得专利)——注意:更改 ABI
2183 dev-libs openssl fips Enable FIPS provider 启用 FIPS 提供程序
2184 dev-libs openssl ktls Enable support for Kernel implementation of TLS (kTLS) 启用对内核实现 TLS (kTLS) 的支持
2185 dev-libs openssl rfc3779 Enable support for RFC 3779 (X.509 Extensions for IP Addresses and AS Identifiers) 启用对 RFC 3779(IP 地址和 AS 标识符的 X.509 扩展)的支持
2186 dev-libs openssl sslv2 Support for the old/insecure SSLv2 protocol -- note: not required for TLS/https 支持旧的/不安全的 SSLv2 协议——注意:TLS/https 不需要
2187 dev-libs openssl sslv3 Support for the old/insecure SSLv3 protocol -- note: not required for TLS/https 支持旧的/不安全的 SSLv3 协议——注意:TLS/https 不需要
2188 dev-libs openssl tls-compression Enable support for discouraged TLS compression 启用对不鼓励的 TLS 压缩的支持
2189 dev-libs openssl tls-heartbeat Enable the Heartbeat Extension in TLS and DTLS 在 TLS 和 DTLS 中启用心跳扩展
2190 dev-libs openssl weak-ssl-ciphers Build support for SSL/TLS ciphers that are considered "weak" 构建对被视为“弱”的 SSL/TLS 密码的支持
2191 dev-libs openssl-compat asm Support assembly hand optimized crypto functions (i.e. faster run time) 支持汇编手工优化的加密功能(即更快的运行时间)
2192 dev-libs openssl-compat bindist Disable/Restrict EC algorithms (as they seem to be patented) -- note: changes the ABI 禁用/限制 EC 算法(因为它们似乎已获得专利)——注意:更改 ABI
2193 dev-libs openssl-compat rfc3779 Enable support for RFC 3779 (X.509 Extensions for IP Addresses and AS Identifiers) 启用对 RFC 3779(IP 地址和 AS 标识符的 X.509 扩展)的支持
2194 dev-libs openssl-compat sslv2 Support for the old/insecure SSLv2 protocol -- note: not required for TLS/https 支持旧的/不安全的 SSLv2 协议——注意:TLS/https 不需要
2195 dev-libs openssl-compat sslv3 Support for the old/insecure SSLv3 protocol -- note: not required for TLS/https 支持旧的/不安全的 SSLv3 协议——注意:TLS/https 不需要
2196 dev-libs openssl-compat tls-compression Enable support for discouraged TLS compression 启用对不鼓励的 TLS 压缩的支持
2197 dev-libs openssl-compat tls-heartbeat Enable the Heartbeat Extension in TLS and DTLS 在 TLS 和 DTLS 中启用心跳扩展
2198 dev-libs openssl-compat weak-ssl-ciphers Build support for SSL/TLS ciphers that are considered "weak" 构建对被视为“弱”的 SSL/TLS 密码的支持
2199 dev-libs pkcs11-helper nss Enable NSS crypto engine 启用 NSS 加密引擎
2200 dev-libs pocl accel Enable the generic hardware accelerator device driver 启用通用硬件加速器设备驱动程序
2201 dev-libs pocl cl20 Enable reporting OpenCL 2.0 for the CPU device 为 CPU 设备启用报告 OpenCL 2.0
2202 dev-libs pocl conformance Ensures that certain build options which would result in non-conformant pocl build stay disabled. Note that this does not quarantee a fully conformant build of pocl. 确保某些会导致不符合 pocl 构建的构建选项保持禁用状态。请注意,这并不能保证完全符合 pocl 的构建。
2203 dev-libs pocl cuda Enable the CUDA backend for NVIDIA GPUs 为 NVIDIA GPU 启用 CUDA 后端
2204 dev-libs pocl float-conversion When enabled, OpenCL printf() call's f/e/g formatters are handled by pocl. When disabled, these are handled by system C library. 启用后,OpenCL printf() 调用的 f/e/g 格式化程序由 pocl 处理。禁用时,这些由系统 C 库处理。
2205 dev-libs pocl hardening Enable hardening against various attacks. May worsen performance 启用针对各种攻击的强化。可能会降低性能
2206 dev-libs pocl hwloc Enable hwloc support 启用 hwloc 支持
2207 dev-libs pocl memmanager Enables custom memory manager. Except for special circumstances, this should be disabled 启用自定义内存管理器。除特殊情况外,应禁用此项
2208 dev-libs poco 7z Add Support for the 7z archive format 添加对 7z 存档格式的支持
2209 dev-libs poco activerecord Add ActiveRecord support 添加 ActiveRecord 支持
2210 dev-libs poco cppparser Build and install a minimal C++ parser 构建和安装最小的 C++ 解析器
2211 dev-libs poco crypto Encryption and digital signing classes 加密和数字签名类
2212 dev-libs poco data Database abstraction layer to easily send/retrieve data to/from various databases 数据库抽象层可以轻松地向/从各种数据库发送/检索数据
2213 dev-libs poco file2pagecompiler Utility to convert ordinary files to Page Compiler source files 将普通文件转换为 Page Compiler 源文件的实用程序
2214 dev-libs poco json Add JSON support 添加 JSON 支持
2215 dev-libs poco mariadb Prefer dev-db/mariadb-connector-c over dev-db/mysql-connector-c 首选 dev-db/mariadb-connector-c 而不是 dev-db/mysql-connector-c
2216 dev-libs poco mongodb Add dev-db/mongodb support 添加 dev-db/mongodb 支持
2217 dev-libs poco net Classes to write network clients & servers 编写网络客户端和服务器的类
2218 dev-libs poco pagecompiler Simple compiler translating HTML pages containing embedded C++ code into HTTPRequestHandler classes 将包含嵌入式 C++ 代码的 HTML 页面转换为 HTTPRequestHandler 类的简单编译器
2219 dev-libs poco pocodoc POCO documentation generator POCO 文档生成器
2220 dev-libs poco util Several utility classes (like logger, timer, config file parser) 几个实用程序类(如记录器、计时器、配置文件解析器)
2221 dev-libs poco zip Add support for the zip & gz archive formats 添加对 zip 和 gz 存档格式的支持
2222 dev-libs ppl cdd Build the ppl_lcdd program for vertex/facet enumeration accepting the same input format as the programs shipped with sci-libs/cddlib and sci-libs/lrslib 构建 ppl_lcdd 程序以进行顶点/面枚举,接受与 sci-libs/cddlib 和 sci-libs/lrslib 附带的程序相同的输入格式
2223 dev-libs ppl lpsol Build the ppl_lpsol linear program solver that uses sci-mathematics/glpk for its input routines 构建使用 sci-mathematics/glpk 作为输入例程的 ppl_lpsol 线性程序求解器
2224 dev-libs raft zfs ZFS support ZFS 支持
2225 dev-libs serdisplib tools Build optional tools. 构建可选工具。
2226 dev-libs simdjson tools Build and install extra command line tools 构建和安装额外的命令行工具
2227 dev-libs softhsm gost Enable gost algorithm 启用 gost 算法
2228 dev-libs softhsm migration-tool Build db migration tool 构建数据库迁移工具
2229 dev-libs starpu cuda Enable NVIDIA CUDA toolkit support 启用 NVIDIA CUDA 工具包支持
2230 dev-libs starpu gcc-plugin Enable GCC extension plugin (experimental) 启用 GCC 扩展插件(实验性)
2231 dev-libs starpu opencl Enable OpenCL support 启用 OpenCL 支持
2232 dev-libs starpu spinlock-check Enable spinlock check 启用自旋锁检查
2233 dev-libs starpu valgrind Enable dev-util/valgrind support 启用 dev-util/valgrind 支持
2234 dev-libs thrift libevent Build support for dev-libs/libevent 构建对 dev-libs/libevent 的支持
2235 dev-libs tinyxml stl Compile with TIXML_USE_STL support 使用 TIXML_USE_STL 支持编译
2236 dev-libs tntnet server Enable tntnet server daemon 启用 tntnet 服务器守护进程
2237 dev-libs totem-pl-parser archive Enables ISO detection with app-arch/libarchive 使用 app-arch/libarchive 启用 ISO 检测
2238 dev-libs totem-pl-parser crypt Support AmazonAMZ decoding with dev-libs/libgcrypt 使用 dev-libs/libgcrypt 支持 AmazonAMZ 解码
2239 dev-libs totem-pl-parser uchardet Enable charset discovery via app-i18n/uchardet 通过 app-i18n/uchardet 启用字符集发现
2240 dev-libs tre agrep Build agrep tool 构建 agrep 工具
2241 dev-libs tre alloca Enable if you want TRE to use alloca() instead of malloc() when allocating memory needed for regexec operations 如果您希望 TRE 在分配 regexec 操作所需的内存时使用 alloca() 而不是 malloc() 则启用
2242 dev-libs tre approx Enable the approximate matching functionality 启用近似匹配功能
2243 dev-libs weston desktop Enable the desktop shell 启用桌面外壳
2244 dev-libs weston drm Enable drm compositor support 启用 drm 合成器支持
2245 dev-libs weston editor Install wayland-editor example application 安装 wayland-editor 示例应用程序
2246 dev-libs weston fbdev Enable fbdev compositor support 启用 fbdev 合成器支持
2247 dev-libs weston fullscreen Enable fullscreen shell 启用全屏外壳
2248 dev-libs weston gles2 Use GLESv2 cairo instead of full GL 使用 GLESv2 cairo 而不是完整的 GL
2249 dev-libs weston headless Headless backend and a noop renderer, mainly for testing purposes 无头后端和 noop 渲染器,主要用于测试目的
2250 dev-libs weston ivi Enable the IVI shell 启用 IVI 外壳
2251 dev-libs weston kiosk Enable the kiosk shell 启用信息亭外壳
2252 dev-libs weston pipewire Enable virtual remote output with Pipewire on DRM backend 在 DRM 后端使用 Pipewire 启用虚拟远程输出
2253 dev-libs weston rdp Enable Remote Desktop Protocol compositor support 启用远程桌面协议合成器支持
2254 dev-libs weston remoting Enable plugin to stream output to remote hosts using media-libs/gstreamer 启用插件以使用 media-libs/gstreamer 将输出流式传输到远程主机
2255 dev-libs weston resize-optimization Increase performance, allocate more RAM. Recommended to disable on Raspberry Pi 提高性能,分配更多内存。建议在树莓派上禁用
2256 dev-libs weston screen-sharing Enable screen-sharing through RDP 通过 RDP 启用屏幕共享
2257 dev-libs weston seatd Enable support for rootless session via sys-auth/seatd 通过 sys-auth/seatd 启用对无根会话的支持
2258 dev-libs weston wayland-compositor Enable Wayland compositor support 启用 Wayland 合成器支持
2259 dev-libs weston xwayland Enable ability support native X11 applications 启用能力支持原生 X11 应用程序
2260 dev-libs xapian brass Enabled brass backend db support 启用黄铜后端数据库支持
2261 dev-libs xapian chert Enabled chert backend db support 启用 chert 后端数据库支持
2262 dev-libs xapian inmemory Enabled inmemory backend db support 启用内存后端数据库支持
2263 dev-libs xapian remote Enabled remote backend db support 启用远程后端数据库支持
2264 dev-libs xerces-c iconv Use iconv (virtual/libiconv) as message loader and transcoder (in general it would be possible to use iconv only as message loader and something else like icu or the native method as transcoder and vice-versa, but this is a less common case and hard to handle) 使用 iconv (virtual/libiconv) 作为消息加载器和转码器(通常可以使用 iconv 作为消息加载器和其他类似 icu 或本机方法作为转码器,反之亦然,但这是一种不太常见的情况,并且难以处理)
2265 dev-libs xerces-c threads Enable threading support through pthread (or other libraries on AIX, IRIX, HPUX, Solars). Highly recommended 通过 pthread(或 AIX、IRIX、HPUX、Solars 上的其他库)启用线程支持。强烈推荐
2266 dev-libs xmlrpc-c abyss Build the Abyss mini web-server. 构建深渊迷你网络服务器。
2267 dev-libs xmlrpc-c libxml2 Use dev-libs/libxml2 to parse XML instead of the internal expat library. 使用 dev-libs/libxml2 来解析 XML 而不是内部的 expat 库。
2268 dev-libs xmlrpc-c threads Controls whether to build the Abyss web-server with pthreads or fork 'threading'. 控制是否使用 pthreads 或 fork 'threading' 构建 Abyss web 服务器。
2269 dev-libs xmlsec gcrypt Install xmlsec-gcrypt library 安装 xmlsec-gcrypt 库
2270 dev-libs xmlsec gnutls Install xmlsec-gnutls library 安装 xmlsec-gnutls 库
2271 dev-libs xmlsec nss Install xmlsec-nss library 安装 xmlsec-nss 库
2272 dev-libs xmlsec openssl Install xmlsec-openssl library 安装 xmlsec-openssl 库
2273 dev-libs yaz ziffy Install ziffy, a promiscuous Z39.50 APDU sniffer 安装 ziffy,一个混杂的 Z39.50 APDU 嗅探器
2274 dev-lisp clisp hyperspec Use local hyperspec instead of online version 使用本地 hyperspec 而不是在线版本
2275 dev-lisp clisp svm Build CLISP with support for the Support Vector Machine module 构建支持支持向量机模块的 CLISP
2276 dev-lisp clx doc Builds documentation 构建文档
2277 dev-lisp cmucl X Build CLX, CLM, or Hemlock 构建 CLX、CLM 或 Hemlock
2278 dev-lisp cmucl doc Installs package documentation 安装包文档
2279 dev-lisp cmucl source Include source code for CMUCL in installation 在安装中包含 CMUCL 的源代码
2280 dev-lisp ecls gengc Use generational garbage collection (experimental) 使用分代垃圾回收(实验性)
2281 dev-lisp ecls precisegc Use type information during garbage collection (experimental) 在垃圾收集期间使用类型信息(实验性)
2282 dev-lisp gcl ansi Build a GCL with ANSI support (else build a traditional CLtL1 image) 构建一个支持 ANSI 的 GCL(或者构建一个传统的 CLtL1 镜像)
2283 dev-lisp gcl athena Build xgcl - an interface to x11-libs/libXaw 构建 xgcl - x11-libs/libXaw 的接口
2284 dev-lua lua-cjson internal-fpconv Enable internal number conversion routines, can increase overall performance by up to 50% 启用内部数字转换例程,可将整体性能提高多达 50%
2285 dev-ml dose3 parmap Adds multi-core CPU support via dev-ml/parmap. 通过 dev-ml/parmap 添加多核 CPU 支持。
2286 dev-ml dose3 rpm4 Adds support for handling rpm4 files. 添加对处理 rpm4 文件的支持。
2287 dev-ml dose3 zip Adds support for handling zip files. 添加对处理 zip 文件的支持。
2288 dev-ml lablgtk glade Enable libglade bindings compilation. 启用 libglade 绑定编译。
2289 dev-ml lablgtk gnomecanvas Enable libgnomecanvas bindings compilation. 启用 libgnomecanvas 绑定编译。
2290 dev-ml lablgtk sourceview Enable GtkSourceView support 启用 GtkSourceView 支持
2291 dev-ml logs cli Enables the Logs_cli library that provides command line support for controlling Logs. 启用为控制日志提供命令行支持的 Logs_cli 库。
2292 dev-ml logs fmt Enables the Logs_fmt reporter. 启用 Logs_fmt 报告器。
2293 dev-ml logs lwt Enables the Logs_lwt library that provides Lwt logging functions. 启用提供 Lwt 日志记录功能的 Logs_lwt 库。
2294 dev-ml ocaml-fileutils ocamlopt Whether the OCaml native code compiler is used. Must be set globally and match dev-lang/ocaml. 是否使用 OCaml 本机代码编译器。必须全局设置并匹配 dev-lang/ocaml。
2295 dev-ml ocaml-gettext ocamlopt Whether the OCaml native code compiler is used. Must be set globally and match dev-lang/ocaml. 是否使用 OCaml 本机代码编译器。必须全局设置并匹配 dev-lang/ocaml。
2296 dev-ml ocaml-gettext-camomile ocamlopt Whether the OCaml native code compiler is used. Must be set globally and match dev-lang/ocaml. 是否使用 OCaml 本机代码编译器。必须全局设置并匹配 dev-lang/ocaml。
2297 dev-ml ocaml-gettext-stub ocamlopt Whether the OCaml native code compiler is used. Must be set globally and match dev-lang/ocaml. 是否使用 OCaml 本机代码编译器。必须全局设置并匹配 dev-lang/ocaml。
2298 dev-ml ocamlnet httpd Enables net-httpd web server component 启用 net-httpd 网络服务器组件
2299 dev-ml ocamlnet zip Enables netzip support to read/write gzip data using object channels 启用 netzip 支持以使用对象通道读取/写入 gzip 数据
2300 dev-ml stdlib-shims ocamlopt Whether the OCaml native code compiler is used. Must be set globally and match dev-lang/ocaml. 是否使用 OCaml 本机代码编译器。必须全局设置并匹配 dev-lang/ocaml。
2301 dev-ml uutf utftrip Builds and install the utftrip executable: Among other things, reads unicode on stdin and rewrites it on stdout. 构建和安装 utftrip 可执行文件:除其他外,在 stdin 上读取 unicode 并在 stdout 上重写它。
2302 dev-ml zarith mpir Use MPIR library instead of GMP. 使用 MPIR 库而不是 GMP。
2303 dev-perl App-Nopaste browser Spawn browser with pasted page 生成带有粘贴页面的浏览器
2304 dev-perl App-Nopaste clipboard copying of URLs with -x/--copy 使用 -x/--copy 复制 URL
2305 dev-perl App-Nopaste gitlab Ensure git is installed for reading/passing GitLab authentication 确保安装了 git 以读取/通过 GitLab 身份验证
2306 dev-perl App-Nopaste pastebin pastebin.com support pastebin.com 支持
2307 dev-perl Boulder genbank Provide support with Boulder::Genbank for decoding Genbank data records 使用 Boulder::Genbank 提供支持以解码 Genbank 数据记录
2308 dev-perl Boulder store Provide support with Boulder::Store for persisting Stone objects 为持久化 Stone 对象提供 Boulder::Store 支持
2309 dev-perl Business-ISBN barcode Install dev-perl/GD-Barcode for rendering ISBN numbers as barcodes 安装 dev-perl/GD-Barcode 以将 ISBN 编号呈现为条形码
2310 dev-perl Config-Any conf Install dev-perl/Config-General to support decoding .conf/.cnf files 安装 dev-perl/Config-General 以支持解码 .conf/.cnf 文件
2311 dev-perl Config-Any ini Install dev-perl/Config-Tiny to support decoding INI config files 安装 dev-perl/Config-Tiny 以支持解码 INI 配置文件
2312 dev-perl Config-Any json Install support libraries to support decoding JSON config files 安装支持库以支持解码 JSON 配置文件
2313 dev-perl Config-Any xml Install support libraries to support decoding XML config files 安装支持库以支持解码 XML 配置文件
2314 dev-perl Config-Any yaml Install support libraries to support decoding YAML config files 安装支持库以支持解码 YAML 配置文件
2315 dev-perl Cookie-Baker xs Install dev-perl/Cookie-Baker-XS for accelerated performance 安装 dev-perl/Cookie-Baker-XS 以提高性能
2316 dev-perl Coro ev Build support for using dev-perl/EV as an event-loop via Coro::EV 通过 Coro::EV 构建对使用 dev-perl/EV 作为事件循环的支持
2317 dev-perl Coro event Build support for using dev-perl/Event as an event-loop via Coro::Event 通过 Coro::Event 构建对使用 dev-perl/Event 作为事件循环的支持
2318 dev-perl DBD-MariaDB mariadb Use dev-db/mariadb-connector-c as the client library 使用 dev-db/mariadb-connector-c 作为客户端库
2319 dev-perl DBD-MariaDB mysql Use dev-db/mysql-connector-c as the client library 使用 dev-db/mysql-connector-c 作为客户端库
2320 dev-perl DBD-SQLite system-sqlite Use the system-wide dev-db/sqlite installation 使用系统范围的 dev-db/sqlite 安装
2321 dev-perl DBD-mysql mariadb Use dev-db/mariadb-connector-c as the client library 使用 dev-db/mariadb-connector-c 作为客户端库
2322 dev-perl DBD-mysql mysql Use dev-db/mysql-connector-c as the client library 使用 dev-db/mysql-connector-c 作为客户端库
2323 dev-perl DBD-mysql ssl Compile in support for SSL connections via libmysqlclient 通过 libmysqlclient 编译以支持 SSL 连接
2324 dev-perl DBIx-Class admin Modules required for the DBIx::Class administrative library DBIx::Class 管理库所需的模块
2325 dev-perl DBIx-Class admin-script Modules required for the CLI DBIx::Class interface dbicadmin CLI DBIx::Class 接口 dbicadmin 所需的模块
2326 dev-perl DBIx-Class deploy Modules required for "deploy" in DBIx::Class::Storage::DBI and "deploymen_statements" in DBIx::Class::Storage::DBI DBIx::Class::Storage::DBI 中的“部署”和 DBIx::Class::Storage::DBI 中的“deploymen_statements”所需的模块
2327 dev-perl DBIx-Class replicated Modules required for DBIx::Class::Storage::DBI::Replicated DBIx::Class::Storage::DBI::Replicated 所需的模块
2328 dev-perl File-HomeDir xdg Ensure XDG Semantics for returned paths via x11-misc/xdg-user-dirs 通过 x11-misc/xdg-user-dirs 确保返回路径的 XDG 语义
2329 dev-perl File-Which pwhich Install dev-perl/App-pwhich which used to be a part of this package 安装 dev-perl/App-pwhich 曾经是这个包的一部分
2330 dev-perl GD animgif Enable animated gif support 启用动画 gif 支持
2331 dev-perl GD fcgi Build for FastCGI compatibility via dev-libs/fcgi instead of using PerlIO 通过 dev-libs/fcgi 构建 FastCGI 兼容性,而不是使用 PerlIO
2332 dev-perl HTML-Mason modperl Enable www-apache/mod_perl support 启用 www-apache/mod_perl 支持
2333 dev-perl HTTP-Entity-Parser xs Install C-Based dependieces for faster performance 安装基于 C 的依赖项以获得更快的性能
2334 dev-perl JSON xs Install C-based dev-perl/JSON-XS for faster performance 安装基于 C 的 dev-perl/JSON-XS 以获得更快的性能
2335 dev-perl JSON-MaybeXS xs Install a C-Based backend to make JSON encode/decode fast 安装基于 C 的后端以使 JSON 编码/解码快速
2336 dev-perl List-MoreUtils xs Install C-Based backend implementation for performance 安装基于 C 的后端实现以提高性能
2337 dev-perl MCE sereal Install dev-perl/Sereal-Encoder and decoder for faster worker IPC 安装 dev-perl/Sereal-Encoder 和解码器以获得更快的工作 IPC
2338 dev-perl Mail-IMAPClient md5 Install support for DIGEST-MD5 and CRAM-MD5 Authentication 安装对 DIGEST-MD5 和 CRAM-MD5 身份验证的支持
2339 dev-perl Mail-IMAPClient ntlm Install support for NTLM Authentication 安装对 NTLM 身份验证的支持
2340 dev-perl Mail-IMAPClient ssl Install support for SSL Connections 安装对 SSL 连接的支持
2341 dev-perl Mail-IMAPClient zlib Install support for COMPRESS DEFLATE connections 安装对 COMPRESS DEFLATE 连接的支持
2342 dev-perl Net-SSH2 gcrypt Use libgcrypt instead of openssl 使用 libgcrypt 而不是 openssl
2343 dev-perl PDL badval Enable bad values support 启用错误值支持
2344 dev-perl PDL hdf Enable HDF (version 4) format support 启用 HDF(版本 4)格式支持
2345 dev-perl PDL netpbm Enable NETPBM and MPEG support 启用 NETPBM 和 MPEG 支持
2346 dev-perl PDL pdl2 Build pdf2 shell (requires Devel-REPL) 构建 pdf2 shell(需要 Devel-REPL)
2347 dev-perl PDL pgplot Enable PGPLOT plotting capabilities 启用 PGPLOT 绘图功能
2348 dev-perl Ref-Util xs Install C-Based dev-perl/Ref-Util-XS for accelerated performance 安装基于 C 的 dev-perl/Ref-Util-XS 以提高性能
2349 dev-perl Sub-Name suggested Install extra dependencies needed for extended regression tests 安装扩展回归测试所需的额外依赖项
2350 dev-perl Sysadm-Install hammer Enable hammer() funtion to run a command in the shell and simulate a user hammering the ENTER key to accept defaults on prompts 启用hammer() 函数以在shell 中运行命令并模拟用户敲击ENTER 键以接受提示的默认值
2351 dev-perl Test-Warnings suggested Install optional dependencies for extra tests 为额外测试安装可选依赖项
2352 dev-perl Text-CSV xs Install dev-perl/Text-CSV_XS for accelerated decoding 安装 dev-perl/Text-CSV_XS 以加速解码
2353 dev-perl WWW-Form-UrlEncoded xs Install C-Based dependieces for faster performance 安装基于 C 的依赖项以获得更快的性能
2354 dev-perl perl-headers debug Add source locations in generated .ph files to assist with debugging when errors occur 在生成的 .ph 文件中添加源位置以帮助在发生错误时进行调试
2355 dev-perl perl-headers sizeof-warning Include logic to warn when a .ph file tries to use a sizeof() that is unknown 包含逻辑以在 .ph 文件尝试使用未知的 sizeof() 时发出警告
2356 dev-php PEAR-HTTP_Request2 curl Force dev-lang/php to be compiled with curl extension 强制使用 curl 扩展编译 dev-lang/php
2357 dev-php PEAR-HTTP_Request2 fileinfo Force dev-lang/php to be compiled with fileinfo extension 强制使用 fileinfo 扩展名编译 dev-lang/php
2358 dev-php PEAR-HTTP_Request2 ssl Force dev-lang/php to be compiled with ssl extension 强制使用 ssl 扩展编译 dev-lang/php
2359 dev-php PEAR-HTTP_Request2 zlib Force dev-lang/php to be compiled with zlib extension 强制使用 zlib 扩展编译 dev-lang/php
2360 dev-php PEAR-PHP_Beautifier cli Require dev-lang/php to be built with the "cli" SAPI and install the php_beautifier script. 要求使用“cli”SAPI 构建 dev-lang/php 并安装 php_beautifier 脚本。
2361 dev-php agavi executable Install the "agavi" executable used to manage projects. This requires dev-php/phing, and may be omitted if you are (for example) deploying an existing site to a production server. 安装用于管理项目的“agavi”可执行文件。这需要 dev-php/phing,如果您(例如)将现有站点部署到生产服务器,则可以省略。
2362 dev-php maxmind-db-reader extension Build the C extension that uses dev-libs/libmaxminddb 构建使用 dev-libs/libmaxminddb 的 C 扩展
2363 dev-php pecl-apcu lock-pthreadmutex Enable pthread mutex locking 启用 pthread 互斥锁
2364 dev-php pecl-apcu lock-pthreadrw Enable pthread read/write locking 启用 pthread 读/写锁定
2365 dev-php pecl-apcu lock-semaphore Enable semaphore locks instead of fcntl 启用信号量锁而不是 fcntl
2366 dev-php pecl-apcu lock-spinlock Enable spin locks (EXPERIMENTAL) 启用自旋锁(实验性)
2367 dev-php pecl-event extra Add support of the Libevent extra API 添加对 Libevent 额外 API 的支持
2368 dev-php pecl-memcached igbinary Enable support for the igbinary serializer 启用对 igbinary 序列化程序的支持
2369 dev-php pecl-memcached json Enable support for json serialization 启用对 json 序列化的支持
2370 dev-php pecl-redis igbinary Enables igbinary serialisation support 启用 igbinary 序列化支持
2371 dev-php pecl-redis json Enables json serializer support 启用 json 序列化程序支持
2372 dev-php phing zip Support zip archives by requiring said support in dev-lang/php. 通过在 dev-lang/php 中要求所述支持来支持 zip 存档。
2373 dev-php swoole http2 Add support for HTTP/2 protocol via net-libs/nghttp2 通过 net-libs/nghttp2 添加对 HTTP/2 协议的支持
2374 dev-python PyQt5 bluetooth Build bindings for the QtBluetooth module 为 QtBluetooth 模块构建绑定
2375 dev-python PyQt5 dbus Build bindings for the QtDBus module 为 QtDBus 模块构建绑定
2376 dev-python PyQt5 declarative Build bindings for the QtQml and QtQuick modules and enable the qmlscene plugin 为 QtQml 和 QtQuick 模块构建绑定并启用 qmlscene 插件
2377 dev-python PyQt5 designer Build bindings for the QtDesigner module and enable the designer plugin 为 QtDesigner 模块构建绑定并启用设计器插件
2378 dev-python PyQt5 gui Build bindings for the QtGui module 为 QtGui 模块构建绑定
2379 dev-python PyQt5 help Build bindings for the QtHelp module 为 QtHelp 模块构建绑定
2380 dev-python PyQt5 location Build bindings for the QtLocation module 为 QtLocation 模块构建绑定
2381 dev-python PyQt5 multimedia Build bindings for the QtMultimedia module 为 QtMultimedia 模块构建绑定
2382 dev-python PyQt5 network Build bindings for the QtNetwork module 为 QtNetwork 模块构建绑定
2383 dev-python PyQt5 opengl Build bindings for the QtOpenGL module 为 QtOpenGL 模块构建绑定
2384 dev-python PyQt5 positioning Build bindings for the QtPositioning module 为 QtPositioning 模块构建绑定
2385 dev-python PyQt5 printsupport Build bindings for the QtPrintSupport module 为 QtPrintSupport 模块构建绑定
2386 dev-python PyQt5 sensors Build bindings for the QtSensors module 为 QtSensors 模块构建绑定
2387 dev-python PyQt5 serialport Build bindings for the QtSerialPort module 为 QtSerialPort 模块构建绑定
2388 dev-python PyQt5 speech Build bindings for the QtTextToSpeech module 为 QtTextToSpeech 模块构建绑定
2389 dev-python PyQt5 sql Build bindings for the QtSql module 为 QtSql 模块构建绑定
2390 dev-python PyQt5 svg Build bindings for the QtSvg module 为 QtSvg 模块构建绑定
2391 dev-python PyQt5 testlib Build bindings for the QtTest module 为 QtTest 模块构建绑定
2392 dev-python PyQt5 webchannel Build bindings for the QtWebChannel module 为 QtWebChannel 模块构建绑定
2393 dev-python PyQt5 websockets Build bindings for the QtWebSockets module 为 QtWebSockets 模块构建绑定
2394 dev-python PyQt5 widgets Build bindings for the QtWidgets module 为 QtWidgets 模块构建绑定
2395 dev-python PyQt5 x11extras Build bindings for the QtX11Extras module 为 QtX11Extras 模块构建绑定
2396 dev-python PyQt5 xmlpatterns Build bindings for the QtXmlPatterns module 为 QtXmlPatterns 模块构建绑定
2397 dev-python QtPy declarative Build bindings for the QtQml and QtQuick modules and enable the qmlscene plugin 为 QtQml 和 QtQuick 模块构建绑定并启用 qmlscene 插件
2398 dev-python QtPy designer Pull in bindings for the QtDesigner module and enable the designer plugin 拉入 QtDesigner 模块的绑定并启用设计器插件
2399 dev-python QtPy gui Pull in bindings for the QtGui module 拉入 QtGui 模块的绑定
2400 dev-python QtPy help Pull in bindings for the QtHelp module 拉入 QtHelp 模块的绑定
2401 dev-python QtPy location Pull in bindings for the QtLocation module 拉入 QtLocation 模块的绑定
2402 dev-python QtPy multimedia Pull in QtMultimedia and QtMultimediaWidgets modules 引入 QtMultimedia 和 QtMultimediaWidgets 模块
2403 dev-python QtPy network Pull in bindings for the QtNetwork module 拉入 QtNetwork 模块的绑定
2404 dev-python QtPy opengl Pull in bindings for the QtOpenGL module 为 QtOpenGL 模块引入绑定
2405 dev-python QtPy positioning Pull in bindings for the QtPositioning module 拉入 QtPositioning 模块的绑定
2406 dev-python QtPy printsupport Pull in bindings for the QtPrintSupport module 拉入 QtPrintSupport 模块的绑定
2407 dev-python QtPy pyqt5 Use dev-python/PyQt5 as Qt for Python implementation 使用 dev-python/PyQt5 作为 Qt 实现 Python
2408 dev-python QtPy pyside2 Use dev-python/pyside2 as Qt for Python implementation 使用 dev-python/pyside2 作为 Qt 实现 Python
2409 dev-python QtPy sensors Pull in bindings for the QtSensors module 拉入 QtSensors 模块的绑定
2410 dev-python QtPy serialport Pull in bindings for the QtSerialPort module 拉入 QtSerialPort 模块的绑定
2411 dev-python QtPy speech Build bindings for the QtTextToSpeech module 为 QtTextToSpeech 模块构建绑定
2412 dev-python QtPy sql Pull in bindings for the QtSql module 拉入 QtSql 模块的绑定
2413 dev-python QtPy svg Pull in bindings for the QtSvg module 拉入 QtSvg 模块的绑定
2414 dev-python QtPy testlib Pull in bindings for the QtTest module 拉入 QtTest 模块的绑定
2415 dev-python QtPy webchannel Pull in bindings for the QtWebChannel module 拉入 QtWebChannel 模块的绑定
2416 dev-python QtPy webengine Pull in QtWebEngine and QtWebEngineWidgets modules 拉入 QtWebEngine 和 QtWebEngineWidgets 模块
2417 dev-python QtPy websockets Pull in bindings for the QtWebSockets module 拉入 QtWebSockets 模块的绑定
2418 dev-python QtPy widgets Pull in bindings for the QtWidgets module 为 QtWidgets 模块引入绑定
2419 dev-python QtPy x11extras Pull in bindings for the QtX11Extras module 为 QtX11Extras 模块引入绑定
2420 dev-python QtPy xml Pull in QtXml module 拉入 QtXml 模块
2421 dev-python QtPy xmlpatterns Pull in bindings for the QtXmlPatterns module 拉入 QtXmlPatterns 模块的绑定
2422 dev-python autobahn xbr Add support for XBR decentralized data markets and etherium blockchain 添加对 XBR 去中心化数据市场和以太坊区块链的支持
2423 dev-python bpython clipboard Enable copying to clipboard using dev-python/pyperclip 使用 dev-python/pyperclip 启用复制到剪贴板
2424 dev-python bpython jedi Enable autocompletion using dev-python/jedi 使用 dev-python/jedi 启用自动补全
2425 dev-python bpython urwid Ebable dev-python/urwid-based interface 基于 Ebable dev-python/urwid 的接口
2426 dev-python bpython watch Enable watching paths using dev-python/watchdog 使用 dev-python/watchdog 启用监视路径
2427 dev-python cvxopt dsdp Use interior point library sci-libs/dsdp 使用内点库 sci-libs/dsdp
2428 dev-python cvxopt glpk Use GNU Linear Programming Kit sci-mathematics/glpk 使用 GNU 线性规划工具包 sci-mathematics/glpk
2429 dev-python editorconfig-core-py cli Install command line interface as well as python library 安装命令行界面以及python库
2430 dev-python elasticsearch-py async Add async support 添加异步支持
2431 dev-python hiredis system-libs Use dev-libs/hiredis from system 使用系统中的 dev-libs/hiredis
2432 dev-python httpx cli Install the CLI "httpx" client. 安装 CLI“httpx”客户端。
2433 dev-python hypothesis cli Install a CLI tool used to write tests. 安装用于编写测试的 CLI 工具。
2434 dev-python icalendar doc Generate examples and other extra documentation 生成示例和其他额外文档
2435 dev-python ipython matplotlib Add support for dev-python/matplotlib 添加对 dev-python/matplotlib 的支持
2436 dev-python ipython nbconvert Enable support for converting notebooks to various formats using app-text/pandoc 启用对使用 app-text/pandoc 将笔记本转换为各种格式的支持
2437 dev-python ipython notebook Install requirements for the web notebook based on www-servers/tornado 基于 www-servers/tornado 的 web notebook 安装要求
2438 dev-python matplotlib excel Pull dev-python/xlwt for the exceltools toolkit 为 exceltools 工具包拉取 dev-python/xlwt
2439 dev-python matplotlib gtk3 Enable x11-libs/gtk+:3 support 启用 x11-libs/gtk+:3 支持
2440 dev-python matplotlib webagg Enable webagg backend that uses www-servers/tornado 启用使用 www-servers/tornado 的 webagg 后端
2441 dev-python mpmath matplotlib Add support for dev-python/matplotlib 添加对 dev-python/matplotlib 的支持
2442 dev-python msgpack native-extensions Compiles native "C" extensions (speedups, instead of using python fallback code). 编译本机“C”扩展(加速,而不是使用 python 后备代码)。
2443 dev-python nbdime webtools Install web-based diff and merge tools. 安装基于 Web 的差异和合并工具。
2444 dev-python nltk-data extra Install the complete set of data files. Otherwise, only files required by tests are installed. 安装完整的数据文件集。否则,仅安装测试所需的文件。
2445 dev-python pandas full-support Pull all packages to give pandas full support 拉取所有包以给予 pandas 全力支持
2446 dev-python paramiko server Enable server feature 启用服务器功能
2447 dev-python pillow imagequant Build with Image Quantization Library support 使用图像量化库支持构建
2448 dev-python pivy quarter Use media-libs/quarter for GUI bindings 使用 media-libs/quarter 进行 GUI 绑定
2449 dev-python pivy soqt Use media-libs/SoQt for GUI bindings 使用 media-libs/SoQt 进行 GUI 绑定
2450 dev-python py-amqp extras Install extra tools to generate initial Python mod from an AMQP XML file 安装额外的工具以从 AMQP XML 文件生成初始 Python mod
2451 dev-python pygame midi Enable midi support using media-libs/portmidi 使用 media-libs/portmidi 启用 midi 支持
2452 dev-python pyglet image Enable support for image formats other than PNG and BMP 启用对 PNG 和 BMP 以外的图像格式的支持
2453 dev-python pyocr cuneiform Enable support for the app-text/cuneiform OCR engine 启用对 app-text/cuneiform OCR 引擎的支持
2454 dev-python pyocr tesseract Enable support for the app-text/tesseract OCR engine 启用对 app-text/tesseract OCR 引擎的支持
2455 dev-python pypax ptpax Enable PT_PAX_FLAGS support. 启用 PT_PAX_FLAGS 支持。
2456 dev-python pypax xtpax Enable XATTR_PAX_FLAGS support. 启用 XATTR_PAX_FLAGS 支持。
2457 dev-python pypy-exe low-memory Build using PyPy with the engine configured towards low memory footprint. This makes it possible to build PyPy using ~3.5G of RAM on amd64 and ~half of that on x86, at the cost of lengthened build time. 使用 PyPy 构建,引擎配置为低内存占用。这使得在 amd64 上使用大约 3.5G 的 RAM 和在 x86 上使用大约一半的 RAM 来构建 PyPy 成为可能,但代价是延长了构建时间。
2458 dev-python pypy3-exe low-memory Build using PyPy with the engine configured towards low memory footprint. This makes it possible to build PyPy using ~3.5G of RAM on amd64 and ~half of that on x86, at the cost of lengthened build time. 使用 PyPy 构建,引擎配置为低内存占用。这使得在 amd64 上使用大约 3.5G 的 RAM 和在 x86 上使用大约一半的 RAM 来构建 PyPy 成为可能,但代价是延长了构建时间。
2459 dev-python pyside2 3d Build Qt3DCore, Qt3DAnimation, Qt3DExtras, Qt3DInput, Qt3DLogic, and Qt3DRender modules 构建 Qt3DCore、Qt3DAnimation、Qt3DExtras、Qt3DInput、Qt3DLogic 和 Qt3DRender 模块
2460 dev-python pyside2 charts Build QtCharts module 构建 QtCharts 模块
2461 dev-python pyside2 concurrent Build QtConcurrent module 构建 QtConcurrent 模块
2462 dev-python pyside2 datavis Build QtDataVisualization module 构建 QtDataVisualization 模块
2463 dev-python pyside2 designer Build QtDesigner and QtUiTools modules 构建 QtDesigner 和 QtUiTools 模块
2464 dev-python pyside2 gles2-only Build QtGui "QOpenGL*" classes 构建 QtGui "QOpenGL*" 类
2465 dev-python pyside2 gui Build QtGui module 构建 QtGui 模块
2466 dev-python pyside2 help Build QtHelp module 构建 QtHelp 模块
2467 dev-python pyside2 location Build QtLocation module 构建 QtLocation 模块
2468 dev-python pyside2 multimedia Build QtMultimedia and QtMultimediaWidgets modules 构建 QtMultimedia 和 QtMultimediaWidgets 模块
2469 dev-python pyside2 network Build QtNetwork module 构建 QtNetwork 模块
2470 dev-python pyside2 positioning Build QtPositioning module 构建 QtPositioning 模块
2471 dev-python pyside2 printsupport Build QtPrintSupport module 构建 QtPrintSupport 模块
2472 dev-python pyside2 qml Build QtQml module 构建 QtQml 模块
2473 dev-python pyside2 quick Build QtQuick and QtQuickWidgets modules 构建 QtQuick 和 QtQuickWidgets 模块
2474 dev-python pyside2 script Build QtScript module 构建 QtScript 模块
2475 dev-python pyside2 scripttools Build QtScriptTools module 构建 QtScriptTools 模块
2476 dev-python pyside2 scxml Build QtScxml module 构建 QtScxml 模块
2477 dev-python pyside2 sensors Build QtSensors module 构建 QtSensors 模块
2478 dev-python pyside2 speech Build QtTextToSpeech module 构建 QtTextToSpeech 模块
2479 dev-python pyside2 sql Build QtSql module 构建 QtSql 模块
2480 dev-python pyside2 svg Build QtSvg module 构建 QtSvg 模块
2481 dev-python pyside2 testlib Build QtTest module 构建 QtTest 模块
2482 dev-python pyside2 webchannel Build QtWebChannel module 构建 QtWebChannel 模块
2483 dev-python pyside2 webengine Build QtWebEngine and QtWebEngineWidgets modules 构建 QtWebEngine 和 QtWebEngineWidgets 模块
2484 dev-python pyside2 websockets Build QtWebSockets module 构建 QtWebSockets 模块
2485 dev-python pyside2 widgets Build QtWidgets module 构建 QtWidgets 模块
2486 dev-python pyside2 x11extras Build QtX11Extras module 构建 QtX11Extras 模块
2487 dev-python pyside2 xml Build QtXml module 构建 QtXml 模块
2488 dev-python pyside2 xmlpatterns Build QtXmlPatterns module 构建 QtXmlPatterns 模块
2489 dev-python python-lsp-server all-plugins Pull in all optional plugins 拉入所有可选插件
2490 dev-python python-mpd twisted Enable twisted support 启用扭曲支持
2491 dev-python python-stdnum vies Enable VIES 启用 VIES
2492 dev-python pyudev qt5 Install PyQt5 bindings 安装 PyQt5 绑定
2493 dev-python pyzmq draft Enable draft API support 启用草稿 API 支持
2494 dev-python rarfile compressed Enables the module to support compressed v3 archives by calling the app-arch/unrar. 通过调用 app-arch/unrar 使模块能够支持压缩的 v3 存档。
2495 dev-python rfc3986 idna enable support for the IDNA specification (RFC 5891) 启用对 IDNA 规范 (RFC 5891) 的支持
2496 dev-python rpyc gdb Run tests depending on sys-devel/gdb 根据 sys-devel/gdb 运行测试
2497 dev-python rpyc numpy Run tests depending on dev-python/numpy, dev-python/pandas 根据 dev-python/numpy、dev-python/pandas 运行测试
2498 dev-python scipy pythran Use dev-python/pythran to accelerate runtime 使用 dev-python/pythran 加速运行时
2499 dev-python scipy sparse Adds support for sparse solving with sci-libs/umfpack 添加对使用 sci-libs/umfpack 进行稀疏求解的支持
2500 dev-python shiboken2 docstrings Expose documentation as Python docstrings (recommended) 将文档公开为 Python 文档字符串(推荐)
2501 dev-python shiboken2 numpy Implicitly convert passed NumPy arrays to Qt lists 将传递的 NumPy 数组隐式转换为 Qt 列表
2502 dev-python shiboken2 vulkan Generate "QSurface::VulkanSurface" bindings 生成“QSurface::VulkanSurface”绑定
2503 dev-python subprocess-tee test-full Enable full test mode. Pulls in many additional dependencies, and requires having been emerged without this flag first in order to avoid a circular dependency. 启用完整测试模式。引入许多额外的依赖项,并且需要先出现而没有此标志以避免循环依赖项。
2504 dev-python sympy aesara Add support for dev-python/aesara 添加对 dev-python/aesara 的支持
2505 dev-python sympy imaging Add support for dev-python/pillow 添加对 dev-python/pillow 的支持
2506 dev-python sympy ipython Add support for dev-python/ipython 添加对 dev-python/ipython 的支持
2507 dev-python sympy mathml Add support for mathml 添加对 mathml 的支持
2508 dev-python sympy pyglet Use dev-python/pyglet for plots and print preview 使用 dev-python/pyglet 进行绘图和打印预览
2509 dev-python sympy symengine Add support for a dev-python/symengine backend 添加对 dev-python/symengine 后端的支持
2510 dev-python sympy texmacs Add app-office/texmacs interface 添加 app-office/texmacs 接口
2511 dev-python tpm2-pytss fapi Enable feature API (requires tpm2-tss be compile with thes same) 启用功能 API(需要 tpm2-tss 编译相同)
2512 dev-python translate-toolkit html Support conversion between po and html files 支持po和html文件之间的转换
2513 dev-python translate-toolkit ical Support conversion between po and ical files 支持 po 和 ical 文件之间的转换
2514 dev-python translate-toolkit ini Support conversion between po and ini files 支持po和ini文件之间的转换
2515 dev-python translate-toolkit subtitles Support conversion between po and sub files 支持po和子文件之间的转换
2516 dev-python translate-toolkit yaml Support YAML format 支持 YAML 格式
2517 dev-python twisted conch include Twisted SSHv2 implementation 包括 Twisted SSHv2 实现
2518 dev-python twisted http2 include http2 support 包括 http2 支持
2519 dev-python twisted serial include serial port support 包括串口支持
2520 dev-python urllib3 brotli Enable support for brotli compression 启用对 brotli 压缩的支持
2521 dev-python ws4py client Install client modules 安装客户端模块
2522 dev-python ws4py server Install server modules 安装服务器模块
2523 dev-python zeep async Add async support 添加异步支持
2524 dev-qt designer declarative Build the qdeclarativeview plugin 构建 qdeclarativeview 插件
2525 dev-qt linguist-tools qml Enable QML support in lupdate 在 lupdate 中启用 QML 支持
2526 dev-qt qdoc qml Enable QML/JS parsing support 启用 QML/JS 解析支持
2527 dev-qt qt-creator android Build plugin for Android devices 为 Android 设备构建插件
2528 dev-qt qt-creator autotest Enable integration with popular unit testing frameworks (QtTest, GoogleTest, Boost.Test, Catch2) 支持与流行的单元测试框架(QtTest、GoogleTest、Boost.Test、Catch2)集成
2529 dev-qt qt-creator autotools Build plugin for autotools-based projects 为基于 autotools 的项目构建插件
2530 dev-qt qt-creator baremetal Build plugin for bare metal devices 为裸机设备构建插件
2531 dev-qt qt-creator bazaar Add support for GNU Bazaar version control system (requires manual installation of Bazaar client) 添加对 GNU Bazaar 版本控制系统的支持(需要手动安装 Bazaar 客户端)
2532 dev-qt qt-creator beautifier Build the beautifier plugin (supports astyle, clang-format, and uncrustify) 构建美化插件(支持astyle、clang-format和uncrustify)
2533 dev-qt qt-creator boot2qt Build plugin for Boot2Qt devices 为 Boot2Qt 设备构建插件
2534 dev-qt qt-creator clang Build clang-based plugins for C/C++ development (code model, formatting, static analysis) 为 C/C++ 开发构建基于 clang 的插件(代码模型、格式化、静态分析)
2535 dev-qt qt-creator clearcase Add support for IBM ClearCase version control system (requires manual installation of ClearCase client) 添加对 IBM ClearCase 版本控制系统的支持(需要手动安装 ClearCase 客户端)
2536 dev-qt qt-creator cmake Build plugin for CMake-based projects 为基于 CMake 的项目构建插件
2537 dev-qt qt-creator conan Build plugin to integrate with the Conan package manager 构建插件以与柯南包管理器集成
2538 dev-qt qt-creator cppcheck Enable integration with dev-util/cppcheck 启用与 dev-util/cppcheck 的集成
2539 dev-qt qt-creator ctfvisualizer Build the Chrome Trace Format visualizer plugin 构建 Chrome Trace Format 可视化插件
2540 dev-qt qt-creator designer Enable designer for QtWidgets-based UIs 为基于 QtWidgets 的 UI 启用设计器
2541 dev-qt qt-creator docker Build plugin for Docker support 为 Docker 支持构建插件
2542 dev-qt qt-creator glsl Build the GLSL editor plugin 构建 GLSL 编辑器插件
2543 dev-qt qt-creator help Enable the integrated documentation viewer 启用集成文档查看器
2544 dev-qt qt-creator incredibuild Enable integration with Incredibuild 启用与 Incredibuild 的集成
2545 dev-qt qt-creator lsp Add support for the Language Server Protocol (LSP) 添加对语言服务器协议 (LSP) 的支持
2546 dev-qt qt-creator mcu Build plugin for MCU devices 为 MCU 设备构建插件
2547 dev-qt qt-creator mercurial Add support for dev-vcs/mercurial version control system 添加对 dev-vcs/mercurial 版本控制系统的支持
2548 dev-qt qt-creator meson Build plugin for Meson-based projects 为基于介子的项目构建插件
2549 dev-qt qt-creator modeling Build the graphical model editor plugin 构建图形模型编辑器插件
2550 dev-qt qt-creator nim Build plugin for Nim language support 为 Nim 语言支持构建插件
2551 dev-qt qt-creator perforce Add support for Perforce version control system (requires manual installation of Perforce client) 添加对 Perforce 版本控制系统的支持(需要手动安装 Perforce 客户端)
2552 dev-qt qt-creator perfprofiler Build the Linux Perf-based profiler plugin 构建基于 Linux Perf 的分析器插件
2553 dev-qt qt-creator python Build plugin for Python language support 为 Python 语言支持构建插件
2554 dev-qt qt-creator qbs Build plugin for Qbs-based projects 为基于 Qbs 的项目构建插件
2555 dev-qt qt-creator qmake Build plugin for qmake-based projects 为基于 qmake 的项目构建插件
2556 dev-qt qt-creator qml Build plugins for QML-based development (designer, editor, project manager) 为基于 QML 的开发构建插件(设计师、编辑、项目经理)
2557 dev-qt qt-creator qmlprofiler Build the QML profiler plugin 构建 QML 分析器插件
2558 dev-qt qt-creator qnx Build plugin for QNX devices 为 QNX 设备构建插件
2559 dev-qt qt-creator remotelinux Build plugin for deployment and execution on a remote Linux host 构建用于在远程 Linux 主机上部署和执行的插件
2560 dev-qt qt-creator scxml Build the graphical SCXML editor plugin 构建图形 SCXML 编辑器插件
2561 dev-qt qt-creator serialterminal Build the serial terminal plugin 构建串口终端插件
2562 dev-qt qt-creator silversearcher Enable integration with sys-apps/the_silver_searcher 启用与 sys-apps/the_silver_searcher 的集成
2563 dev-qt qt-creator systemd Add support for retrieving application output from journald 添加对从 journald 检索应用程序输出的支持
2564 dev-qt qt-creator valgrind Enable integration with dev-util/valgrind 启用与 dev-util/valgrind 的集成
2565 dev-qt qt-creator webassembly Build WebAssembly plugin 构建 WebAssembly 插件
2566 dev-qt qt-creator webengine Use dev-qt/qtwebengine to view documentation 使用 dev-qt/qtwebengine 查看文档
2567 dev-qt qt-docs 3d Install documentation for dev-qt/qt3d dev-qt/qt3d 的安装文档
2568 dev-qt qt-docs assistant Install documentation for dev-qt/assistant dev-qt/assistant 的安装文档
2569 dev-qt qt-docs bluetooth Install documentation for dev-qt/qtbluetooth dev-qt/qtbluetooth 的安装文档
2570 dev-qt qt-docs charts Install documentation for dev-qt/qtcharts dev-qt/qtcharts 的安装文档
2571 dev-qt qt-docs concurrent Install documentation for dev-qt/qtconcurrent dev-qt/qtconcurrent 的安装文档
2572 dev-qt qt-docs datavis Install documentation for dev-qt/qtdatavis3d dev-qt/qtdatavis3d 的安装文档
2573 dev-qt qt-docs declarative Install documentation for dev-qt/qtdeclarative dev-qt/qtdeclarative 的安装文档
2574 dev-qt qt-docs designer Install documentation for dev-qt/designer dev-qt/designer 的安装文档
2575 dev-qt qt-docs gamepad Install documentation for dev-qt/qtgamepad (available in qt overlay only) dev-qt/qtgamepad 的安装文档(仅在 qt 覆盖中可用)
2576 dev-qt qt-docs graphicaleffects Install documentation for dev-qt/qtgraphicaleffects dev-qt/qtgraphicaleffects 的安装文档
2577 dev-qt qt-docs gui Install documentation for dev-qt/qtgui dev-qt/qtgui 的安装文档
2578 dev-qt qt-docs help Install documentation for dev-qt/qthelp dev-qt/qthelp 的安装文档
2579 dev-qt qt-docs html Install documentation in HTML format 以 HTML 格式安装文档
2580 dev-qt qt-docs imageformats Install documentation for dev-qt/qtimageformats dev-qt/qtimageformats 的安装文档
2581 dev-qt qt-docs linguist Install documentation for dev-qt/linguist 为 dev-qt/linguist 安装文档
2582 dev-qt qt-docs location Install documentation for dev-qt/qtlocation dev-qt/qtlocation 的安装文档
2583 dev-qt qt-docs multimedia Install documentation for dev-qt/qtmultimedia dev-qt/qtmultimedia 的安装文档
2584 dev-qt qt-docs network Install documentation for dev-qt/qtnetwork dev-qt/qtnetwork 的安装文档
2585 dev-qt qt-docs networkauth Install documentation for dev-qt/qtnetworkauth dev-qt/qtnetworkauth 的安装文档
2586 dev-qt qt-docs positioning Install documentation for dev-qt/qtpositioning dev-qt/qtpositioning 的安装文档
2587 dev-qt qt-docs printsupport Install documentation for dev-qt/qtprintsupport dev-qt/qtprintsupport 的安装文档
2588 dev-qt qt-docs qch Install documentation in QCH format 以 QCH 格式安装文档
2589 dev-qt qt-docs qdoc Install documentation for dev-qt/qdoc 为 dev-qt/qdoc 安装文档
2590 dev-qt qt-docs quickcontrols Install documentation for dev-qt/qtquickcontrols dev-qt/qtquickcontrols 的安装文档
2591 dev-qt qt-docs quickcontrols2 Install documentation for dev-qt/qtquickcontrols2 dev-qt/qtquickcontrols2 的安装文档
2592 dev-qt qt-docs script Install documentation for dev-qt/qtscript dev-qt/qtscript 的安装文档
2593 dev-qt qt-docs scxml Install documentation for dev-qt/qtscxml dev-qt/qtscxml 的安装文档
2594 dev-qt qt-docs sensors Install documentation for dev-qt/qtsensors dev-qt/qtsensors 的安装文档
2595 dev-qt qt-docs serialbus Install documentation for dev-qt/qtserialbus dev-qt/qtserialbus 的安装文档
2596 dev-qt qt-docs serialport Install documentation for dev-qt/qtserialport dev-qt/qtserialport 的安装文档
2597 dev-qt qt-docs speech Install documentation for dev-qt/qtspeech dev-qt/qtspeech 的安装文档
2598 dev-qt qt-docs sql Install documentation for dev-qt/qtsql dev-qt/qtsql 的安装文档
2599 dev-qt qt-docs timeline Install documentation for dev-qt/qtquicktimeline dev-qt/qtquicktimeline 的安装文档
2600 dev-qt qt-docs virtualkeyboard Install documentation for dev-qt/qtvirtualkeyboard dev-qt/qtvirtualkeyboard 的安装文档
2601 dev-qt qt-docs webchannel Install documentation for dev-qt/qtwebchannel 安装 dev-qt/qtwebchannel 的文档
2602 dev-qt qt-docs webengine Install documentation for dev-qt/qtwebengine dev-qt/qtwebengine 的安装文档
2603 dev-qt qt-docs websockets Install documentation for dev-qt/qtwebsockets dev-qt/qtwebsockets 的安装文档
2604 dev-qt qt-docs webview Install documentation for dev-qt/qtwebview dev-qt/qtwebview 的安装文档
2605 dev-qt qt-docs widgets Install documentation for dev-qt/qtwidgets dev-qt/qtwidgets 的安装文档
2606 dev-qt qt-docs x11extras Install documentation for dev-qt/qtx11extras dev-qt/qtx11extras 的安装文档
2607 dev-qt qt-docs xmlpatterns Install documentation for dev-qt/qtxmlpatterns dev-qt/qtxmlpatterns 的安装文档
2608 dev-qt qt3d gamepad Add support for gamepad hardware via dev-qt/qtgamepad 通过 dev-qt/qtgamepad 添加对游戏手柄硬件的支持
2609 dev-qt qt3d qml Build QML/QtQuick bindings 构建 QML/QtQuick 绑定
2610 dev-qt qt3d vulkan Enable support for Vulkan 启用对 Vulkan 的支持
2611 dev-qt qtbluetooth qml Build QML/QtQuick bindings and imports 构建 QML/QtQuick 绑定和导入
2612 dev-qt qtcharts qml Build QML/QtQuick bindings and imports 构建 QML/QtQuick 绑定和导入
2613 dev-qt qtcore old-kernel Disable syscalls not available on Linux kernels older than 4.11 禁用 4.11 之前的 Linux 内核上不可用的系统调用
2614 dev-qt qtcore systemd Enable native journald logging support 启用本机日志记录支持
2615 dev-qt qtdatavis3d qml Build QML/QtQuick bindings and imports 构建 QML/QtQuick 绑定和导入
2616 dev-qt qtdeclarative localstorage Build the LocalStorage import for QtQuick (requires QtSql) 为 QtQuick 构建 LocalStorage 导入(需要 QtSql)
2617 dev-qt qtdeclarative vulkan Enable support for Vulkan 启用对 Vulkan 的支持
2618 dev-qt qtdeclarative widgets Enable QtWidgets support 启用 QtWidgets 支持
2619 dev-qt qtdiag network Report network information 报告网络信息
2620 dev-qt qtdiag widgets Report widget style information 报告小部件样式信息
2621 dev-qt qtgamepad evdev Enable support for input devices via evdev 通过 evdev 启用对输入设备的支持
2622 dev-qt qtgamepad qml Build QML bindings 构建 QML 绑定
2623 dev-qt qtgui X Build the XCB platform plugin and enable X11 integration 构建 XCB 平台插件并启用 X11 集成
2624 dev-qt qtgui egl Enable EGL integration 启用 EGL 集成
2625 dev-qt qtgui eglfs Build the EGL Full Screen/Single Surface platform plugin 构建 EGL 全屏/单面平台插件
2626 dev-qt qtgui evdev Enable support for input devices via evdev 通过 evdev 启用对输入设备的支持
2627 dev-qt qtgui ibus Build the IBus input method plugin 构建IBus输入法插件
2628 dev-qt qtgui libinput Enable support for input devices via dev-libs/libinput 通过 dev-libs/libinput 启用对输入设备的支持
2629 dev-qt qtgui linuxfb Enable Linux framebuffer support for embedded devices 为嵌入式设备启用 Linux 帧缓冲区支持
2630 dev-qt qtgui tslib Enable support for touchscreen devices via x11-libs/tslib 通过 x11-libs/tslib 启用对触摸屏设备的支持
2631 dev-qt qtgui tuio Build plugin to receive touch events over the TUIO protocol 构建插件以通过 TUIO 协议接收触摸事件
2632 dev-qt qtgui vulkan Enable support for Vulkan 启用对 Vulkan 的支持
2633 dev-qt qtgui wayland Provide dev-qt/qtwayland to ensure Qt applications can be run as Wayland clients 提供 dev-qt/qtwayland 以确保 Qt 应用程序可以作为 Wayland 客户端运行
2634 dev-qt qtmultimedia gstreamer Enable audio support via media-libs/gstreamer 通过 media-libs/gstreamer 启用音频支持
2635 dev-qt qtmultimedia qml Build QML/QtQuick bindings and imports 构建 QML/QtQuick 绑定和导入
2636 dev-qt qtmultimedia widgets Build the QtMultimediaWidgets module 构建 QtMultimediaWidgets 模块
2637 dev-qt qtnetwork connman Enable net-misc/connman-based bearer plugin 启用基于 net-misc/connman 的承载插件
2638 dev-qt qtnetwork gssapi Enable support for GSSAPI (virtual/krb5) 启用对 GSSAPI(虚拟/krb5)的支持
2639 dev-qt qtnetwork libproxy Use net-libs/libproxy for automatic HTTP/SOCKS proxy configuration 使用 net-libs/libproxy 进行自动 HTTP/SOCKS 代理配置
2640 dev-qt qtnetwork networkmanager Enable net-misc/networkmanager-based bearer plugin 启用基于 net-misc/networkmanager 的承载插件
2641 dev-qt qtpositioning geoclue Use enhanced location information from app-misc/geoclue 使用来自 app-misc/geoclue 的增强位置信息
2642 dev-qt qtpositioning qml Build QML bindings 构建 QML 绑定
2643 dev-qt qtquickcontrols widgets Enable QtWidgets support 启用 QtWidgets 支持
2644 dev-qt qtquickcontrols2 widgets Enable QtWidgets support 启用 QtWidgets 支持
2645 dev-qt qtscript scripttools Build the QtScriptTools module (requires QtWidgets) 构建 QtScriptTools 模块(需要 QtWidgets)
2646 dev-qt qtsensors qml Build QML bindings 构建 QML 绑定
2647 dev-qt qtspeech flite Enable text-to-speech synthesizer plugin using app-accessibility/flite engine 使用 app-accessibility/flite 引擎启用文本到语音合成器插件
2648 dev-qt qtvirtualkeyboard handwriting Adds handwriting recognition integration support 添加手写识别集成支持
2649 dev-qt qtwayland vulkan Enable support for Vulkan-based server buffer integration 启用对基于 Vulkan 的服务器缓冲区集成的支持
2650 dev-qt qtwebchannel qml Build QML/QtQuick bindings and imports 构建 QML/QtQuick 绑定和导入
2651 dev-qt qtwebengine designer Install the QWebEngineView plugin used to add widgets in dev-qt/designer forms that display web pages. 安装用于在显示网页的 dev-qt/designer 表单中添加小部件的 QWebEngineView 插件。
2652 dev-qt qtwebengine geolocation Enable physical position determination via dev-qt/qtpositioning 通过 dev-qt/qtpositioning 启用物理位置确定
2653 dev-qt qtwebengine jumbo-build Combine source files to speed up build process. 合并源文件以加快构建过程。
2654 dev-qt qtwebengine screencast Enable support for remote desktop and screen cast using media-video/pipewire 使用 media-video/pipewire 启用对远程桌面和屏幕投射的支持
2655 dev-qt qtwebengine system-ffmpeg Use the system-wide media-video/ffmpeg instead of bundled. 使用系统范围的媒体视频/ffmpeg 而不是捆绑。
2656 dev-qt qtwebengine system-icu Use the system-wide dev-libs/icu instead of bundled. 使用系统范围的 dev-libs/icu 而不是捆绑。
2657 dev-qt qtwebengine widgets Enable QtWidgets support 启用 QtWidgets 支持
2658 dev-qt qtwebsockets qml Build QML bindings 构建 QML 绑定
2659 dev-qt qtwidgets gtk Build the GTK platform theme plugin 构建 GTK 平台主题插件
2660 dev-qt qtxmlpatterns qml Build the XmlListModel import for QtQuick (requires QtDeclarative) 为 QtQuick 构建 XmlListModel 导入(需要 QtDeclarative)
2661 dev-ros rosbag lz4 Add support for lz4 compressed bags. 添加对 lz4 压缩包的支持。
2662 dev-ros rosconsole glog Use dev-cpp/glog as log backend. 使用 dev-cpp/glog 作为日志后端。
2663 dev-ros rosconsole log4cxx Use dev-libs/log4cxx as log backend. 使用 dev-libs/log4cxx 作为日志后端。
2664 dev-ruby barby cairo Add support for writing images (PNG, PS, EPS and, if supported, PDF and SVG) using dev-ruby/rcairo. Not available on JRuby. 添加对使用 dev-ruby/rcairo 编写图像(PNG、PS、EPS 以及如果支持的话,PDF 和 SVG)的支持。在 JRuby 上不可用。
2665 dev-ruby barby png Add support for writing PNG images using dev-ruby/chunky_png. 添加对使用 dev-ruby/chunky_png 编写 PNG 图像的支持。
2666 dev-ruby barby prawn Add support for writing PDF documents using dev-ruby/prawn. 添加对使用 dev-ruby/prawn 编写 PDF 文档的支持。
2667 dev-ruby barby qrcode Add support for QRCode 2D codes using dev-ruby/rqrcode. 使用 dev-ruby/rqrcode 添加对 QRCode 二维码的支持。
2668 dev-ruby barby rmagick Add support for writing images (among others PNG, GIF and JPEG) using dev-ruby/rmagick. Not available on JRuby. 添加对使用 dev-ruby/rmagick 编写图像(以及其他 PNG、GIF 和 JPEG)的支持。在 JRuby 上不可用。
2669 dev-ruby faraday_middleware mashify Include FaradayMiddleware::Mashify 包括 FaradayMiddleware::Mashify
2670 dev-ruby faraday_middleware oauth Include FaradayMiddleware::OAuth 包括 FaradayMiddleware::OAuth
2671 dev-ruby faraday_middleware parsexml Include FaradayMiddleware::ParseXml 包括 FaradayMiddleware::ParseXml
2672 dev-ruby faraday_middleware rashify Include FaradayMiddleware::Rashify 包括 FaradayMiddleware::Rashify
2673 dev-ruby maruku highlight Enable source code highlighting via dev-ruby/syntax 通过 dev-ruby/syntax 启用源代码突出显示
2674 dev-ruby mysql2 mariadb Use mariadb bindings 使用 mariadb 绑定
2675 dev-ruby net-ssh ed25519 Use dev-ruby/ed25519 for Ed25519 support 使用 dev-ruby/ed25519 获得 Ed25519 支持
2676 dev-ruby rails asset-pipeline Also install the default components for the asset pipeline. These are not required but they are activated automatically in new Rails projects by default. 还要安装资产管道的默认组件。这些不是必需的,但默认情况下它们会在新的 Rails 项目中自动激活。
2677 dev-ruby rrdtool-bindings graph Enable support for graphing functions 启用对图形功能的支持
2678 dev-ruby rspec-core highlight Enable source code highlighting via dev-ruby/coderay 通过 dev-ruby/coderay 启用源代码高亮
2679 dev-ruby ruby-sdl image Enable media-libs/sdl-image support 启用 media-libs/sdl-image 支持
2680 dev-ruby ruby-sdl mixer Enable media-libs/sdl-mixer support 启用媒体库/sdl-mixer 支持
2681 dev-ruby ruby-sdl sge Enable sdl-sge support 启用 sdl-sge 支持
2682 dev-ruby rubygems server Install support for the rubygems server 安装对 rubygems 服务器的支持
2683 dev-ruby vcr json Add support for casettes serialized with JSON 添加对使用 JSON 序列化的 casettes 的支持
2684 dev-scheme bigloo avahi Enable Avahi support 启用 Avahi 支持
2685 dev-scheme bigloo gpg Enable GPG support 启用 GPG 支持
2686 dev-scheme bigloo libuv Enable libuv support 启用 libuv 支持
2687 dev-scheme gauche mbedtls Enable support for net-libs/mbedtls 启用对 net-libs/mbedtls 的支持
2688 dev-scheme gauche-gl cg Enable NVidia Cg binding 启用 NVidia Cg 绑定
2689 dev-scheme guile debug-freelist Include garbage collector freelist debugging code 包含垃圾收集器freelist调试代码
2690 dev-scheme guile debug-malloc Include malloc debugging code 包含 malloc 调试代码
2691 dev-scheme guile deprecated Enable deprecated features 启用已弃用的功能
2692 dev-scheme guile discouraged (implied by deprecated) enable merely discouraged features (由 deprecated 暗示)仅启用不鼓励的功能
2693 dev-scheme guile networking Include networking interfaces 包括网络接口
2694 dev-scheme guile regex Include regular expression interfaces 包括正则表达式接口
2695 dev-scheme kawa awt Assume AWT is available 假设 AWT 可用
2696 dev-scheme kawa frontend Build "kawa" front-end program using sys-libs/readline 使用 sys-libs/readline 构建“kawa”前端程序
2697 dev-scheme kawa jemacs Build JEmacs 构建 JEmacs
2698 dev-scheme kawa krl Build BRL emulation and KRL 构建 BRL 仿真和 KRL
2699 dev-scheme kawa sax Assume SAX2 is available with dev-java/sax 假设 SAX2 可用于 dev-java/sax
2700 dev-scheme kawa servlets Build support for generating servlets with Java servletapi 构建对使用 Java servletapi 生成 servlet 的支持
2701 dev-scheme kawa swing Assume Swing is available 假设 Swing 可用
2702 dev-scheme kawa xqtests Support XQuery Test Suite 支持 XQuery 测试套件
2703 dev-scheme racket chez Build Racket on Chez (Racket CS) 在 Chez 上构建球拍(Racket CS)
2704 dev-scheme racket futures Enable racket/future library for fine-grained hardware parallelism 启用球拍/未来库以实现细粒度硬件并行性
2705 dev-scheme racket ncurses Add ncurses support for expeditor (REPL expression editor) 添加对 expeditor(REPL 表达式编辑器)的 ncurses 支持
2706 dev-scheme racket places Enable racket/place library for share-nothing parallelism and message-passing communication. Compared to futures, places are heavyweight, but they have a simpler performance model. 启用球拍/地方库以实现无共享并行和消息传递通信。与future相比,places是重量级的,但它们的性能模型更简单。
2707 dev-scheme racket threads Enable support for green threads 启用对绿色线程的支持
2708 dev-scheme scm arrays Support for arrays, uniform-arrays and uniform-vectors. 支持数组、统一数组和统一向量。
2709 dev-scheme scm bignums Support for large precision integers. 支持大精度整数。
2710 dev-scheme scm cautious SCM will always check the number of arguments to interpreted closures. SCM 将始终检查解释闭包的参数数量。
2711 dev-scheme scm dynamic-linking Be able to load compiled files while running. 能够在运行时加载已编译的文件。
2712 dev-scheme scm engineering-notation Floats to display in engineering notation (exponents always multiples of 3) instead of scientific notation. 以工程记数法(指数总是 3 的倍数)而不是科学记数法显示的浮点数。
2713 dev-scheme scm gsubr generalized c arguments: for arbitrary (more then 11) arguments to C functions. 广义 c 参数:用于 C 函数的任意(超过 11 个)参数。
2714 dev-scheme scm inexact Support for floating point numbers. 支持浮点数。
2715 dev-scheme scm ioext Commonly available I/O extensions: line I/O, file positioning, file delete and rename, and directory functions. 常用的 I/O 扩展:行 I/O、文件定位、文件删除和重命名、目录功能。
2716 dev-scheme scm libscm Build and install libscm.a and related headers 构建并安装 libscm.a 和相关头文件
2717 dev-scheme scm macro C level support for hygienic and referentially transparent macros (syntax-rules macros). 对卫生和引用透明的宏(语法规则宏)的 C 级支持。
2718 dev-scheme scm regex String regular expression matching. 字符串正则表达式匹配。
2719 dev-scheme scm unix Support for: nice, acct, lstat, readlink, symlink, mknod and sync. 支持:nice、acct、lstat、readlink、symlink、mknod 和同步。
2720 dev-scheme slib gambit Support for gambit scheme implementation 支持策略方案实施
2721 dev-scheme slib scm Support for scm scheme implementation 支持scm方案实现
2722 dev-tcltk expect-lite debug pull in packages needed for runtime interactive debugger 拉入运行时交互式调试器所需的包
2723 dev-tcltk tcl3d ode Enable support for physics engine from dev-games/ode 从 dev-games/ode 启用对物理引擎的支持
2724 dev-tcltk tcl3d osg Enable support for 3D toolkit from dev-games/openscenegraph 从 dev-games/openscenegraph 启用对 3D 工具包的支持
2725 dev-tcltk tktreectrl shellicon shellicon extension shellicon 扩展
2726 dev-tex abntex lyx Install with app-office/lyx layout 使用 app-office/lyx 布局安装
2727 dev-tex biblatex biber Install the unicode compatible backend processor 安装 unicode 兼容的后端处理器
2728 dev-tex pythontex highlighting Syntax highlighting using dev-python/pygments 使用 dev-python/pygments 突出显示语法
2729 dev-texlive texlive-basic luajittex Add support for LuaJitTeX: LuaTeX based on LuaJIT which is usually faster. 添加对 LuaJitTeX 的支持:基于 LuaJIT 的 LuaTeX 通常更快。
2730 dev-util bazel tools Install extra bazel tools to build from sources 安装额外的 bazel 工具以从源代码构建
2731 dev-util bitcoin-tx knots Build enhanced Bitcoin Knots version, rather than Bitcoin Core 构建增强的比特币结版本,而不是比特币核心
2732 dev-util bpftool caps Use sys-libs/libcap to enable unprivileged run support 使用 sys-libs/libcap 启用非特权运行支持
2733 dev-util bpftrace fuzzing Build bpftrace for fuzzing 构建用于模糊测试的 bpftrace
2734 dev-util buildbot docker Add support for worker docker command steps 添加对worker docker命令步骤的支持
2735 dev-util buildbot irc Add support for status delivery through an ircbot. 通过 ircbot 添加对状态传递的支持。
2736 dev-util bustle interactivetests Build interactive test programs 构建交互式测试程序
2737 dev-util bustle threaded Build with the multi-threaded runtime 使用多线程运行时构建
2738 dev-util cargo-audit fix Add support for 'fix' subcommand (experimental) 添加对“修复”子命令的支持(实验性)
2739 dev-util catalyst ccache Enables ccache support 启用 ccache 支持
2740 dev-util catalyst iso Pulls in the depends for building iso images 引入用于构建 iso 映像的依赖项
2741 dev-util catalyst system-bootloader Pulls in the depends needed to setup livecd bootloader from the host system rather than using a cdtar 引入从主机系统设置 livecd 引导加载程序所需的依赖项,而不是使用 cdtar
2742 dev-util ccache redis Enable Redis backend for storage via dev-libs/hiredis 通过 dev-libs/hiredis 启用 Redis 后端进行存储
2743 dev-util ccache static-c++ Avoid dynamic dependency on gcc's libstdc++. 避免对 gcc 的 libstdc++ 的动态依赖。
2744 dev-util cccc apidoc Build software docs with doxygen/graphviz and metrics with cccc 使用 doxygen/graphviz 构建软件文档,使用 cccc 构建指标
2745 dev-util cccc mfc Add patch for MFC dialect options 为 MFC 方言选项添加补丁
2746 dev-util codeblocks contrib Build additional contrib components 构建额外的贡献组件
2747 dev-util codeblocks fortran Build FortranProject plugin which enables to use Code::Blocks IDE for Fortran language 构建 FortranProject 插件,允许使用 Fortran 语言的 Code::Blocks IDE
2748 dev-util cppcheck htmlreport install cppcheck-htmlreport 安装 cppcheck-htmlreport
2749 dev-util cppcheck z3 Enable support for sci-mathematics/z3 backend 启用对 sci-mathematics/z3 后端的支持
2750 dev-util ctags json Enable JSON output support 启用 JSON 输出支持
2751 dev-util ctags xml Enable XML parsing support 启用 XML 解析支持
2752 dev-util ctags yaml Enable YAML parsing support 启用 YAML 解析支持
2753 dev-util cwdiff mercurial install hg wdiff alias for dev-vcs/mercurial 为 dev-vcs/mercurial 安装 hg wdiff 别名
2754 dev-util devhelp gedit Install plugin for app-editors/gedit 为 app-editors/gedit 安装插件
2755 dev-util dialog minimal Disable library, install command-line program only 禁用库,仅安装命令行程序
2756 dev-util diffoscope R Use dev-lang/R 使用开发语言/R
2757 dev-util diffoscope binutils Use sys-devel/binutils 使用 sys-devel/binutils
2758 dev-util diffoscope cpio Use app-arch/cpio 使用 app-arch/cpio
2759 dev-util diffoscope diff Use sys-apps/diffutils 使用 sys-apps/diffutils
2760 dev-util diffoscope docx Use app-text/docx2txt 使用 app-text/docx2txt
2761 dev-util diffoscope dtc Use sys-apps/dtc 使用 sys-apps/dtc
2762 dev-util diffoscope e2fsprogs Use sys-fs/e2fsprogs 使用 sys-fs/e2fsprogs
2763 dev-util diffoscope file Use sys-apps/file 使用系统应用程序/文件
2764 dev-util diffoscope find Use sys-apps/findutils 使用 sys-apps/findutils
2765 dev-util diffoscope gettext Use sys-devel/gettext 使用 sys-devel/gettext
2766 dev-util diffoscope gpg Use app-crypt/gnupg 使用 app-crypt/gnupg
2767 dev-util diffoscope haskell Use dev-lang/ghc 使用开发语言/ghc
2768 dev-util diffoscope hdf5 Use sci-libs/hdf5 使用 sci-libs/hdf5
2769 dev-util diffoscope hex Use app-editors/vim-core 使用 app-editors/vim-core
2770 dev-util diffoscope iso Use app-cdr/cdrtools 使用 app-cdr/cdrtools
2771 dev-util diffoscope llvm Use sys-devel/llvm 使用 sys-devel/llvm
2772 dev-util diffoscope opendocument Use app-text/odt2txt 使用 app-text/odt2txt
2773 dev-util diffoscope pascal Use dev-lang/fpc 使用开发语言/fpc
2774 dev-util diffoscope rpm Use app-arch/rpm 使用 app-arch/rpm
2775 dev-util diffoscope squashfs Use sys-fs/squashfs-tools 使用 sys-fs/squashfs-tools
2776 dev-util diffoscope ssh Use net-misc/openssh 使用网络杂项/openssh
2777 dev-util diffoscope tar Use app-arch/tar 使用 app-arch/tar
2778 dev-util diffoscope tcpdump Use net-analyzer/tcpdump 使用网络分析器/tcpdump
2779 dev-util diffoscope zip Use app-arch/unzip 使用 app-arch/解压缩
2780 dev-util edb-debugger jumbo-build Experimental jumbo (also known as unity) build capability 实验性 jumbo(也称为统一)构建能力
2781 dev-util edi clang Provide integration with sys-devel/clang and dev-util/bear for autocompletion, inline errors and information about compilation units. 提供与 sys-devel/clang 和 dev-util/bear 的集成,用于自动完成、内联错误和有关编译单元的信息。
2782 dev-util flatpak-builder yaml Use libyaml for yaml support 使用 libyaml 获取 yaml 支持
2783 dev-util geany gtk2 Use GTK+2 instead of GTK+3 使用 GTK+2 代替 GTK+3
2784 dev-util geany vte Enable Terminal support (x11-libs/vte) 启用终端支持 (x11-libs/vte)
2785 dev-util geany-plugins ctags Enable ctags plugin 启用 ctags 插件
2786 dev-util geany-plugins debugger Enable the debugger plugin which interfaces with sys-devel/gdb 启用与 sys-devel/gdb 接口的调试器插件
2787 dev-util geany-plugins enchant Enable spell checking using enchant 使用附魔启用拼写检查
2788 dev-util geany-plugins gpg Enable geanypg plugin which integrates GPG using app-crypt/gpgme 启用使用 app-crypt/gpgme 集成 GPG 的 geanypg 插件
2789 dev-util geany-plugins gtkspell Use gtkspell for dictionary support in GeanyVC 在 GeanyVC 中使用 gtkspell 来支持字典
2790 dev-util geany-plugins markdown Enable the markdown plugin 启用降价插件
2791 dev-util geany-plugins pretty-printer Enable pretty-printer plugin 启用漂亮的打印机插件
2792 dev-util geany-plugins scope Enable the scope plugin which is a graphical GDB front-end 启用作为图形 GDB 前端的范围插件
2793 dev-util geany-plugins soup Enable updatechecker and geniuspaste plugins which require net-libs/libsoup 启用需要net-libs/libsoup 的updatechecker 和geniuspaste 插件
2794 dev-util geany-plugins workbench Enable workbench plugin 启用工作台插件
2795 dev-util glade gjs Build catalog support for dev-libs/gjs widgets. 为 dev-libs/gjs 小部件构建目录支持。
2796 dev-util glade webkit Build catalog support for net-libs/webkit-gtk:4 widgets. 为 net-libs/webkit-gtk:4 小部件构建目录支持。
2797 dev-util global vim Integrate the GNU GLOBAL source code tag system with Vim 将 GNU GLOBAL 源代码标签系统与 Vim 集成
2798 dev-util gnome-builder clang Provide integration with sys-devel/clang for best possible C/C++ autocompletion, semantic highlighting, symbol resolving, and diagnostics support 提供与 sys-devel/clang 的集成,以实现最佳的 C/C++ 自动完成、语义突出显示、符号解析和诊断支持
2799 dev-util gnome-builder devhelp Provide API docs browsing and integration via dev-util/devhelp 通过 dev-util/devhelp 提供 API 文档浏览和集成
2800 dev-util gnome-builder flatpak Enable support for flatpak applications using sys-apps/flatpak 使用 sys-apps/flatpak 启用对 flatpak 应用程序的支持
2801 dev-util gnome-builder git Provide support for the Git version control system via dev-libs/libgit2-glib (such as setup of Git for New Project, direct cloning for Open Project and changed lines indicators in the editor gutter) 通过 dev-libs/libgit2-glib 提供对 Git 版本控制系统的支持(例如新项目的 Git 设置、打开项目的直接克隆和编辑器 gutter 中的更改行指示器)
2802 dev-util gnome-builder glade Provide integration with dev-util/glade UI designer for Gtk 为 Gtk 提供与 dev-util/glade UI 设计器的集成
2803 dev-util gnome-builder sysprof Provide an integrated profiler via dev-util/sysprof 通过 dev-util/sysprof 提供集成分析器
2804 dev-util google-perftools debug Build a set of libraries with debug support (so-called debugalloc). These are available by default but are not needed unless you're actually developing using tcmalloc. 构建一组具有调试支持的库(所谓的 debugalloc)。这些默认情况下可用,但除非您实际使用 tcmalloc 进行开发,否则不需要这些。
2805 dev-util google-perftools largepages Use (experimental) larger pages for tcmalloc, this increases memory usage, but should speed up the allocation/free operations. 为 tcmalloc 使用(实验性)更大的页面,这会增加内存使用,但应该会加快分配/释放操作。
2806 dev-util google-perftools largepages64k Use (experimental) 64K pages for tcmalloc, this increases memory usage, but should speed up the allocation/free operations. 为 tcmalloc 使用(实验性)64K 页面,这会增加内存使用量,但应该会加快分配/释放操作。
2807 dev-util google-perftools minimal Only build the tcmalloc_minimal library, ignoring the heap checker and the profilers. 只构建 tcmalloc_minimal 库,忽略堆检查器和分析器。
2808 dev-util google-perftools optimisememory To build libtcmalloc with smaller internal caches. 构建具有较小内部缓存的 libtcmalloc。
2809 dev-util heaptrack gui Install Qt5-based analyzer tool 安装基于 Qt5 的分析工具
2810 dev-util hfstospell clang Use different logic in ebuild when clang is used 使用 clang 时在 ebuild 中使用不同的逻辑
2811 dev-util intel-graphics-system-controller cli Build CLI tools for flashing manually a firmware upgrade. 构建用于手动刷新固件升级的 CLI 工具。
2812 dev-util intel-ocl-sdk android Install android related files 安装android相关文件
2813 dev-util intel-ocl-sdk system-boost Use system boost (dev-libs/boost) instead of bundled one 使用系统提升(dev-libs/boost)而不是捆绑一个
2814 dev-util intel-ocl-sdk system-tbb Use system Thread Building Blocks (dev-cpp/tbb) instead of bundled one 使用系统线程构建块 (dev-cpp/tbb) 而不是捆绑一个
2815 dev-util kcov binutils Use sys-libs/binutils-libs for --verify support 使用 sys-libs/binutils-libs 获得 --verify 支持
2816 dev-util kdevelop gdbui Enable GUI for attaching GDB to a running process 启用 GUI 以将 GDB 附加到正在运行的进程
2817 dev-util kdevelop hex Enable hex editor plugin via app-editors/okteta 通过 app-editors/okteta 启用十六进制编辑器插件
2818 dev-util kdevelop qmake Enable support for QMake build system 启用对 QMake 构建系统的支持
2819 dev-util kdevelop reviewboard Enable reviewboard support 启用审查板支持
2820 dev-util kernelshark custom-optimization Build with user-specified compiler optimizations (-Os, -O0, -O1, -O2, -O3) from CFLAGS 使用来自 CFLAGS 的用户指定的编译器优化(-Os、-O0、-O1、-O2、-O3)进行构建
2821 dev-util kup gitolite Enable support for dev-vcs/gitolite in kup-server 在 kup-server 中启用对 dev-vcs/gitolite 的支持
2822 dev-util ltrace unwind Use sys-libs/libunwind for frame unwinding support 使用 sys-libs/libunwind 支持框架展开
2823 dev-util lttng-tools ust Support LTTng-UST (Userspace Tracing) 支持 LTTng-UST(用户空间跟踪)
2824 dev-util lttng-ust numa Enable numa support 启用 numa 支持
2825 dev-util massif-visualizer callgraph Enable detailed snapshot analysis using media-gfx/kgraphviewer 使用 media-gfx/kgraphviewer 启用详细的快照分析
2826 dev-util mdds valgrind Add support for memory debugging using dev-util/valgrind 使用 dev-util/valgrind 添加对内存调试的支持
2827 dev-util mingw64-runtime default-ucrt Use ucrt instead of msvcrt-os as the default crt (WARNING: incompatible with each others and also for building Wine with USE=mingw, pick one from the start and keep it) 使用 ucrt 而不是 msvcrt-os 作为默认 crt(警告:彼此不兼容,也用于使用 USE=mingw 构建 Wine,从一开始就选择一个并保留它)
2828 dev-util mingw64-runtime idl Install idl files 安装 idl 文件
2829 dev-util mingw64-runtime libraries Build extra libraries: mangle, pseh, winpthreads 构建额外的库:mangle、pseh、winpthreads
2830 dev-util mingw64-runtime tools Build extra tools: gendef, genidl, widl 构建额外的工具:gendef、genidl、widl
2831 dev-util nvidia-cuda-sdk cuda Build CUDA binaries 构建 CUDA 二进制文件
2832 dev-util nvidia-cuda-sdk opencl Build OpenCL binaries 构建 OpenCL 二进制文件
2833 dev-util nvidia-cuda-toolkit debugger Install the CUDA debugger 安装 CUDA 调试器
2834 dev-util nvidia-cuda-toolkit nsight Install profiling and optimizing tools (nsight-compute, nsight-systems) 安装分析和优化工具(nsight-compute、nsight-systems)
2835 dev-util nvidia-cuda-toolkit profiler Install the NVIDIA CUDA profiler (nvprof) and the related libraries 安装 NVIDIA CUDA 分析器 (nvprof) 和相关库
2836 dev-util nvidia-cuda-toolkit sanitizer Install compute-sanitizer tool 安装计算清理工具
2837 dev-util nvidia-cuda-toolkit vis-profiler Install the NVIDIA CUDA visual profiler (nvvp) 安装 NVIDIA CUDA 视觉分析器 (nvvp)
2838 dev-util oprofile apidoc Provide doxygen generated API docs. 提供 doxygen 生成的 API 文档。
2839 dev-util ostree archive Use libarchive 使用库归档
2840 dev-util ostree dracut Install dracut module 安装 dracut 模块
2841 dev-util ostree gpg Enable GPG support 启用 GPG 支持
2842 dev-util ostree grub Enable grub configuration generator 启用 grub 配置生成器
2843 dev-util ostree http2 Use http2 使用 http2
2844 dev-util ostree httpd Enable ostree trivial-httpd entrypoint 启用 ostree trivial-httpd 入口点
2845 dev-util ostree libmount Use libmount 使用 libmount
2846 dev-util ostree sodium Use libsodium for ed25519 将 libsodium 用于 ed25519
2847 dev-util ostree soup Use libsoup for networking 使用 libsoup 进行网络连接
2848 dev-util perf babeltrace Enable dev-util/babeltrace support 启用 dev-util/babeltrace 支持
2849 dev-util perf clang Enable builtin clang and LLVM support 启用内置 clang 和 LLVM 支持
2850 dev-util perf doc Build documentation and man pages. With this USE flag disabled, the --help parameter for perf and its sub-tools will not be available. This is optional because it depends on a few documentation handling tools that are not always welcome on user systems. 构建文档和手册页。禁用此 USE 标志后,perf 及其子工具的 --help 参数将不可用。这是可选的,因为它依赖于一些在用户系统上并不总是受欢迎的文档处理工具。
2851 dev-util perf libpfm Enable dev-libs/libpfm support 启用 dev-libs/libpfm 支持
2852 dev-util perf numa Enable NUMA support 启用 NUMA 支持
2853 dev-util perf perl Add support for Perl as a scripting language for perf tools. 添加对 Perl 作为 perf 工具的脚本语言的支持。
2854 dev-util perf systemtap Add support to define SDT event in perf tools. 添加支持以在 perf 工具中定义 SDT 事件。
2855 dev-util perf unwind Use sys-libs/libunwind for frame unwinding support. 使用 sys-libs/libunwind 支持框架展开。
2856 dev-util plan9port freefonts Don't install BigelowHolmes fonts 不要安装 BigelowHolmes 字体
2857 dev-util poke machine-interface enable machine-interface protocol using dev-libs/json-c 使用 dev-libs/json-c 启用机器接口协议
2858 dev-util pycharm-community bundled-jdk Use bundled jdk 使用捆绑的 jdk
2859 dev-util pycharm-professional bundled-jdk Use bundled jdk 使用捆绑的 jdk
2860 dev-util ropper z3 Enable Z3 contraint solver support 启用 Z3 约束求解器支持
2861 dev-util scanmem gui Enable the GameConqueror GUI 启用 GameConqueror GUI
2862 dev-util sccache azure Enable Azure Blob Storage support 启用 Azure Blob 存储支持
2863 dev-util sccache dist-client Enables distributed support in the sccache client 在 sccache 客户端中启用分布式支持
2864 dev-util sccache dist-server Enables the sccache-dist binary 启用 sccache-dist 二进制文件
2865 dev-util sccache gcs Enable Google Cloud Storage support 启用谷歌云存储支持
2866 dev-util sccache redis Enable Redis support 启用 Redis 支持
2867 dev-util sccache s3 Enable Amazon S3 support 启用 Amazon S3 支持
2868 dev-util schroot btrfs Enable support for chroots using btrfs snapshots 使用 btrfs 快照启用对 chroot 的支持
2869 dev-util schroot dchroot Enables the building of a wrapper named "dchroot", replacing sys-apps/dchroot 启用名为“dchroot”的包装器的构建,替换 sys-apps/dchroot
2870 dev-util schroot lvm Enable support for chroots using LVM snapshots 使用 LVM 快照启用对 chroot 的支持
2871 dev-util schroot zfs Enable support for chroots using ZFS shapshots/clones 使用 ZFS 快照/克隆启用对 chroot 的支持
2872 dev-util spirv-llvm-translator tools Install the command-line translator llvm-spirv 安装命令行翻译器 llvm-spirv
2873 dev-util strace aio Enable dev-libs/libaio support for tracing Asynchronous I/O operations 启用 dev-libs/libaio 支持以跟踪异步 I/O 操作
2874 dev-util strace elfutils Enable stack backtraces (-k flag) via dev-libs/elfutils 通过 dev-libs/elfutils 启用堆栈回溯(-k 标志)
2875 dev-util strace unwind Enable stack backtraces (-k flag) via sys-libs/libunwind 通过 sys-libs/libunwind 启用堆栈回溯(-k 标志)
2876 dev-util sysdig modules Build kernel modules needed for tracing local events. Disable this only if you intend to use sysdig purely to work with dumpfiles. 构建跟踪本地事件所需的内核模块。仅当您打算仅使用 sysdig 来处理转储文件时才禁用此选项。
2877 dev-util sysprof unwind Use sys-libs/libunwind to unwind the stack 使用 sys-libs/libunwind 展开堆栈
2878 dev-util systemtap libvirt Support probing of libvirt domains. 支持探测 libvirt 域。
2879 dev-util trace-cmd udis86 Enable support for dev-libs/udis86 disassembler library 启用对 dev-libs/udis86 反汇编程序库的支持
2880 dev-util uftrace capstone Use capstone to provide dynamic tracing without recompilation 使用 capstone 提供动态跟踪,无需重新编译
2881 dev-util vulkan-tools cube Build the cube/cubepp demos 构建多维数据集/cubepp 演示
2882 dev-util watchman python Install pywatchman bindings and the watchman-{wait,make} utils 安装 pywatchman 绑定和 watchman-{wait,make} 工具
2883 dev-vcs cssc valgrind Enable usage of dev-util/valgrind in tests 在测试中启用 dev-util/valgrind
2884 dev-vcs cvs server Enable server support 启用服务器支持
2885 dev-vcs cvsync gcrypt Use dev-libs/libgcrypt for hash functions. 将 dev-libs/libgcrypt 用于哈希函数。
2886 dev-vcs cvsync mhash Use app-crypt/mhash for hash functions. 将 app-crypt/mhash 用于哈希函数。
2887 dev-vcs cvsync openssl Use dev-libs/openssl for hash functions. 将 dev-libs/openssl 用于哈希函数。
2888 dev-vcs darcs terminfo Use the terminfo package for enhanced console support. 使用 terminfo 包来增强控制台支持。
2889 dev-vcs darcs threaded Use threading and SMP support. 使用线程和 SMP 支持。
2890 dev-vcs fossil fusefs Enable the Fuse Filesystem 启用 Fuse 文件系统
2891 dev-vcs fossil json Enable the JSON API of Fossil's wiki 启用 Fossil wiki 的 JSON API
2892 dev-vcs fossil miniz Use the bundled miniz for compression instead of zlib. Incompatible with ssl. 使用捆绑的 miniz 而不是 zlib 进行压缩。与 ssl 不兼容。
2893 dev-vcs fossil system-sqlite Use the system SQLite instead of the bundled one 使用系统 SQLite 而不是捆绑的
2894 dev-vcs fossil tcl-private-stubs Enable Tcl integration via private stubs mechanism 通过私有存根机制启用 Tcl 集成
2895 dev-vcs fossil tcl-stubs Enable Tcl integration via stubs library mechanism 通过存根库机制启用 Tcl 集成
2896 dev-vcs fossil th1-docs Enable TH1 for embedded documentation pages 为嵌入式文档页面启用 TH1
2897 dev-vcs fossil th1-hooks Enable TH1 hooks for commands and web pages 为命令和网页启用 TH1 挂钩
2898 dev-vcs git blksha1 Use the new optimized SHA1 implementation 使用新的优化 SHA1 实现
2899 dev-vcs git cgi Install gitweb too 也安装 gitweb
2900 dev-vcs git curl Support fetching and pushing (requires webdav too) over http:// and https:// protocols 支持通过 http:// 和 https:// 协议获取和推送(也需要 webdav)
2901 dev-vcs git gpg Pull in gnupg for signing -- without gnupg, attempts at signing will fail at runtime! 拉入 gnupg 进行签名——没有 gnupg,签名尝试将在运行时失败!
2902 dev-vcs git highlight GitWeb support for app-text/highlight GitWeb 对 app-text/highlight 的支持
2903 dev-vcs git mediawiki Support pulling and pushing from MediaWiki 支持从 MediaWiki 拉取和推送
2904 dev-vcs git mediawiki-experimental Add experimental patches for improved MediaWiki support 添加实验性补丁以改进 MediaWiki 支持
2905 dev-vcs git perforce Add support for Perforce version control system (requires manual installation of Perforce client) 添加对 Perforce 版本控制系统的支持(需要手动安装 Perforce 客户端)
2906 dev-vcs git ppcsha1 Make use of a bundled routine that is optimized for the PPC arch 使用针对 PPC 架构优化的捆绑例程
2907 dev-vcs git subversion Include git-svn for dev-vcs/subversion support 包含 git-svn 以获得 dev-vcs/subversion 支持
2908 dev-vcs git tk Include the 'gitk' and 'git gui' tools 包括“gitk”和“git gui”工具
2909 dev-vcs git webdav Adds support for push'ing to HTTP/HTTPS repositories via DAV 添加对通过 DAV 推送到 HTTP/HTTPS 存储库的支持
2910 dev-vcs git-annex assistant Enable git-annex assistant and watch command 启用 git-annex 助手和 watch 命令
2911 dev-vcs git-annex benchmark Enable benchmarking 启用基准测试
2912 dev-vcs git-annex dbus Enable dbus support 启用 dbus 支持
2913 dev-vcs git-annex debuglocks Debug location of MVar/STM deadlocks MVar/STM死锁的调试位置
2914 dev-vcs git-annex gitlfs Build with git-lfs library (rather than vendored copy) 使用 git-lfs 库构建(而不是出售的副本)
2915 dev-vcs git-annex httpclientrestricted Build with http-client-restricted library (rather than vendored copy) 使用 http-client-restricted 库构建(而不是出售的副本)
2916 dev-vcs git-annex magicmime Use libmagic to determine file MIME types 使用 libmagic 确定文件 MIME 类型
2917 dev-vcs git-annex networkbsd Build with network-3.0 which split out network-bsd 使用分离出 network-bsd 的 network-3.0 构建
2918 dev-vcs git-annex pairing Enable pairing 启用配对
2919 dev-vcs git-annex s3 Enable S3 support 启用 S3 支持
2920 dev-vcs git-annex torrentparser Use haskell torrent library to parse torrent files 使用 haskell torrent 库解析 torrent 文件
2921 dev-vcs git-annex webapp Enable git-annex webapp 启用 git-annex webapp
2922 dev-vcs git-annex webdav Enable WebDAV support 启用 WebDAV 支持
2923 dev-vcs gitg glade Install a glade catalog file 安装林间空地目录文件
2924 dev-vcs gitg python Install Python bindings for those plugins requiring it. 为需要它的插件安装 Python 绑定。
2925 dev-vcs gitolite contrib Install user-contributed files 安装用户提供的文件
2926 dev-vcs gitolite tools Install tools to e.g. convert a Gitosis config to gitolite or one to check if your setup is gitolite >= 3.x compatible 安装工具,例如将 Gitosis 配置转换为 gitolite 或检查您的设置是否与 gitolite >= 3.x 兼容
2927 dev-vcs gitolite-gentoo contrib Install user-contributed files 安装用户提供的文件
2928 dev-vcs gitolite-gentoo tools Install tools to e.g. convert a Gitosis config to gitolite or one to check if your setup is gitolite >= 3.x compatible 安装工具,例如将 Gitosis 配置转换为 gitolite 或检查您的设置是否与 gitolite >= 3.x 兼容
2929 dev-vcs mercurial chg Support Mercurial command server client 支持 Mercurial 命令服务器客户端
2930 dev-vcs mercurial gpg Support signing with GnuPG. 支持使用 GnuPG 签名。
2931 dev-vcs mercurial rust Use Rust extensions. 使用 Rust 扩展。
2932 dev-vcs mercurial tk Install dev-lang/tk for hgk script. 为 hgk 脚本安装 dev-lang/tk。
2933 dev-vcs subversion extras Install extra scripts (examples, tools, hooks) 安装额外的脚本(示例、工具、挂钩)
2934 dev-vcs subversion kwallet Enable encrypted storage of passwords with kde-frameworks/kwallet 使用 kde-frameworks/kwallet 启用密码的加密存储
2935 dev-vcs subversion plaintext-password-storage Enable on-disk caching of plaintext passwords and passphrases. (Enabling this functionality will not force Subversion to store passwords in plaintext, but does permit users to explicitly allow that behavior via runtime configuration.) 启用明文密码和密码短语的磁盘缓存。 (启用此功能不会强制 Subversion 以明文形式存储密码,但允许用户通过运行时配置明确允许该行为。)
2936 games-action beathazardultra bundled-libs Use the upstream provided bundled libraries. 使用上游提供的捆绑库。
2937 games-action descent1-freedata l10n_de Provides German translations for the game's briefings, robot descriptions, and outro of the original campaign 为游戏简报、机器人描述和原始战役的结尾提供德语翻译
2938 games-action descent1-freedata opl3-musicpack Include alternate version of the game's music, recorded with the Yamaha YMF262 OPL3 soundchip 包括游戏音乐的替代版本,使用 Yamaha YMF262 OPL3 声音芯片录制
2939 games-action descent1-freedata sc55-musicpack Include alternate version of the game's music, recorded with the Roland Sound Canvas SC-55 MIDI module 包括游戏音乐的替代版本,使用 Roland Sound Canvas SC-55 MIDI 模块录制
2940 games-action descent1-freedata textures Include high resolution (640x480) backgrounds, briefing images and fonts (Descent 1) 包括高分辨率 (640x480) 背景、简报图像和字体 (Descent 1)
2941 games-action descent2-freedata l10n_de Provides German translations for the game's briefings, robot descriptions, and outro of the original campaign 为游戏简报、机器人描述和原始战役的结尾提供德语翻译
2942 games-action descent2-freedata opl3-musicpack Include alternate version of the game's music, recorded with the Yamaha YMF262 OPL3 soundchip 包括游戏音乐的替代版本,使用 Yamaha YMF262 OPL3 声音芯片录制
2943 games-action descent2-freedata sc55-musicpack Include alternate version of the game's music, recorded with the Roland Sound Canvas SC-55 MIDI module 包括游戏音乐的替代版本,使用 Roland Sound Canvas SC-55 MIDI 模块录制
2944 games-action dxx-rebirth d1x Install Descent 1 resources and executable 安装 Descent 1 资源和可执行文件
2945 games-action dxx-rebirth d2x Install Descent 2 resources and executable 安装 Descent 2 资源和可执行文件
2946 games-action dxx-rebirth data Ensure some game levels are present; if the full game's level data is not already installed then install the playable demo data (i.e. shareware levels) 确保存在一些游戏关卡;如果尚未安装完整游戏的关卡数据,则安装可玩的演示数据(即共享软件关卡)
2947 games-action dxx-rebirth debug Enable various debugging code paths and sanity checks, not just output. Some of these checks date back to the retail build, and choke on some custom levels because the game was never coded to sufficiently distrust inputs 启用各种调试代码路径和完整性检查,而不仅仅是输出。其中一些检查可以追溯到零售版本,并且在某些自定义级别上窒息,因为游戏从未编码为充分不信任输入
2948 games-action dxx-rebirth editor Enable level editor support 启用关卡编辑器支持
2949 games-action dxx-rebirth l10n_de Provides German translations for the game's briefings, robot descriptions, and outro of the original campaign 为游戏简报、机器人描述和原始战役的结尾提供德语翻译
2950 games-action dxx-rebirth midi Enforce that SDL-mixer is used and has midi support 强制使用 SDL-mixer 并支持 midi
2951 games-action dxx-rebirth music Enable music support 启用音乐支持
2952 games-action dxx-rebirth opl3-musicpack Include alternate version of the game's music, recorded with the Yamaha YMF262 OPL3 soundchip 包括游戏音乐的替代版本,使用 Yamaha YMF262 OPL3 声音芯片录制
2953 games-action dxx-rebirth sc55-musicpack Include alternate version of the game's music, recorded with the Roland Sound Canvas SC-55 MIDI module 包括游戏音乐的替代版本,使用 Roland Sound Canvas SC-55 MIDI 模块录制
2954 games-action dxx-rebirth sdl2 Use libSDL2, SDL2-mixer instead of libSDL-1* and SDL-mixer-1* 使用 libSDL2、SDL2-mixer 代替 libSDL-1* 和 SDL-mixer-1*
2955 games-action dxx-rebirth tracker Enable support for the PHP-based multiplayer game tracker 启用对基于 PHP 的多人游戏跟踪器的支持
2956 games-action dxx-rebirth valgrind Include a Valgrind header in build in order to support Memcheck client requests 在构建中包含 Valgrind 标头以支持 Memcheck 客户端请求
2957 games-action hotline-miami bundled-libs Use bundled libraries. 使用捆绑的库。
2958 games-action hotline-miami launcher Install qt launcher 安装qt启动器
2959 games-action minetest client Build Minetest client 构建 Minetest 客户端
2960 games-action minetest leveldb Enable LevelDB backend 启用 LevelDB 后端
2961 games-action minetest prometheus Enable prometheus client support 启用 prometheus 客户端支持
2962 games-action minetest redis Enable redis backend via dev-libs/hiredis 通过 dev-libs/hiredis 启用 redis 后端
2963 games-action minetest server Build Minetest server 搭建 Minetest 服务器
2964 games-action minetest spatial Enable SpatialIndex AreaStore backend 启用 SpatialIndex AreaStore 后端
2965 games-action polymc lto Enable link-time optimization 启用链接时优化
2966 games-action supermariowar server Compile and install Super Mario War server files 编译安装超级马里奥战争服务器文件
2967 games-action supertuxkart nettle Use dev-libs/nettle crypto backend 使用 dev-libs/nettle 加密后端
2968 games-action supertuxkart recorder Enable recording with media-libs/libopenglrecorder 使用 media-libs/libopenglrecorder 启用录制
2969 games-action supertuxkart sqlite Record IP bans, statistics in server mode with dev-db/sqlite 使用 dev-db/sqlite 在服务器模式下记录 IP 禁令、统计信息
2970 games-action supertuxkart wiimote Support for wiimote input devices 支持wiimote输入设备
2971 games-action swordandsworcery bundled-libs Use the upstream provided bundled libraries. 使用上游提供的捆绑库。
2972 games-action trine launcher Install GTK+ launcher 安装 GTK+ 启动器
2973 games-action trine-enchanted-edition launcher Install GTK+ launcher 安装 GTK+ 启动器
2974 games-action trine2 launcher Install GTK+ launcher 安装 GTK+ 启动器
2975 games-arcade bomns editor enables building the level editor 允许构建关卡编辑器
2976 games-arcade burgerspace network Enable client-server support 启用客户端-服务器支持
2977 games-arcade commandergenius downloader Allows some Keen games to be downloaded from the menu 允许从菜单中下载一些 Keen 游戏
2978 games-arcade jazz2 server Build the multiplayer game server 搭建多人游戏服务器
2979 games-arcade jazz2-data cc Install The Christmas Chronicles additional data 安装圣诞编年史附加数据
2980 games-arcade jazz2-data demo Use the free demo data instead of the full retail game data 使用免费的演示数据而不是完整的零售游戏数据
2981 games-arcade lbreakout2 themes Install additional themes 安装其他主题
2982 games-arcade moleinvasion music Download and install the music files 下载并安装音乐文件
2983 games-arcade oshu osu-skin Include more complete osu-skin (other is minimal) 包括更完整的 osu-skin(其他是最小的)
2984 games-arcade performous midi Enable MIDI I/O support 启用 MIDI I/O 支持
2985 games-arcade performous songs Install a few demo songs 安装一些演示歌曲
2986 games-arcade performous tools Enable building of song extraction utilities for SingStar and Guitar Hero 为 SingStar 和 Guitar Hero 构建歌曲提取实用程序
2987 games-arcade performous webcam Enable Webcam support 启用网络摄像头支持
2988 games-arcade tuxanci physfs Use dev-games/physfs instead of dev-libs/libzip to load compressed data 使用 dev-games/physfs 代替 dev-libs/libzip 加载压缩数据
2989 games-board cockatrice client Build with client 与客户端一起构建
2990 games-board cockatrice oracle Build with oracle 使用 oracle 构建
2991 games-board cockatrice server Compile server support 编译服务器支持
2992 games-board crafty no-opts Don't try to enable crazy CFLAG options 不要尝试启用疯狂的 CFLAG 选项
2993 games-board freedoko backgrounds Install additional background images 安装额外的背景图片
2994 games-board freedoko gnomecards Install the gnome-games card set 安装 gnome-games 卡组
2995 games-board freedoko kdecards Install the KDE card set 安装 KDE 卡组
2996 games-board freedoko openclipartcards Install the openclipartcards card set 安装 openclipartcards 卡组
2997 games-board freedoko pysolcards Install the PySol card set 安装 PySol 卡组
2998 games-board freedoko xskatcards Install the XSkat card set 安装 XSkat 卡组
2999 games-board pasang-emas extras Install some extra themes 安装一些额外的主题
3000 games-board pioneers help Enable gnome ingame help via scrollkeeper 通过 scrollkeeper 启用 gnome 游戏帮助
3001 games-board pysolfc extra-cardsets Install extra cardsets 安装额外的卡片组
3002 games-board pysolfc sound Enable sound support using dev-python/pygame 使用 dev-python/pygame 启用声音支持
3003 games-board scid photos Install collection of player photos (large) 安装球员照片集(大)
3004 games-board scid scripts Install additional python and tcl utility scripts 安装额外的 python 和 tcl 实用程序脚本
3005 games-board stockfish general-32 Generic unoptimized 32-bits build 通用未优化的 32 位构建
3006 games-board stockfish general-64 Generic unoptimized 64-bits build 通用未优化的 64 位构建
3007 games-board stockfish optimize Enable upstream -O3 optimizations (default enabled) 启用上游 -O3 优化(默认启用)
3008 games-board tablebase-syzygy 6-pieces Install tablebases for 6 pieces (huge!) 安装 6 件的桌架(巨大!)
3009 games-board xboard default-font Install the default font that xboard uses 安装 xboard 使用的默认字体
3010 games-board xboard zippy Enable experimental zippy client 启用实验 zippy 客户端
3011 games-emulation atari800 encode-mp3 Support recording sound in MP3 format 支持录制MP3格式的声音
3012 games-emulation desmume gdb Enable support for the remote GDB stub 启用对远程 GDB 存根的支持
3013 games-emulation desmume openal Use media-libs/openal for microphone input 使用 media-libs/openal 进行麦克风输入
3014 games-emulation desmume wifi Enable support for Wi-Fi (experimental and discouraged) 启用对 Wi-Fi 的支持(实验性和不鼓励)
3015 games-emulation dolphin discord-presence Enables Discord Rich Presence, show the current game on Discord 启用 Discord Rich Presence,在 Discord 上显示当前游戏
3016 games-emulation dolphin evdev Enable evdev input support 启用 evdev 输入支持
3017 games-emulation dolphin log Increase logging output 增加日志输出
3018 games-emulation dolphin mgba Enables GBA controllers emulation using libmgba. 使用 libmgba 启用 GBA 控制器仿真。
3019 games-emulation dolphin vulkan Enable support for Vulkan-based video backend. 启用对基于 Vulkan 的视频后端的支持。
3020 games-emulation dosbox core-inline Enable memory-increasing inlines for better performance but requiring more build time 启用内存增加内联以获得更好的性能,但需要更多的构建时间
3021 games-emulation dosbox glide Enable unofficial Glide emulation via media-libs/openglide 通过 media-libs/openglide 启用非官方 Glide 仿真
3022 games-emulation dosbox-staging dynrec Use recompiling cpu core instead of dynamic x86/x64 specific cpu core 使用重新编译 cpu 核心而不是动态 x86/x64 特定 cpu 核心
3023 games-emulation dosbox-staging fluidsynth use media-sound/fluidsynth for MIDI emulation 使用 media-sound/fluidsynth 进行 MIDI 仿真
3024 games-emulation dosbox-staging mt-32 use media-libs/munt-mt32emu for MT-32 emulation 使用 media-libs/munt-mt32emu 进行 MT-32 仿真
3025 games-emulation dosbox-staging network Enable networking features (modem, ipx) 启用网络功能(调制解调器、ipx)
3026 games-emulation dosbox-staging opus Support compressed audio tracks (.opus) used with CDROM images 支持与 CDROM 映像一起使用的压缩音轨 (.opus)
3027 games-emulation dosbox-staging slirp Enable Ethernet emulation using net-libs/libslirp 使用 net-libs/libslirp 启用以太网仿真
3028 games-emulation fceux ffmpeg Use media-video/ffmpeg for video recording 使用 media-video/ffmpeg 进行视频录制
3029 games-emulation fceux x265 Use media-libs/x265 for video recording (HEVC) 使用 media-libs/x265 进行视频录制 (HEVC)
3030 games-emulation generator sdlaudio Enable SDL Audio 启用 SDL 音频
3031 games-emulation hatari capsimage Use dev-libs/spsdeclib to read .IPF, .RAW, and .CTR disk images 使用 dev-libs/spsdeclib 读取 .IPF、.RAW 和 .CTR 磁盘映像
3032 games-emulation hatari microphone Use media-libs/portaudio for Falcon microphone handling 使用 media-libs/portaudio 处理 Falcon 麦克风
3033 games-emulation hatari portmidi Use media-libs/portmidi as an alternative MIDI backend 使用 media-libs/portmidi 作为替代 MIDI 后端
3034 games-emulation higan gtk Use GTK3 (Qt5 if disabled) user interface backend 使用 GTK3(如果禁用 Qt5)用户界面后端
3035 games-emulation m64py 7z Ensure support for .7z archives. 确保支持 .7z 档案。
3036 games-emulation m64py rar Ensure support for .rar archives. 确保支持 .rar 档案。
3037 games-emulation mgba discord Enable Discord RPC support 启用 Discord RPC 支持
3038 games-emulation mgba elf Enable the use of elf utils via dev-libs/elfutils 通过 dev-libs/elfutils 启用 elf utils
3039 games-emulation mgba gles2 Build OpenGL ES 2.x RenderSystem 构建 OpenGL ES 2.x 渲染系统
3040 games-emulation mgba gles3 Build OpenGL ES 3.x RenderSystem 构建 OpenGL ES 3.x 渲染系统
3041 games-emulation mupen64plus audio-sdl Enable SDL audio plugin. 启用 SDL 音频插件。
3042 games-emulation mupen64plus input-sdl Enable SDL input plugin. 启用 SDL 输入插件。
3043 games-emulation mupen64plus rsp-hle Enable HLE RSP plugin. 启用 HLE RSP 插件。
3044 games-emulation mupen64plus ui-console Enable default console UI. 启用默认控制台 UI。
3045 games-emulation mupen64plus ui-m64py Enable PyQt5 UI using games-emulation/m64py. 使用 games-emulation/m64py 启用 PyQt5 UI。
3046 games-emulation mupen64plus video-glide64mk2 Enable Glide64mk2 video plugin. 启用 Glide64mk2 视频插件。
3047 games-emulation mupen64plus video-rice Enable Rice video plugin. 启用 Rice 视频插件。
3048 games-emulation mupen64plus-core debugger Build the debugger 构建调试器
3049 games-emulation mupen64plus-core new-dynarec Enable new experimental dynamic recompiler implementation (only for x86 and arm) 启用新的实验性动态重新编译器实现(仅适用于 x86 和 arm)
3050 games-emulation mupen64plus-core opencv Support video capture via media-libs/opencv 通过 media-libs/opencv 支持视频捕获
3051 games-emulation mupen64plus-core osd Overlay emulator messages using on-screen-display 使用屏幕显示覆盖模拟器消息
3052 games-emulation mupen64plus-video-glide64mk2 hires Support hi-resolution textures (requires dev-libs/boost) 支持高分辨率纹理(需要 dev-libs/boost)
3053 games-emulation pcsxr archive Support compressed files (via libarchive) 支持压缩文件(通过 libarchive)
3054 games-emulation pcsxr ccdda Support compressed CDDA (requires ffmpeg) 支持压缩 CDDA(需要 ffmpeg)
3055 games-emulation pcsxr cdio Use libcdio for CD support 使用 libcdio 获得 CD 支持
3056 games-emulation pcsxr sdl Use SDL sound backend (other parts of SDL are used unconditionally) 使用 SDL 声音后端(无条件使用 SDL 的其他部分)
3057 games-emulation ppsspp discord Enable interfacing with a locally running Discord desktop client 启用与本地运行的 Discord 桌面客户端的接口
3058 games-emulation ppsspp system-ffmpeg Use the system-wide media-video/ffmpeg instead of bundled 使用系统范围的 media-video/ffmpeg 而不是捆绑
3059 games-emulation snes9x glslang Build support for slang-type shaders 构建对俚语类型着色器的支持
3060 games-emulation snes9x libretro Build libretro port 构建 libretro 端口
3061 games-emulation snes9x netplay Enable playing ROMs over the network (not recommended) 启用通过网络播放 ROM(不推荐)
3062 games-emulation vbam link Enable GBA linking functionality 启用 GBA 链接功能
3063 games-engines devilutionx lto Build with link time optimization enabled 在启用链接时间优化的情况下构建
3064 games-engines exult fluidsynth Compile with support for FluidSynth 编译时支持 FluidSynth
3065 games-engines exult sdl2 Use libsdl2 instead of libsdl 使用 libsdl2 而不是 libsdl
3066 games-engines exult tools Enable tools 启用工具
3067 games-engines frobtads tads2compiler Build TADS2 compiler 构建 TADS2 编译器
3068 games-engines frobtads tads3compiler Build TADS3 compiler 构建 TADS3 编译器
3069 games-engines love gme Use media-libs/game-music-emu to support additional music formats 使用 media-libs/game-music-emu 支持其他音乐格式
3070 games-engines odamex client Build client target 构建客户端目标
3071 games-engines odamex hidpi Use bundled FLTK 1.4, which has better support for HiDPI screens 使用捆绑的 FLTK 1.4,它对 HiDPI 屏幕有更好的支持
3072 games-engines odamex master Build master server target (advertises odamex server list) 构建主服务器目标(广告 odamex 服务器列表)
3073 games-engines odamex odalaunch Build the wxWidgets based launcher 构建基于 wxWidgets 的启动器
3074 games-engines odamex portmidi Enable PortMidi support 启用 PortMidi 支持
3075 games-engines odamex server Build server target 构建服务器目标
3076 games-engines openmw devtools Install development tools like bsatool, esmtool and opencs. 安装 bsatool、esmtool 和 opencs 等开发工具。
3077 games-engines openmw osg-fork Use OpenSceneGraph forked by OpenMW instead of upstream OSG. 使用由 OpenMW 分叉的 OpenSceneGraph 而不是上游 OSG。
3078 games-engines residualvm mpeg2 enable mpeg2 codec for cutscenes 为过场动画启用 mpeg2 编解码器
3079 games-engines scummvm fluidsynth compile with support for fluidsynth 在支持流体合成的情况下编译
3080 games-engines scummvm fribidi Support for right-to-left languages via dev-libs/fribidi 通过 dev-libs/fribidi 支持从右到左的语言
3081 games-engines scummvm glew enable support for OpenGL Extension Wrangler Library (media-libs/glew) 启用对 OpenGL 扩展牧马人库 (media-libs/glew) 的支持
3082 games-engines scummvm mpeg2 enable mpeg2 codec for cutscenes 为过场动画启用 mpeg2 编解码器
3083 games-engines scummvm net enable cloud support via media-libs/sdl2-net 通过 media-libs/sdl2-net 启用云支持
3084 games-engines scummvm sndio Enable support for MIDI music using media-sound/sndio 使用 media-sound/sndio 启用对 MIDI 音乐的支持
3085 games-engines scummvm speech enable text-to-speech support through app-accessibility/speech-dispatcher 通过 app-accessibility/speech-dispatcher 启用文本转语音支持
3086 games-engines scummvm unsupported enable unsupported and/or broken game engines (you're on your own) 启用不受支持和/或损坏的游戏引擎(你自己)
3087 games-engines solarus doc Install doxygen developer documentation. 安装 doxygen 开发者文档。
3088 games-engines stratagus fluidsynth compile with support for fluidsynth 在支持流体合成的情况下编译
3089 games-fps alienarena vidmode Link against x11-libs/libXxf86vm. Required for full-screen support. 链接到 x11-libs/libXxf86vm。需要全屏支持。
3090 games-fps chocolate-doom midi basic support for MIDI files 对 MIDI 文件的基本支持
3091 games-fps darkplaces cdsound Enables using CD audio in the engine 启用在引擎中使用 CD 音频
3092 games-fps darkplaces demo Uses the demo data from quake1 (quake1-demodata) 使用来自 quake1 的演示数据 (quake1-demodata)
3093 games-fps darkplaces lights Install and setup the updated light maps 安装和设置更新的光照贴图
3094 games-fps darkplaces textures Install and setup the updated textures 安装和设置更新的纹理
3095 games-fps doomsday demo Install launcher dor doom1.wad from games-fps/doom-data 从 games-fps/doom-data 安装启动器 doom1.wad
3096 games-fps doomsday display-mode Include the ability to set the display mode 包括设置显示模式的能力
3097 games-fps doomsday fluidsynth Build the FluidSynth sound driver 构建 FluidSynth 声音驱动程序
3098 games-fps doomsday freedoom Install launcher for doom1.wad from games-fps/freedoom 从 games-fps/freedoom 安装 doom1.wad 的启动器
3099 games-fps doomsday tools Build additional tools such as doomsday-shell, md2tool and texc 构建额外的工具,例如 doomsday-shell、md2tool 和 texc
3100 games-fps duke3d-data demo Extract data files from the shareware version. 从共享软件版本中提取数据文件。
3101 games-fps duke3d-data gog Extract data files from the GOG.com version. 从 GOG.com 版本中提取数据文件。
3102 games-fps eduke32 duke3d Install the Duke Nukem 3D data files, provided by games-fps/duke3d-data. 安装由 games-fps/duke3d-data 提供的 Duke Nukem 3D 数据文件。
3103 games-fps eduke32 fluidsynth Install media-libs/sdl2-mixer with fluidsynth support. 安装带有流体合成器支持的 media-libs/sdl2-mixer。
3104 games-fps eduke32 hrp Install the Duke Nukem 3D High Resolution Pack. 安装 Duke Nukem 3D 高分辨率包。
3105 games-fps eduke32 offensive Install the Duke Nukem 3D XXX Pack. 安装 Duke Nukem 3D XXX 包。
3106 games-fps eduke32 opl Install the Duke Nukem 3D OPL music files. 安装 Duke Nukem 3D OPL 音乐文件。
3107 games-fps eduke32 psx Install the Duke Nukem 3D PSX high resolution voice files. 安装 Duke Nukem 3D PSX 高分辨率语音文件。
3108 games-fps eduke32 sc-55 Install the Duke Nukem 3D Roland SC-55 music files. 安装 Duke Nukem 3D Roland SC-55 音乐文件。
3109 games-fps eduke32 sdk Install the SDK files. 安装 SDK 文件。
3110 games-fps eduke32 server Enable support for multiplayer. 启用对多人游戏的支持。
3111 games-fps eduke32 tools Install the support tools for mapster32. 安装 mapster32 的支持工具。
3112 games-fps eduke32 voidsw Enable support for Shadow Warrior (Classic) through VoidSW. 通过 VoidSW 启用对 Shadow Warrior (Classic) 的支持。
3113 games-fps eduke32 voxels Install the Duke Nukem 3D Voxels Pack. 安装 Duke Nukem 3D Voxels Pack。
3114 games-fps eduke32 vpx Enable support for media-libs/libvpx. 启用对 media-libs/libvpx 的支持。
3115 games-fps eduke32 xmp Enable support for media-libs/exempi. 启用对 media-libs/exempi 的支持。
3116 games-fps gzdoom gles2 Enable GLES2 backend 启用 GLES2 后端
3117 games-fps gzdoom non-free Enable non-free components 启用非自由组件
3118 games-fps gzdoom vulkan Enable Vulkan support 启用 Vulkan 支持
3119 games-fps nexuiz maps Install the community map pack 安装社区地图包
3120 games-fps prboom-plus dumb Enable support for various tracker-style music formats via media-libs/dumb 通过 media-libs/dumb 支持各种跟踪器风格的音乐格式
3121 games-fps prboom-plus fluidsynth Enable support for MIDI via media-sound/fluidsynth 通过 media-sound/fluidsynth 启用对 MIDI 的支持
3122 games-fps prboom-plus net Enable support for network play 启用对网络播放的支持
3123 games-fps prboom-plus portmidi Enable support for MIDI via media-libs/portmidi 通过 media-libs/portmidi 启用对 MIDI 的支持
3124 games-fps prboom-plus sdl2-image Enable support for high-resolution texture support via media-libs/sdl2-image 通过 media-libs/sdl2-image 启用对高分辨率纹理的支持
3125 games-fps prboom-plus sdl2-mixer Enable support for MIDI via media-libs/sdl2-mixer 通过 media-libs/sdl2-mixer 启用对 MIDI 的支持
3126 games-fps prboom-plus server Build PrBoom-Plus server 构建 PrBoom-Plus 服务器
3127 games-fps quake2-icculus demo Install the demo files (quake2-demodata) and configure for use 安装演示文件(quake2-demodata)并配置使用
3128 games-fps quake2-icculus qmax Build the pretty version (quake max) 构建漂亮的版本(地震最大)
3129 games-fps quake2-icculus rogue Build support for the 'Ground Zero' Mission Pack (rogue) 为“Ground Zero”任务包(流氓)建立支持
3130 games-fps quake2-icculus xatrix Build support for the 'The Reckoning' Mission Pack (xatrix) 构建对“清算”任务包 (xatrix) 的支持
3131 games-fps quakeforge client Build Normal and QuakeWorld clients alongside the servers 在服务器旁边构建 Normal 和 QuakeWorld 客户端
3132 games-fps quakeforge vulkan Enable vulkan renderer (experimental) 启用 vulkan 渲染器(实验性)
3133 games-fps quakeforge wildmidi Use media-sound/wildmidi for midi support 使用 media-sound/wildmidi 获得 midi 支持
3134 games-fps qudos demo Install the demo files (quake2-demodata) and configure for use 安装演示文件(quake2-demodata)并配置使用
3135 games-fps qudos mods Build support for the quake2 mission packs 构建对 quake2 任务包的支持
3136 games-fps qudos qmax Build the pretty version (quake max) 构建漂亮的版本(地震最大)
3137 games-fps qudos textures Install the enhanced textures (quake2-textures) 安装增强的纹理(quake2-textures)
3138 games-fps redeclipse dedicated Install only as a dedicated game server 仅作为专用游戏服务器安装
3139 games-fps rott demo Install the shareware version 安装共享软件版本
3140 games-fps sauerbraten server Compile server support 编译服务器支持
3141 games-fps turtlearena mumble Adds player-location (positional audio) support to VoIP 为 VoIP 添加播放器位置(位置音频)支持
3142 games-fps turtlearena server Build server target 构建服务器目标
3143 games-fps turtlearena voice Adds VoIP support 添加 VoIP 支持
3144 games-fps urbanterror altgamma Alternative way for gamma setting with modesetting driver 使用模式设置驱动程序进行伽马设置的替代方法
3145 games-fps urbanterror client Build binary for client (includes code for non-dedicated server) 为客户端构建二进制文件(包括非专用服务器的代码)
3146 games-fps urbanterror mumble Use Mumble for ingame VoIP (experimental) 使用 Mumble 进行游戏内 VoIP(实验性)
3147 games-fps urbanterror server Build binary for dedicated server 为专用服务器构建二进制文件
3148 games-fps urbanterror skeetshootmod Build support for skeetshoot mod for specific maps 为特定地图构建对 skeetshoot mod 的支持
3149 games-fps urbanterror voip Use ioq3 ingame VoIP (experimental) 使用 ioq3 ingame VoIP(实验性)
3150 games-fps worldofpadman maps Install extra maps (PadPack) 安装额外的地图(PadPack)
3151 games-fps xonotic ode Enable support for physics engine from dev-games/ode 从 dev-games/ode 启用对物理引擎的支持
3152 games-fps yamagi-quake2 client Build client 构建客户端
3153 games-fps yamagi-quake2 ctf Build support for the 'Capture The Flag' addon 构建对“夺旗”插件的支持
3154 games-fps yamagi-quake2 rogue Build support for the 'Ground Zero' Mission Pack 建立对“零地”任务包的支持
3155 games-fps yamagi-quake2 softrender Build software renderer 构建软件渲染器
3156 games-fps yamagi-quake2 vulkan Build experimental Vulkan renderer 构建实验性 Vulkan 渲染器
3157 games-fps yamagi-quake2 xatrix Build support for the 'The Reckoning' Mission Pack 建立对“清算”任务包的支持
3158 games-kids gcompris kiosk Enable kiosk mode by default (for use by small children or on a self-service host machine) 默认启用 kiosk 模式(供小孩使用或在自助主机上使用)
3159 games-misc ponysay fish-completion Enable fish completion support 启用鱼完成支持
3160 games-misc ponysay non-free Install non-free ponies (i.e. from the MLP franchise) 安装非免费小马(即来自 MLP 特许经营权)
3161 games-misc xcowsay fortune Enable support for fortune cookies via games-misc/fortune-mod 通过 games-misc/fortune-mod 启用对幸运饼干的支持
3162 games-mud tf atcp enable ATCP support. 启用 ATCP 支持。
3163 games-mud tf gmcp enable GMCP support. 启用 GMCP 支持。
3164 games-mud tf option102 enable telnet option 102 support. 启用 telnet 选项 102 支持。
3165 games-puzzle gnome-tetravex cli Build the gnome-tetravex-cli command-line interface 构建 gnome-tetravex-cli 命令行界面
3166 games-puzzle gnome-tetravex gui Build the gnome-tetravex graphical Gtk user interface 构建 gnome-tetravex 图形 Gtk 用户界面
3167 games-puzzle nightsky bundled-libs Use the upstream provided bundled libraries. 使用上游提供的捆绑库。
3168 games-puzzle pingus music Enable playing of background music 启用背景音乐播放
3169 games-puzzle tiny-and-big bundled-libs Use the upstream provided bundled libraries. 使用上游提供的捆绑库。
3170 games-puzzle world-of-goo-gog bundled-libs Use bundled libs 使用捆绑的库
3171 games-puzzle world-of-goo-hb bundled-libs Use bundled libs 使用捆绑的库
3172 games-roguelike FTL bundled-libs Use bundled libraries. 使用捆绑的库。
3173 games-roguelike angband sound Enable and install sounds 启用和安装声音
3174 games-roguelike stone-soup advpng Use alternate png optimization. 使用备用 png 优化。
3175 games-roguelike stone-soup ncurses Enable for console (uses ncurses) based build. (can be enabled on top of tiles) 启用基于控制台(使用 ncurses)的构建。 (可以在瓷砖顶部启用)
3176 games-roguelike stone-soup tiles Enable for graphical (tiled) build. (can be enabled on top of ncurses) 启用图形(平铺)构建。 (可以在 ncurses 之上启用)
3177 games-roguelike tomenet client Compile client 编译客户端
3178 games-roguelike tomenet server Compile server 编译服务器
3179 games-rpg daimonin-client music Install extra music 安装额外的音乐
3180 games-rpg deponia-doomsday bonus Install the bonus content (Art Book, Concept Art, Soundtrack) 安装奖励内容(艺术书、概念艺术、原声带)
3181 games-rpg drascula sound Install optional audio files 安装可选的音频文件
3182 games-rpg dreamweb doc High-resolution scans of the written material in the original UK game box 英国原版游戏盒中书面材料的高分辨率扫描
3183 games-rpg freedroidrpg devtools Compile the additional dev tools 编译额外的开发工具
3184 games-rpg freedroidrpg profile Enable the integration of the ingame real-time profiler 启用游戏内实时分析器的集成
3185 games-rpg hatoful-boyfriend gui Install the GUI for configuring screen resolution and input 安装用于配置屏幕分辨率和输入的 GUI
3186 games-rpg hatoful-boyfriend-holiday-star gui Install the GUI for configuring screen resolution and input 安装用于配置屏幕分辨率和输入的 GUI
3187 games-rpg kqlives cheats Enable cheating mode 开启作弊模式
3188 games-rpg manaplus mumble Enable support for voice chat 启用对语音聊天的支持
3189 games-rpg manaplus pugixml Use dev-libs/pugixml for XML parsing isntead of dev-libs/libxml2 使用 dev-libs/pugixml 代替 dev-libs/libxml2 进行 XML 解析
3190 games-rpg manaplus sdl2 Use libsdl2 instead of libsdl 使用 libsdl2 而不是 libsdl
3191 games-rpg sumwars tools Builds editor tools 构建编辑器工具
3192 games-rpg the-longest-journey hd Install high definition backgrounds and sprites 安装高清背景和精灵
3193 games-rpg the-longest-journey hd-fmv Install upscaled full motion videos 安装升级的全动态视频
3194 games-rpg to-the-moon bundled-libs Use bundled libraries 使用捆绑的库
3195 games-simulation corsix-th midi Adds support for background MIDI music via SDL_mixer 通过 SDL_mixer 添加对背景 MIDI 音乐的支持
3196 games-simulation flightgear dbus Enable screensaver DBus interaction 启用屏保 DBus 交互
3197 games-simulation flightgear gdal Enable alternative terrain engine based on pagedLOD using sci-libs/gdal 使用 sci-libs/gdal 启用基于 pagedLOD 的替代地形引擎
3198 games-simulation flightgear qt5 Build Qt5 launcher application 构建 Qt5 启动器应用程序
3199 games-simulation flightgear udev Enable event-based Input devices through virtual/udev 通过 virtual/udev 启用基于事件的输入设备
3200 games-simulation flightgear utils Build various utilities (fgpanel, fgviewer among others) 构建各种实用程序(fgpanel、fgviewer 等)
3201 games-simulation openrct2 lightfx Enables LightFX for better lightning effects. 启用 LightFX 以获得更好的闪电效果。
3202 games-simulation openrct2 scripting Enable the dev-lang/duktape scripting engine for executing user scripts. 启用 dev-lang/duktape 脚本引擎以执行用户脚本。
3203 games-simulation openttd allegro Add support for Allegro 添加对 Allegro 的支持
3204 games-simulation openttd dedicated Build only the openttd server, and not the client. 仅构建 openttd 服务器,而不构建客户端。
3205 games-simulation openttd fluidsynth Compile with support for FluidSynth 编译时支持 FluidSynth
3206 games-simulation openttd lzo Enables LZO compression for savegames. This is only needed to load extremely old savegames. (versions before 0.2) 为存档游戏启用 LZO 压缩。这只需要加载非常旧的存档游戏。 (0.2 之前的版本)
3207 games-simulation openttd openmedia Enables the free open media sets: OpenGFX, OpenSFX, OpenMSX, removing the requirement for proprietary TTD assets to play OpenTTD. 启用免费的开放媒体集:OpenGFX、OpenSFX、OpenMSX,无需专有 TTD 资产即可播放 OpenTTD。
3208 games-simulation simutrans minimal Don't install any PakSets (scenario data) 不要安装任何 PakSet(场景数据)
3209 games-simulation simutrans pak128 Install more detailed scenario data 安装更详细的场景数据
3210 games-simulation simutrans pak128-britain Install British scenario data 安装英国情景数据
3211 games-simulation simutrans pak128-german Install German scenario data 安装德国场景数据
3212 games-simulation simutrans pak192-comic Install comic-like scenario data 安装类似漫画的场景数据
3213 games-simulation simutrans-paksets 128 Install higher resolution scenario data (128 px graphics) 安装更高分辨率的场景数据(128 像素图形)
3214 games-simulation simutrans-paksets comic192 Install comic-like scenario data (192 px graphics) 安装类似漫画的场景数据(192 px 图形)
3215 games-simulation simutrans-paksets cs128 Install Czech-Slovak scenario data (128 px graphics) 安装捷克-斯洛伐克情景数据(128 px 图形)
3216 games-simulation simutrans-paksets excentrique48 Install eccentric scenario data (48 px graphics) 安装古怪的场景数据(48 px 图形)
3217 games-simulation simutrans-paksets german128 Install German scenario data (128 px graphics) 安装德国场景数据(128 px 图形)
3218 games-simulation simutrans-paksets nippon64 Install Nippon scenario data (64 px graphics) 安装 Nippon 场景数据(64 px 图形)
3219 games-simulation train-valley gui Install the GUI for configuring screen resolution and input 安装用于配置屏幕分辨率和输入的 GUI
3220 games-sports speed-dreams osggraph Enable the new work-in-progress 3D engine using dev-games/openscenegraph 使用 dev-games/openscenegraph 启用新的进行中的 3D 引擎
3221 games-sports speed-dreams webstats Enable support for sending racing statistics to a web server (experimental) 启用将赛车统计数据发送到 Web 服务器的支持(实验性)
3222 games-sports xmoto double-precision more precise calculations at the expense of speed 以速度为代价进行更精确的计算
3223 games-strategy 0ad editor Include Atlas scenario editor projects 包括 Atlas 场景编辑器项目
3224 games-strategy 0ad lobby Enable the use of net-libs/gloox and the multiplayer lobby 启用 net-libs/gloox 和多人游戏大厅
3225 games-strategy 0ad nvtt Support for some uncompressed data formats (might be needed for some mods) 支持一些未压缩的数据格式(某些模组可能需要)
3226 games-strategy augustus uncapped Uncap grand temple count 取消大寺庙计数
3227 games-strategy colobot devbuild TODO 去做
3228 games-strategy colobot tools Build tools 构建工具
3229 games-strategy colobot-data music Enable music support 启用音乐支持
3230 games-strategy defcon-demo system-libs Use system libraries instead of the ones included in the upstream distribution. 使用系统库而不是上游发行版中包含的库。
3231 games-strategy freeciv aimodules Support for dynamically loadable AI modules (server-side) 支持动态加载的 AI 模块(服务器端)
3232 games-strategy freeciv auth Add authentication capability via mysql, postgres or sqlite3 通过 mysql、postgres 或 sqlite3 添加身份验证功能
3233 games-strategy freeciv mapimg Additional mag image toolkit via media-gfx/imagemagick 通过 media-gfx/imagemagick 附加的 mag 图像工具包
3234 games-strategy freeciv modpack Build the freeciv-modpack-program to download/install mods 构建 freeciv-modpack-program 以下载/安装 mods
3235 games-strategy freeciv server Enable server support. Disabling this will also make it impossible to start local games. 启用服务器支持。禁用此功能也将无法启动本地游戏。
3236 games-strategy freeciv sound Add support for sound provided by media-libs/sdl-mixer 添加对 media-libs/sdl-mixer 提供的声音的支持
3237 games-strategy freeciv system-lua Use dev-lang/lua instead of the bundled liblua 使用 dev-lang/lua 而不是捆绑的 liblua
3238 games-strategy freesynd devtools Build development tools 构建开发工具
3239 games-strategy ja2-stracciatella editor Adds necessary file to run the editor 添加必要的文件以运行编辑器
3240 games-strategy ja2-stracciatella ru-gold Support for russian gold ja2 version 支持俄罗斯黄金ja2版本
3241 games-strategy megaglest editor Build map editor 构建地图编辑器
3242 games-strategy megaglest fribidi Enable FriBIDi support 启用 FriBIDi 支持
3243 games-strategy megaglest model-viewer Build model viewer 构建模型查看器
3244 games-strategy megaglest streflop Use the library streflop. Out of synchs may occur if not enabled. 使用库 streflop。如果未启用,可能会出现不同步。
3245 games-strategy megaglest tools Build model import/export tools 构建模型导入/导出工具
3246 games-strategy megaglest unicode Use unicode strings for wxwidgets 为 wxwidgets 使用 unicode 字符串
3247 games-strategy megaglest wxuniversal Use the wxUniversal port which implements the various GUI controls by drawing them itself 使用 wxUniversal 端口,它通过自己绘制来实现各种 GUI 控件
3248 games-strategy satellite-reign gui Install the GUI for configuring screen resolution and input 安装用于配置屏幕分辨率和输入的 GUI
3249 games-strategy ufoai client Build the main game client 构建主游戏客户端
3250 games-strategy ufoai server Build the dedicated server 搭建专属服务器
3251 games-strategy uqm music download and install original 3DO music files 下载并安装原始 3DO 音乐文件
3252 games-strategy uqm remix download and install remixed music files (large) 下载并安装混音音乐文件(大)
3253 games-strategy uqm voice download and install voice files (large) 下载并安装语音文件(大)
3254 games-strategy wargus bne Support extracting data from the Battle.net Edition 支持战网版数据提取
3255 games-strategy warzone2100 discord Enable Discord presence/join integration 启用 Discord 存在/加入集成
3256 games-strategy warzone2100 vulkan Enable vulkan backend 启用 vulkan 后端
3257 games-strategy wesnoth server Enable compilation of server 启用服务器编译
3258 games-util gslist web Enable the web interface 启用网络界面
3259 games-util lgogdownloader gui Enable GUI login support for passing reCAPTCHA 启用 GUI 登录支持以传递 reCAPTCHA
3260 games-util slade fluidsynth Enable MIDI software synthesis using media-sound/fluidsynth 使用 media-sound/fluidsynth 启用 MIDI 软件合成
3261 games-util wit fuse Enable image mount support via fuse 通过 fuse 启用镜像挂载支持
3262 gnome-base gconf ldap Build backend which enables default mail accounts, addressbooks and calendars for Evolution to be configured using each user's LDAP entry." 构建后端,允许使用每个用户的 LDAP 条目配置 Evolution 的默认邮件帐户、地址簿和日历。”
3263 gnome-base gdm bluetooth-sound Allow loading of bluetooth sound modules. This may be necessary for accessibility screen readers, but may cause bluetooth sound issues for users logging in. 允许加载蓝牙声音模块。这对于可访问性屏幕阅读器可能是必需的,但可能会导致用户登录时出现蓝牙声音问题。
3264 gnome-base gdm elogind Use sys-auth/elogind for session management 使用 sys-auth/elogind 进行会话管理
3265 gnome-base gdm fprint Enables experimental fingerprint authentication using sys-auth/fprintd 使用 sys-auth/fprintd 启用实验性指纹认证
3266 gnome-base gdm plymouth Enable support for smooth transition from sys-boot/plymouth 启用从 sys-boot/plymouth 平滑过渡的支持
3267 gnome-base gnome classic Install gnome-extra/gnome-shell-extensions for the Gnome Shell Classic mode 为 Gnome Shell 经典模式安装 gnome-extra/gnome-shell-extensions
3268 gnome-base gnome extras Install additional GNOME applications 安装其他 GNOME 应用程序
3269 gnome-base gnome-applets tracker Build the tracker search bar applet 构建跟踪器搜索栏小程序
3270 gnome-base gnome-control-center gnome-online-accounts Enable configuration panel for net-libs/gnome-online-accounts accounts 启用 net-libs/gnome-online-accounts 帐户的配置面板
3271 gnome-base gnome-control-center ibus Enable support for enhanced input methods through app-i18n/ibus 通过 app-i18n/ibus 启用对增强输入法的支持
3272 gnome-base gnome-extra-apps games Install Gnome Games 安装 Gnome 游戏
3273 gnome-base gnome-extra-apps share Install the gnome-extra/gnome-user-share personal file sharing tool 安装 gnome-extra/gnome-user-share 个人文件共享工具
3274 gnome-base gnome-extra-apps shotwell Install the media-gfx/shotwell photo manager 安装 media-gfx/shotwell 照片管理器
3275 gnome-base gnome-extra-apps tracker Install the app-misc/tracker indexer and the GNOME packages that require it 安装 app-misc/tracker indexer 和需要它的 GNOME 包
3276 gnome-base gnome-keyring ssh-agent Use GNOME Keyring to unlock SSH keys. Recommended unless you are using ECDSA or Ed25519 keys. 使用 GNOME 密钥环解锁 SSH 密钥。除非您使用 ECDSA 或 Ed25519 密钥,否则建议使用。
3277 gnome-base gnome-light gnome-shell Install gnome-base/gnome-shell and x11-wm/mutter for the standard GNOME 3 desktop mode 为标准 GNOME 3 桌面模式安装 gnome-base/gnome-shell 和 x11-wm/mutter
3278 gnome-base gnome-session elogind Support sys-auth/elogind for session tracking 支持 sys-auth/elogind 进行会话跟踪
3279 gnome-base gnome-settings-daemon elogind Rely on sys-auth/elogind as runtime logind provider 依赖 sys-auth/elogind 作为运行时登录提供程序
3280 gnome-base gnome-settings-daemon modemmanager Enable WWAN support via net-misc/modemmanager 通过 net-misc/modemmanager 启用 WWAN 支持
3281 gnome-base gnome-settings-daemon systemd Rely on sys-apps/systemd as runtime logind provider 依赖 sys-apps/systemd 作为运行时登录提供程序
3282 gnome-base gnome-shell browser-extension Ensure the presence of extensions.gnome.org native connector gnome-extra/chrome-gnome-shell 确保 extensions.gnome.org 本机连接器 gnome-extra/chrome-gnome-shell 的存在
3283 gnome-base gnome-shell elogind Use sys-auth/elogind for session tracking and suspend support. 使用 sys-auth/elogind 进行会话跟踪和暂停支持。
3284 gnome-base gnome-shell ibus Enable support for enhanced input methods through app-i18n/ibus 通过 app-i18n/ibus 启用对增强输入法的支持
3285 gnome-base gnome-shell telepathy Ensure presence of telepathy chat integration 确保存在心灵感应聊天集成
3286 gnome-base gvfs afp Enables support for accessing AFP (Apple Filing Protocol) network shares 支持访问 AFP(Apple 归档协议)网络共享
3287 gnome-base gvfs archive Enables support for accessing files in archives transparently via app-arch/libarchive 支持通过 app-arch/libarchive 透明地访问档案中的文件
3288 gnome-base gvfs bluray Enable playback of Blu-ray filesystems using media-libs/libbluray 使用 media-libs/libbluray 启用蓝光文件系统的播放
3289 gnome-base gvfs elogind Use sys-auth/elogind for session tracking. 使用 sys-auth/elogind 进行会话跟踪。
3290 gnome-base gvfs fuse Enables fuse mount points in $HOME/.gvfs for legacy application access 在 $HOME/.gvfs 中启用熔断器挂载点以访问旧版应用程序
3291 gnome-base gvfs gnome-online-accounts Enable configuration panel for net-libs/gnome-online-accounts accounts 启用 net-libs/gnome-online-accounts 帐户的配置面板
3292 gnome-base gvfs google Enables support for accessing Google accounts via dev-libs/libgdata 支持通过 dev-libs/libgdata 访问 Google 帐户
3293 gnome-base gvfs http Enable the HTTP/DAV backend using net-libs/libsoup 使用 net-libs/libsoup 启用 HTTP/DAV 后端
3294 gnome-base gvfs nfs Enable NFS client support via net-fs/libnfs. 通过 net-fs/libnfs 启用 NFS 客户端支持。
3295 gnome-base gvfs udev Enable udev base replacement code for cdda feature 为 cdda 功能启用 udev 基本替换代码
3296 gnome-base libgnomecanvas glade Enable glade support 启用空地支持
3297 gnome-base librsvg tools Build svg viewer tool 构建 svg 查看器工具
3298 gnome-base nautilus gstreamer Enable the Audio/Video file properties page 启用音频/视频文件属性页面
3299 gnome-base nautilus previewer Use gnome-extra/sushi to preview files from the file mananger 使用 gnome-extra/sushi 从文件管理器中预览文件
3300 gnome-base nautilus sendto Enable the nautilus-sendto extension to send files to various locations/devices 启用 nautilus-sendto 扩展以将文件发送到不同的位置/设备
3301 gnome-extra cinnamon-control-center gnome-online-accounts Enable configuration panel for net-libs/gnome-online-accounts accounts 启用 net-libs/gnome-online-accounts 帐户的配置面板
3302 gnome-extra cinnamon-control-center modemmanager Enable support for mobile broadband devices using net-misc/modemmanager 使用 net-misc/modemmanager 启用对移动宽带设备的支持
3303 gnome-extra cjs sysprof Enable profiling data capture support using dev-util/sysprof-capture 使用 dev-util/sysprof-capture 启用分析数据捕获支持
3304 gnome-extra eiciel nautilus Build gnome-base/nautilus extension 构建 gnome-base/nautilus 扩展
3305 gnome-extra evolution-data-server berkdb sys-libs/db support needed to migrate old (pre-3.13 evolution versions) addressbook data 迁移旧(3.13 之前的演进版本)地址簿数据所需的 sys-libs/db 支持
3306 gnome-extra evolution-data-server gnome-online-accounts Enable net-libs/gnome-online-accounts based Google authentication support 启用基于 net-libs/gnome-online-accounts 的 Google 身份验证支持
3307 gnome-extra evolution-data-server oauth Enable internal OAuth2 authentication support for Google and Outlook.com. If gnome-online-accounts is enabled and used, this is not necessary, but both can be supported at the same time with different setup at runtime 为 Google 和 Outlook.com 启用内部 OAuth2 身份验证支持。如果启用并使用了 gnome-online-accounts,这不是必需的,但可以同时支持两者,在运行时使用不同的设置
3308 gnome-extra evolution-data-server weather Enable optional weather calendar support 启用可选的天气日历支持
3309 gnome-extra gnome-commander gsf Add metadata support for OLE, OLE2 and ODF 添加对 OLE、OLE2 和 ODF 的元数据支持
3310 gnome-extra gnome-commander pdf Add metadata support for PDF 添加对 PDF 的元数据支持
3311 gnome-extra gnome-commander taglib Add metadata support for ID3, Vorbis, FLAC and APE 添加对 ID3、Vorbis、FLAC 和 APE 的元数据支持
3312 gnome-extra gnome-commander unique Enable single instance support using dev-libs/libunique 使用 dev-libs/libunique 启用单实例支持
3313 gnome-extra gnome-contacts telepathy Start chat from contact details 从联系方式开始聊天
3314 gnome-extra gnome-shell-extension-gsconnect nautilus Install Nautilus extension for sending files via GSConnect 安装 Nautilus 扩展以通过 GSConnect 发送文件
3315 gnome-extra gnome-software firmware Enable firmware update support through sys-apps/fwupd 通过 sys-apps/fwupd 启用固件更新支持
3316 gnome-extra gnome-software flatpak Enable support for flatpak applications using sys-apps/flatpak 使用 sys-apps/flatpak 启用对 flatpak 应用程序的支持
3317 gnome-extra gnome-software sysprof Enable profiling data capture support using dev-util/sysprof-capture 使用 dev-util/sysprof-capture 启用分析数据捕获支持
3318 gnome-extra gnome-system-monitor systemd Display sys-apps/systemd metadata, e.g. unit names, for running processes 显示正在运行的进程的 sys-apps/systemd 元数据,例如单元名称
3319 gnome-extra libgda canvas Enable support for x11-libs/goocanvas 启用对 x11-libs/goocanvas 的支持
3320 gnome-extra libgda http Enable embedded net-libs/libsoup based server 启用基于嵌入式 net-libs/libsoup 的服务器
3321 gnome-extra libgda json Enable support for JSON format 启用对 JSON 格式的支持
3322 gnome-extra libgda mdb Enable support for Microsoft Access database using app-office/mdbtools 使用 app-office/mdbtools 启用对 Microsoft Access 数据库的支持
3323 gnome-extra libgda sourceview Enable support for x11-libs/gtksourceview 启用对 x11-libs/gtksourceview 的支持
3324 gnome-extra libgsf gtk Enable use of gdk in thumbnailer 在缩略图器中启用 gdk
3325 gnome-extra nm-applet modemmanager Enable support for mobile broadband devices using net-misc/modemmanager 使用 net-misc/modemmanager 启用对移动宽带设备的支持
3326 gnome-extra nm-applet teamd Enable teamd configuration editor 启用 teamd 配置编辑器
3327 gnome-extra sushi office Support viewing file formats such as generated by app-office/libreoffice 支持查看app-office/libreoffice等生成的文件格式
3328 gnome-extra synapse plugins Build support for plugins using net-libs/rest 使用 net-libs/rest 构建对插件的支持
3329 gnustep-apps gemas projectcenter Build and install plugin for gnustep-apps/projectcenter 为 gnustep-apps/projectcenter 构建和安装插件
3330 gnustep-apps gworkspace gwmetadata Enable the metadata indexing and searching system 启用元数据索引和搜索系统
3331 gnustep-apps sogo activesync Build the ActiveSync support code 构建 ActiveSync 支持代码
3332 gnustep-apps sogo sodium Enable support for Argon2 password schemes using dev-libs/libsodium 使用 dev-libs/libsodium 启用对 Argon2 密码方案的支持
3333 gnustep-base gnustep-back-art xim Enable X11 XiM input method 启用 X11 XiM 输入法
3334 gnustep-base gnustep-back-cairo xim Enable X11 XiM input method 启用 X11 XiM 输入法
3335 gnustep-base gnustep-back-xlib xim Enable X11 XiM input method 启用 X11 XiM 输入法
3336 gnustep-base gnustep-gui speech Audio support using app-accessibility/flite 使用 app-accessibility/flite 支持音频
3337 gnustep-base gnustep-make libobjc2 Enables use of the GNUstep Objective-C runtime (gnustep-base/libobjc2) with non-fragile ABI and sys-devel/clang compiler 允许使用具有非脆弱 ABI 和 sys-devel/clang 编译器的 GNUstep Objective-C 运行时 (gnustep-base/libobjc2)
3338 gnustep-base gnustep-make native-exceptions Enables use of the native Objective-C exception support (@try/@catch/@finally) built-in objective-c exceptions with compilers that support it 允许使用原生 Objective-C 异常支持 (@try/@catch/@finally) 内置的 Objective-C 异常以及支持它的编译器
3339 gnustep-base libobjc2 boehm-gc Enable Hans Boehm's garbage collector (dev-libs/boehm-gc). Not recommended by upstream 启用 Hans Boehm 的垃圾收集器 (dev-libs/boehm-gc)。上游不推荐
3340 gui-apps foot grapheme-clustering Enable grapheme clustering support 启用字素集群支持
3341 gui-apps grim jpeg Enable JPEG support. 启用 JPEG 支持。
3342 gui-apps gtkgreet layershell Enable layer shell support 启用层外壳支持
3343 gui-apps mako icons Enable support for icons 启用对图标的支持
3344 gui-apps swaybg gdk-pixbuf Support image types other than PNG 支持PNG以外的图像类型
3345 gui-apps swayidle elogind Enable support for rootless session via elogind 通过 elogind 启用对无根会话的支持
3346 gui-apps swaylock gdk-pixbuf Enable additional image format support via the x11-libs/gdk-pixbuf library 通过 x11-libs/gdk-pixbuf 库启用额外的图像格式支持
3347 gui-apps waybar mpd Enable support for the Music Player Daemon 启用对音乐播放器守护程序的支持
3348 gui-apps waybar network Enable libnl support for network related features 启用对网络相关功能的 libnl 支持
3349 gui-apps waybar popups Enable popup support with gtk-layer-shell 使用 gtk-layer-shell 启用弹出窗口支持
3350 gui-apps waybar pulseaudio Enable support for volume control via PulseAudio 通过 PulseAudio 启用对音量控制的支持
3351 gui-apps waybar sndio Enable support for volume control via sndio 通过 sndio 启用对音量控制的支持
3352 gui-apps waybar tray Enable support for tray 启用对托盘的支持
3353 gui-apps waybar wifi Enable support for wifi/rfkill 启用对 wifi/rfkill 的支持
3354 gui-apps waypipe dmabuf Use DMABUFs for data exchange and hardware decoding 使用 DMABUF 进行数据交换和硬件解码
3355 gui-apps waypipe ffmpeg Link with ffmpeg to allow buffer displays using video streams 与 ffmpeg 链接以允许使用视频流进行缓冲区显示
3356 gui-apps waypipe systemtap Enable SystemTAP/DTrace tracing 启用 SystemTAP/DTrace 跟踪
3357 gui-apps wayvnc gbm enable GPU-side screencopy (experimental) 启用 GPU 端屏幕复制(实验性)
3358 gui-apps wayvnc tracing Trace kernel and memory calls 跟踪内核和内存调用
3359 gui-apps wf-recorder opencl Enable OpenCL 启用 OpenCL
3360 gui-libs gtk broadway Enable the GDK Broadway backend. 启用 GDK Broadway 后端。
3361 gui-libs gtk colord Use x11-misc/colord for color management in printing 在打印中使用 x11-misc/colord 进行色彩管理
3362 gui-libs gtk sysprof Enable profiling data capture support using dev-util/sysprof-capture 使用 dev-util/sysprof-capture 启用分析数据捕获支持
3363 gui-libs gtk vulkan Enable support for the Vulkan graphics API 启用对 Vulkan 图形 API 的支持
3364 gui-libs gtksourceview sysprof Enable profiling data capture support using dev-util/sysprof-capture 使用 dev-util/sysprof-capture 启用分析数据捕获支持
3365 gui-libs libhandy glade Install module and catalog for dev-util/glade 为 dev-util/glade 安装模块和目录
3366 gui-libs neatvnc examples Build and install examples 构建和安装示例
3367 gui-libs neatvnc jpeg Enable fast encodings 启用快速编码
3368 gui-libs neatvnc tracing Trace kernel and memory calls 跟踪内核和内存调用
3369 gui-libs wlroots X Enable support for X11 applications (XWayland) 启用对 X11 应用程序 (XWayland) 的支持
3370 gui-libs wlroots vulkan Enable support for the vulkan backend renderer 启用对 vulkan 后端渲染器的支持
3371 gui-libs wlroots x11-backend Enable support for handling input/output devices through x11-libs/libxcb 启用对通过 x11-libs/libxcb 处理输入/输出设备的支持
3372 gui-libs xdg-desktop-portal-wlr elogind Enable support for rootless session via elogind 通过 elogind 启用对无根会话的支持
3373 gui-wm hikari X Enable support for X11 applications (XWayland) 启用对 X11 应用程序 (XWayland) 的支持
3374 gui-wm sway X Enable support for X11 applications (XWayland) 启用对 X11 应用程序 (XWayland) 的支持
3375 gui-wm sway swaybar Install 'swaybar': sway's status bar component 安装'swaybar':sway的状态栏组件
3376 gui-wm sway swaybg Install 'swaybg': allows to set a desktop background image 安装'swaybg':允许设置桌面背景图像
3377 gui-wm sway swayidle Install 'swayidle': idle manager to run commands when user is inactive 安装'swayidle':空闲管理器在用户不活动时运行命令
3378 gui-wm sway swaylock Install 'swaylock': sway's screen locker 安装 'swaylock': sway 的屏幕锁
3379 gui-wm sway swaymsg Install 'swaymsg': tool for communicating with a running sway instance 安装“swaymsg”:用于与正在运行的 sway 实例通信的工具
3380 gui-wm sway swaynag Install 'swaynag': shows a message with buttons 安装“swaynag”:显示带有按钮的消息
3381 gui-wm sway tray Enable support for StatusNotifierItem tray specification 启用对 StatusNotifierItem 托盘规范的支持
3382 gui-wm sway wallpapers Install sway's default wallpaper image 安装 sway 的默认壁纸图片
3383 gui-wm wayfire gles use libglvnd to do animations more efficiently 使用 libglvnd 更有效地做动画
3384 gui-wm wayfire system-wfconfig use the system-wide wf-config, else build it as a submodule. DO NOT DISABLE UNLESS YOU KNOW WHAT YOU ARE DOING. 使用系统范围的 wf-config,否则将其构建为子模块。除非您知道自己在做什么,否则请勿禁用。
3385 gui-wm wayfire system-wlroots use the system wide wlroots, else build it as a submodule. DO NOT DISABLE UNLESS YOU KNOW WHAT YOU ARE DOING. 使用系统范围的 wlroots,否则将其构建为子模块。除非您知道自己在做什么,否则请勿禁用。
3386 kde-apps akonadi designer Install plugin for dev-qt/designer 为 dev-qt/designer 安装插件
3387 kde-apps akonadi kaccounts Enable support for system-wide defined KAccounts 启用对系统范围定义的 KAccounts 的支持
3388 kde-apps akonadi tools Install tools for developers and testing 为开发人员和测试安装工具
3389 kde-apps akregator speech Enable text-to-speech support 启用文本转语音支持
3390 kde-apps analitza eigen Enable dev-cpp/eigen mathematical templates support 启用 dev-cpp/eigen 数学模板支持
3391 kde-apps ark zip Enable ZIP archive support via dev-libs/libzip 通过 dev-libs/libzip 启用 ZIP 存档支持
3392 kde-apps cantor R Enable dev-lang/R backend support 启用 dev-lang/R 后端支持
3393 kde-apps cantor analitza Enable kde-apps/analitza backend support 启用 kde-apps/analitza 后端支持
3394 kde-apps cantor julia Enable dev-lang/julia backend support 启用 dev-lang/julia 后端支持
3395 kde-apps cantor qalculate Enable sci-libs/libqalculate backend support 启用 sci-libs/libqalculate 后端支持
3396 kde-apps dolphin activities Track which folders are frequently accessed on a Plasma desktop 跟踪 Plasma 桌面上经常访问哪些文件夹
3397 kde-apps gwenview activities Enable kactivities support 启用 kactivities 支持
3398 kde-apps gwenview fits Enable support for NASA's sci-libs/cfitsio library 启用对 NASA 的 sci-libs/cfitsio 库的支持
3399 kde-apps gwenview mpris Enable support for MPRIS2 interface, requiring dev-qt/qtdbus as dependency. 启用对 MPRIS2 接口的支持,需要 dev-qt/qtdbus 作为依赖项。
3400 kde-apps gwenview share Enable support for a share menu using kde-frameworks/purpose 使用 kde-frameworks/purpose 启用对共享菜单的支持
3401 kde-apps kaccounts-providers webengine Enable Nextcloud KAccounts plugin using dev-qt/qtwebengine 使用 dev-qt/qtwebengine 启用 Nextcloud KAccounts 插件
3402 kde-apps kalarm speech Enable text-to-speech support 启用文本转语音支持
3403 kde-apps kalzium editor Enable the embedded molecule editor/viewer 启用嵌入式分子编辑器/查看器
3404 kde-apps kalzium solver Enable the equation solver 启用方程求解器
3405 kde-apps kanagram speech Enable text-to-speech support 启用文本转语音支持
3406 kde-apps kate activities Enable Plasma Activities support via kde-frameworks/kactivities 通过 kde-frameworks/kactivities 启用 Plasma 活动支持
3407 kde-apps kate filebrowser Enable File System browser tool view 启用文件系统浏览器工具视图
3408 kde-apps kate lspclient Enable LSP (Language Server Protocol) client plugin 启用 LSP(语言服务器协议)客户端插件
3409 kde-apps kate plasma Enable Session Applet addon for KDE Plasma 为 KDE Plasma 启用会话小程序插件
3410 kde-apps kate projects Enable Project plugin for executing queries on SQL DBs 启用 Project 插件以在 SQL DB 上执行查询
3411 kde-apps kate snippets Enable Snippets Tool View plugin to manage or download code snippets 启用 Snippets Tool View 插件以管理或下载代码片段
3412 kde-apps kate sql Enable SQL plugin for executing queries on SQL DBs 启用 SQL 插件以在 SQL DB 上执行查询
3413 kde-apps kde-apps-meta accessibility Pull in kde-apps/kdeaccessibility-meta packages 拉入 kde-apps/kdeaccessibility-meta 包
3414 kde-apps kde-apps-meta admin Pull in kde-apps/kdeadmin-meta packages 拉入 kde-apps/kdeadmin-meta 包
3415 kde-apps kde-apps-meta education Pull in kde-apps/kdeedu-meta packages 拉入 kde-apps/kdeedu-meta 包
3416 kde-apps kde-apps-meta games Pull in kde-apps/kdegames-meta packages 拉入 kde-apps/kdegames-meta 包
3417 kde-apps kde-apps-meta graphics Pull in kde-apps/kdegraphics-meta packages 拉入 kde-apps/kdegraphics-meta 包
3418 kde-apps kde-apps-meta multimedia Pull in kde-apps/kdemultimedia-meta packages 拉入 kde-apps/kdemultimedia-meta 包
3419 kde-apps kde-apps-meta network Pull in kde-apps/kdenetwork-meta packages 拉入 kde-apps/kdenetwork-meta 包
3420 kde-apps kde-apps-meta pim Pull in KDE PIM suite 引入 KDE PIM 套件
3421 kde-apps kde-apps-meta sdk Pull in developer-specific meta-packages 拉入特定于开发人员的元包
3422 kde-apps kde-apps-meta utils Pull in kde-apps/kdeutils-meta packages 拉入 kde-apps/kdeutils-meta 包
3423 kde-apps kdeadmin-meta cron Installs KDE application for virtual/cron configuration 为虚拟/cron 配置安装 KDE 应用程序
3424 kde-apps kdecore-meta share Install kde-frameworks/purpose for share file context menu actions in kde-apps/dolphin 为 kde-apps/dolphin 中的共享文件上下文菜单操作安装 kde-frameworks/目的
3425 kde-apps kdecore-meta thumbnail Install kde-apps/ffmpegthumbs and kde-apps/thumbnailers for thumbnail generation in kde-apps/dolphin 安装 kde-apps/ffmpegthumbs 和 kde-apps/thumbnailers 以在 kde-apps/dolphin 中生成缩略图
3426 kde-apps kdecore-meta webengine Enable www-client/falkon which depends on dev-qt/qtwebengine 启用依赖于 dev-qt/qtwebengine 的 www-client/falkon
3427 kde-apps kdeedu-meta webengine Enable packages requiring dev-qt/qtwebengine 启用需要 dev-qt/qtwebengine 的软件包
3428 kde-apps kdegraphics-mobipocket thumbnail Enables thumbnail generation 启用缩略图生成
3429 kde-apps kdemultimedia-meta cdrom Include packages for optical discs 包括光盘包装
3430 kde-apps kdenetwork-meta bittorrent Pull in net-p2p/ktorrent for BitTorrent protocol support 拉入 net-p2p/ktorrent 以获得 BitTorrent 协议支持
3431 kde-apps kdenetwork-meta dropbox Enable support for Dropbox in kde-apps/dolphin via kde-apps/dolphin-plugins-dropbox 通过 kde-apps/dolphin-plugins-dropbox 在 kde-apps/dolphin 中启用对 Dropbox 的支持
3432 kde-apps kdenetwork-meta samba Enable support for net-fs/samba file sharing plugin from within file properties 从文件属性中启用对 net-fs/samba 文件共享插件的支持
3433 kde-apps kdenetwork-meta webengine Enable support for Plasma Telepathy (instant messaging) integration via kde-apps/plasma-telepathy-meta 通过 kde-apps/plasma-telepathy-meta 启用对 Plasma Telepathy(即时消息)集成的支持
3434 kde-apps kdenlive share Enable support for a share menu using kde-frameworks/purpose 使用 kde-frameworks/purpose 启用对共享菜单的支持
3435 kde-apps kdepim-addons importwizard Enable additional import plugins for kde-apps/akonadi-import-wizard 为 kde-apps/akonadi-import-wizard 启用额外的导入插件
3436 kde-apps kdepim-addons markdown Enable Markdown support via app-text/discount 通过 app-text/discount 启用 Markdown 支持
3437 kde-apps kdepim-meta bogofilter Install mail-filter/bogofilter for spam filter support in kde-apps/kmail 在 kde-apps/kmail 中安装 mail-filter/bogofilter 以支持垃圾邮件过滤器
3438 kde-apps kdepim-meta clamav Install app-antivirus/clamav for virus detection support in kde-apps/kmail 在 kde-apps/kmail 中安装 app-antivirus/clamav 以支持病毒检测
3439 kde-apps kdepim-meta spamassassin Install mail-filter/spamassassin for spam filter support in kde-apps/kmail 在 kde-apps/kmail 中安装 mail-filter/spamassassin 以支持垃圾邮件过滤器
3440 kde-apps kdepim-runtime speech Enable text-to-speech support 启用文本转语音支持
3441 kde-apps kdesdk-meta git Enable support for Git VCS in kde-apps/dolphin via kde-apps/dolphin-plugins-git 通过 kde-apps/dolphin-plugins-git 在 kde-apps/dolphin 中启用对 Git VCS 的支持
3442 kde-apps kdesdk-meta mercurial Enable support for Mercurial VCS in kde-apps/dolphin via kde-apps/dolphin-plugins-mercurial 通过 kde-apps/dolphin-plugins-mercurial 在 kde-apps/dolphin 中启用对 Mercurial VCS 的支持
3443 kde-apps kdesdk-meta subversion Enable support for Apache Subversion VCS in kde-apps/dolphin via kde-apps/dolphin-plugins-subversion 通过 kde-apps/dolphin-plugins-subversion 在 kde-apps/dolphin 中启用对 Apache Subversion VCS 的支持
3444 kde-apps kdesdk-meta webengine Enable dev-util/kdevelop, requiring dev-qt/qtwebengine 启用 dev-util/kdevelop,需要 dev-qt/qtwebengine
3445 kde-apps kdeutils-meta 7zip Install app-arch/p7zip for 7zip archive support in kde-apps/ark 在 kde-apps/ark 中安装 app-arch/p7zip 以获得 7zip 存档支持
3446 kde-apps kdeutils-meta floppy Install kde-apps/kfloppy to format and create DOS or ext2fs filesystems in a floppy. 安装 kde-apps/kfloppy 以在软盘中格式化和创建 DOS 或 ext2fs 文件系统。
3447 kde-apps kdeutils-meta gpg Install kde-apps/kgpg which depends on kde-apps/akonadi 安装依赖于 kde-apps/akonadi 的 kde-apps/kgpg
3448 kde-apps kdeutils-meta lrz Install app-arch/lrzip for LRZ archive support in kde-apps/ark 在 kde-apps/ark 中安装 app-arch/lrzip 以获得 LRZ 归档支持
3449 kde-apps kdeutils-meta rar Install one of app-arch/rar, app-arch/unrar or app-arch/unar for RAR archive support in kde-apps/ark 在 kde-apps/ark 中安装 app-arch/rar、app-arch/unrar 或 app-arch/unar 之一以支持 RAR 归档
3450 kde-apps kdeutils-meta webengine Enable kde-apps/kimagemapeditor, requiring dev-qt/qtwebengine 启用 kde-apps/kimagemapeditor,需要 dev-qt/qtwebengine
3451 kde-apps kget bittorrent Enable bittorrent transfer plugin through net-libs/libktorrent 通过 net-libs/libktorrent 启用 bittorrent 传输插件
3452 kde-apps kget gpg Enable signature verification by GpgME++ via app-crypt/gpgme 通过 app-crypt/gpgme 启用 GpgME++ 的签名验证
3453 kde-apps kget mms Enable MMS (Microsoft Media Server) plugin through media-libs/libmms 通过 media-libs/libmms 启用 MMS (Microsoft Media Server) 插件
3454 kde-apps kig geogebra Support files created by sci-mathematics/geogebra-bin 支持由 sci-mathematics/geogebra-bin 创建的文件
3455 kde-apps kig scripting Support Python scripting 支持Python脚本
3456 kde-apps kio-extras X Enable support for XCursor thumbnails via x11-libs/libX11 通过 x11-libs/libX11 启用对 XCursor 缩略图的支持
3457 kde-apps kio-extras activities Enable activities kioslave and fileitem plugin 启用活动 kioslave 和 fileitem 插件
3458 kde-apps kio-extras man Enable manpages kioslave 启用手册页 kioslave
3459 kde-apps kio-extras nfs Enable NFS support using net-libs/libtirpc 使用 net-libs/libtirpc 启用 NFS 支持
3460 kde-apps kio-extras phonon Enable file audio preview plugin using media-libs/phonon 使用 media-libs/phonon 启用文件音频预览插件
3461 kde-apps kio-extras sftp Enable SFTP protocol support using net-libs/libssh 使用 net-libs/libssh 启用 SFTP 协议支持
3462 kde-apps kio-extras taglib Enable audio thumbnails via media-libs/taglib 通过 media-libs/taglib 启用音频缩略图
3463 kde-apps kitinerary barcode Enable support for PDF417 and Aztec barcode decoding using media-libs/zxing-cpp 使用 media-libs/zxing-cpp 启用对 PDF417 和 Aztec 条码解码的支持
3464 kde-apps kmag keyboardfocus Enable keyboard focus tracking 启用键盘焦点跟踪
3465 kde-apps kmail speech Enable text-to-speech support 启用文本转语音支持
3466 kde-apps knights speech Enable text-to-speech support 启用文本转语音支持
3467 kde-apps konqueror activities Enable kactivities support 启用 kactivities 支持
3468 kde-apps konqueror speech Build text-to-speech plugin 构建文本转语音插件
3469 kde-apps kopete addbookmarks Automatically add incoming urls to bookmarks. 自动将传入 url 添加到书签。
3470 kde-apps kopete autoreplace Automatically replace selected text 自动替换选定的文本
3471 kde-apps kopete contactnotes Enables writing personal notes for contacts. 允许为联系人编写个人笔记。
3472 kde-apps kopete gadu Enable the Gadu protocol handler. 启用 Gadu 协议处理程序。
3473 kde-apps kopete groupwise Enable the Groupwise protocol handler. 启用 Groupwise 协议处理程序。
3474 kde-apps kopete highlight Allows you to specify highlights on specific events. 允许您指定特定事件的亮点。
3475 kde-apps kopete history Enables saving chat history. 启用保存聊天记录。
3476 kde-apps kopete latex Embed latex formatted text into messages. 将乳胶格式的文本嵌入到消息中。
3477 kde-apps kopete meanwhile Enable the Sametime protocol handler. 启用 Sametime 协议处理程序。
3478 kde-apps kopete nowlistening Shows song you currently listen to in your status/etc. Bindings for many players. 显示您当前在状态/等中收听的歌曲。许多玩家的绑定。
3479 kde-apps kopete oscar Enable Oscar (AIM/ICQ) IM protocol support 启用 Oscar (AIM/ICQ) IM 协议支持
3480 kde-apps kopete otr Allows crypting your chat (drugs and talking nonsense are considered as good alternatives ;]). 允许加密您的聊天(毒品和胡说八道被认为是不错的选择;])。
3481 kde-apps kopete pipes Send messages to external pipe. 向外部管道发送消息。
3482 kde-apps kopete privacy Filter for incoming messages 过滤传入消息
3483 kde-apps kopete statistics Everybody loves statistic graphs, especially cake ones. ;] 每个人都喜欢统计图表,尤其是蛋糕图表。 ;]
3484 kde-apps kopete testbed Enable the testbed protocol. 启用测试平台协议。
3485 kde-apps kopete texteffect Various fancy text effects for your messages (don't ever consider writing us with this enabled ;]). 为您的消息提供各种精美的文本效果(不要考虑在启用此功能的情况下给我们写信;])。
3486 kde-apps kopete translator Translate incoming and outgoing messages. 翻译传入和传出的消息。
3487 kde-apps kopete urlpicpreview Enables in conversation pictures preview. 启用对话图片预览。
3488 kde-apps kopete webpresence Show your status and some more information on web. 在网络上显示您的状态和更多信息。
3489 kde-apps kopete winpopup Enable pop-up messages sending on windows. (same as good old "net send" messages ;]) 启用在窗口上发送弹出消息。 (与旧的“网络发送”消息相同;])
3490 kde-apps kopete zeroconf Enable Link-Local Messaging via the bonjour protocol. 通过 bonjour 协议启用链路本地消息传递。
3491 kde-apps kpimtextedit designer Build plugins for dev-qt/designer 为 dev-qt/designer 构建插件
3492 kde-apps kpimtextedit speech Enable text-to-speech support 启用文本转语音支持
3493 kde-apps ksystemlog kdesu Run as root using kdesu from kde-plasma/kde-cli-tools 使用 kde-plasma/kde-cli-tools 中的 kdesu 以 root 身份运行
3494 kde-apps ktp-accounts-kcm experimental Enables disabled telepathy services (currently only steam) 启用禁用的心灵感应服务(目前只有 Steam)
3495 kde-apps ktp-common-internals otr Enable support for encrypted conversations using Off-The-Records messaging 启用对使用非记录消息的加密对话的支持
3496 kde-apps ktp-common-internals sso Enable support for Single sign-on through KAccounts 通过 KAccounts 启用对单点登录的支持
3497 kde-apps ktp-text-ui speech Enable incoming messages to be read out using text-to-speech 允许使用文本到语音朗读传入的消息
3498 kde-apps kwave qtmedia Enable playback via Qt5Multimedia 通过 Qt5Multimedia 启用播放
3499 kde-apps kwrite activities Enable Plasma Activities support via kde-frameworks/kactivities 通过 kde-frameworks/kactivities 启用 Plasma 活动支持
3500 kde-apps libkdepim designer Build plugins for dev-qt/designer 为 dev-qt/designer 构建插件
3501 kde-apps libkleo fancyviewer Use kde-apps/kpimtextedit for an improved audit log viewer 使用 kde-apps/kpimtextedit 改进审计日志查看器
3502 kde-apps libksane kwallet Enable encrypted storage of passwords with kde-frameworks/kwallet 使用 kde-frameworks/kwallet 启用密码的加密存储
3503 kde-apps libksieve speech Enable text-to-speech support 启用文本转语音支持
3504 kde-apps mailcommon designer Build plugins for dev-qt/designer 为 dev-qt/designer 构建插件
3505 kde-apps marble aprs Enable support for APRS data sources 启用对 APRS 数据源的支持
3506 kde-apps marble designer Install plugin for dev-qt/designer 为 dev-qt/designer 安装插件
3507 kde-apps marble geolocation Enable position information via dev-qt/qtpositioning 通过 dev-qt/qtpositioning 启用位置信息
3508 kde-apps marble pbf Enable OpenStreetMap PBF file support via dev-libs/protobuf 通过 dev-libs/protobuf 启用 OpenStreetMap PBF 文件支持
3509 kde-apps marble phonon Enable sound support via media-libs/phonon 通过 media-libs/phonon 启用声音支持
3510 kde-apps marble shapefile Enable support for ESRI shapefiles 启用对 ESRI shapefile 的支持
3511 kde-apps marble webengine Use dev-qt/qtwebengine for embedded web browser 将 dev-qt/qtwebengine 用于嵌入式 Web 浏览器
3512 kde-apps messagelib speech Enable text-to-speech support 启用文本转语音支持
3513 kde-apps okular crypt Enable support for password-encrypted documents via kde-frameworks/kwallet 通过 kde-frameworks/kwallet 启用对密码加密文档的支持
3514 kde-apps okular epub Enable E-Book support via app-text/ebook-tools 通过 app-text/ebook-tools 启用电子书支持
3515 kde-apps okular image-backend Enable image viewing support 启用图像查看支持
3516 kde-apps okular markdown Enable Markdown support via app-text/discount 通过 app-text/discount 启用 Markdown 支持
3517 kde-apps okular mobi Enable mobipocket support 启用 mobipocket 支持
3518 kde-apps okular plucker Enable Plucker E-Book for Palm OS devices support 为 Palm OS 设备支持启用 Plucker 电子书
3519 kde-apps okular qml Install Okular Qml components 安装 Okular Qml 组件
3520 kde-apps okular share Enable support for a share menu using kde-frameworks/purpose 使用 kde-frameworks/purpose 启用对共享菜单的支持
3521 kde-apps okular speech Enable text-to-speech support 启用文本转语音支持
3522 kde-apps pimcommon designer Build plugins for dev-qt/designer 为 dev-qt/designer 构建插件
3523 kde-apps spectacle annotate Enable support for screenshot annotations using media-libs/kimageannotator 使用 media-libs/kimageannotator 启用对屏幕截图注释的支持
3524 kde-apps spectacle share Enable support for a share menu using kde-frameworks/purpose 使用 kde-frameworks/purpose 启用对共享菜单的支持
3525 kde-apps step qalculate Enable the libqalculate library for unit conversion 启用 libqalculate 库进行单位转换
3526 kde-apps thumbnailers mobi Enable mobipocket thumbnail generation using kde-apps/kdegraphics-mobipocket 使用 kde-apps/kdegraphics-mobipocket 启用 mobipocket 缩略图生成
3527 kde-apps umbrello php Enable PHP import support using dev-util/kdevelop and dev-util/kdevelop-pg-qt 使用 dev-util/kdevelop 和 dev-util/kdevelop-pg-qt 启用 PHP 导入支持
3528 kde-apps yakuake absolute-position Use kde-frameworks/kwayland for absolute window positioning in KWin 在 KWin 中使用 kde-frameworks/kwayland 进行绝对窗口定位
3529 kde-frameworks kcompletion designer Build plugins for dev-qt/designer 为 dev-qt/designer 构建插件
3530 kde-frameworks kconfig qml Enable QML/QtQuick support via dev-qt/qtdeclarative 通过 dev-qt/qtdeclarative 启用 QML/QtQuick 支持
3531 kde-frameworks kconfigwidgets designer Build plugins for dev-qt/designer 为 dev-qt/designer 构建插件
3532 kde-frameworks kfilemetadata epub Enable support for reading EPUB ebook metadata 启用对阅读 EPUB 电子书元数据的支持
3533 kde-frameworks kfilemetadata mobi Enable mobipocket support via kde-apps/kdegraphics-mobipocket 通过 kde-apps/kdegraphics-mobipocket 启用 mobipocket 支持
3534 kde-frameworks kfilemetadata office Enable support for reading ODF and OOXML metadata 启用对读取 ODF 和 OOXML 元数据的支持
3535 kde-frameworks kiconthemes designer Build plugins for dev-qt/designer 为 dev-qt/designer 构建插件
3536 kde-frameworks kimageformats avif Support the AVIF image file format 支持AVIF图像文件格式
3537 kde-frameworks kimageformats eps Support the EPS graphics file format 支持EPS图形文件格式
3538 kde-frameworks kimageformats heif Support for HEIF/HEIC images 支持 HEIF/HEIC 图像
3539 kde-frameworks kimageformats jpegxl Support for JPEG XL image format 支持 JPEG XL 图像格式
3540 kde-frameworks kinit caps Capabilities support for improved security and better OOM handling 功能支持提高安全性和更好的 OOM 处理
3541 kde-frameworks kio designer Build plugins for dev-qt/designer 为 dev-qt/designer 构建插件
3542 kde-frameworks kio kwallet Enable permanent storage of passwords for kpasswdserver with kde-frameworks/kwallet 使用 kde-frameworks/kwallet 为 kpasswdserver 启用密码的永久存储
3543 kde-frameworks kitemmodels qml Enable QML support via dev-qt/qtdeclarative 通过 dev-qt/qtdeclarative 启用 QML 支持
3544 kde-frameworks kitemviews designer Build plugins for dev-qt/designer 为 dev-qt/designer 构建插件
3545 kde-frameworks knewstuff opds Enable support for the Open Publication Distribution System via kde-frameworks/syndication 通过 kde-frameworks/syndication 启用对开放出版物分发系统的支持
3546 kde-frameworks knotifications phonon Play notification sounds via media-libs/phonon instead of media-libs/libcanberra 通过 media-libs/phonon 而不是 media-libs/libcanberra 播放通知声音
3547 kde-frameworks knotifications qml Enable QML support via dev-qt/qtdeclarative 通过 dev-qt/qtdeclarative 启用 QML 支持
3548 kde-frameworks knotifications speech Enable text-to-speech notification support 启用文本转语音通知支持
3549 kde-frameworks knotifyconfig phonon Play notification sounds via media-libs/phonon instead of media-libs/libcanberra 通过 media-libs/phonon 而不是 media-libs/libcanberra 播放通知声音
3550 kde-frameworks kplotting designer Build plugins for dev-qt/designer 为 dev-qt/designer 构建插件
3551 kde-frameworks krunner activities Enable search runner for KDE Activities history 为 KDE 活动历史启用搜索运行器
3552 kde-frameworks ktexteditor editorconfig Enable support for EditorConfig configuration files 启用对 EditorConfig 配置文件的支持
3553 kde-frameworks ktextwidgets designer Build plugins for dev-qt/designer 为 dev-qt/designer 构建插件
3554 kde-frameworks ktextwidgets speech Enable text-to-speech support 启用文本转语音支持
3555 kde-frameworks kwallet gpg Support wallets with GnuPG encryption in addition to the default blowfish-encrypted file 除了默认的河豚加密文件外,还支持具有 GnuPG 加密的钱包
3556 kde-frameworks kwidgetsaddons designer Build plugins for dev-qt/designer 为 dev-qt/designer 构建插件
3557 kde-frameworks kxmlgui designer Build plugins for dev-qt/designer 为 dev-qt/designer 构建插件
3558 kde-frameworks networkmanager-qt teamd Enable Teamd control support 启用 Teamd 控制支持
3559 kde-frameworks prison qml Enable QML/QtQuick support via dev-qt/qtdeclarative 通过 dev-qt/qtdeclarative 启用 QML/QtQuick 支持
3560 kde-frameworks purpose kaccounts Enable support for system-wide defined KAccounts 启用对系统范围定义的 KAccounts 的支持
3561 kde-frameworks sonnet aspell Enable the app-text/aspell spell-checking backend 启用 app-text/aspell 拼写检查后端
3562 kde-frameworks sonnet designer Build plugins for dev-qt/designer 为 dev-qt/designer 构建插件
3563 kde-frameworks sonnet hunspell Enable the app-text/hunspell spell-checking backend 启用 app-text/hunspell 拼写检查后端
3564 kde-frameworks sonnet qml Enable QML/QtQuick support via dev-qt/qtdeclarative 通过 dev-qt/qtdeclarative 启用 QML/QtQuick 支持
3565 kde-misc kdeconnect X Enable remote input mousepad plugin using x11-libs/libfakekey 使用 x11-libs/libfakekey 启用远程输入鼠标垫插件
3566 kde-misc kdeconnect pulseaudio Enable system volume control plugin using media-sound/pulseaudio 使用 media-sound/pulseaudio 启用系统音量控制插件
3567 kde-misc kio-gdrive kaccounts Use kde-apps/kaccounts-integration backend (default) instead of dev-libs/qtkeychain 使用 kde-apps/kaccounts-integration 后端(默认)而不是 dev-libs/qtkeychain
3568 kde-misc kio-gdrive share Enable support for a share menu using kde-frameworks/purpose 使用 kde-frameworks/purpose 启用对共享菜单的支持
3569 kde-misc tellico bibtex Add support for bibtex importing using btparse from dev-perl/Text-BibTeX 添加对使用来自 dev-perl/Text-BibTeX 的 btparse 导入 bibtex 的支持
3570 kde-misc tellico discid Add support for reading disc IDs from audio CDs 添加对从音频 CD 读取光盘 ID 的支持
3571 kde-misc tellico yaz Add support for searching Z39.50 databases 添加对搜索 Z39.50 数据库的支持
3572 kde-plasma discover firmware Enable support for firmware upgrades using sys-apps/fwupd 使用 sys-apps/fwupd 启用对固件升级的支持
3573 kde-plasma discover flatpak Enable support for flatpak repositories using sys-apps/flatpak 使用 sys-apps/flatpak 启用对 flatpak 存储库的支持
3574 kde-plasma kde-cli-tools kdesu Build graphical frontend for kde-frameworks/kdesu 为 kde-frameworks/kdesu 构建图形前端
3575 kde-plasma kdeplasma-addons share Enable applet for quickly sharing data to a variety of sources 启用小程序以快速将数据共享到各种来源
3576 kde-plasma kdeplasma-addons webengine Enable dictionary and web browser applets using dev-qt/qtwebengine 使用 dev-qt/qtwebengine 启用字典和 Web 浏览器小程序
3577 kde-plasma ksystemstats networkmanager Enable improved backend for Network statistics using kde-frameworks/networkmanager-qt 使用 kde-frameworks/networkmanager-qt 启用改进的网络统计后端
3578 kde-plasma kwin lock Enable screen locking via kde-plasma/kscreenlocker 通过 kde-plasma/kscreenlocker 启用屏幕锁定
3579 kde-plasma kwin multimedia Enable effect video button in desktop effects KCM 在桌面效果 KCM 中启用效果视频按钮
3580 kde-plasma kwin screencast Enable screencast portal using media-video/pipewire 使用 media-video/pipewire 启用截屏门户
3581 kde-plasma libksysguard designer Build plugins for dev-qt/designer 为 dev-qt/designer 构建插件
3582 kde-plasma libksysguard webengine Enable display of detailed memory information using dev-qt/qtwebengine. 使用 dev-qt/qtwebengine 启用详细内存信息的显示。
3583 kde-plasma plasma-desktop emoji Build emojipicker applet using app-i18n/ibus and media-fonts/noto-emoji 使用 app-i18n/ibus 和 media-fonts/noto-emoji 构建 emojipicker 小程序
3584 kde-plasma plasma-desktop ibus Use ibus input method via app-i18n/ibus 通过 app-i18n/ibus 使用 ibus 输入法
3585 kde-plasma plasma-desktop kaccounts Build the OpenDesktop integration plugin 构建 OpenDesktop 集成插件
3586 kde-plasma plasma-desktop scim Enable applets that use app-i18n/scim 启用使用 app-i18n/scim 的小程序
3587 kde-plasma plasma-firewall firewalld Build net-firewall/firewalld backend 构建 net-firewall/firewalld 后端
3588 kde-plasma plasma-firewall ufw Build net-firewall/ufw backend 构建网络防火墙/ufw 后端
3589 kde-plasma plasma-meta browser-integration Enable integration with Chrome/Firefox with browser extensions 通过浏览器扩展启用与 Chrome/Firefox 的集成
3590 kde-plasma plasma-meta colord Enable kde-plasma/kwin color management via x11-misc/colord 通过 x11-misc/colord 启用 kde-plasma/kwin 颜色管理
3591 kde-plasma plasma-meta crash-handler Pull in kde-plasma/drkonqi for assisted upstream crash reports 拉入 kde-plasma/drkonqi 以获取辅助的上游崩溃报告
3592 kde-plasma plasma-meta crypt Pull in kde-plasma/plasma-vault for encrypted vaults integration 拉入 kde-plasma/plasma-vault 用于加密保险库集成
3593 kde-plasma plasma-meta desktop-portal Enable sys-apps/xdg-desktop-portal backend implementation for Plasma 为 Plasma 启用 sys-apps/xdg-desktop-portal 后端实现
3594 kde-plasma plasma-meta discover Pull in resources management GUI; a centralised GHNS alternative and optional sys-apps/fwupd frontend 拉入资源管理 GUI;集中式 GHNS 替代方案和可选的 sys-apps/fwupd 前端
3595 kde-plasma plasma-meta display-manager Pull in a graphical display manager 拉入图形显示管理器
3596 kde-plasma plasma-meta firewall Pull in kde-plasma/plasma-firewall for system firewall administration 引入 kde-plasma/plasma-firewall 进行系统防火墙管理
3597 kde-plasma plasma-meta grub Pull in Breeze theme for sys-boot/grub 为 sys-boot/grub 引入 Breeze 主题
3598 kde-plasma plasma-meta gtk Enable Breeze widget style and system settings module for GTK+ 为 GTK+ 启用 Breeze 小部件样式和系统设置模块
3599 kde-plasma plasma-meta kwallet Enable support for KWallet auto-unlocking via kde-plasma/kwallet-pam 通过 kde-plasma/kwallet-pam 启用对 KWallet 自动解锁的支持
3600 kde-plasma plasma-meta legacy-systray Add support for legacy applications using kde-plasma/xembed-sni-proxy 使用 kde-plasma/xembed-sni-proxy 添加对遗留应用程序的支持
3601 kde-plasma plasma-meta plymouth Pull in Breeze theme for sys-boot/plymouth 为 sys-boot/plymouth 引入 Breeze 主题
3602 kde-plasma plasma-meta pulseaudio Install Plasma applet for PulseAudio volume management 为 PulseAudio 音量管理安装 Plasma 小程序
3603 kde-plasma plasma-meta sddm Pull in the x11-misc/sddm display manager and system settings module 拉入 x11-misc/sddm 显示管理器和系统设置模块
3604 kde-plasma plasma-meta sdk Pull in kde-plasma/plasma-sdk for Plasma development 拉入 kde-plasma/plasma-sdk 用于 Plasma 开发
3605 kde-plasma plasma-meta smart Pull in kde-plasma/plasma-disks for disk health monitoring 拉入 kde-plasma/plasma-disks 进行磁盘健康监测
3606 kde-plasma plasma-meta thunderbolt Pull in kde-plasma/plasma-thunderbolt control center module 拉入 kde-plasma/plasma-thunderbolt 控制中心模块
3607 kde-plasma plasma-meta wallpapers Install wallpapers for the Plasma Workspace 为等离子工作区安装壁纸
3608 kde-plasma plasma-nm modemmanager Enable support for mobile broadband devices 启用对移动宽带设备的支持
3609 kde-plasma plasma-nm openconnect Build support for the OpenConnect VPN client 构建对 OpenConnect VPN 客户端的支持
3610 kde-plasma plasma-nm teamd Enable Teamd control support 启用 Teamd 控制支持
3611 kde-plasma plasma-workspace appstream Enable AppStream software metadata support 启用 AppStream 软件元数据支持
3612 kde-plasma plasma-workspace geolocation Enables dataengine providing location information 启用数据引擎提供位置信息
3613 kde-plasma plasma-workspace policykit Build the Users KCM using sys-apps/accountsservice and sys-auth/polkit 使用 sys-apps/accountsservice 和 sys-auth/polkit 构建用户 KCM
3614 kde-plasma plasma-workspace screencast Enable screencast portal using media-video/pipewire 使用 media-video/pipewire 启用截屏门户
3615 kde-plasma plasma-workspace telemetry Enable User Feedback control module for kde-plasma/systemsettings 为 kde-plasma/systemsettings 启用用户反馈控制模块
3616 kde-plasma powerdevil brightness-control Enable screen brightness control using app-misc/ddcutil 使用 app-misc/ddcutil 启用屏幕亮度控制
3617 kde-plasma powerdevil wireless Enable wireless energy saving actions via kde-frameworks/bluez-qt and kde-frameworks/networkmanager-qt 通过 kde-frameworks/bluez-qt 和 kde-frameworks/networkmanager-qt 启用无线节能操作
3618 lxqt-base liblxqt backlight Enable backlight control features. 启用背光控制功能。
3619 lxqt-base lxqt-config monitor Build monitor settings tool 构建监视器设置工具
3620 lxqt-base lxqt-config touchpad Build touchpad settings tool 构建触摸板设置工具
3621 lxqt-base lxqt-meta about Install lxqt-base/lxqt-about 安装 lxqt-base/lxqt-about
3622 lxqt-base lxqt-meta admin Install lxqt-base/lxqt-admin 安装 lxqt-base/lxqt-admin
3623 lxqt-base lxqt-meta archiver Install app-arch/lxqt-archiver 安装 app-arch/lxqt-archiver
3624 lxqt-base lxqt-meta desktop-portal Enable the LXQt sys-apps/xdg-desktop-portal backend implementation 启用 LXQt sys-apps/xdg-desktop-portal 后端实现
3625 lxqt-base lxqt-meta display-manager Install a graphical display manager 安装图形显示管理器
3626 lxqt-base lxqt-meta filemanager Install x11-misc/pcmanfm-qtfile manager 安装 x11-misc/pcmanfm-qtfile manager
3627 lxqt-base lxqt-meta lximage Install media-gfx/lximage-qtimage viewer 安装 media-gfx/lximage-qtimage 查看器
3628 lxqt-base lxqt-meta minimal Do not install x11-wm/openboxwindow manager 不要安装 x11-wm/openboxwindow manager
3629 lxqt-base lxqt-meta nls Install dev-qt/qttranslations to better support different locales 安装 dev-qt/qttranslations 以更好地支持不同的语言环境
3630 lxqt-base lxqt-meta powermanagement Install lxqt-base/lxqt-powermanagement package 安装 lxqt-base/lxqt-powermanagement 包
3631 lxqt-base lxqt-meta processviewer Install x11-misc/qps package 安装 x11-misc/qps 包
3632 lxqt-base lxqt-meta screenshot Install x11-misc/screengrab package 安装 x11-misc/screengrab 包
3633 lxqt-base lxqt-meta sddm Install x11-misc/sddm display manager 安装 x11-misc/sddm 显示管理器
3634 lxqt-base lxqt-meta ssh-askpass Install lxqt-base/lxqt-openssh-askpass user password prompt tool 安装lxqt-base/lxqt-openssh-askpass 用户密码提示工具
3635 lxqt-base lxqt-meta sudo Install lxqt-base/lxqt-sudo 安装 lxqt-base/lxqt-sudo
3636 lxqt-base lxqt-meta terminal Install x11-terms/qterminal package 安装 x11-terms/qterminal 包
3637 lxqt-base lxqt-meta trash Install gnome-base/gvfs to enable 'trash' functionality in x11-misc/pcmanfm-qt 安装 gnome-base/gvfs 以在 x11-misc/pcmanfm-qt 中启用“垃圾”功能
3638 lxqt-base lxqt-panel colorpicker Build colorpicker plugin 构建颜色选择器插件
3639 lxqt-base lxqt-panel cpuload Build cpuload plugin 构建 cpuload 插件
3640 lxqt-base lxqt-panel desktopswitch Build desktopswitch plugin 构建桌面切换插件
3641 lxqt-base lxqt-panel directorymenu Build directorymenu plugin 构建目录菜单插件
3642 lxqt-base lxqt-panel dom Build dom plugin 构建 dom 插件
3643 lxqt-base lxqt-panel kbindicator Build kbindicator plugin 构建 kbindicator 插件
3644 lxqt-base lxqt-panel mainmenu Build mainmenu plugin 构建主菜单插件
3645 lxqt-base lxqt-panel mount Build mount plugin 构建挂载插件
3646 lxqt-base lxqt-panel networkmonitor Build networkmonitor plugin 构建网络监控插件
3647 lxqt-base lxqt-panel quicklaunch Build quicklaunch plugin 构建快速启动插件
3648 lxqt-base lxqt-panel showdesktop Build showdesktop plugin 构建 showdesktop 插件
3649 lxqt-base lxqt-panel spacer Build spacer plugin 构建间隔插件
3650 lxqt-base lxqt-panel statusnotifier Build statusnotifier plugin 构建 statusnotifier 插件
3651 lxqt-base lxqt-panel sysstat Build sysstat plugin 构建 sysstat 插件
3652 lxqt-base lxqt-panel taskbar Build taskbar plugin 构建任务栏插件
3653 lxqt-base lxqt-panel tray Build tray plugin 构建托盘插件
3654 lxqt-base lxqt-panel volume Build volume plugin 构建卷插件
3655 lxqt-base lxqt-panel worldclock Build worldclock plugin 构建世界时钟插件
3656 mail-client aerc notmuch Enable support for net-mail/notmuch 启用对网络邮件/不多的支持
3657 mail-client alot doc Install user manual and API documentation 安装用户手册和 API 文档
3658 mail-client alpine chappa enhance Alpine by applying Eduardo Chappa's patches 通过应用 Eduardo Chappa 的补丁来增强 Alpine
3659 mail-client alpine onlyalpine installs only the alpine binary, so it does not collied with pico and/or pine 仅安装 alpine 二进制文件,因此它不会与 pico 和/或 pine 冲突
3660 mail-client alpine passfile Adds support for caching passwords into a file between sessions 添加对在会话之间将密码缓存到文件中的支持
3661 mail-client alpine smime Enable support for S/MIME 启用对 S/MIME 的支持
3662 mail-client balsa rubrica Adds support for rubrica addressbook 添加对 rubrica 通讯录的支持
3663 mail-client claws-mail archive Enable archiving plugin 启用存档插件
3664 mail-client claws-mail bogofilter Build mail-filter/bogofilter plugin 构建邮件过滤器/bogofilter 插件
3665 mail-client claws-mail dillo Enable dillo html viewer plugin 启用 dillo html 查看器插件
3666 mail-client claws-mail gdata Enable plugin for access to Google data providers 启用插件以访问 Google 数据提供者
3667 mail-client claws-mail gtk2 Build support for GTK+-2 instead of GTK+-3 (live ebuild only) 构建对 GTK+-2 而不是 GTK+-3 的支持(仅限实时 ebuild)
3668 mail-client claws-mail libcanberra Enable sound notification in connection with USE=notification 启用与 USE=notification 相关的声音通知
3669 mail-client claws-mail libnotify Enable notification on the desktop in connection with USE=notification 在桌面上启用与 USE=notification 相关的通知
3670 mail-client claws-mail litehtml Enable dev-libs/gumbo html viewer plugin 启用 dev-libs/gumbo html 查看器插件
3671 mail-client claws-mail notification Notification for new mail in different way, see also USE flags libcanberra, libindicate and libnotify 以不同方式通知新邮件,另请参阅使用标志 libcanberra、libindicate 和 libnotify
3672 mail-client claws-mail pgp Enable PGP support 启用 PGP 支持
3673 mail-client claws-mail sieve Build plugin for sieve filter support 为筛滤器支持构建插件
3674 mail-client claws-mail smime Build plugin for S/MIME support 为 S/MIME 支持构建插件
3675 mail-client claws-mail spam-report Enable plugin for spam reporting to various services 启用插件以向各种服务报告垃圾邮件
3676 mail-client claws-mail spamassassin Build mail-filter/spamassassin plugin 构建邮件过滤器/spamassassin 插件
3677 mail-client claws-mail valgrind Add support for memory debugging using valgrind 使用 valgrind 添加对内存调试的支持
3678 mail-client evolution archive Enable archives support in attachments via app-arch/gnome-autoar 通过 app-arch/gnome-autoar 在附件中启用存档支持
3679 mail-client evolution bogofilter Build mail-filter/bogofilter plugin 构建邮件过滤器/bogofilter 插件
3680 mail-client evolution geolocation Enable support for displaying contacts on a map inside evolution using media-libs/libchamplain 使用 media-libs/libchamplain 支持在进化内部的地图上显示联系人
3681 mail-client evolution highlight Enable text highlighting plugin 启用文本突出显示插件
3682 mail-client evolution ldap Enable support for fetching contacts from an LDAP or Active Directory server using net-nds/openldap 启用对使用 net-nds/openldap 从 LDAP 或 Active Directory 服务器获取联系人的支持
3683 mail-client evolution spamassassin Build mail-filter/spamassassin plugin 构建邮件过滤器/spamassassin 插件
3684 mail-client evolution weather Enable optional weather calendar support 启用可选的天气日历支持
3685 mail-client evolution ytnef Enable optional TNEF attachments parser support using net-mail/ytnef 使用 net-mail/ytnef 启用可选的 TNEF 附件解析器支持
3686 mail-client geary ytnef Enable optional TNEF attachments parser support using net-mail/ytnef 使用 net-mail/ytnef 启用可选的 TNEF 附件解析器支持
3687 mail-client mutt autocrypt Enable autocrypt.org support 启用 autocrypt.org 支持
3688 mail-client mutt berkdb Enable sys-libs/db database backend for header caching 为标头缓存启用 sys-libs/db 数据库后端
3689 mail-client mutt gdbm Enable sys-libs/gdbm database backend for header caching 为标头缓存启用 sys-libs/gdbm 数据库后端
3690 mail-client mutt gpgme Build gpgme backend to support S/MIME, PGP/MIME and traditional/inline PGP 构建 gpgme 后端以支持 S/MIME、PGP/MIME 和传统/内联 PGP
3691 mail-client mutt gsasl Use GNU SASL via virtual/gsasl instead of Cyrus SASL (requires USE=sasl) 通过 virtual/gsasl 而不是 Cyrus SASL 使用 GNU SASL(需要 USE=sasl)
3692 mail-client mutt hcache Enable header cache, one database backend needs to be enabled 开启头部缓存,需要开启一个数据库后端
3693 mail-client mutt lmdb Enable dev-db/lmdb database backend for header caching 为标头缓存启用 dev-db/lmdb 数据库后端
3694 mail-client mutt pgp-classic Build classic_pgp backend to support PGP/MIME and traditional/inline PGP 构建 classic_pgp 后端以支持 PGP/MIME 和传统/内联 PGP
3695 mail-client mutt pop Enable support for POP3 mailboxes 启用对 POP3 邮箱的支持
3696 mail-client mutt smime-classic Build classic_smime backend to support S/MIME 构建 classic_smime 后端以支持 S/MIME
3697 mail-client mutt smtp Enable support for direct SMTP delivery 启用对直接 SMTP 传递的支持
3698 mail-client mutt tokyocabinet Enable dev-db/tokyocabinet database backend for header caching 为标头缓存启用 dev-db/tokyocabinet 数据库后端
3699 mail-client neomutt autocrypt Enable autocrypt.org support 启用 autocrypt.org 支持
3700 mail-client neomutt berkdb Enable BDB (Berkley DB) backend for header caching 为标头缓存启用 BDB (Berkley DB) 后端
3701 mail-client neomutt gdbm Enable GDBM (GNU dbm) backend for header caching 为标头缓存启用 GDBM (GNU dbm) 后端
3702 mail-client neomutt gpgme Build gpgme backend to support S/MIME, PGP/MIME and traditional/inline PGP 构建 gpgme 后端以支持 S/MIME、PGP/MIME 和传统/内联 PGP
3703 mail-client neomutt kyotocabinet Enable Kyoto Cabinet database backend for header caching 启用 Kyoto Cabinet 数据库后端以进行标头缓存
3704 mail-client neomutt lmdb Enable LMDB (Lightning Memory-Mapped Database) backend for header caching 为标头缓存启用 LMDB(闪电内存映射数据库)后端
3705 mail-client neomutt lz4 Add lz4 support for header cache compression 添加 lz4 对 header 缓存压缩的支持
3706 mail-client neomutt notmuch Enable support for net-mail/notmuch 启用对网络邮件/不多的支持
3707 mail-client neomutt pgp-classic Build classic-pgp backend to support PGP/MIME and traditional/inline PGP 构建 classic-pgp 后端以支持 PGP/MIME 和传统/内联 PGP
3708 mail-client neomutt qdbm Enable QDBM (Quicker Database Manager) database backend for header caching 启用 QDBM (Quicker Database Manager) 数据库后端以进行标头缓存
3709 mail-client neomutt smime-classic Build classic-smime backend to support S/MIME 构建 classic-smime 后端以支持 S/MIME
3710 mail-client neomutt tokyocabinet Enable Tokyo Cabinet database backend for header caching 启用 Tokyo Cabinet 数据库后端以进行标头缓存
3711 mail-client neomutt zlib Add zlib support for header cache compression 添加对标头缓存压缩的 zlib 支持
3712 mail-client neomutt zstd Add zstd support for header cache compression 添加对标头缓存压缩的 zstd 支持
3713 mail-client roundcube change-password Allow users to change passwords through Roundcube 允许用户通过 Roundcube 更改密码
3714 mail-client roundcube enigma Add dependencies to support server-side GnuPG signing and/or encryption through the enigma plugin 通过 enigma 插件添加依赖项以支持服务器端 GnuPG 签名和/或加密
3715 mail-client roundcube fileinfo Use the dev-lang/php fileinfo extension to guess the mime_type of attachments 使用 dev-lang/php 文件信息扩展名猜测附件的 mime_type
3716 mail-client roundcube ldap Add dependencies to support connecting to an LDAP address book server 添加依赖项以支持连接到 LDAP 通讯簿服务器
3717 mail-client s-nail kerberos If network is enabled, this adds support for GSSAPI login on IMAP through virtual/krb5. 如果启用了网络,这将增加对通过 virtual/krb5 在 IMAP 上的 GSSAPI 登录的支持。
3718 mail-client s-nail net Enable support for network protocols (POP, IMAP and SMTP). If you only need to send mail with the local Transport Agent, disabling this will get you support for only /usr/sbin/sendmail call. 启用对网络协议(POP、IMAP 和 SMTP)的支持。如果您只需要使用本地传输代理发送邮件,禁用此功能将使您仅支持 /usr/sbin/sendmail 调用。
3719 mail-client s-nail ssl If network is enabled, this adds support for S/MIME and SSL/TLS-powered protocols through dev-libs/openssl. 如果启用了网络,这将通过 dev-libs/openssl 添加对 S/MIME 和 SSL/TLS 驱动的协议的支持。
3720 mail-client sylpheed oniguruma Use dev-libs/oniguruma for regular expression 使用 dev-libs/oniguruma 进行正则表达式
3721 mail-client thunderbird clang Use Clang compiler instead of GCC 使用 Clang 编译器而不是 GCC
3722 mail-client thunderbird eme-free Disable EME (DRM plugin) capability at build time 在构建时禁用 EME(DRM 插件)功能
3723 mail-client thunderbird hwaccel Force-enable hardware-accelerated rendering (Mozilla bug 594876) 强制启用硬件加速渲染 (Mozilla bug 594876)
3724 mail-client thunderbird lto Enable Link Time Optimization (LTO). Requires Gold linker when using GCC or LDD linker when using Clang 启用链接时间优化 (LTO)。使用 GCC 时需要 Gold 链接器,使用 Clang 时需要 LDD 链接器
3725 mail-client thunderbird openh264 Use media-libs/openh264 for H.264 support instead of downloading binary blob from Mozilla at runtime 使用 media-libs/openh264 来支持 H.264,而不是在运行时从 Mozilla 下载二进制 blob
3726 mail-client thunderbird pgo Add support for profile-guided optimization using gcc-4.5, for faster binaries. This option will double the compile time. 添加对使用 gcc-4.5 的配置文件引导优化的支持,以获得更快的二进制文件。此选项将使编译时间加倍。
3727 mail-client thunderbird sndio Enable support for the media-sound/sndio backend 启用对 media-sound/sndio 后端的支持
3728 mail-client thunderbird system-av1 Use the system-wide media-libs/dav1d and media-libs/libaom library instead of bundled. 使用系统范围的 media-libs/dav1d 和 media-libs/libaom 库而不是捆绑。
3729 mail-client thunderbird system-harfbuzz Use the system-wide media-libs/harfbuzz and media-gfx/graphite2 instead of bundled. 使用系统范围的 media-libs/harfbuzz 和 media-gfx/graphite2 而不是捆绑的。
3730 mail-client thunderbird system-icu Use the system-wide dev-libs/icu instead of bundled. 使用系统范围的 dev-libs/icu 而不是捆绑。
3731 mail-client thunderbird system-jpeg Use the system-wide media-libs/libjpeg-turbo instead of bundled. 使用系统范围的媒体库/libjpeg-turbo 而不是捆绑。
3732 mail-client thunderbird system-libevent Use the system-wide dev-libs/libevent instead of bundled. 使用系统范围的 dev-libs/libevent 而不是捆绑。
3733 mail-client thunderbird system-libvpx Use the system-wide media-libs/libvpx instead of bundled. 使用系统范围的媒体库/libvpx 而不是捆绑。
3734 mail-client thunderbird system-png Use the system-wide media-libs/libpng instead of bundled (requires APNG patches) 使用系统范围的 media-libs/libpng 而不是捆绑的(需要 APNG 补丁)
3735 mail-client thunderbird system-webp Use the system-wide media-libs/libwebp instead of bundled. 使用系统范围的媒体库/libwebp 而不是捆绑。
3736 mail-filter MailScanner exim Set mail-mta/exim to used MTA 将 mail-mta/exim 设置为使用的 MTA
3737 mail-filter MailScanner postfix Set mail-mta/postfix to used MTA 将 mail-mta/postfix 设置为使用的 MTA
3738 mail-filter MailScanner spamassassin Enable usage of mail-filter/spamassassin for spam protection 启用使用邮件过滤器/spamassassin 进行垃圾邮件防护
3739 mail-filter amavisd-new courier Add courier support 添加快递支持
3740 mail-filter amavisd-new dkim Add DomainKeys Identified Mail support 添加 DomainKeys 识别邮件支持
3741 mail-filter amavisd-new qmail Add qmail support 添加qmail支持
3742 mail-filter amavisd-new razor Add support for mail-filter/razor 添加对邮件过滤器/剃须刀的支持
3743 mail-filter amavisd-new rspamd Add support for mail-filter/rspamd extension (HTTP only) 添加对邮件过滤器/rspamd 扩展的支持(仅限 HTTP)
3744 mail-filter amavisd-new rspamd-https Add support for mail-filter/rspamd extension (both HTTP and HTTPS) 添加对邮件过滤器/rspamd 扩展的支持(HTTP 和 HTTPS)
3745 mail-filter amavisd-new spamassassin Add support for mail-filter/spamassassin 添加对邮件过滤器/spamassassin 的支持
3746 mail-filter bogofilter tokyocabinet Enable Tokyo Cabinet database support 启用东京内阁数据库支持
3747 mail-filter dcc rrdtool Enable net-analyzer/rrdtool interface scripts 启用 net-analyzer/rrdtool 接口脚本
3748 mail-filter libmilter poll Use poll instead of select 使用民意调查而不是选择
3749 mail-filter maildrop authlib Add courier-authlib support 添加 courier-authlib 支持
3750 mail-filter maildrop dovecot Add dovecot authentication support 添加 dovecot 身份验证支持
3751 mail-filter maildrop tools Install maildirmake and deliverquota tools 安装maildirmake和deliverquota工具
3752 mail-filter maildrop trashquota Count deleted messages as part of the maildir quota 将已删除邮件计数为 maildir 配额的一部分
3753 mail-filter mimedefang poll Use poll instead of select 使用民意调查而不是选择
3754 mail-filter opendkim ldap Enable openldap as a dataset facilitator or keys, determining domains to sign for, and any other dataset that opendkim supports. 启用 openldap 作为数据集促进者或密钥,确定要签名的域以及 opendkim 支持的任何其他数据集。
3755 mail-filter opendkim lmdb Add support for using dev-db/lmdb 添加对使用 dev-db/lmdb 的支持
3756 mail-filter opendkim lua Enables control over signature verification, filtering and policy to be controlled by user defined lua scripts. 启用对签名验证、过滤和策略的控制,由用户定义的 lua 脚本控制。
3757 mail-filter opendkim memcached Add support for using dev-libs/libmemcached 添加对使用 dev-libs/libmemcached 的支持
3758 mail-filter opendkim opendbx Use opendbx backend to facilitate dataset driven OpenDKIM configuration options like stats, bodylengthdb, etc. against a wide variety of database types 使用 opendbx 后端来促进数据集驱动的 OpenDKIM 配置选项,如 stats、bodylengthdb 等,针对各种数据库类型
3759 mail-filter opendkim poll Use poll() instead of select() for the provided asynchronous resolver library. 对提供的异步解析器库使用 poll() 而不是 select()。
3760 mail-filter opendkim querycache Add support for query caching (requires 'berkdb' flag) 添加对查询缓存的支持(需要 'berkdb' 标志)
3761 mail-filter opendkim sasl Used to authenticate to a LDAP server in various ways if required. 如果需要,用于以各种方式对 LDAP 服务器进行身份验证。
3762 mail-filter opendkim stats Add support for statistics (requires 'opendbx' flag) 添加对统计信息的支持(需要 'opendbx' 标志)
3763 mail-filter opendkim unbound Use the unbound dnssec library to perform DKIM DNS queries. 使用未绑定的 dnssec 库执行 DKIM DNS 查询。
3764 mail-filter opendmarc reports Install the reports binaries: expire, import, reports, params 安装报告二进制文件:过期、导入、报告、参数
3765 mail-filter opendmarc spf Use the mail-filter/libspf2 for Sender Policy Framework checking 使用 mail-filter/libspf2 进行发件人策略框架检查
3766 mail-filter pyzor gdbm Enables the Gdbm back-end database engine for pyzord 为 pyzord 启用 Gdbm 后端数据库引擎
3767 mail-filter pyzor gevent Use dev-python/gevent to enable asynchronous operation 使用 dev-python/gevent 启用异步操作
3768 mail-filter pyzor mysql Enables the MySQL back-end database engine for pyzord through dev-python/mysqlclient. 通过 dev-python/mysqlclient 为 pyzord 启用 MySQL 后端数据库引擎。
3769 mail-filter pyzor pyzord Enable the pyzord server daemon 启用 pyzord 服务器守护进程
3770 mail-filter pyzor redis Enables the redis back-end database engine for pyzord through dev-python/redis-py 通过 dev-python/redis-py 为 pyzord 启用 redis 后端数据库引擎
3771 mail-filter rspamd jit Enable PCRE JIT support 启用 PCRE JIT 支持
3772 mail-filter rspamd pcre2 Use dev-libs/libpcre2 使用 dev-libs/libpcre2
3773 mail-filter spamassassin cron Install a cron job to update SpamAssassin's rules daily. 安装 cron 作业以每天更新 SpamAssassin 的规则。
3774 mail-filter spamassassin qmail Build qmail functionality and docs 构建 qmail 功能和文档
3775 mail-mta courier fax Enables fax support in the courier mail server 在快递邮件服务器中启用传真支持
3776 mail-mta courier norewrite Prevents courier mail server from mangling virtual user addresses when sending 防止快递邮件服务器在发送时破坏虚拟用户地址
3777 mail-mta courier web Enable the web interface 启用网络界面
3778 mail-mta courier webmail Enable the webmail interface 启用 webmail 界面
3779 mail-mta exim arc Adds support for Authenticated Receive Chain (ARC) 添加对经过身份验证的接收链 (ARC) 的支持
3780 mail-mta exim dane Adds support for DNS-based Authentication of Named Entities 添加对命名实体的基于 DNS 的身份验证的支持
3781 mail-mta exim dcc Adds support for Distributed Checksum Clearinghouse (DCC) 添加对分布式校验和票据交换所 (DCC) 的支持
3782 mail-mta exim dkim Adds support for DomainKeys Identified Mail (DKIM) 添加对域密钥识别邮件 (DKIM) 的支持
3783 mail-mta exim dlfunc Install local_scan.h header to compile separate dlfunc libraries 安装 local_scan.h 头文件以编译单独的 dlfunc 库
3784 mail-mta exim dmarc Adds support for DMARC 添加对 DMARC 的支持
3785 mail-mta exim dnsdb Adds support for a DNS search for a record whose domain name is the supplied query 添加对域名为所提供查询的记录的 DNS 搜索支持
3786 mail-mta exim dovecot-sasl Adds support for Dovecot's authentication 添加对 Dovecot 身份验证的支持
3787 mail-mta exim dsn Adds support for Delivery Status Notifications (DSN) 添加对传递状态通知 (DSN) 的支持
3788 mail-mta exim exiscan-acl Patch providing support for content scanning 为内容扫描提供支持的补丁
3789 mail-mta exim lmtp Adds support for lmtp 添加对 lmtp 的支持
3790 mail-mta exim mbx Adds support for UW's mbx format 添加对 UW 的 mbx 格式的支持
3791 mail-mta exim pkcs11 Require pkcs11 support in net-libs/gnutls with USE=gnutls 使用 USE=gnutls 在 net-libs/gnutls 中需要 pkcs11 支持
3792 mail-mta exim prdr Adds support for Per-Recipient Data Response 添加对每个收件人数据响应的支持
3793 mail-mta exim proxy Add support for being behind a proxy, such as HAProxy 添加对位于代理后面的支持,例如 HAProxy
3794 mail-mta exim redis Adds support for querying dev-db/redis 添加对查询 dev-db/redis 的支持
3795 mail-mta exim spf Adds support for Sender Policy Framework 添加对发件人策略框架的支持
3796 mail-mta exim srs Adds support for Sender Rewriting Scheme 添加对发件人重写方案的支持
3797 mail-mta exim srs-alt Use mail-filter/libsrs_alt to implement SRS support 使用 mail-filter/libsrs_alt 实现 SRS 支持
3798 mail-mta exim srs-native Use Exim's built-in SRS support to implement SRS support 使用 Exim 内置的 SRS 支持来实现 SRS 支持
3799 mail-mta exim tdb Use sys-libs/tdb for internal database storage (such as hints database) 使用 sys-libs/tdb 进行内部数据库存储(如提示数据库)
3800 mail-mta exim tpda Adds support for Transport Post-Delivery Actions 添加对运输后交付操作的支持
3801 mail-mta msmtp daemon Build/install msmtpd MTA daemon 构建/安装 msmtpd MTA 守护程序
3802 mail-mta msmtp mta Enable this to install as system-wide MTA 启用它以安装为系统范围的 MTA
3803 mail-mta netqmail authcram Enable AUTHCRAM support 启用 AUTHCRAM 支持
3804 mail-mta netqmail gencertdaily Generate SSL certificates daily instead of hourly 每天而不是每小时生成 SSL 证书
3805 mail-mta netqmail highvolume Prepare netqmail for high volume servers 为大容量服务器准备 netqmail
3806 mail-mta netqmail pop3 Include POP3 server 包括 POP3 服务器
3807 mail-mta notqmail authcram Enable AUTHCRAM support 启用 AUTHCRAM 支持
3808 mail-mta notqmail gencertdaily Generate SSL certificates daily instead of hourly 每天而不是每小时生成 SSL 证书
3809 mail-mta notqmail highvolume Prepare notqmail for high volume servers 为大容量服务器准备 notqmail
3810 mail-mta notqmail pop3 Include POP3 server 包括 POP3 服务器
3811 mail-mta opensmtpd mta Enable this to install as system-wide MTA 启用它以安装为系统范围的 MTA
3812 mail-mta postfix dovecot-sasl Enable net-mail/dovecot protocol version 1 (server only) SASL implementation 启用 net-mail/dovecot 协议版本 1(仅限服务器)SASL 实现
3813 mail-mta postfix eai Add support for SMTPUTF8 添加对 SMTPUTF8 的支持
3814 mail-mta postfix ldap-bind Add support for binding to LDAP backend using dev-libs/cyrus-sasl 添加对使用 dev-libs/cyrus-sasl 绑定到 LDAP 后端的支持
3815 mail-mta postfix lmdb Add support for using dev-db/lmdb for lookup tables 添加对使用 dev-db/lmdb 查找表的支持
3816 mail-mta postfix memcached Add support for using net-misc/memcached for lookup tables 添加对使用 net-misc/memcached 查找表的支持
3817 mail-mta qpsmtpd postfix create user with permissions for proper postfix interaction 创建具有正确后缀交互权限的用户
3818 mail-mta ssmtp mta Install symlinks for sendmail-compatible MTA. 为 sendmail 兼容的 MTA 安装符号链接。
3819 mate-base caja mate Install x11-themes/mate-icon-theme which is needed when this package is used in the MATE desktop environment. 安装 x11-themes/mate-icon-theme 这个包在 MATE 桌面环境中使用时需要的。
3820 mate-base caja packagekit Enable support for installing via PackageKit based on mimetype 启用基于 mimetype 通过 PackageKit 安装的支持
3821 mate-base mate base Install base MATE Desktop applications that are recommended for the most common usage; for example, this installs the file manager. Disable this and other USE flags if you want a more minimal MATE Desktop. 安装推荐用于最常见用途的基本 MATE 桌面应用程序;例如,这将安装文件管理器。如果您想要更精简的 MATE 桌面,请禁用此标志和其他 USE 标志。
3822 mate-base mate extras Install additional MATE Desktop applications that are recommended for extended usage of the MATE Desktop as upstream sees it; for example, this installs MATE Desktop's office related applications. Disable this if you plan to use your own non-MATE Desktop alternatives or a custom mixture of MATE and non-MATE packages. 安装额外的 MATE 桌面应用程序,这些应用程序被推荐用于上游看到的 MATE 桌面的扩展使用;例如,这会安装 MATE Desktop 的办公相关应用程序。如果您计划使用自己的非 MATE 桌面替代品或 MATE 和非 MATE 软件包的自定义混合,请禁用此选项。
3823 mate-base mate help Install gnome-extra/yelp to handle in application help menus and documentation browsing 安装 gnome-extra/yelp 以处理应用程序帮助菜单和文档浏览
3824 mate-base mate notification Force notification daemon to default to MATE's notification daemon. Enabled by default. Disable if it causes conflicts with other installed desktop environments. 强制通知守护进程默认为 MATE 的通知守护进程。默认启用。如果它与其他已安装的桌面环境发生冲突,请禁用。
3825 mate-base mate themes Install MATE Desktop's themes; if you use other themes, you can disable this to spare some space and time. 安装 MATE Desktop 的主题;如果您使用其他主题,您可以禁用它以节省一些空间和时间。
3826 mate-base mate-applets cpupower Enable support for cpu frequency manipulation using sys-power/cpupower 使用 sys-power/cpupower 启用对 cpu 频率操作的支持
3827 mate-base mate-applets-meta appindicator Pull in mate-extra/mate-indicator-applet for AppIndicator applet 为 AppIndicator 小程序拉入 mate-extra/mate-indicator-applet
3828 mate-base mate-applets-meta sensors Pull in mate-extra/mate-sensors-applet for hw sensors applet 为硬件传感器小程序拉入 mate-extra/mate-sensors-applet
3829 mate-base mate-control-center accountsservice Add support for AccountsService 添加对 AccountsService 的支持
3830 mate-base mate-session-manager gles2 Build with support for GLESv2 acceleration sessions 构建支持 GLESv2 加速会话
3831 mate-base mate-session-manager xtrans Build with Xtrans support; WARNING: Disabling this flag will result in ICE binding on all interfaces 使用 Xtrans 支持构建;警告:禁用此标志将导致所有接口上的 ICE 绑定
3832 mate-base mate-settings-daemon rfkill build support for rfkill 构建对 rfkill 的支持
3833 mate-extra caja-extensions cdr Add an extension to burn files to cds using app-cdr/brasero. 添加扩展以使用 app-cdr/brasero 将文件刻录到 cd。
3834 mate-extra caja-extensions gajim Add an extension to support net-im/gajim. 添加扩展以支持 net-im/gajim。
3835 mate-extra caja-extensions image-converter Add image conversion support. 添加图像转换支持。
3836 mate-extra caja-extensions mail Add an extension to support e-mail functionality. 添加扩展以支持电子邮件功能。
3837 mate-extra caja-extensions open-terminal Add an extension to support an open terminal. 添加扩展以支持打开的终端。
3838 mate-extra caja-extensions pidgin Add an extension to support net-im/pidgin 添加扩展以支持 net-im/pidgin
3839 mate-extra caja-extensions share Add an extension to support sharing files. 添加扩展以支持共享文件。
3840 mate-extra caja-extensions wallpaper Add an extension to support setting an image as the current wallpaper 添加扩展以支持将图像设置为当前壁纸
3841 mate-extra mate-polkit accountsservice Support extraction of data from AccountsService 支持从 AccountsService 中提取数据
3842 mate-extra mate-power-manager applet Enable building of the MATE applet. 启用 MATE 小程序的构建。
3843 mate-extra mate-power-manager libsecret Support locking of keyring via app-crypt/libsecret 支持通过 app-crypt/libsecret 锁定密钥环
3844 mate-extra mate-utils applet Enable the mate dictionary applet 启用配对字典小程序
3845 media-fonts corefonts tahoma Also install the Tahoma font. Due to the lack of a free bold variant, this may render badly. See bug 184790. 还要安装 Tahoma 字体。由于缺少免费的粗体变体,这可能会渲染得很糟糕。请参阅错误 184790。
3846 media-fonts culmus ancient Install ancient semitic scripts 安装古代闪米特语脚本
3847 media-fonts culmus fancy Install fancy fonts 安装花哨的字体
3848 media-fonts culmus fontforge Use media-gfx/fontforge to build fonts from source 使用 media-gfx/fontforge 从源代码构建字体
3849 media-fonts culmus taamey Install taamey fonts 安装taamey字体
3850 media-fonts dejavu fontforge Use media-gfx/fontforge to build fonts from source 使用 media-gfx/fontforge 从源代码构建字体
3851 media-fonts essays1743 otf Install the OpenType version of the font 安装字体的 OpenType 版本
3852 media-fonts essays1743 ttf Install the TrueType version of the font 安装字体的 TrueType 版本
3853 media-fonts fira-mono otf Install the OpenType version of the font 安装字体的 OpenType 版本
3854 media-fonts fira-mono ttf Install the TrueType version of the font 安装字体的 TrueType 版本
3855 media-fonts fira-sans otf Install the OpenType version of the font 安装字体的 OpenType 版本
3856 media-fonts fira-sans ttf Install the TrueType version of the font 安装字体的 TrueType 版本
3857 media-fonts fontawesome otf Install the OpenType version of the font 安装字体的 OpenType 版本
3858 media-fonts fontawesome ttf Install the TrueType version of the font 安装字体的 TrueType 版本
3859 media-fonts fonts-meta emoji Install a font supporting emojis 安装支持表情符号的字体
3860 media-fonts fonts-meta latin Install additional latin fonts 安装额外的拉丁字体
3861 media-fonts fonts-meta ms Install (free) fonts for the "ms" preset 为“ms”预设安装(免费)字体
3862 media-fonts ibm-plex otf Install OTF fonts 安装 OTF 字体
3863 media-fonts ibm-plex ttf Install TTF fonts 安装 TTF 字体
3864 media-fonts intlfonts bdf Install BDF fonts in addition to PCF 除了 PCF 还安装 BDF 字体
3865 media-fonts intlfonts non-free Install non-free Tibetan fonts 安装非免费藏文字体
3866 media-fonts liberation-fonts fontforge Use media-gfx/fontforge to build fonts from source 使用 media-gfx/fontforge 从源代码构建字体
3867 media-fonts montecarlo bdf Install BDF fonts in addition to PCF 除了 PCF 还安装 BDF 字体
3868 media-fonts mplus-outline-fonts ipafont Generates new fonts merged with media-fonts/ja-ipafonts 生成与 media-fonts/ja-ipafonts 合并的新字体
3869 media-fonts noto extra Install full upstream font set 安装完整的上游字体集
3870 media-fonts noto-emoji buildfont Build Noto Emoji font with supplied images. 使用提供的图像构建 Noto Emoji 字体。
3871 media-fonts sil-charis compact Use more compactly spaced font 使用更紧凑的字体
3872 media-fonts sil-gentium compact Also install more compact version of the font. 还要安装更紧凑的字体版本。
3873 media-fonts terminus-font a-like-o Changes view of letter 'a' - a looks like o (see homepage) 更改字母“a”的视图 - a 看起来像 o(见主页)
3874 media-fonts terminus-font center-tilde Place the '~' character vertically centered on the line instead of to the top. 将“~”字符垂直居中放置在行上而不是顶部。
3875 media-fonts terminus-font distinct-l ll2 variant with more distinctive l (lowercase L) ll2 变体,具有更独特的 l(小写 L)
3876 media-fonts terminus-font otf Install Open Type Font (OTF) (required for HarfBuzz backend) 安装 Open Type Font (OTF)(HarfBuzz 后端需要)
3877 media-fonts terminus-font pcf-8bit Install Portable Compiled Font (PCF) (X11 bitmap fonts), 8-bit encodings 安装 Portable Compiled Font (PCF)(X11 位图字体),8 位编码
3878 media-fonts terminus-font pcf-unicode Install Portable Compiled Font (PCF) (X11 bitmap fonts), Unicode encodings 安装 Portable Compiled Font (PCF)(X11 位图字体),Unicode 编码
3879 media-fonts terminus-font psf Install PC Screen Font (PSF) with unicode data (for linux console) 使用 unicode 数据安装 PC 屏幕字体 (PSF)(用于 linux 控制台)
3880 media-fonts terminus-font quote Changes view of quotes: symmetric ` and ' instead of asymmetric one (see homepage) 更改引号的视图:对称的 ` 和 ' 而不是不对称的(见主页)
3881 media-fonts terminus-font ru-dv Changes view of Russian letters 'de' and 've' (see homepage) 更改俄语字母“de”和“ve”的视图(见主页)
3882 media-fonts terminus-font ru-g Changes view of Russian letter 'ge' (see homepage) 更改俄语字母“ge”的视图(见主页)
3883 media-fonts terminus-font ru-i Changes view of Russian letter 'i' - not like Latin u, but like "mirrored" N (see homepage) 改变对俄语字母“i”的看法 - 不像拉丁语 u,而是像“镜像”N(见主页)
3884 media-fonts terminus-font ru-k Changes view of Russian letter 'k' (see homepage) 更改俄语字母“k”的视图(见主页)
3885 media-fonts unifont fontforge Use media-gfx/fontforge to build fonts from source 使用 media-gfx/fontforge 从源代码构建字体
3886 media-fonts unifont utils Install unifont utilities 安装 unifont 实用程序
3887 media-fonts vollkorn otf Install the OpenType version of the font 安装字体的 OpenType 版本
3888 media-fonts vollkorn ttf Install the TrueType version of the font 安装字体的 TrueType 版本
3889 media-gfx ahoviewer plugins Build plugin support for now, in future pull additional plugins 现在构建插件支持,将来拉出额外的插件
3890 media-gfx ahoviewer rar Rar archive support Rar 存档支持
3891 media-gfx ahoviewer zip Zip archive support Zip 存档支持
3892 media-gfx album plugins Install optional plugins 安装可选插件
3893 media-gfx album themes Install optional themes 安装可选主题
3894 media-gfx alembic hdf5 Add support sci-libs/hdf5 添加支持 sci-libs/hdf5
3895 media-gfx alembic test Build and run the test-suite 构建并运行测试套件
3896 media-gfx asymptote boehm-gc Enables using the Boehm-Demers-Weiser conservative garbage collector 启用使用 Boehm-Demers-Weiser 保守垃圾收集器
3897 media-gfx asymptote context Enables support for ConTeXt format (dev-texlive/texlive-context) 启用对 ConTeXt 格式的支持 (dev-texlive/texlive-context)
3898 media-gfx asymptote curl Enables running remote programs via net-misc/curl 启用通过 net-misc/curl 运行远程程序
3899 media-gfx asymptote lsp Enables Language Server Protocol 启用语言服务器协议
3900 media-gfx asymptote offscreen Enables off-screen rendering 启用离屏渲染
3901 media-gfx asymptote sigsegv Enables using dev-libs/libsigsegv 启用使用 dev-libs/libsigsegv
3902 media-gfx blender alembic Add support for Alembic through media-gfx/alembic. 通过 media-gfx/alembic 添加对 Alembic 的支持。
3903 media-gfx blender bullet Enable Bullet (Physics Engine). 启用子弹(物理引擎)。
3904 media-gfx blender collada Add support for Collada interchange format through media-libs/opencollada. 通过 media-libs/opencollada 添加对 Collada 交换格式的支持。
3905 media-gfx blender color-management Enable color management via media-libs/opencolorio. 通过 media-libs/opencolorio 启用颜色管理。
3906 media-gfx blender cuda Build cycles renderer with nVidia CUDA support. 具有 nVidia CUDA 支持的构建周期渲染器。
3907 media-gfx blender cycles Build cycles renderer (requires media-libs/openimageio and dev-libs/boost). 构建周期渲染器(需要 media-libs/openimageio 和 dev-libs/boost)。
3908 media-gfx blender dds Adds DDS textures support to Blender. 为 Blender 添加 DDS 纹理支持。
3909 media-gfx blender embree Use embree to accelerate certain areas of the Cycles render engine. 使用 embree 加速 Cycles 渲染引擎的某些区域。
3910 media-gfx blender fluid Adds fluid simulation support via the built-in Mantaflow library. 通过内置的 Mantaflow 库添加流体模拟支持。
3911 media-gfx blender headless Build without graphical support (renderfarm, server mode only). 在没有图形支持的情况下构建(renderfarm,仅限服务器模式)。
3912 media-gfx blender nanovdb Enable nanoVDB support in Cycles. Uses less memory than regular openVDB when rendering. 在 Cycles 中启用 nanoVDB 支持。渲染时使用比常规 openVDB 更少的内存。
3913 media-gfx blender ndof Enable NDOF input devices (SpaceNavigator and friends). 启用 NDOF 输入设备(SpaceNavigator 和朋友)。
3914 media-gfx blender oidn Enable OpenImageDenoiser Support 启用 OpenImageDenoiser 支持
3915 media-gfx blender opencl Allow OpenCL Graphics Acceleration. This may require extra graphics card drivers. 允许 OpenCL 图形加速。这可能需要额外的显卡驱动程序。
3916 media-gfx blender openimageio Enable OpenImageIO Support 启用 OpenImageIO 支持
3917 media-gfx blender opensubdiv Add rendering support form OpenSubdiv from Dreamworks Animation through media-libs/opensubdiv. 通过 media-libs/opensubdiv 从 Dreamworks Animation 添加渲染支持表单 OpenSubdiv。
3918 media-gfx blender openvdb Enable openvdb for volumetric processing, like the voxel remesher. Also enables volumetric GPU preview rendering for Nvidia cards. 启用 openvdb 进行体积处理,例如体素重新网格化。还为 Nvidia 卡启用体积 GPU 预览渲染。
3919 media-gfx blender osl Add support for OpenShadingLanguage scripting. 添加对 OpenShadingLanguage 脚本的支持。
3920 media-gfx blender potrace Add support for converting bitmaps into Grease pencil line using the potrace library. 添加对使用 potrace 库将位图转换为油性铅笔线的支持。
3921 media-gfx blender pugixml Enable PugiXML support (Used for OpenImageIO, Grease Pencil SVG export) 启用 PugiXML 支持(用于 OpenImageIO、Grease Pencil SVG 导出)
3922 media-gfx blender tbb Use threading building blocks library from dev-cpp/tbb. 使用来自 dev-cpp/tbb 的线程构建块库。
3923 media-gfx blender valgrind Add support for memory debugging using dev-util/valgrind 使用 dev-util/valgrind 添加对内存调试的支持
3924 media-gfx chafa tools Build command-line tools 构建命令行工具
3925 media-gfx cura usb Access 3D printers via USB 通过 USB 访问 3D 打印机
3926 media-gfx curaengine arcus Build with support for communication library between internal components for Ultimaker software 构建支持 Ultimaker 软件内部组件之间的通信库
3927 media-gfx darktable avif Support importing and exporting AVIF images 支持导入和导出 AVIF 图像
3928 media-gfx darktable flickr Add support for uploading photos to flickr 添加对上传照片到 flickr 的支持
3929 media-gfx darktable gamepad Support using game controllers as input devices 支持使用游戏控制器作为输入设备
3930 media-gfx darktable geolocation Enable geotagging support 启用地理标记支持
3931 media-gfx darktable gmic Use the G'MIC image-processing framework (media-gfx/gmic), e.g. to support Colour LUTs compressed using their compression scheme 使用 G'MIC 图像处理框架 (media-gfx/gmic),例如支持使用其压缩方案压缩的彩色 LUT
3932 media-gfx darktable kwallet Enable encrypted storage of passwords with kde-frameworks/kwallet 使用 kde-frameworks/kwallet 启用密码的加密存储
3933 media-gfx darktable lto Enable link-time optimisations in the RawSpeed library 在 RawSpeed 库中启用链接时优化
3934 media-gfx darktable midi Support using MIDI input devices such as Behringer X-Touch Mini, Arturia Beatstep or Korg nanoKONTROL2, as input devices 支持使用 MIDI 输入设备,例如 Behringer X-Touch Mini、Arturia Beatstep 或 Korg nanoKONTROL2 作为输入设备
3935 media-gfx darktable opencl Enable opencl support 启用 opencl 支持
3936 media-gfx darktable tools Install tools for generating base curves and noise profiles 安装用于生成基本曲线和噪声曲线的工具
3937 media-gfx digikam addressbook Enable akonadi contact integration 启用 akonadi 联系人集成
3938 media-gfx digikam heif Enable support for ISO/IEC 23008-12:2017 HEIF files using media-libs/x265 使用 media-libs/x265 启用对 ISO/IEC 23008-12:2017 HEIF 文件的支持
3939 media-gfx digikam imagemagick Enable support for additional image formats such as XCF, FITS, HEIC etc. 启用对其他图像格式的支持,例如 XCF、FITS、HEIC 等。
3940 media-gfx digikam lensfun Enable support for media-libs/lensfun 启用对 media-libs/lensfun 的支持
3941 media-gfx digikam marble Enable support for geolocation using kde-apps/marble 使用 kde-apps/marble 启用对地理定位的支持
3942 media-gfx digikam mediaplayer Enable support for media player using media-libs/qtav 使用 media-libs/qtav 启用对媒体播放器的支持
3943 media-gfx digikam panorama Build the panorama plugin which requires media-gfx/hugin 构建需要 media-gfx/hugin 的全景插件
3944 media-gfx digikam semantic-desktop Enable kde-frameworks/kfilemetadata support 启用 kde-frameworks/kfilemetadata 支持
3945 media-gfx eog-plugins map Enable world map display using media-libs/libchamplain 使用 media-libs/libchamplain 启用世界地图显示
3946 media-gfx eog-plugins picasa Enable uploading to Google's Picasa Web Albums 允许上传到 Google 的 Picasa 网络相册
3947 media-gfx eom imagemagick Use media-gfx/imagemagick as an external backend for the thumbnailer 使用 media-gfx/imagemagick 作为缩略图的外部后端
3948 media-gfx exact-image swig Adds Swig support dev-lang/swig 添加 Swig 支持 dev-lang/swig
3949 media-gfx exiv2 bmff Add support for the ISOBMFF format 添加对 ISOBMFF 格式的支持
3950 media-gfx exiv2 webready Support reading metadata over the internet 支持通过互联网读取元数据
3951 media-gfx fbida X Install the Motif based image viewer "ida" 安装基于 Motif 的图像查看器“ida”
3952 media-gfx fbida fbcon Install the framebuffer image viewer "fbi" 安装帧缓冲图像查看器“fbi”
3953 media-gfx fbida ghostscript Install the framebuffer ghostscript viewer "fbgs" 安装帧缓冲 ghostscript 查看器“fbgs”
3954 media-gfx fdm-materials embedded Build for Ultimaker Embedded software 为 Ultimaker Embedded 软件构建
3955 media-gfx fim bmp Enable BMP file support 启用 BMP 文件支持
3956 media-gfx fim dia Enable DIA file support via app-office/dia 通过 app-office/dia 启用 DIA 文件支持
3957 media-gfx fim imagemagick Use convert from media-gfx/imagemagick as fallback file opener 使用从 media-gfx/imagemagick 转换为后备文件打开器
3958 media-gfx fim pcx Enable PCX file support 启用 PCX 文件支持
3959 media-gfx fim xfig Enable FIG file support via media-gfx/xfig 通过 media-gfx/xfig 启用 FIG 文件支持
3960 media-gfx fontforge truetype-debugger Enable truetype debugger in fontforge 在 fontforge 中启用 truetype 调试器
3961 media-gfx fontforge woff2 Enable support for WOFF2 format 启用对 WOFF2 格式的支持
3962 media-gfx fotowall webcam Enable webcam support 启用网络摄像头支持
3963 media-gfx freecad addonmgr Build the addon manager module for automatic handling of 3rd party addons 构建插件管理器模块以自动处理第 3 方插件
3964 media-gfx freecad cloud Build the Cloud workbench, to access cloud providers (mostly Amazon S3). 构建云工作台,以访问云提供商(主要是 Amazon S3)。
3965 media-gfx freecad designer Build and install the Qt designer plugin, so the FreeCAD widgets can be used from within designer. 构建并安装 Qt 设计器插件,以便可以在设计器中使用 FreeCAD 小部件。
3966 media-gfx freecad drawing Build the Drawing workbench, a predecessor to the TechDraw workbench. Users are encouraged to learn how to use the TechDraw workbench and switch to it instead. This is a compatibility option and will be removed in a later (0.20+) version of the package. 构建绘图工作台,它是 TechDraw 工作台的前身。鼓励用户学习如何使用 TechDraw 工作台并改用它。这是一个兼容性选项,将在更高版本(0.20+)的包中删除。
3967 media-gfx freecad fem Build the FEM module and workbench which provides Finite Element Analysis (FEA) workflows 构建提供有限元分析 (FEA) 工作流程的 FEM 模块和工作台
3968 media-gfx freecad headless Build FreeCAD without a GUI, usable for server-side instances. The Python modules are still available, without their GUI parts though. 在没有 GUI 的情况下构建 FreeCAD,可用于服务器端实例。 Python 模块仍然可用,但没有它们的 GUI 部分。
3969 media-gfx freecad idf Build the IDF module to provide file exchange capabilities with IDF files 构建 IDF 模块以提供与 IDF 文件的文件交换功能
3970 media-gfx freecad image Build the image module and workbench for working with bitmap images 构建用于处理位图图像的图像模块和工作台
3971 media-gfx freecad inspection Build the inspection workbench which gives you specific tools for examination of shapes (experimental) 构建检查工作台,为您提供用于检查形状的特定工具(实验性)
3972 media-gfx freecad material Build the material module and workbench to work with materials 构建材料模块和工作台以处理材料
3973 media-gfx freecad openscad Build the OpenSCAD module for interoperability with OpenSCAD and repairing Constructive Solid Geometry (CSG) history 构建 OpenSCAD 模块以实现与 OpenSCAD 的互操作性并修复构造实体几何 (CSG) 历史
3974 media-gfx freecad part-design Build the part design module and workbench for build part shapes from sketches 构建零件设计模块和工作台以从草图构建零件形状
3975 media-gfx freecad path Build the path module and workbench to procude G-Code instructions for CNC 构建路径模块和工作台,为 CNC 生成 G-Code 指令
3976 media-gfx freecad pcl Use external sci-libs/pcl for point clouds support. 使用外部 sci-libs/pcl 来支持点云。
3977 media-gfx freecad plot Build the internal plot workbench. NOTE: This conflicts with the external plot workbench, which you can add via the Addon Manager! 构建内部绘图工作台。注意:这与您可以通过插件管理器添加的外部绘图工作台冲突!
3978 media-gfx freecad points Build the points module and workbench for working with point clouds 构建用于处理点云的点模块和工作台
3979 media-gfx freecad raytracing Build the raytracing module and workbench for raytracing and rendering 构建用于光线跟踪和渲染的光线跟踪模块和工作台
3980 media-gfx freecad robot Build the robot module and workbench for studying robot movements 构建用于研究机器人运动的机器人模块和工作台
3981 media-gfx freecad ship Build the ship module and workbench which works over ship entities, that must be created on top of provided geometry. NOTE: This conflicts with the external ship workbench, which you can add via the Addon Manager! 构建在船舶实体上工作的船舶模块和工作台,必须在提供的几何图形之上创建。注意:这与您可以通过插件管理器添加的外部船舶工作台冲突!
3982 media-gfx freecad show Build the show module, a helper module for visibility automation 构建 show 模块,一个用于可视化自动化的辅助模块
3983 media-gfx freecad surface Build the surface module and workbench 构建表面模块和工作台
3984 media-gfx freecad techdraw Build the techdraw module and workbench, a more advanced and feature-rich successor of the drawing workbench 构建 techdraw 模块和工作台,绘图工作台更先进、功能更丰富的继任者
3985 media-gfx freecad tux Build the Tux module 构建 Tux 模块
3986 media-gfx geeqie ffmpegthumbnailer Enable video thumbnail support with media-video/ffmpegthumbnailer 使用 media-video/ffmpegthumbnailer 启用视频缩略图支持
3987 media-gfx geeqie gpu-accel Enable GPU acceleration support - experimental 启用 GPU 加速支持 - 实验性
3988 media-gfx geeqie gtk3 Link against x11-libs/gtk+:3 instead of x11-libs/gtk+:2 链接到 x11-libs/gtk+:3 而不是 x11-libs/gtk+:2
3989 media-gfx geeqie map Enable items map display - experimental 启用项目地图显示 - 实验性
3990 media-gfx gimp heif Enable support for ISO/IEC 23008-12:2017 HEIF files 启用对 ISO/IEC 23008-12:2017 HEIF 文件的支持
3991 media-gfx gimp jpegxl Enable support for JPEG XL image format 启用对 JPEG XL 图像格式的支持
3992 media-gfx gimp vector-icons Enable support for vector icons (experimental) 启用对矢量图标的支持(实验性)
3993 media-gfx gmic cli Build CLI interface 构建 CLI 界面
3994 media-gfx gmic opencv Enable support for webcams using the OpenCV library 使用 OpenCV 库启用对网络摄像头的支持
3995 media-gfx gnome-photos flickr Ensure runtime Flickr support 确保运行时 Flickr 支持
3996 media-gfx graphicsmagick dynamic-loading Compile graphicsmagick with dynamically loadable modules 使用可动态加载的模块编译 graphicsmagick
3997 media-gfx graphicsmagick fpx Enable FlashPix support with media-libs/libfpx 使用 media-libs/libfpx 启用 FlashPix 支持
3998 media-gfx graphicsmagick heif Add HEIF/HEIC image support 添加 HEIF/HEIC 图像支持
3999 media-gfx graphicsmagick jpegxl Enable support for JPEG XL image format 启用对 JPEG XL 图像格式的支持
4000 media-gfx graphicsmagick q16 Set storage quantum size to 16 (~2*memory) 将存储量子大小设置为 16(~2*memory)
4001 media-gfx graphicsmagick q32 Set storage quantum size to 32 (~5*memory) 将存储量子大小设置为 32(~5*memory)
4002 media-gfx graphviz X Builds dotty, lneato, unflatten, vimdot, builds plugin -Txlib, and enables support for x11 in various other modules (needs cairo) 构建 dotty、lneato、unflatten、vimdot,构建插件 -Txlib,并在各种其他模块中启用对 x11 的支持(需要 cairo)
4003 media-gfx graphviz devil Enables DevIL output plugin -Tdevil 启用 DevIL 输出插件 -Tdevil
4004 media-gfx graphviz gtk2 Enables gtk+ output plugin -Tgtk (needs cairo) 启用 gtk+ 输出插件 -Tgtk (需要 cairo)
4005 media-gfx graphviz gts Enables support for GNU Triangulated Surface Library (required for sfdp to work) 启用对 GNU Triangulated Surface Library 的支持(需要 sfdp 才能工作)
4006 media-gfx graphviz lasi Enables PostScript output via media-libs/lasi, for plugin -Tlasi (needs cairo) 通过 media-libs/lasi 启用 PostScript 输出,用于插件 -Tlasi(需要 cairo)
4007 media-gfx graphviz lefty Builds lefty front-end, requires x11-libs/libXmu and x11-libs/libXaw 构建 lefty 前端,需要 x11-libs/libXmu 和 x11-libs/libXaw
4008 media-gfx gthumb heif Enable support for ISO/IEC 23008-12:2017 HEIF/HEIC image format using media-libs/libheif 使用 media-libs/libheif 启用对 ISO/IEC 23008-12:2017 HEIF/HEIC 图像格式的支持
4009 media-gfx gthumb http Enable webservice integration through net-libs/webkit-gtk 通过 net-libs/webkit-gtk 启用 web 服务集成
4010 media-gfx gthumb jpegxl Support for JPEG XL image format 支持 JPEG XL 图像格式
4011 media-gfx gthumb slideshow Enable slideshow plugin 启用幻灯片插件
4012 media-gfx hugin sift automatically align images with media-gfx/autopano-sift-C 使用 media-gfx/autopano-sift-C 自动对齐图像
4013 media-gfx imagemagick corefonts Use media-fonts/corefonts which is required by some commands 使用某些命令所需的 media-fonts/corefonts
4014 media-gfx imagemagick fpx Enable media-libs/libfpx support 启用媒体库/libfpx 支持
4015 media-gfx imagemagick hdri Enable High Dynamic Range Images formats 启用高动态范围图像格式
4016 media-gfx imagemagick heif Enable support for ISO/IEC 23008-12:2017 HEIF/HEIC image format using media-libs/libheif 使用 media-libs/libheif 启用对 ISO/IEC 23008-12:2017 HEIF/HEIC 图像格式的支持
4017 media-gfx imagemagick lqr Enable experimental liquid rescale support using media-libs/liblqr 使用 media-libs/liblqr 启用实验性液体重新缩放支持
4018 media-gfx imagemagick opencl Enable OpenCL support 启用 OpenCL 支持
4019 media-gfx imagemagick pango Enable Pango support using x11-libs/pango 使用 x11-libs/pango 启用 Pango 支持
4020 media-gfx imagemagick q32 Set quantum depth value to 32 将量子深度值设置为 32
4021 media-gfx imagemagick q8 Set quantum depth value to 8 将量子深度值设置为 8
4022 media-gfx imv freeimage Use media-libs/freeimage for additional image support 使用 media-libs/freeimage 获得额外的图像支持
4023 media-gfx imv heif Add HEIF/HEIC image support 添加 HEIF/HEIC 图像支持
4024 media-gfx inkscape cdr Enable support for CorelDRAW files via media-libs/libcdr 通过 media-libs/libcdr 启用对 CorelDRAW 文件的支持
4025 media-gfx inkscape dia Enable DIA flow chart import via app-office/dia 通过 app-office/dia 启用 DIA 流程图导入
4026 media-gfx inkscape inkjar Enable support for OpenOffice.org SVG jar files 启用对 OpenOffice.org SVG jar 文件的支持
4027 media-gfx inkscape svg2 Enable support for new SVG2 features 启用对新 SVG2 功能的支持
4028 media-gfx inkscape visio Enable support for Microsoft Visio diagrams via media-libs/libvisio 通过 media-libs/libvisio 启用对 Microsoft Visio 图表的支持
4029 media-gfx inkscape wpg Enable support for WordPerfect graphics via app-text/libwpg 通过 app-text/libwpg 启用对 WordPerfect 图形的支持
4030 media-gfx iscan-plugin-gt-f500 minimal Install the firmware only, and not the plugin. 只安装固件,不安装插件。
4031 media-gfx jpeg2ps metric Default to A4 paper size 默认为 A4 纸张尺寸
4032 media-gfx kphotoalbum map Enable map display support using kde-apps/marble 使用 kde-apps/marble 启用地图显示支持
4033 media-gfx kphotoalbum share Enable support for a share menu using kde-frameworks/purpose 使用 kde-frameworks/purpose 启用对共享菜单的支持
4034 media-gfx krita color-management Enable color management via media-libs/opencolorio 通过 media-libs/opencolorio 启用颜色管理
4035 media-gfx krita heif Enable support for ISO/IEC 23008-12:2017 HEIF/HEIC image format using media-libs/libheif 使用 media-libs/libheif 启用对 ISO/IEC 23008-12:2017 HEIF/HEIC 图像格式的支持
4036 media-gfx krita mypaint-brush-engine Enable MyPaint brush engine support media-libs/libmypaint 启用 MyPaint 画笔引擎支持 media-libs/libmypaint
4037 media-gfx krita qtmedia Enable sound support for animations via dev-qt/qtmultimedia 通过 dev-qt/qtmultimedia 启用对动画的声音支持
4038 media-gfx krita vc Enable support for dev-libs/vc, could be a significant speed boost 启用对 dev-libs/vc 的支持,可能会显着提高速度
4039 media-gfx librecad tools Build additional tool programs: tff2lff 构建额外的工具程序:tff2lff
4040 media-gfx luminance-hdr fits Enable support for the FITS format 启用对 FITS 格式的支持
4041 media-gfx mandelbulber opencl Enable GPU rendering support using OpenCL 使用 OpenCL 启用 GPU 渲染支持
4042 media-gfx meshlab double-precision Use double type instead of float type for scalars 对标量使用 double 类型而不是 float 类型
4043 media-gfx nomacs opencv Build support for media-libs/opencv 构建对 media-libs/opencv 的支持
4044 media-gfx nomacs plugins Build officially support plugins 构建官方支持插件
4045 media-gfx openclipart gzip Compresses clip art using gzip 使用 gzip 压缩剪贴画
4046 media-gfx openscad gamepad Add support for gamepads through dev-qt/qtgamepad 通过 dev-qt/qtgamepad 添加对游戏手柄的支持
4047 media-gfx openscad headless Build a binary without GUI 构建没有 GUI 的二进制文件
4048 media-gfx openscad spacenav Add support for space navigator devices through dev-libs/libspnav 通过 dev-libs/libspnav 添加对空间导航器设备的支持
4049 media-gfx openvdb abi5-compat Disables newer features to maintain compatibility with ABI5. 禁用较新的功能以保持与 ABI5 的兼容性。
4050 media-gfx openvdb abi6-compat Disables newer features to maintain compatibility with ABI6. 禁用较新的功能以保持与 ABI6 的兼容性。
4051 media-gfx openvdb abi7-compat Disables newer features to maintain compatibility with ABI7. 禁用较新的功能以保持与 ABI7 的兼容性。
4052 media-gfx openvdb abi8-compat Disables newer features to maintain compatibility with ABI8. 禁用较新的功能以保持与 ABI8 的兼容性。
4053 media-gfx openvdb abi9-compat Disables newer features to maintain compatibility with ABI9. 禁用较新的功能以保持与 ABI9 的兼容性。
4054 media-gfx openvdb blosc Allow using blosc compression via dev-libs/c-blosc 允许通过 dev-libs/c-blosc 使用 blosc 压缩
4055 media-gfx openvdb cuda Enable support for CUDA in NanoVDB. 在 NanoVDB 中启用对 CUDA 的支持。
4056 media-gfx openvdb nanovdb A lightweight, header only, and GPU friendly version of VDB. VDB 的轻量级、仅标头和 GPU 友好版本。
4057 media-gfx openvdb numpy Build pyopenvdb with support for dev-python/numpy 构建支持 dev-python/numpy 的 pyopenvdb
4058 media-gfx openvdb utils Build utility binaries 构建实用程序二进制文件
4059 media-gfx photoqt devil Support additional image formats using media-libs/devil 使用 media-libs/devil 支持其他图像格式
4060 media-gfx photoqt freeimage Support additional image formats using media-libs/freeimage 使用 media-libs/freeimage 支持其他图像格式
4061 media-gfx potrace metric default to a4 paper size and metric measurement 默认为 a4 纸张尺寸和公制测量
4062 media-gfx povray io-restrictions POV-Ray's mechanism for control of I/O operations POV-Ray 的 I/O 操作控制机制
4063 media-gfx pqiv archive Enable support for images in archives and cbX comic book files 启用对档案和 cbX 漫画书文件中的图像的支持
4064 media-gfx pstoedit emf Enable media-libs/libemf support 启用媒体库/libemf 支持
4065 media-gfx pstoedit pptx Enable support for generating PowerPoint pptx files 启用对生成 PowerPoint pptx 文件的支持
4066 media-gfx qimgv opencv Enable HQ scaling via media-libs/opencv 通过 media-libs/opencv 启用 HQ 缩放
4067 media-gfx qimgv video Add support for gif/webm playback via libmpv 通过 libmpv 添加对 gif/webm 播放的支持
4068 media-gfx qrencode png Enable PNG output support in qrencode tool 在 qrencode 工具中启用 PNG 输出支持
4069 media-gfx renderdoc pyside2 Expose the QRenderdoc UI to Python scripting to allow for customisation 将 QRenderdoc UI 暴露给 Python 脚本以允许自定义
4070 media-gfx renderdoc qt5 Build and install the qrenderdoc GUI 构建和安装 qrenderdoc GUI
4071 media-gfx shotwell opencv Enable face detection via media-libs/opencv 通过 media-libs/opencv 启用人脸检测
4072 media-gfx xpaint pgf Support for loading PGF images 支持加载 PGF 图像
4073 media-gfx xsane ocr Enable support for Optical Character Recognition reader 启用对光学字符识别阅读器的支持
4074 media-gfx yafaray fastmath Enable mathematic approximations to make code faster 启用数学近似以使代码更快
4075 media-gfx yafaray fasttrig Enable trigonometric approximations to make code faster 启用三角近似以使代码更快
4076 media-gfx yafaray opencv Add support for media-libs/opencv image processing. 添加对 media-libs/opencv 图像处理的支持。
4077 media-libs a52dec djbfft Prefer D.J. Bernstein's library for fourier transforms 更喜欢 DJ Bernstein 的傅立叶变换库
4078 media-libs allegro dumb Enable media-libs/dumb module library support 启用媒体库/哑模块库支持
4079 media-libs allegro physfs Enable physfs support 启用 physfs 支持
4080 media-libs allegro vga Enables the VGA graphics driver 启用 VGA 图形驱动程序
4081 media-libs alsa-lib alisp Enable support for ALISP (ALSA LISP) interpreter for advanced features. 启用对高级功能的 ALISP (ALSA LISP) 解释器的支持。
4082 media-libs alsa-lib thread-safety thread-safe API functions 线程安全的 API 函数
4083 media-libs alure dumb Enable media-libs/dumb module library support 启用媒体库/哑模块库支持
4084 media-libs alure fluidsynth Enables Fluidsynth MIDI software synthesis 启用 Fluidsynth MIDI 软件合成
4085 media-libs assimp samples Build viewer library 构建查看器库
4086 media-libs aubio double-precision Compile in double precision mode. 以双精度模式编译。
4087 media-libs avidemux-core system-ffmpeg Use the ffmpeg provided by the system. 使用系统提供的ffmpeg。
4088 media-libs avidemux-plugins aften Enable A/52 (AC-3) audio encoder support. 启用 A/52 (AC-3) 音频编码器支持。
4089 media-libs avidemux-plugins amr Enable Adaptive Multi-Rate format support via media-libs/opencore-amr. 通过 media-libs/opencore-amr 启用自适应多速率格式支持。
4090 media-libs avidemux-plugins dcaenc Enable DTS Coherent Acoustics audio encoder support via media-sound/dcaenc. 通过 media-sound/dcaenc 启用 DTS Coherent Acoustics 音频编码器支持。
4091 media-libs avidemux-plugins fdk Adds support for encoding AAC using media-libs/fdk-aac. 添加对使用 media-libs/fdk-aac 编码 AAC 的支持。
4092 media-libs avidemux-plugins fribidi Enable unicode bidirectional algorithm support via dev-libs/fribidi. 通过 dev-libs/fribidi 启用 unicode 双向算法支持。
4093 media-libs avidemux-plugins twolame Enable TwoLAME support via media-sound/twolame, an optimised MPEG Audio Layer 2 (MP2) encoder. 通过优化的 MPEG Audio Layer 2 (MP2) 编码器 media-sound/twolame 启用 TwoLAME 支持。
4094 media-libs avidemux-plugins vpx Enable WebM VP8 Codec SDK support via media-libs/libvpx. 通过 media-libs/libvpx 启用 WebM VP8 Codec SDK 支持。
4095 media-libs avidemux-plugins x265 Enables HEVC support with media-libs/x265. 通过 media-libs/x265 启用 HEVC 支持。
4096 media-libs cal3d 16bit-indices Enables use of 16bit indices 允许使用 16 位索引
4097 media-libs chromaprint tools Build and install fpcalc and fpcollect tools 构建和安装 fpcalc 和 fpcollect 工具
4098 media-libs clutter egl Enable EGL backend. 启用 EGL 后端。
4099 media-libs clutter gtk Use gdk-pixbuf from x11-libs/gtk+ as image rendering backend 使用 x11-libs/gtk+ 中的 gdk-pixbuf 作为图像渲染后端
4100 media-libs cogl gles2 Enable OpenGL ES 2.0 support 启用 OpenGL ES 2.0 支持
4101 media-libs cogl kms Enable KMS support. 启用 KMS 支持。
4102 media-libs cogl pango Build cogl-pango library for x11-libs/pango integration 为 x11-libs/pango 集成构建 cogl-pango 库
4103 media-libs coin exceptions Compile with C++ exceptions 使用 C++ 异常编译
4104 media-libs coin qthelp Build API documentation in QtHelp format 以 QtHelp 格式构建 API 文档
4105 media-libs cubeb rust Use the newer rust-based audio backends if available 如果可用,请使用更新的基于 rust 的音频后端
4106 media-libs cubeb sndio Enable support for the media-sound/sndio backend 启用对 media-sound/sndio 后端的支持
4107 media-libs dav1d 10bit Add support for building 10-bit and 12-bit AV1. 添加对构建 10 位和 12 位 AV1 的支持。
4108 media-libs dav1d 8bit Add support for decoding 8-bit AV1. 添加对解码 8 位 AV1 的支持。
4109 media-libs dav1d asm Enable custom assembly for faster decoding. 启用自定义程序集以加快解码速度。
4110 media-libs dav1d xxhash Enable dev-libs/xxhash support for hashing muxer 为散列复用器启用 dev-libs/xxhash 支持
4111 media-libs devil allegro Add support for Allegro 添加对 Allegro 的支持
4112 media-libs dumb allegro Add support for Allegro 4 添加对 Allegro 4 的支持
4113 media-libs embree compact-polys Enables double indexed poly layout. 启用双索引多边形布局。
4114 media-libs embree ispc Build Embree with support for ISPC applications. 构建支持 ISPC 应用程序的 Embree。
4115 media-libs embree raymask Enables ray mask support. 启用光线遮罩支持。
4116 media-libs embree ssp When enabled, Embree compiles with stack protection against return address overrides. Stack protection will wield a minor performance decrease in return for higher security. 启用后,Embree 编译时带有堆栈保护,可防止返回地址覆盖。堆栈保护将使用轻微的性能下降以换取更高的安全性。
4117 media-libs embree tbb Use TBB instead of the built-in Embree tasking system. 使用 TBB 而不是内置的 Embree 任务系统。
4118 media-libs embree tutorial Enable to build Embree tutorials programs. 启用构建 Embree 教程程序。
4119 media-libs esdl image Enable image support 启用图像支持
4120 media-libs faad2 digitalradio Digital Radio Mondiale (warning: disables other decoders) Digital Radio Mondiale(警告:禁用其他解码器)
4121 media-libs fcft harfbuzz Use media-libs/harfbuzz for grapheme and run shaping 将 media-libs/harfbuzz 用于字形并运行整形
4122 media-libs fcft libutf8proc Use media-libs/harfbuzz and dev-libs/libutf8proc for run shaping 使用 media-libs/harfbuzz 和 dev-libs/libutf8proc 进行运行整形
4123 media-libs flickcurl raptor Use media-libs/raptor for proper RDF serializing 使用 media-libs/raptor 进行正确的 RDF 序列化
4124 media-libs freetype adobe-cff Use Adobe CFF as default font-renderer 使用 Adobe CFF 作为默认字体渲染器
4125 media-libs freetype brotli Enable brotli decompression support via app-arch/brotli 通过 app-arch/brotli 启用 brotli 解压支持
4126 media-libs freetype bzip2 Support bzip2 compressed PCF fonts. 支持 bzip2 压缩的 PCF 字体。
4127 media-libs freetype cleartype-hinting Bytecode hinting mode for TrueType fonts that activates subpixel hinting (a.k.a. ClearType hinting) by default TrueType 字体的字节码提示模式,默认激活子像素提示(也称为 ClearType 提示)
4128 media-libs freetype fontforge Install internal headers required for TrueType debugger in media-gfx/fontforge (built with USE=truetype-debugger) 在 media-gfx/fontforge 中安装 TrueType 调试器所需的内部头文件(使用 USE=truetype-debugger 构建)
4129 media-libs freetype harfbuzz Use media-libs/harfbuzz for auto-hinting OpenType fonts. WARNING: may trigger circular dependencies! 使用 media-libs/harfbuzz 自动提示 OpenType 字体。警告:可能会触发循环依赖!
4130 media-libs freetype infinality Enable infinality options for improved LCD filtering 启用 infinality 选项以改进 LCD 过滤
4131 media-libs freetype utils Install utilities and examples from ft2demos 从 ft2demos 安装实用程序和示例
4132 media-libs freeverb3 forcefpu Disable assembly code 禁用汇编代码
4133 media-libs freeverb3 plugdouble Build plugins in double precision mode (default is float) 以双精度模式构建插件(默认为浮点)
4134 media-libs ganv fdgl Use experimental force-directed graph layout 使用实验力导向图布局
4135 media-libs gd avif Enable support for the avif format via media-libs/libavif 通过 media-libs/libavif 启用对 avif 格式的支持
4136 media-libs gd heif Enable support for the heif format via media-libs/libheif 通过 media-libs/libheif 启用对 heif 格式的支持
4137 media-libs gd webp Enable support for the webp format 启用对 webp 格式的支持
4138 media-libs gegl lensfun Enable support for media-libs/lensfun. 启用对 media-libs/lensfun 的支持。
4139 media-libs gegl umfpack Enable sparse solving via sci-libs/umfpack. 通过 sci-libs/umfpack 启用稀疏求解。
4140 media-libs glfw wayland-only Enable wayland support and disable X11 support 启用 Wayland 支持并禁用 X11 支持
4141 media-libs gmmlib custom-cflags Do not override user CFLAGS like -march, -msse and similar with lib defaults. Not tested by upstream. 不要覆盖用户 CFLAGS,如 -march、-msse 和类似的 lib 默认值。未经上游测试。
4142 media-libs grilo playlist Enable support for playlists through dev-libs/totem-pl-parser 通过 dev-libs/totem-pl-parser 启用对播放列表的支持
4143 media-libs gst-plugins-bad bzip2 Enable bzip2 encoder/decoder plugin 启用 bzip2 编码器/解码器插件
4144 media-libs gst-plugins-bad egl Enable EGL support 启用 EGL 支持
4145 media-libs gst-plugins-bad gles2 Enable GLES2 support 启用 GLES2 支持
4146 media-libs gst-plugins-base X Enable ximagesink and xvimagesink plugins; build GLX platform support if USE=opengl is enabled; build x11 windowing system support if USE=egl is enabled 启用 ximagesink 和 xvimagesink 插件;如果启用 USE=opengl,则构建 GLX 平台支持;如果启用 USE=egl,则构建 x11 窗口系统支持
4147 media-libs gst-plugins-base egl Enable EGL platform support 启用 EGL 平台支持
4148 media-libs gst-plugins-base gbm Enable Graphics Buffer Manager based EGL windowing system support (requires egl and at least one of gles or opengl) 启用基于图形缓冲区管理器的 EGL 窗口系统支持(需要 egl 和至少一个 gles 或 opengl)
4149 media-libs gst-plugins-base gles2 Enable OpenGL library and plugin via GLESv2 API (requires egl) 通过 GLESv2 API 启用 OpenGL 库和插件(需要 egl)
4150 media-libs gst-plugins-base ivorbis Enable integer based vorbis decoder 启用基于整数的 vorbis 解码器
4151 media-libs gst-plugins-base opengl Enable OpenGL library and plugin via desktop OpenGL API 通过桌面 OpenGL API 启用 OpenGL 库和插件
4152 media-libs gst-plugins-base pango Enable pango GStreamer plugin 启用 pango GStreamer 插件
4153 media-libs gst-plugins-base wayland Enable Wayland EGL windowing system support (requires egl and at least one of gles2 or opengl) 启用 Wayland EGL 窗口系统支持(需要 egl 和 gles2 或 opengl 中的至少一个)
4154 media-libs gstreamer orc Disable some PaX memory protections to allow plugins that use dev-lang/orc for runtime optimization to be used on hardened PaX systems 禁用一些 PaX 内存保护以允许在强化的 PaX 系统上使用使用 dev-lang/orc 进行运行时优化的插件
4155 media-libs gstreamer unwind Enable sys-libs/libunwind usage for better backtrace support in leaks tracer module 启用 sys-libs/libunwind 使用,以便在泄漏跟踪器模块中提供更好的回溯支持
4156 media-libs harfbuzz experimental Enable experimental APIs 启用实验性 API
4157 media-libs harfbuzz glib Enable dev-libs/glib unicode functions 启用 dev-libs/glib unicode 函数
4158 media-libs harfbuzz graphite Enable media-gfx/graphite2 complementary shaper 启用 media-gfx/graphite2 互补整形器
4159 media-libs ilmbase large-stack Enables code to take advantage of large stack support 使代码能够利用大堆栈支持
4160 media-libs imlib2 X Use the X window system 使用 X 窗口系统
4161 media-libs imlib2 bzip2 Bzip2 loader support Bzip2 加载器支持
4162 media-libs imlib2 eps Eps image loader support Eps 图像加载器支持
4163 media-libs imlib2 gif Gif image loader support GIF 图像加载器支持
4164 media-libs imlib2 heif Heif and Avif image loader support Heif 和 Avif 图像加载器支持
4165 media-libs imlib2 jpeg Jpeg image loader support Jpeg 图像加载器支持
4166 media-libs imlib2 jpegxl Jxl image loader support Jxl 图像加载器支持
4167 media-libs imlib2 mp3 ID3 loader support ID3 加载器支持
4168 media-libs imlib2 png PNG image loader support PNG图像加载器支持
4169 media-libs imlib2 shm Use MIT shared memory support for X image transfer 使用 MIT 共享内存支持进行 X 图像传输
4170 media-libs imlib2 tiff TIFF image loader support TIFF 图像加载器支持
4171 media-libs imlib2 webp WEBP image loader support WEBP 图像加载器支持
4172 media-libs imlib2 zlib Zlib loader support Zlib 加载器支持
4173 media-libs leptonica utils Install command-line utilities 安装命令行实用程序
4174 media-libs lib3mf system-act Use system-provided dev-go/act as code generator instead of package provided binaries. This flag will be removed after some time used for testing! 使用系统提供的 dev-go/act 作为代码生成器,而不是包提供的二进制文件。用于测试一段时间后,此标志将被删除!
4175 media-libs libafterimage shaping Use MIT shaped X windows extention. 使用 MIT 形状的 X 窗口扩展。
4176 media-libs libafterimage shm Use MIT shared memory extention for X image transfer. 使用 MIT 共享内存扩展进行 X 图像传输。
4177 media-libs libao sndio Add support for media-sound/sndio 添加对 media-sound/sndio 的支持
4178 media-libs libavif aom Enable support for the AOM codec encoding and decoding 启用对 AOM 编解码器编码和解码的支持
4179 media-libs libavif dav1d Enable support for the dav1d codec decoding 启用对 dav1d 编解码器解码的支持
4180 media-libs libavif extras Build extra apps (avifenc, avifdec) and test files 构建额外的应用程序(avifenc、avifdec)和测试文件
4181 media-libs libavif gdk-pixbuf Build a gdk-pixbuf loader 构建一个 gdk-pixbuf 加载器
4182 media-libs libavif rav1e Enable support for the rav1e codec encoding 启用对 rav1e 编解码器编码的支持
4183 media-libs libavif svt-av1 Enable support for the SVT-AV1 encoder 启用对 SVT-AV1 编码器的支持
4184 media-libs libbdplus aacs Add support for decryption of AACS 添加对AACS解密的支持
4185 media-libs libbluray aacs Add support for decryption of AACS 添加对AACS解密的支持
4186 media-libs libbluray bdplus Use media-libs/libbdplus for BD+ decryption 使用 media-libs/libbdplus 进行 BD+ 解密
4187 media-libs libbluray java Add support for BD-J 添加对 BD-J 的支持
4188 media-libs libbluray utils Install command-line utilities and examples 安装命令行实用程序和示例
4189 media-libs libcanberra alsa Enables ALSA sound driver. 启用 ALSA 声音驱动程序。
4190 media-libs libcanberra gstreamer Enables gstreamer sound driver. Not useful when alsa or pulseaudio is available. 启用 gstreamer 声音驱动程序。当 alsa 或 pulseaudio 可用时无用。
4191 media-libs libcanberra gtk2 Enables building of gtk+ helper library, gtk+ runtime sound effects and the canberra-gtk-play utility. To enable the gtk+ sound effects add canberra-gtk-module to the colon separated list of modules in the GTK_MODULES environment variable. 支持构建 gtk+ 助手库、gtk+ 运行时音效和 canberra-gtk-play 实用程序。要启用 gtk+ 音效,请将 canberra-gtk-module 添加到 GTK_MODULES 环境变量中以冒号分隔的模块列表中。
4192 media-libs libcanberra gtk3 Enables building of gtk+3 helper library, gtk+3 runtime sound effects and the canberra-gtk-play utility. To enable the gtk+3 sound effects add canberra-gtk-module to the colon separated list of modules in the GTK_MODULES environment variable. 支持构建 gtk+3 助手库、gtk+3 运行时音效和 canberra-gtk-play 实用程序。要启用 gtk+3 音效,请将 canberra-gtk-module 添加到 GTK_MODULES 环境变量中以冒号分隔的模块列表中。
4193 media-libs libcanberra pulseaudio Enables PulseAudio sound driver that should be able to support positional event sounds. This is the preferred choice for best sound events experience and picked by default if compiled in and possible to use at runtime. 启用应该能够支持位置事件声音的 PulseAudio 声音驱动程序。这是获得最佳声音事件体验的首选,如果已编译并可以在运行时使用,则默认选择此选项。
4194 media-libs libcanberra sound Install x11-themes/sound-theme-freedesktop to get sounds on Gnome and Xfce. 安装 x11-themes/sound-theme-freedesktop 以在 Gnome 和 Xfce 上获取声音。
4195 media-libs libcanberra tdb Enables Trivial Database support for caching purposes. 启用用于缓存目的的普通数据库支持。
4196 media-libs libde265 dec265 Enable build of dec265 example program 启用 dec265 示例程序的构建
4197 media-libs libde265 enc265 Enable build of enc265 tool 启用 enc265 工具的构建
4198 media-libs libde265 sdl Enable video output of dec265 example program with media-libs/libsdl 使用 media-libs/libsdl 启用 dec265 示例程序的视频输出
4199 media-libs libde265 tools Enable installation of varous binary tools 启用各种二进制工具的安装
4200 media-libs libepoxy egl Enable EGL support. 启用 EGL 支持。
4201 media-libs libextractor apparmor Enable apparmor support using sys-libs/libapparmor 使用 sys-libs/libapparmor 启用 apparmor 支持
4202 media-libs libextractor archive Enable archive support using app-arch/libarchive 使用 app-arch/libarchive 启用归档支持
4203 media-libs libextractor gsf Enable OLE2 (MS Office) plug-in support using gnome-extra/libgsf 使用 gnome-extra/libgsf 启用 OLE2 (MS Office) 插件支持
4204 media-libs libextractor midi Enable MIDI support through media-libs/libsmf 通过 media-libs/libsmf 启用 MIDI 支持
4205 media-libs libffado test-programs Install standalone test programs 安装独立的测试程序
4206 media-libs libggi 3dfx Enables support for Voodoo chipsets, also called 3DFX and TDFX 支持 Voodoo 芯片组,也称为 3DFX 和 TDFX
4207 media-libs libggi vis Enables sparc vis support for libggi 启用对 libggi 的 sparc vis 支持
4208 media-libs libgphoto2 serial Enable serial port support 启用串行端口支持
4209 media-libs libgpod gtk Enable ArtworkDB support 启用 ArtworkDB 支持
4210 media-libs libgroove chromaprint Enable audio fingerprinting using media-libs/chromaprint. 使用 media-libs/chromaprint 启用音频指纹识别。
4211 media-libs libgroove loudness Enable loudness detection according to the EBU R128 standard using media-libs/libebur128. 使用 media-libs/libebur128 根据 EBU R128 标准启用响度检测。
4212 media-libs libgroove sound Enable audio playing. 启用音频播放。
4213 media-libs libheif aom Use media-libs/libaom for AVIF encoding/decoding 使用 media-libs/libaom 进行 AVIF 编码/解码
4214 media-libs libheif gdk-pixbuf Enable x11-libs/gdk-pixbuf plugin 启用 x11-libs/gdk-pixbuf 插件
4215 media-libs libheif go Enable building dev-lang/go code/examples 启用构建 dev-lang/go 代码/示例
4216 media-libs libheif rav1e Use media-video/rav1e for AVIF encoding 使用 media-video/rav1e 进行 AVIF 编码
4217 media-libs libheif x265 Use media-libs/x265 for HEIF encoding 使用 media-libs/x265 进行 HEIF 编码
4218 media-libs libjxl gdk-pixbuf Build a gdk-pixbuf loader 构建一个 gdk-pixbuf 加载器
4219 media-libs libjxl gimp210 Enable plugin for GIMP 2.10.x series 为 GIMP 2.10.x 系列启用插件
4220 media-libs liblastfm fingerprint Build the lastfm-fingerprint library 构建 lastfm-fingerprint 库
4221 media-libs libmp4v2 utils Install command-line utilities 安装命令行实用程序
4222 media-libs libmypaint gegl Add support for media-libs/gegl 添加对 media-libs/gegl 的支持
4223 media-libs libopenglrecorder openh264 Enable H.264 support using media-libs/openh264 使用 media-libs/openh264 启用 H.264 支持
4224 media-libs libopenglrecorder vpx Enable VP8/VP9 codec support via media-libs/libvpx 通过 media-libs/libvpx 启用 VP8/VP9 编解码器支持
4225 media-libs libopenshot opencv Enable media-libs/opencv support 启用媒体库/opencv 支持
4226 media-libs libpagemaker tools Build command line file format conversion tools 构建命令行文件格式转换工具
4227 media-libs libpano13 suitesparse Use Sparse Levenberg Marquardt algorithm instead of dense Levenberg Marquardt algorithm 使用稀疏 Levenberg Marquardt 算法代替密集 Levenberg Marquardt 算法
4228 media-libs libplacebo glslang Use dev-util/glslang to compile GLSL 使用 dev-util/glslang 编译 GLSL
4229 media-libs libplacebo lcms Add support for color management via media-libs/lcms 通过 media-libs/lcms 添加对色彩管理的支持
4230 media-libs libplacebo shaderc Use media-libs/shaderc to compile GLSL 使用 media-libs/shaderc 编译 GLSL
4231 media-libs libplacebo vulkan Add support for the vulkan graphics API 添加对 vulkan 图形 API 的支持
4232 media-libs libpng apng support unofficial APNG (Animated PNG) spec 支持非官方的 APNG(动画 PNG)规范
4233 media-libs libprojectm gles2 Provide support for OpenGL ES 2 and 3 提供对 OpenGL ES 2 和 3 的支持
4234 media-libs libpulse asyncns Use libasyncns for asynchronous name resolution. 使用 libasyncns 进行异步名称解析。
4235 media-libs libpulse doc Build the doxygen-described API documentation. 构建 doxygen 描述的 API 文档。
4236 media-libs libpulse glib Add support to dev-libs/glib-based mainloop for the libpulse client library, to allow using libpulse on glib-based programs. 为 libpulse 客户端库添加对基于 dev-libs/glib 的 mainloop 的支持,以允许在基于 glib 的程序上使用 libpulse。
4237 media-libs libpulse valgrind Compile in valgrind memory hints 在 valgrind 内存提示中编译
4238 media-libs libsdl joystick Control joystick support (disable at your own risk) 控制操纵杆支持(禁用风险自负)
4239 media-libs libsdl sound Control audio support (disable at your own risk) 控制音频支持(禁用风险自负)
4240 media-libs libsdl tslib Build with tslib support for touchscreen devices 构建对触摸屏设备的 tslib 支持
4241 media-libs libsdl video Control video support (disable at your own risk) 控制视频支持(禁用风险自负)
4242 media-libs libsdl2 fcitx4 Enable support for app-i18n/fcitx 4 启用对 app-i18n/fcitx 4 的支持
4243 media-libs libsdl2 gles1 include OpenGL ES 1.0 support 包括 OpenGL ES 1.0 支持
4244 media-libs libsdl2 gles2 include OpenGL ES 2.0 support 包括 OpenGL ES 2.0 支持
4245 media-libs libsdl2 haptic Enable the haptic (force feedback) subsystem 启用触觉(力反馈)子系统
4246 media-libs libsdl2 ibus Enable support for app-i18n/ibus 启用对 app-i18n/ibus 的支持
4247 media-libs libsdl2 joystick Control joystick support (disable at your own risk) 控制操纵杆支持(禁用风险自负)
4248 media-libs libsdl2 kms Build the KMSDRM video driver 构建 KMSDRM 视频驱动程序
4249 media-libs libsdl2 pipewire Enable support for the media-video/pipewire audio backend 启用对 media-video/pipewire 音频后端的支持
4250 media-libs libsdl2 sndio Enable support for the media-sound/sndio backend 启用对 media-sound/sndio 后端的支持
4251 media-libs libsdl2 sound Control audio support (disable at your own risk) 控制音频支持(禁用风险自负)
4252 media-libs libsdl2 video Control video support (disable at your own risk) 控制视频支持(禁用风险自负)
4253 media-libs libsdl2 vulkan Enable Vulkan support 启用 Vulkan 支持
4254 media-libs libtgvoip dsp Enable signal processing (echo cancellation, noise suppression, and automatic gain control) 启用信号处理(回声消除、噪声抑制和自动增益控制)
4255 media-libs libvisio tools Build conversion tools 构建转换工具
4256 media-libs libvmaf embed-models Compile default vmaf models into the library (needs app-editors/vim-core) 将默认 vmaf 模型编译到库中(需要 app-editors/vim-core)
4257 media-libs libvpx highbitdepth Enable 10 and 12 bit support for VP9. 为 VP9 启用 10 位和 12 位支持。
4258 media-libs libvpx postproc Enable additional post processing filters 启用其他后处理过滤器
4259 media-libs libwebp swap-16bit-csp Enable byte swapping for 16 bit colorspace 为 16 位色彩空间启用字节交换
4260 media-libs libzmf tools Build conversion tools 构建转换工具
4261 media-libs lilv dyn-manifest Add LV2 Dynamic Manifest support. See http://lv2plug.in/ns/ext/dynmanifest/ 添加 LV2 动态清单支持。见http://lv2plug.in/ns/ext/dynmanifest/
4262 media-libs lsp-plugins lv2 build lv2 plugins 构建 lv2 插件
4263 media-libs lv2 plugins Enables examples plugins. 启用示例插件。
4264 media-libs lvtk gtk2 Enable x11-libs/gtk+:2 based GUI support 启用基于 x11-libs/gtk+:2 的 GUI 支持
4265 media-libs lvtk tools Compile and install ttl2c tool 编译安装ttl2c工具
4266 media-libs mesa d3d9 Enable Direct 3D9 API through Nine state tracker. Can be used together with patched wine. 通过九状态跟踪器启用 Direct 3D9 API。可与补丁酒一起使用。
4267 media-libs mesa gles1 Enable GLESv1 support. 启用 GLESv1 支持。
4268 media-libs mesa gles2 Enable GLESv2 support. 启用 GLESv2 支持。
4269 media-libs mesa llvm Enable LLVM backend for Gallium3D. 为 Gallium3D 启用 LLVM 后端。
4270 media-libs mesa lm-sensors Enable Gallium HUD lm-sensors support. 启用镓 HUD lm 传感器支持。
4271 media-libs mesa opencl Enable the Clover Gallium OpenCL state tracker. 启用 Clover Gallium OpenCL 状态跟踪器。
4272 media-libs mesa osmesa Build the Mesa library for off-screen rendering. 为离屏渲染构建 Mesa 库。
4273 media-libs mesa proprietary-codecs Enable codecs for patent-encumbered audio and video formats. 为受专利保护的音频和视频格式启用编解码器。
4274 media-libs mesa valgrind Compile in valgrind memory hints 在 valgrind 内存提示中编译
4275 media-libs mesa vdpau Enable the VDPAU acceleration interface for the Gallium3D Video Layer. 为 Gallium3D 视频层启用 VDPAU 加速接口。
4276 media-libs mesa vulkan Enable Vulkan drivers 启用 Vulkan 驱动程序
4277 media-libs mesa vulkan-overlay Build vulkan-overlay-layer which displays Frames Per Second and other statistics 构建显示每秒帧数和其他统计信息的 vulkan-overlay-layer
4278 media-libs mesa wayland Enable support for dev-libs/wayland 启用对 dev-libs/wayland 的支持
4279 media-libs mesa xa Enable the XA (X Acceleration) API for Gallium3D. 为 Gallium3D 启用 XA(X 加速)API。
4280 media-libs mesa xvmc Enable the XvMC acceleration interface for the Gallium3D Video Layer. 为 Gallium3D 视频层启用 XvMC 加速接口。
4281 media-libs mesa zink Enable the Zink OpenGL-over-Vulkan Gallium driver 启用 Zink OpenGL-over-Vulkan Gallium 驱动程序
4282 media-libs mesa-amber gles1 Enable GLESv1 support. 启用 GLESv1 支持。
4283 media-libs mesa-amber gles2 Enable GLESv2 support. 启用 GLESv2 支持。
4284 media-libs mesa-amber valgrind Compile in valgrind memory hints 在 valgrind 内存提示中编译
4285 media-libs mesa-amber wayland Enable support for dev-libs/wayland 启用对 dev-libs/wayland 的支持
4286 media-libs mlt frei0r Build the module for media-plugins/frei0r-plugins 为 media-plugins/frei0r-plugins 构建模块
4287 media-libs mlt opencv Build motion tracking module using media-libs/opencv 使用 media-libs/opencv 构建运动跟踪模块
4288 media-libs mlt python Build SWIG bindings for Python 为 Python 构建 SWIG 绑定
4289 media-libs mlt rtaudio Builds rtaudio consumer for native audio support on multiple platforms 为多个平台上的原生音频支持构建 rtaudio 消费者
4290 media-libs mlt rubberband Enable audio pitch-shifting using media-libs/rubberband 使用 media-libs/rubberband 启用音频音高转换
4291 media-libs mlt vidstab Enabled video stabilization with media-libs/vidstab 使用 media-libs/vidstab 启用视频稳定功能
4292 media-libs netpbm rle Build converters for the RLE format (utah raster toolkit) 为 RLE 格式构建转换器(犹他州光栅工具包)
4293 media-libs openal sndio Enable support for the media-sound/sndio backend 启用对 media-sound/sndio 后端的支持
4294 media-libs opencv contrib Install user contributed scripts from opencv_contrib (Experimental!) 从 opencv_contrib 安装用户贡献的脚本(实验!)
4295 media-libs opencv contribcvv CVV module requires Qt5 CVV 模块需要 Qt5
4296 media-libs opencv contribdnn DNN module contrib requires tiny dnn DNN 模块 contrib 需要很小的 dnn
4297 media-libs opencv contribfreetype Enable Drawing UTF-8 strings with freetype/harfbuzz 启用使用 freetype/harfbuzz 绘制 UTF-8 字符串
4298 media-libs opencv contribhdf HDF module requires sci-libs/hdf5 HDF 模块需要 sci-libs/hdf5
4299 media-libs opencv contribovis Enable Ogre vision module support 启用 Ogre 视觉模块支持
4300 media-libs opencv contribsfm SFM module requires eigen, gflags, and glog SFM 模块需要 eigen、gflags 和 glog
4301 media-libs opencv contribxfeatures2d Enables xfeatures2d and autodownload of samples in contrib 在 contrib 中启用 xfeatures2d 和自动下载示例
4302 media-libs opencv cuda Enable NVIDIA Cuda computations support (Experimental!) 启用 NVIDIA Cuda 计算支持(实验性!)
4303 media-libs opencv dnnsamples Download dnn caffeemodel samples 下载 dnn caffeemodel 示例
4304 media-libs opencv download Enable download during cmake configure 在 cmake 配置期间启用下载
4305 media-libs opencv eigen Enable usage of dev-cpp/eigen for computations 允许使用 dev-cpp/eigen 进行计算
4306 media-libs opencv features2d Enable features2d module 启用 features2d 模块
4307 media-libs opencv gdal Enable support for sci-libs/gdal library 启用对 sci-libs/gdal 库的支持
4308 media-libs opencv gflags Use Google's C++ argument parsing library 使用 Google 的 C++ 参数解析库
4309 media-libs opencv glog Use Google's C++ loggin library 使用 Google 的 C++ 登录库
4310 media-libs opencv gtk3 Enable x11-libs/gtk+:3 support 启用 x11-libs/gtk+:3 支持
4311 media-libs opencv lto Build using Link Time Optimizations (LTO) 使用链接时间优化 (LTO) 构建
4312 media-libs opencv opencl Add support for OpenCL 添加对 OpenCL 的支持
4313 media-libs opencv opencvapps Enable compilation with opencvapps 使用 opencvapps 启用编译
4314 media-libs opencv tesseract Use Google's OCR Engine 使用 Google 的 OCR 引擎
4315 media-libs opencv testprograms Build and install programs for testing OpenCV (performance) 构建和安装用于测试 OpenCV(性能)的程序
4316 media-libs opencv vtk Build new 3D visualization module viz based on sci-libs/vtk 基于 sci-libs/vtk 构建新的 3D 可视化模块即
4317 media-libs openexr large-stack Enables code to take advantage of large stack support. 使代码能够利用大堆栈支持。
4318 media-libs openexr utils Build several binary tools for verifying and manipulating EXR files. 构建几个用于验证和操作 EXR 文件的二进制工具。
4319 media-libs openh264 plugin Install the Gecko Media Plugin (GMP) for use with Mozilla packages 安装 Gecko 媒体插件 (GMP) 以与 Mozilla 软件包一起使用
4320 media-libs openh264 utils Install the CLI encoder and decoder utilities 安装 CLI 编码器和解码器实用程序
4321 media-libs openimageio dicom Enable DICOM medical image file support via sci-libs/dcmtk 通过 sci-libs/dcmtk 启用 DICOM 医学图像文件支持
4322 media-libs openimageio opencv Enable OpenCV support via media-libs/opencv 通过 media-libs/opencv 启用 OpenCV 支持
4323 media-libs openimageio openvdb Enable OpenVDB support via media-gfx/openvdb 通过 media-gfx/openvdb 启用 OpenVDB 支持
4324 media-libs openimageio ptex Enable Ptex texture mapping system file support via media-libs/ptex 通过 media-libs/ptex 启用 Ptex 纹理映射系统文件支持
4325 media-libs opensubdiv cuda Enable NVIDIA CUDA Toolkit support through dev-util/nvidia-cuda-toolkit 通过 dev-util/nvidia-cuda-toolkit 启用 NVIDIA CUDA Toolkit 支持
4326 media-libs opensubdiv opencl Enable OpenCL support through virtual/opencl 通过 virtual/opencl 启用 OpenCL 支持
4327 media-libs opensubdiv ptex Adds support for faster per-face texture mapping through media-libs/ptex 通过 media-libs/ptex 添加对更快的每面纹理映射的支持
4328 media-libs opensubdiv tbb Enable multithreading with the Intel Threads Building Blocks through dev-cpp/tbb 通过 dev-cpp/tbb 使用英特尔线程构建模块启用多线程
4329 media-libs opensubdiv tutorials Install the tutorials 安装教程
4330 media-libs opus custom-modes Enable non-Opus modes, e.g. 44.1 kHz and 2^n frames 启用非 Opus 模式,例如 44.1 kHz 和 2^n 帧
4331 media-libs opusfile fixed-point Enable fixed-point arithmetic operations 启用定点算术运算
4332 media-libs opusfile float Enable floating point arithmetic operations 启用浮点算术运算
4333 media-libs opusfile http Enable http connections 启用 http 连接
4334 media-libs osl partio Use media-libs/partio 使用媒体库/partio
4335 media-libs osl qt5 Build the osltoy binary 构建 osltoy 二进制文件
4336 media-libs phonon designer Install plugin for dev-qt/designer 为 dev-qt/designer 安装插件
4337 media-libs phonon vlc Install VLC Phonon backend 安装 VLC Phonon 后端
4338 media-libs phonon-gstreamer network Enable network streaming support via libsoup 通过 libsoup 启用网络流支持
4339 media-libs portmidi test-programs Install various example programs 安装各种示例程序
4340 media-libs qtav gui Build a video player gui 构建视频播放器 gui
4341 media-libs quarter designer Install plugin for dev-qt/designer 为 dev-qt/designer 安装插件
4342 media-libs quarter qthelp Build API documentation in QtHelp format 以 QtHelp 格式构建 API 文档
4343 media-libs raptor json Enable support for JSON parsing 启用对 JSON 解析的支持
4344 media-libs raspberrypi-userland-bin hardfp Use armv6 hardfp ABI 使用 armv6 hardfp ABI
4345 media-libs rubberband jni Enables building of Java Native Interface library 允许构建 Java Native Interface 库
4346 media-libs rubberband programs Builds also executable applications 还构建可执行应用程序
4347 media-libs rubberband vamp Enables vamp plugins support (Audio analysing plugins) 启用 vamp 插件支持(音频分析插件)
4348 media-libs sdl-mixer fluidsynth Use media-sound/fluidsynth for MIDI support 使用 media-sound/fluidsynth 支持 MIDI
4349 media-libs sdl-mixer midi basic support for MIDI files 对 MIDI 文件的基本支持
4350 media-libs sdl-mixer mod basic support for MOD files 对 MOD 文件的基本支持
4351 media-libs sdl-mixer playtools Install playwave and playmus tools (useful for testing) 安装 playwave 和 playmus 工具(用于测试)
4352 media-libs sdl-mixer smpeg Use media-libs/smpeg for MP3 support 使用 media-libs/smpeg 支持 MP3
4353 media-libs sdl-mixer wav support WAVE files 支持 WAVE 文件
4354 media-libs sdl-sound physfs Enable support for various formats through dev-games/physfs. 通过 dev-games/physfs 启用对各种格式的支持。
4355 media-libs sdl2-image webp support loading WEBP images 支持加载WEBP图片
4356 media-libs sdl2-mixer fluidsynth Use media-sound/fluidsynth for MIDI support 使用 media-sound/fluidsynth 支持 MIDI
4357 media-libs sdl2-mixer midi basic support for MIDI files 对 MIDI 文件的基本支持
4358 media-libs sdl2-mixer mod basic support for MOD files 对 MOD 文件的基本支持
4359 media-libs sdl2-mixer playtools Install playwave and playmus tools (useful for testing) 安装 playwave 和 playmus 工具(用于测试)
4360 media-libs sdl2-mixer tremor enable OGG Vorbis music via libtremor 通过 libtremor 启用 OGG Vorbis 音乐
4361 media-libs sdl2-mixer wav support WAVE files 支持 WAVE 文件
4362 media-libs sdl2-ttf harfbuzz Use media-libs/harfbuzz for enhanced font rendering 使用 media-libs/harfbuzz 增强字体渲染
4363 media-libs sdl_audiolib fluidsynth use media-sound/fluidsynth for MIDI 为 MIDI 使用 media-sound/fluidsynth
4364 media-libs sdl_audiolib mpg123 Enable support for mp3 decoding via media-sound/mpg123 通过 media-sound/mpg123 启用对 mp3 解码的支持
4365 media-libs sdl_audiolib openmpt OpenMPT decoder via media-libs/libopenmpt OpenMPT 解码器通过 media-libs/libopenmpt
4366 media-libs sdl_audiolib soxr Enable SoX Resampler support via media-libs/soxr 通过 media-libs/soxr 启用 SoX Resampler 支持
4367 media-libs sge image enable sdl-image support 启用 sdl-image 支持
4368 media-libs spandsp fixed-point Enable fixed point support 启用定点支持
4369 media-libs speex utils Enables speex commandline utilities (speexenc, speexdec). 启用 speex 命令行实用程序(speexenc、speexdec)。
4370 media-libs speex vbr Enable VBR support. 启用 VBR 支持。
4371 media-libs svgalib kernel-helper Build the helper kernel module 构建辅助内核模块
4372 media-libs tg_owt screencast Enable support for remote desktop and screen cast using media-video/pipewire 使用 media-video/pipewire 启用对远程桌面和屏幕投射的支持
4373 media-libs tremor low-accuracy enable 32bit only multiply operations 仅启用 32 位乘法运算
4374 media-libs urt tools Install tools 安装工具
4375 media-libs vigra valgrind Enable valgrind in make check 在 make check 中启用 valgrind
4376 media-libs vulkan-loader layers Include the vulkan layers 包括 vulkan 层
4377 media-libs waffle egl Enable EGL support 启用 EGL 支持
4378 media-libs waffle gbm Enable support for the Generic Buffer Manager (gbm) 启用对通用缓冲区管理器 (gbm) 的支持
4379 media-libs waffle wayland Enable Wayland support 启用 Wayland 支持
4380 media-libs x264 interlaced enable interlaced encoding support, this can decrease encoding speed by up to 2% 启用隔行编码支持,这可以将编码速度降低多达 2%
4381 media-libs x264 opencl Add support for OpenCL. 添加对 OpenCL 的支持。
4382 media-libs x264 pic disable optimized assembly code that is not PIC friendly 禁用对 PIC 不友好的优化汇编代码
4383 media-libs x265 10bit Add support for producing 10bits HEVC. 添加对生成 10 位 HEVC 的支持。
4384 media-libs x265 12bit Add support for producing 12bits HEVC. 添加对生成 12 位 HEVC 的支持。
4385 media-libs x265 numa Build with support for NUMA nodes. 构建支持 NUMA 节点。
4386 media-libs x265 pic Disable optimized assembly code that is not PIC friendly 禁用对 PIC 不友好的优化汇编代码
4387 media-libs xine-lib bluray Enable playback of Blu-ray filesystems using media-libs/libbluray 使用 media-libs/libbluray 启用蓝光文件系统的播放
4388 media-libs xine-lib dav1d Enable support for media-libs/dav1d AV1 decoder 启用对 media-libs/dav1d AV1 解码器的支持
4389 media-libs xine-lib dxr3 Enable support for DXR3 mpeg acceleration cards. 启用对 DXR3 mpeg 加速卡的支持。
4390 media-libs xine-lib flac Build the media-libs/flac based FLAC demuxer and decoder. This flag is not needed for playing FLAC content, neither standalone nor in Ogg container (OggFLAC), but might have better support for exotic features like 24-bit samples or 96kHz sample rates. 构建基于 media-libs/flac 的 FLAC 解复用器和解码器。播放 FLAC 内容不需要此标志,无论是独立播放还是在 Ogg 容器 (OggFLAC) 中播放,但可能对 24 位采样或 96kHz 采样率等奇异特性有更好的支持。
4391 media-libs xine-lib gtk Build the gdkpixbuf-based image decoder plugin. 构建基于 gdkpixbuf 的图像解码器插件。
4392 media-libs xine-lib imagemagick Build the ImageMagick-based image decoder plugin. 构建基于 ImageMagick 的图像解码器插件。
4393 media-libs xine-lib mad Build the media-libs/libmad based mp3 decoder. This mp3 decoder has superior support compared to the one coming from FFmpeg that is used as a fallback. If you experience any bad behaviour with mp3 files (skipping, distorted sound) make sure you enabled this USE flag. 构建基于 media-libs/libmad 的 mp3 解码器。与来自 FFmpeg 的用作后备的解码器相比,此 mp3 解码器具有更好的支持。如果您在使用 mp3 文件时遇到任何不良行为(跳过、失真的声音),请确保您启用了此 USE 标志。
4394 media-libs xine-lib mmap Use mmap() function while reading file from local disks. Using mmap() will use more virtual memory space, but leaves to the Kernel the task of caching the file's data. mmap() access should be faster, but might misbehave if the device where the file resides in is removed during playback. 从本地磁盘读取文件时使用 mmap() 函数。使用 mmap() 将使用更多的虚拟内存空间,但将缓存文件数据的任务留给内核。 mmap() 访问应该更快,但如果文件所在的设备在播放期间被删除,则可能会出现异常。
4395 media-libs xine-lib nfs Allow accessing NFS shares via net-fs/libnfs. 允许通过 net-fs/libnfs 访问 NFS 共享。
4396 media-libs xine-lib sftp Use net-libs/libssh2 to access SFTP servers. 使用 net-libs/libssh2 访问 SFTP 服务器。
4397 media-libs xine-lib truetype Use media-libs/freetype for font rendering and media-libs/fontconfig for font discovery. Enabling this USE flag will allow OSD (such as subtitles) to use more advanced font and to more easily select which font to use. The support for TrueType fonts in xine-lib is still experimental, and might not be as good looking as the bitmap fonts used with this USE flag disabled. 使用 media-libs/freetype 进行字体渲染,使用 media-libs/fontconfig 进行字体发现。启用此 USE 标志将允许 OSD(例如字幕)使用更高级的字体并更轻松地选择要使用的字体。 xine-lib 中对 TrueType 字体的支持仍处于试验阶段,可能不如禁用此 USE 标志的位图字体好看。
4398 media-libs xine-lib vdr Build the VDR plugin 构建 VDR 插件
4399 media-libs xine-lib vidix Enable support for vidix video output. 启用对 vidix 视频输出的支持。
4400 media-libs xine-lib vis Adds support for SIMD optimizations for UltraSPARC processors. 添加了对 UltraSPARC 处理器的 SIMD 优化的支持。
4401 media-libs xine-lib vpx Enable VP8 codec support via media-libs/libvpx. 通过 media-libs/libvpx 启用 VP8 编解码器支持。
4402 media-libs xine-lib xvmc Enable support for XVideo Motion Compensation (accelerated mpeg playback). 启用对 XVideo 运动补偿(加速 mpeg 播放)的支持。
4403 media-libs xvid pic disable optimized assembly code that is not PIC friendly 禁用对 PIC 不友好的优化汇编代码
4404 media-libs zita-resampler tools Install zresample and zretune tools 安装 zresample 和 zretune 工具
4405 media-libs zmusic fluidsynth Enable support for MIDI via media-sound/fluidsynth 通过 media-sound/fluidsynth 启用对 MIDI 的支持
4406 media-libs zmusic mpg123 Enable support for MPEG audio playback via media-sound/mpg123 通过 media-sound/mpg123 启用对 MPEG 音频播放的支持
4407 media-plugins alsa-plugins arcam_av Enables Arcam AV control plugin 启用 Arcam AV 控制插件
4408 media-plugins alsa-plugins mix Enables upmix and vdownmix plugin 启用 upmix 和 vdownmix 插件
4409 media-plugins alsa-plugins usb_stream Enables usb_stream plugin 启用 usb_stream 插件
4410 media-plugins audacious-plugins ampache Support controlling audacious via ampache 支持通过ampache控制大胆
4411 media-plugins audacious-plugins bs2b Enable Bauer Bauer stereophonic-to-binaural headphone filter 启用 Bauer Bauer 立体声到双耳耳机滤波器
4412 media-plugins audacious-plugins cue Support CUE sheets using the libcue library 使用 libcue 库支持 CUE 表
4413 media-plugins audacious-plugins fluidsynth Support FluidSynth as MIDI synth backend 支持 FluidSynth 作为 MIDI 合成器后端
4414 media-plugins audacious-plugins gme Support various gaming console music formats 支持各种游戏机音乐格式
4415 media-plugins audacious-plugins http Support HTTP streams through neon 通过 neon 支持 HTTP 流
4416 media-plugins audacious-plugins openmpt Add support for OpenMTP 添加对 OpenMTP 的支持
4417 media-plugins audacious-plugins scrobbler Build with scrobbler/LastFM submission support 使用 scrobbler/LastFM 提交支持构建
4418 media-plugins audacious-plugins sid Build with SID (Commodore 64 Audio) support 使用 SID(Commodore 64 音频)支持构建
4419 media-plugins audacious-plugins soxr Build with SoX Resampler support 使用 SoX Resampler 支持构建
4420 media-plugins audacious-plugins speedpitch Enable speed/pitch effects 启用速度/音高效果
4421 media-plugins audacious-plugins streamtuner Build the streamtuner plugin 构建流调谐器插件
4422 media-plugins calf experimental Enable experimental features/plugins 启用实验性功能/插件
4423 media-plugins calf lv2 Add support for Ladspa V2 添加对 Ladspa V2 的支持
4424 media-plugins frei0r-plugins facedetect Enables building of facedetect plugin, which depends on media-libs/opencv 启用 facedetect 插件的构建,这取决于 media-libs/opencv
4425 media-plugins frei0r-plugins scale0tilt Enables building of scale0tilt and vectorscope plugins, which depend on media-libs/gavl 启用 scale0tilt 和 vectorscope 插件的构建,它们依赖于 media-libs/gavl
4426 media-plugins gkrellmpc threads Use separate thread to init connection (unsafe) 使用单独的线程来初始化连接(不安全)
4427 media-plugins grilo-plugins chromaprint Enable Chromaprint support 启用 Chromaprint 支持
4428 media-plugins grilo-plugins daap Enable dmap support through net-libs/libdmapsharing 通过 net-libs/libdmapsharing 启用 dmap 支持
4429 media-plugins grilo-plugins flickr Enable Flickr support 启用 Flickr 支持
4430 media-plugins grilo-plugins freebox Build support for viewing TV channels using Freebox 构建对使用 Freebox 观看电视频道的支持
4431 media-plugins grilo-plugins gnome-online-accounts Enable net-libs/gnome-online-accounts support 启用 net-libs/gnome-online-accounts 支持
4432 media-plugins grilo-plugins thetvdb Build support for thetvdb.com 构建对 thetvdb.com 的支持
4433 media-plugins grilo-plugins tracker Build support for content discovery using the app-misc/tracker indexer 使用 app-misc/tracker 索引器构建对内容发现的支持
4434 media-plugins grilo-plugins youtube Build support for YouTube content discovery using dev-libs/libgdata 使用 dev-libs/libgdata 构建对 YouTube 内容发现的支持
4435 media-plugins gst-plugins-gtk egl Enable EGL platform usage 启用 EGL 平台使用
4436 media-plugins gst-plugins-gtk gles2 Enable gtkglsink OpenGL sink based on GLESv2 API 基于 GLESv2 API 启用 gtkglsink OpenGL sink
4437 media-plugins gst-plugins-gtk opengl Enable gtkglsink OpenGL sink based on desktop OpenGL API 基于桌面 OpenGL API 启用 gtkglsink OpenGL sink
4438 media-plugins gst-plugins-meta http Enable http streaming via net-libs/libsoup 通过 net-libs/libsoup 启用 http 流
4439 media-plugins gst-plugins-meta libvisual Enable visualization effects via media-libs/libvisual 通过 media-libs/libvisual 启用可视化效果
4440 media-plugins gst-plugins-meta vpx Enables vp8 codec support using libvpx, required to play some HTML5 videos 使用 libvpx 启用 vp8 编解码器支持,播放一些 HTML5 视频需要
4441 media-plugins gst-plugins-vaapi drm Enable DRM renderer 启用 DRM 渲染器
4442 media-plugins gst-plugins-vaapi egl Enable EGL support 启用 EGL 支持
4443 media-plugins gst-plugins-vaapi gles2 Enable GLESv2 and GLESv3 support 启用 GLESv2 和 GLESv3 支持
4444 media-plugins imlib2_loaders eet Enable Eet image loader 启用 Eet 图像加载器
4445 media-plugins imlib2_loaders xcf Enable XCF image loader 启用 XCF 图像加载器
4446 media-plugins ir_lv2 tools Build convert4chan tool 构建 convert4chan 工具
4447 media-plugins mythplugins cdr Allows MythMusic to burn CD-Rs 允许 MythMusic 刻录 CD-R
4448 media-plugins mythplugins exif Allows MythGallery to read EXIF data from photos 允许 MythGallery 从照片中读取 EXIF 数据
4449 media-plugins mythplugins fftw Adds visual effects to MythMusic when playing back music 播放音乐时为 MythMusic 添加视觉效果
4450 media-plugins mythplugins hls HTTP Live Streaming support HTTP 实时流媒体支持
4451 media-plugins mythplugins mytharchive Allows you to archive recorded content to CD or DVD 允许您将录制的内容存档到 CD 或 DVD
4452 media-plugins mythplugins mythgame Adds a frontend to various ROM emulators within MythTV 在 MythTV 中为各种 ROM 模拟器添加前端
4453 media-plugins mythplugins mythnetvision Adds the ability to view netvision devices within MythTV 添加在 MythTV 中查看网络设备的功能
4454 media-plugins mythplugins mythweather Adds weather information within MythTV 在 MythTV 中添加天气信息
4455 media-plugins mythplugins mythzmserver Build mythzmserver daemon needed by zoneminder on LAN 在 LAN 上构建 zoneminder 所需的 mythzmserver 守护进程
4456 media-plugins mythplugins mythzoneminder Adds support for zoneminder (requires active mythzmserver daemon on LAN). 添加对 zoneminder 的支持(需要 LAN 上的活动 myzmserver 守护程序)。
4457 media-plugins mythplugins raw Allows MythGallery to view photos saved in RAW format 允许 MythGallery 查看以 RAW 格式保存的照片
4458 media-plugins vdr-burn dvdarchive DMH DVD - Archive DMH DVD - 存档
4459 media-plugins vdr-cdplayer cdparanoia Enable cdparanoia (audio CD ripper) support 启用 cdparanoia(音频 CD 开膛手)支持
4460 media-plugins vdr-dvbapi dvbcsa use media-libs/libdvbcsa free implementation of the DVB Common Scrambling Algorithm 使用媒体库/libdvbcsa 免费实现 DVB 通用加扰算法
4461 media-plugins vdr-epgsearch conflictcheckonly install the "conflictcheckonly" vdr-plugin 安装“conflictcheckonly”vdr-plugin
4462 media-plugins vdr-epgsearch epgsearchonly install the "epgsearchonly" vdr-plugin 安装“epgsearchonly”vdr 插件
4463 media-plugins vdr-epgsearch quicksearch install the "quicksearch" vdr-plugin 安装“快速搜索”vdr-plugin
4464 media-plugins vdr-epgsearch tre Add support for unlimited fuzzy searching with help of dev-libs/tre library 在 dev-libs/tre 库的帮助下添加对无限模糊搜索的支持
4465 media-plugins vdr-streamdev client Compile the VDR plugin vdr-streamdev-client that acts like a dvb-budget card 编译像 dvb-budget 卡一样的 VDR 插件 vdr-streamdev-client
4466 media-plugins vdr-streamdev server Compile the VDR plugin vdr-streamdev-server that allows remote systems to access the DVB cards used for the local VDR 编译允许远程系统访问用于本地 VDR 的 DVB 卡的 VDR 插件 vdr-streamdev-server
4467 media-plugins vdr-vdrmanager stream Add support for streaming Video to Android client 添加对流视频到 Android 客户端的支持
4468 media-plugins vdr-weatherng dxr3 enables lower osd color depth for dxr3 cards 为 dxr3 卡启用较低的 osd 颜色深度
4469 media-plugins vdr-xineliboutput bluray Enable BluRay metadata support through media-libs/libbluray 通过 media-libs/libbluray 启用 BluRay 元数据支持
4470 media-plugins vdr-xineliboutput cec Enable CEC support through dev-libs/libcec 通过 dev-libs/libcec 启用 CEC 支持
4471 media-plugins vdr-xineliboutput libextractor Use media-libs/libextractor to gather files' metadata in media-player 使用 media-libs/libextractor 在媒体播放器中收集文件的元数据
4472 media-plugins vdr-xineliboutput vdr Compile the vdr output plugin to use local or remote xine as output 编译 vdr 输出插件以使用本地或远程 xine 作为输出
4473 media-plugins vdr-xineliboutput xine Compile the xine input plugin for displaying vdr video and OSD 编译用于显示 vdr 视频和 OSD 的 xine 输入插件
4474 media-radio ax25-tools X Enable some X based configuration tools. 启用一些基于 X 的配置工具。
4475 media-radio direwolf hamlib Enables support by the Hamlib amateur radio rig control library 启用 Hamlib 业余无线电钻机控制库的支持
4476 media-radio fldigi hamlib Enables support by the Hamlib amateur radio rig control library to get/set frequency and mode of the ham radio in use 启用 Hamlib 业余无线电装备控制库的支持,以获取/设置正在使用的业余无线电的频率和模式
4477 media-radio tucnak hamlib Enables support by the Hamlib amateur radio rig control library to get/set frequency and mode of the ham radio 支持 Hamlib 业余无线电装备控制库以获取/设置业余无线电的频率和模式
4478 media-radio unixcw ncurses Enables building the curses based morse code tutor program 'cwcp'. 允许构建基于诅咒的摩尔斯电码导师程序“cwcp”。
4479 media-radio xastir geotiff Install geotiff support. Allows using USGS DRG topo maps or other types of geotiff mapes/images 安装 geotiff 支持。允许使用 USGS DRG 地形图或其他类型的 geotiff 地图/图像
4480 media-sound abcde aiff Enable support for Audio Interchange File Format (AIFF) output encoding 启用对音频交换文件格式 (AIFF) 输出编码的支持
4481 media-sound abcde id3tag Support ID3, ID3v2 tagging of audio files 支持音频文件的ID3、ID3v2标记
4482 media-sound abcde mac Enable support for Monkey's Audio files 启用对 Monkey 的音频文件的支持
4483 media-sound abcde normalize Add support for normalizing audio file volume levels 添加对标准化音频文件音量级别的支持
4484 media-sound abcde replaygain Support for Replay Gain metadata, for relative volume adjustment 支持 Replay Gain 元数据,用于相对音量调整
4485 media-sound abcm2ps pango Use the pango library to render fonts with non-latin characters 使用 pango 库渲染带有非拉丁字符的字体
4486 media-sound alsa-utils bat install basic audio tester (BAT) util 安装基本音频测试仪 (BAT) 实用程序
4487 media-sound alsa-utils libsamplerate install utils that use libsamplerate (e.g. alsaloop) 安装使用 libsamplerate 的工具(例如 alsaloop)
4488 media-sound alsa-utils ncurses install utils that use ncurses (e.g. alsamixer) 安装使用 ncurses 的实用程序(例如 alsamixer)
4489 media-sound alsaplayer id3tag Enables ID3 tagging with id3tag library 使用 id3tag 库启用 ID3 标记
4490 media-sound amsynth dssi Enable support for DSSI Soft Synth Interface 启用对 DSSI 软合成器接口的支持
4491 media-sound amsynth lv2 Add support for Ladspa V2 添加对 Ladspa V2 的支持
4492 media-sound amsynth nsm Build support for Non Session Manager 构建对非会话管理器的支持
4493 media-sound amsynth vst Build VST plug-in 构建 VST 插件
4494 media-sound apulse sdk Install PulseAudio headers and pkg-config files. Be aware apulse is not a full PulseAudio replacement by design and some functionality may be missing. 安装 PulseAudio 头文件和 pkg-config 文件。请注意,apulse 在设计上并不是一个完整的 PulseAudio 替代品,并且可能缺少某些功能。
4495 media-sound aqualung ifp Enable support for iRiver iFP portable audio players 启用对 iRiver iFP 便携式音频播放器的支持
4496 media-sound aqualung lua Enable support for programmable title formatting with dev-lang/lua 使用 dev-lang/lua 启用对可编程标题格式的支持
4497 media-sound aqualung mac Enable support for decoding Monkey's Audio files 启用对 Monkey's Audio 文件解码的支持
4498 media-sound aqualung podcast Enable podcast support 启用播客支持
4499 media-sound aqualung systray Enable system tray support 启用系统托盘支持
4500 media-sound ardour phonehome contact ardour.org at startup for new announcements 在启动时联系 ardour.org 以获取新公告
4501 media-sound ario idle Enable experimental support for MPD's idle command to reduce bandwidth and cpu usage, requires MPD 0.14 启用对 MPD 的空闲命令的实验性支持以减少带宽和 CPU 使用率,需要 MPD 0.14
4502 media-sound asunder mac Support for creation of Monkey's Audio files (APE) 支持创建 Monkey's Audio 文件 (APE)
4503 media-sound audacity id3tag Enables ID3 tagging with id3tag library 使用 id3tag 库启用 ID3 标记
4504 media-sound audacity lv2 Add support for Ladspa V2 添加对 Ladspa V2 的支持
4505 media-sound audacity portmidi Enable support for MIDI via media-libs/portmidi 通过 media-libs/portmidi 启用对 MIDI 的支持
4506 media-sound audacity portmixer Enable the internal portmixer feature 启用内部端口混合器功能
4507 media-sound audacity portsmf Enable support for Portable Standard Midi File Library 启用对便携式标准 Midi 文件库的支持
4508 media-sound audacity sbsms Enables sbsms library support for slower, more accurate pitch and tempo changing 启用 sbsms 库支持,以实现更慢、更准确的音高和速度变化
4509 media-sound audacity twolame Enables twolame support (MPEG Audio Layer 2 encoder) 启用双重支持(MPEG 音频第 2 层编码器)
4510 media-sound audacity vamp Enables vamp plugins support (Audio analysing plugins) 启用 vamp 插件支持(音频分析插件)
4511 media-sound audacity vst Enable VST plugin support 启用 VST 插件支持
4512 media-sound audiotools cue Enable CUE sheet support 启用 CUE 表支持
4513 media-sound audiotools dvda Enable DVD-Audio support 启用 DVD 音频支持
4514 media-sound audiotools twolame Enable twolame support (MPEG Audio Layer 2 encoder) 启用 twolame 支持(MPEG 音频第 2 层编码器)
4515 media-sound bluez-alsa aptx aptX (HD) over Bluetooth (many Android compatible headphones) aptX (HD) over Bluetooth(许多 Android 兼容耳机)
4516 media-sound bluez-alsa hcitop Enable top-like monitoring tool for HCI 为 HCI 启用 top-like 监控工具
4517 media-sound bluez-alsa ldac Enable support for AOSP media-libs/libldac dispatcher 启用对 AOSP 媒体库/libldac 调度程序的支持
4518 media-sound bluez-alsa mpg123 Enable support for MPEG audio playback via media-sound/mpg123 通过 media-sound/mpg123 启用对 MPEG 音频播放的支持
4519 media-sound bluez-alsa ofono Enable ofono elephony support 启用 ofono elephony 支持
4520 media-sound cadence a2jmidid Enables support for legacy ALSA sequencer applications in JACK MIDI system 支持 JACK MIDI 系统中的传统 ALSA 音序器应用程序
4521 media-sound cantata cdio Use dev-libs/libcdio-paranoia for CD support (instead of cdparanoia) 使用 dev-libs/libcdio-paranoia 来支持 CD(而不是 cdparanoia)
4522 media-sound cantata http-server Enable internal HTTP server to play non-MPD files 启用内部 HTTP 服务器以播放非 MPD 文件
4523 media-sound cantata replaygain Enable ReplayGain support, for relative volume adjustments 启用 ReplayGain 支持,用于相对音量调整
4524 media-sound cantata streaming Enable playback of MPD HTTP streams using LibVLC (media-video/vlc) 使用 LibVLC (media-video/vlc) 启用 MPD HTTP 流的播放
4525 media-sound cava sndio Enable support for the media-sound/sndio backend 启用对 media-sound/sndio 后端的支持
4526 media-sound clementine box Enable filesharing via Box.com 通过 Box.com 启用文件共享
4527 media-sound clementine dropbox Enable Dropbox support 启用 Dropbox 支持
4528 media-sound clementine googledrive Enable Google Drive support 启用 Google 云端硬盘支持
4529 media-sound clementine lastfm Use liblastfm for fetching song info, scrobbling and radio streams 使用 liblastfm 获取歌曲信息、加密和广播流
4530 media-sound clementine moodbar Enable moodbar support 启用情绪栏支持
4531 media-sound clementine projectm Build with ProjectM visualization 使用 ProjectM 可视化构建
4532 media-sound clementine seafile Enable support for seafile: a file sync service 启用对 seafile 的支持:文件同步服务
4533 media-sound clementine skydrive Enable Skydrive support 启用 Skydrive 支持
4534 media-sound clementine wiimote Enable support for Wii remote 启用对 Wii 遥控器的支持
4535 media-sound cmus cdio Use libcdio for CD support 使用 libcdio 获得 CD 支持
4536 media-sound cmus discid Enable reading the ID of the inserted CD 启用读取插入 CD 的 ID
4537 media-sound cmus elogind Enable MPRIS support via sys-auth/elogind 通过 sys-auth/elogind 启用 MPRIS 支持
4538 media-sound cmus pidgin Install support script for net-im/pidgin 为 net-im/pidgin 安装支持脚本
4539 media-sound cmus systemd Enable MPRIS support via sys-apps/systemd 通过 sys-apps/systemd 启用 MPRIS 支持
4540 media-sound cmus tremor Use libivorbis from media-libs/tremor instead of media-libs/libvorbis 使用来自 media-libs/tremor 的 libivorbis 而不是 media-libs/libvorbis
4541 media-sound csound beats Build the beats score frontend 构建节拍分数前端
4542 media-sound csound chua Build the chua opcodes 构建 Chua 操作码
4543 media-sound csound double-precision Use double-precision floating point for audio samples 对音频样本使用双精度浮点
4544 media-sound csound dssi Build the DSSI opcodes 构建 DSSI 操作码
4545 media-sound csound fluidsynth Build the fluidsynth opcodes 构建流体合成器操作码
4546 media-sound csound keyboard Build Virtual MIDI keyboard 构建虚拟 MIDI 键盘
4547 media-sound csound linear Build the linear algebra Opcodes 构建线性代数操作码
4548 media-sound csound portmidi Build the PortMIDI I/O module 构建 PortMIDI I/O 模块
4549 media-sound csound samples Install the HRTF datafiles for use with hrtfmove, hrtfmove2, hrtfstat, hrtfearly, and hrtfreverb 安装 HRTF 数据文件以用于 hrtfmove、hrtfmove2、hrtfstat、hrtfearly 和 hrtfreverb
4550 media-sound csound stk Build the stk opcodes 构建 stk 操作码
4551 media-sound csound utils Build stand-alone executables for utilities that can also be used via `csound -U` 为实用程序构建独立的可执行文件,也可以通过 `csound -U` 使用
4552 media-sound csound websocket Build the websocket opcode 构建 websocket 操作码
4553 media-sound darkice aacplus AAC+ encoding via media-libs/libaacplus 通过 media-libs/libaacplus 进行 AAC+ 编码
4554 media-sound darkice twolame Build with twolame support 使用 twolame 支持构建
4555 media-sound deadbeef converter File format converter 文件格式转换器
4556 media-sound deadbeef cover Support for cover art 支持封面艺术
4557 media-sound deadbeef hotkeys Keyboard shortcuts support 键盘快捷键支持
4558 media-sound deadbeef lastfm last.fm/AudioScrobbler protocol support last.fm/AudioScrobbler 协议支持
4559 media-sound deadbeef notify Desktop notifications support 桌面通知支持
4560 media-sound deadbeef nullout Dummy output driver 虚拟输出驱动器
4561 media-sound deadbeef sc68 Atari ST and Amiga music player Atari ST 和 Amiga 音乐播放器
4562 media-sound deadbeef shellexec Define custom shell commands that can be called on tracks 定义可在轨道上调用的自定义 shell 命令
4563 media-sound deadbeef supereq Enable equalizer 启用均衡器
4564 media-sound denemo alsa Enable alsa support through media-libs/alsa-lib 通过 media-libs/alsa-lib 启用 alsa 支持
4565 media-sound denemo aubio Enable media-libs/aubio support 启用媒体库/音频支持
4566 media-sound denemo fluidsynth Enable Fluidsynth MIDI software synthesis using media-sound/fluidsynth 使用 media-sound/fluidsynth 启用 Fluidsynth MIDI 软件合成
4567 media-sound denemo jack Enable jack support through virtual/jack 通过 virtual/jack 启用插孔支持
4568 media-sound denemo portaudio Enable support for media-libs/portaudio 启用对 media-libs/portaudio 的支持
4569 media-sound denemo portmidi Enable support for the media-libs/portmidi backend 启用对 media-libs/portmidi 后端的支持
4570 media-sound denemo rubberband Enable support for media-libs/rubberband 启用对 media-libs/rubberband 的支持
4571 media-sound dir2ogg mac Add support for decoding Monkey's Audio files 添加对解码 Monkey's Audio 文件的支持
4572 media-sound dir2ogg wma Add support for wma files through mplayer 通过 mplayer 添加对 wma 文件的支持
4573 media-sound drumstick fluidsynth Enable support for media-sound/fluidsynth 启用对 media-sound/fluidsynth 的支持
4574 media-sound drumstick network Build Network RT backend 构建网络 RT 后端
4575 media-sound easyeffects calf Enable use of media-plugins/calf for adding various FX 启用媒体插件/小牛添加各种 FX
4576 media-sound easyeffects doc Install packages needed to display built-in user documentation 安装显示内置用户文档所需的软件包
4577 media-sound easyeffects mda-lv2 Enable use of media-plugins/mda-lv2 for the loudness FX 为响度 FX 启用 media-plugins/mda-lv2
4578 media-sound easyeffects zamaudio Enable use of media-plugins/zam-plugins for the maximizer FX 为最大化器 FX 启用 media-plugins/zam-plugins
4579 media-sound easytag nautilus Build gnome-base/nautilus extension 构建 gnome-base/nautilus 扩展
4580 media-sound ecasound lv2 Add support for Ladspa V2 添加对 Ladspa V2 的支持
4581 media-sound ecasound oil Use dev-libs/liboil for inner loop optimizations 使用 dev-libs/liboil 进行内部循环优化
4582 media-sound elisa mpris Enable MPRIS support 启用 MPRIS 支持
4583 media-sound elisa vlc Use media-video/vlc for output rather than dev-qt/qtmultimedia 使用 media-video/vlc 输出而不是 dev-qt/qtmultimedia
4584 media-sound exaile scrobbler Enable audioscrobbler/last.fm support 启用 audioscrobbler/last.fm 支持
4585 media-sound fapg xspf Enable support for saving XSPF playlists. 启用对保存 XSPF 播放列表的支持。
4586 media-sound fluidsynth network enable network support (requires BSD sockets) 启用网络支持(需要 BSD 套接字)
4587 media-sound gimmix cover Enable cover art fetching 启用封面艺术提取
4588 media-sound gimmix lyrics Enable lyric fetching 启用歌词提取
4589 media-sound gmpc unique Enable single instance support using dev-libs/libunique 使用 dev-libs/libunique 启用单实例支持
4590 media-sound gmpc xspf Enable support for reading and saving XSPF playlists 启用对读取和保存 XSPF 播放列表的支持
4591 media-sound gmusicbrowser extras Install some extra deps for plugins (ex. Titlebar) 为插件安装一些额外的依赖(例如标题栏)
4592 media-sound guitarix lv2 Build lv2 plugins 构建 lv2 插件
4593 media-sound guitarix nsm Build NSM (Non Session Manager) support 构建 NSM(非会话管理器)支持
4594 media-sound guitarix standalone Build standalone application 构建独立应用程序
4595 media-sound herrie http Enable http streaming 启用 http 流式传输
4596 media-sound herrie xspf Enable support for reading and saving XSPF playlists 启用对读取和保存 XSPF 播放列表的支持
4597 media-sound hydrogen archive Use libarchive instead of libtar 使用 libarchive 而不是 libtar
4598 media-sound hydrogen portmidi Add portmidi support 添加 portmidi 支持
4599 media-sound jack-audio-connection-kit pam Add basic realtime configuration via sys-auth/realtime-base 通过 sys-auth/realtime-base 添加基本实时配置
4600 media-sound jack2 classic Enable building of jackd 启用jackd的构建
4601 media-sound jack2 metadata Enable metadata API 启用元数据 API
4602 media-sound jack2 pam Add basic realtime configuration via sys-auth/realtime-base 通过 sys-auth/realtime-base 添加基本实时配置
4603 media-sound jalv gtkmm Adds support for dev-cpp/gtkmm: C++ interface for GTK+2 添加对 dev-cpp/gtkmm 的支持:GTK+2 的 C++ 接口
4604 media-sound kid3 acoustid Build acoustic fingerprinting plugin using media-libs/chromaprint 使用 media-libs/chromaprint 构建声学指纹插件
4605 media-sound kid3 mpris Enable support for MPRIS2 interface using dev-qt/qtdbus 使用 dev-qt/qtdbus 启用对 MPRIS2 接口的支持
4606 media-sound klick rubberband Enable rubberband support 启用橡皮筋支持
4607 media-sound lame frontend Build and install the 'lame' executable frontend to lame libraries. 构建并安装“跛脚”可执行前端到跛脚库。
4608 media-sound lame mp3rtp Build the mp3-to-RTP streaming utility. **UNSUPPORTED** 构建 mp3-to-RTP 流式传输实用程序。 **不支持**
4609 media-sound lilypond guile2 Enable experimental support for Guile 2 启用对 Guile 2 的实验性支持
4610 media-sound linuxsampler lv2 Add support for Ladspa V2 添加对 Ladspa V2 的支持
4611 media-sound linuxsampler sf2 Add support for SoundFont 2 sound bank files 添加对 SoundFont 2 声音库文件的支持
4612 media-sound lmms fluidsynth Enables Fluidsynth MIDI software synthesis plugin. 启用 Fluidsynth MIDI 软件合成插件。
4613 media-sound lmms libgig Enables GIG player plugin. 启用 GIG 播放器插件。
4614 media-sound lmms soundio Enables libsoundio support. 启用 libsoundio 支持。
4615 media-sound lmms stk Enables STK Mallet plugin. 启用 STK Mallet 插件。
4616 media-sound lmms vst Enables the VeSTige plugin to run VST plugins through Wine. 使 VeSTige 插件能够通过 Wine 运行 VST 插件。
4617 media-sound mangler espeak Text to speech engine 文字转语音引擎
4618 media-sound mangler g15 Logitech g15 lcd support 罗技 g15 液晶屏支持
4619 media-sound mixxx hid Enable HID controller support 启用 HID 控制器支持
4620 media-sound mixxx keyfinder Enable musical key detection support via media-libs/libkeyfinder 通过 media-libs/libkeyfinder 启用音乐键检测支持
4621 media-sound mixxx lv2 Add support for Ladspa V2 via media-libs/lilv 通过 media-libs/lilv 添加对 Ladspa V2 的支持
4622 media-sound mixxx modplug Add libmodplug support 添加 libmodplug 支持
4623 media-sound mixxx qtkeychain Enable Secure credential storage support via dev-libs/qtkeychain 通过 dev-libs/qtkeychain 启用安全凭证存储支持
4624 media-sound mixxx shout Enable broadcasting support via media-libs/libshout 通过 media-libs/libshout 启用广播支持
4625 media-sound moc cache Enable tags caching support 启用标签缓存支持
4626 media-sound moc sid Build with SID (Commodore 64 Audio) support 使用 SID(Commodore 64 音频)支持构建
4627 media-sound moc sndio Enable support for the media-sound/sndio backend 启用对 media-sound/sndio 后端的支持
4628 media-sound moc tremor Build vorbis support using an integer implementation of the vorbis library (media-libs/tremor) 使用 vorbis 库 (media-libs/tremor) 的整数实现构建 vorbis 支持
4629 media-sound mp3blaster sid Build with SID (Commodore 64 Audio) support 使用 SID(Commodore 64 音频)支持构建
4630 media-sound mpd cdio Use libcdio for ISO9660 parsing support 使用 libcdio 获得 ISO9660 解析支持
4631 media-sound mpd chromaprint Enable ChromaPrint / AcoustID support 启用 ChromaPrint / AcoustID 支持
4632 media-sound mpd cue Enable CUE sheet support 启用 CUE 表支持
4633 media-sound mpd curl Support for web stream listening 支持网络流监听
4634 media-sound mpd eventfd Use the eventfd function in MPD's event loop 在 MPD 的事件循环中使用 eventfd 函数
4635 media-sound mpd faad Use external faad library for AAC decoding 使用外部 faad 库进行 AAC 解码
4636 media-sound mpd fifo Support writing audio to a FIFO 支持将音频写入 FIFO
4637 media-sound mpd fluidsynth Enables Fluidsynth MIDI software synthesis (discouraged) 启用 Fluidsynth MIDI 软件合成(不鼓励)
4638 media-sound mpd gme Enables support for media-libs/game-music-emu for playing various video game music formats. 启用对 media-libs/game-music-emu 的支持,以播放各种视频游戏音乐格式。
4639 media-sound mpd id3tag Support for ID3 tags 支持 ID3 标签
4640 media-sound mpd inotify Use the Linux kernel inotify subsystem to notice changes to mpd music library 使用 Linux 内核 inotify 子系统注意对 mpd 音乐库的更改
4641 media-sound mpd lame Support for MP3 streaming via Icecast2 通过 Icecast2 支持 MP3 流式传输
4642 media-sound mpd libmpdclient Enable support for remote mpd databases 启用对远程 mpd 数据库的支持
4643 media-sound mpd libsoxr Enable the libsoxr resampler 启用 libsoxr 重采样器
4644 media-sound mpd mpg123 Enable support for mp3 decoding over media-sound/mpg123 通过 media-sound/mpg123 启用对 mp3 解码的支持
4645 media-sound mpd network Enables network streaming support 启用网络流媒体支持
4646 media-sound mpd nfs Enable support for the Network File System 启用对网络文件系统的支持
4647 media-sound mpd openmpt OpenMPT decoder plugin OpenMPT 解码器插件
4648 media-sound mpd pipe Support writing audio to a pipe 支持将音频写入管道
4649 media-sound mpd pipewire PipeWire support PipeWire 支持
4650 media-sound mpd qobuz Build plugin to access qobuz 构建插件以访问 qobuz
4651 media-sound mpd recorder Enables output plugin for recording radio streams 启用用于录制无线电流的输出插件
4652 media-sound mpd sid Build with SID (Commodore 64 Audio) support 使用 SID(Commodore 64 音频)支持构建
4653 media-sound mpd signalfd Use the signalfd function in MPD's event loop 在 MPD 的事件循环中使用 signalfd 函数
4654 media-sound mpd snapcast Snapcast audio plugin Snapcast 音频插件
4655 media-sound mpd sndio Enable support for the media-sound/sndio backend 启用对 media-sound/sndio 后端的支持
4656 media-sound mpd soundcloud Build plugin to access soundcloud 构建插件以访问 soundcloud
4657 media-sound mpd systemd Enable support for systemd socket activation 启用对 systemd 套接字激活的支持
4658 media-sound mpd tidal Build plugin to access tidal 构建插件以访问潮汐
4659 media-sound mpd twolame Support twolame MPEG-2 encoding 支持twolame MPEG-2编码
4660 media-sound mpd webdav Enable using music from a WebDAV share 启用使用来自 WebDAV 共享的音乐
4661 media-sound mpd wildmidi Enable MIDI support via wildmidi 通过 wildmidi 启用 MIDI 支持
4662 media-sound mpfc wav Enable wav audio codec support 启用 wav 音频编解码器支持
4663 media-sound mpg123 int-quality Use rounding instead of fast truncation for integer output, where possible 尽可能使用舍入而不是快速截断整数输出
4664 media-sound mumble g15 Enable support for the Logitech G15 LCD (and compatible devices). 启用对 Logitech G15 LCD(和兼容设备)的支持。
4665 media-sound mumble pipewire Enable pipewire support for audio output. 启用对音频输出的管道线支持。
4666 media-sound mumble rnnoise Enable alternative noise suppression option based on RNNoise. 启用基于 RNNoise 的替代噪声抑制选项。
4667 media-sound mumble speech Enable text-to-speech support in Mumble. 在 Mumble 中启用文本转语音支持。
4668 media-sound murmur grpc Use net-libs/grpc to enable remote control capabilities. 使用 net-libs/grpc 启用远程控制功能。
4669 media-sound murmur ice Use dev-libs/Ice to enable remote control capabilities. 使用 dev-libs/Ice 启用远程控制功能。
4670 media-sound musescore omr Enable PDF import (OMR - optical music recognition) 启用 PDF 导入(OMR - 光学音乐识别)
4671 media-sound musescore osc Enable OSC remote control protocol 启用 OSC 远程控制协议
4672 media-sound musescore portmidi Enable support for building against media-libs/portmidi 启用对基于 media-libs/portmidi 构建的支持
4673 media-sound musescore sf3 Enable SoundFont 3 support using media-libs/libvorbis 使用 media-libs/libvorbis 启用 SoundFont 3 支持
4674 media-sound musescore sfz Enable experimental SFZ sampler 启用实验性 SFZ 采样器
4675 media-sound musescore webengine Use dev-qt/qtwebengine for embedded web browser 将 dev-qt/qtwebengine 用于嵌入式 Web 浏览器
4676 media-sound ncmpc async-connect Enable asynchronous connect 启用异步连接
4677 media-sound ncmpc chat-screen Enable the chat screen 启用聊天屏幕
4678 media-sound ncmpc help-screen Enable the help screen 启用帮助屏幕
4679 media-sound ncmpc key-screen Enable key editor screen 启用密钥编辑器屏幕
4680 media-sound ncmpc library-screen Enable library screen 启用库屏幕
4681 media-sound ncmpc lyrics-screen Enable lyrics screen 启用歌词屏幕
4682 media-sound ncmpc mouse Enable curses getmouse support 启用 curses getmouse 支持
4683 media-sound ncmpc outputs-screen Enable the outputs screen 启用输出屏幕
4684 media-sound ncmpc search-screen Enable search screen 启用搜索屏幕
4685 media-sound ncmpc song-screen Enable song viewer screen 启用歌曲查看器屏幕
4686 media-sound ncmpcpp clock Enable clock screen 启用时钟屏幕
4687 media-sound ncmpcpp lto Build with link-time optimisation 使用链接时优化构建
4688 media-sound ncmpcpp outputs Enable outputs screen 启用输出屏幕
4689 media-sound ncmpcpp visualizer Enable visualizer screen with sound wave/frequency spectrum modes 启用具有声波/频谱模式的可视化屏幕
4690 media-sound patchage jack-dbus Use Jack via D-Bus instead of libjack 通过 D-Bus 使用 Jack 而不是 libjack
4691 media-sound picard discid Enable reading the ID of the inserted CD 启用读取插入 CD 的 ID
4692 media-sound picard fingerprints Enable calculation and lookup of AcoustID fingerprints 启用 AcoustID 指纹的计算和查找
4693 media-sound pithos keybinder Use keybinder to enable global key bindings 使用 keybinder 启用全局键绑定
4694 media-sound pms regex Enable regular expression searches 启用正则表达式搜索
4695 media-sound pragha glyr Enable music metadata searchengine support using media-libs/glyr 使用 media-libs/glyr 启用音乐元数据搜索引擎支持
4696 media-sound pragha grilo Play songs on DLNA servers using media-libs/grilo 使用 media-libs/grilo 在 DLNA 服务器上播放歌曲
4697 media-sound pragha keybinder Enable shortcut support using dev-libs/keybinder 使用 dev-libs/keybinder 启用快捷方式支持
4698 media-sound pragha koel Append music on Koel server 在 Koel 服务器上附加音乐
4699 media-sound pragha lastfm Enable last.fm support using media-libs/libclastfm 使用 media-libs/libclastfm 启用 last.fm 支持
4700 media-sound pragha peas Enable various plugins that will pull in dev-libs/libpeas as a dependency 启用各种插件,这些插件会将 dev-libs/libpeas 作为依赖项引入
4701 media-sound pragha playlist Enable enhanced playlist support using dev-libs/totem-pl-parser 使用 dev-libs/totem-pl-parser 启用增强的播放列表支持
4702 media-sound pragha rygel Share music on DLNA using net-misc/rygel 使用 net-misc/rygel 在 DLNA 上分享音乐
4703 media-sound pragha soup Search metadata on AcoustID and radios on TuneIn using net-libs/libsoup 使用 net-libs/libsoup 在 TuneIn 上搜索 AcoustID 和收音机的元数据
4704 media-sound puddletag acoustid Use media-libs/chromaprint for acoustic fingerprinting 使用 media-libs/chromaprint 进行声学指纹识别
4705 media-sound puddletag quodlibet Enables support for editing media-sound/quodlibet databases 支持编辑 media-sound/quodlibet 数据库
4706 media-sound pulseaudio X Build the X11 publish module to export PulseAudio information through X11 protocol for clients to make use. Don't enable this flag if you want to use a system wide instance. If unsure, enable this flag. 搭建X11发布模块,通过X11协议导出PulseAudio信息,供客户端使用。如果您想使用系统范围的实例,请不要启用此标志。如果不确定,请启用此标志。
4707 media-sound pulseaudio alsa-plugin Request installing media-plugins/alsa-plugins with PulseAudio plugin enabled. This ensures that clients supporting ALSA only will use PulseAudio. 请求安装启用 PulseAudio 插件的 media-plugins/alsa-plugins。这确保了仅支持 ALSA 的客户端将使用 PulseAudio。
4708 media-sound pulseaudio aptx aptX (HD) over Bluetooth (many Android compatible headphones), requires media-plugins/gst-plugins-openaptx. aptX (HD) over Bluetooth(许多 Android 兼容耳机),需要 media-plugins/gst-plugins-openaptx。
4709 media-sound pulseaudio asyncns Use libasyncns for asynchronous name resolution. 使用 libasyncns 进行异步名称解析。
4710 media-sound pulseaudio daemon Build the pulseaudio binary (not-needed for pipewire-pulse) 构建 pulseaudio 二进制文件(pipewire-pulse 不需要)
4711 media-sound pulseaudio doc Build the doxygen-described API documentation. 构建 doxygen 描述的 API 文档。
4712 media-sound pulseaudio elogind Use sys-auth/elogind for giving each session a PA client 使用 sys-auth/elogind 为每个会话提供一个 PA 客户端
4713 media-sound pulseaudio equalizer Enable the equalizer module (requires sci-libs/fftw). 启用均衡器模块(需要 sci-libs/fftw)。
4714 media-sound pulseaudio gconf Ensure gnome-base/gconf is present for pulseaudio GConf to GSettings module automatic migration (keeping the user configuration) 确保 gnome-base/gconf 存在,用于 pulseaudio GConf 到 GSettings 模块的自动迁移(保留用户配置)
4715 media-sound pulseaudio gdbm Use sys-libs/gdbm to store PulseAudio databases. Recommended for desktop usage. This flag causes the whole package to be licensed under GPL-2 or later. 使用 sys-libs/gdbm 存储 PulseAudio 数据库。推荐用于桌面使用。此标志使整个软件包在 GPL-2 或更高版本下获得许可。
4716 media-sound pulseaudio glib Add support to dev-libs/glib-based mainloop for the libpulse client library, to allow using libpulse on glib-based programs. Build the GSettings PA module. 为 libpulse 客户端库添加对基于 dev-libs/glib 的 mainloop 的支持,以允许在基于 glib 的程序上使用 libpulse。构建 GSettings PA 模块。
4717 media-sound pulseaudio gstreamer Build with support for gstreamer including ability to use bluetooth codecs. For bluetooth codecs see USE ldac and aptx. 构建支持 gstreamer,包括使用蓝牙编解码器的能力。对于蓝牙编解码器,请参阅使用 ldac 和 aptx。
4718 media-sound pulseaudio ldac LDAC over Bluetooth (primarily Sony headphones), requires media-plugins/gst-plugins-ldac. LDAC over Bluetooth(主要是 Sony 耳机),需要 media-plugins/gst-plugins-ldac。
4719 media-sound pulseaudio native-headset Build with native HSP backend for bluez 5. 使用 bluez 5 的本机 HSP 后端构建。
4720 media-sound pulseaudio ofono-headset Build with oFono HFP backend for bluez 5, requires net-misc/ofono. 使用 bluez 5 的 oFono HFP 后端构建,需要 net-misc/ofono。
4721 media-sound pulseaudio oss Enable OSS sink/source (output/input). Deprecated, upstream does not support this on systems where other sink/source systems are available (i.e.: Linux). The padsp wrapper is now always build if the system supports OSS at all. 启用 OSS sink/source(输出/输入)。已弃用,上游在其他接收器/源系统可用的系统上不支持此功能(即:Linux)。如果系统完全支持 OSS,则现在始终构建 padsp 包装器。
4722 media-sound pulseaudio realtime Makes PulseAudio use RealtimeKit (sys-auth/rtkit) to get real-time priority while running. 使 PulseAudio 使用 RealtimeKit (sys-auth/rtkit) 在运行时获得实时优先级。
4723 media-sound pulseaudio ssl Use dev-libs/openssl to provide support for RAOP (AirPort) streaming. 使用 dev-libs/openssl 为 RAOP (AirPort) 流提供支持。
4724 media-sound pulseaudio system-wide Allow preparation and installation of the system-wide init script for PulseAudio. Since this support is only supported for embedded situations, do not enable without reading the upstream instructions at https://www.freedesktop.org/wiki/Software/PulseAudio/Documentation/User/WhatIsWrongWithSystemWide/ . 允许为 PulseAudio 准备和安装系统范围的初始化脚本。由于仅在嵌入式情况下支持此支持,因此请勿在未阅读 https://www.freedesktop.org/wiki/Software/PulseAudio/Documentation/User/WhatIsWrongWithSystemWide/ 上的上游说明的情况下启用。
4725 media-sound pulseaudio systemd Build with sys-apps/systemd support to replace standalone ConsoleKit. 使用 sys-apps/systemd 支持构建以替换独立的 ConsoleKit。
4726 media-sound pulseaudio webrtc-aec Uses the webrtc.org AudioProcessing library for enhancing VoIP calls greatly in applications that support it by performing acoustic echo cancellation, analog gain control, noise suppression and other processing. 使用 webrtc.org AudioProcessing 库,通过执行回声消除、模拟增益控制、噪声抑制和其他处理,在支持它的应用程序中极大地增强 VoIP 呼叫。
4727 media-sound pulseaudio-daemon X Build the X11 publish module to export PulseAudio information through X11 protocol for clients to make use. Don't enable this flag if you want to use a system wide instance. If unsure, enable this flag. 搭建X11发布模块,通过X11协议导出PulseAudio信息,供客户端使用。如果您想使用系统范围的实例,请不要启用此标志。如果不确定,请启用此标志。
4728 media-sound pulseaudio-daemon alsa-plugin Request installing media-plugins/alsa-plugins with PulseAudio plugin enabled. This ensures that clients supporting ALSA only will use PulseAudio. 请求安装启用 PulseAudio 插件的 media-plugins/alsa-plugins。这确保了仅支持 ALSA 的客户端将使用 PulseAudio。
4729 media-sound pulseaudio-daemon aptx aptX (HD) over Bluetooth (many Android compatible headphones), requires media-plugins/gst-plugins-openaptx. aptX (HD) over Bluetooth(许多 Android 兼容耳机),需要 media-plugins/gst-plugins-openaptx。
4730 media-sound pulseaudio-daemon asyncns Use libasyncns for asynchronous name resolution. 使用 libasyncns 进行异步名称解析。
4731 media-sound pulseaudio-daemon elogind Use sys-auth/elogind for giving each session a PA client 使用 sys-auth/elogind 为每个会话提供一个 PA 客户端
4732 media-sound pulseaudio-daemon equalizer Enable the equalizer module (requires sci-libs/fftw and sys-apps/dbus). 启用均衡器模块(需要 sci-libs/fftw 和 sys-apps/dbus)。
4733 media-sound pulseaudio-daemon fftw Enable the virtual surround sink module (requires sci-libs/fftw). 启用虚拟环绕接收器模块(需要 sci-libs/fftw)。
4734 media-sound pulseaudio-daemon gdbm Use sys-libs/gdbm to store PulseAudio databases. Recommended for desktop usage. This flag causes the whole package to be licensed under GPL-2 or later. 使用 sys-libs/gdbm 存储 PulseAudio 数据库。推荐用于桌面使用。此标志使整个软件包在 GPL-2 或更高版本下获得许可。
4735 media-sound pulseaudio-daemon glib Build the GSettings PA module. 构建 GSettings PA 模块。
4736 media-sound pulseaudio-daemon gstreamer Build GStreamer-based RTP protocol module which supports more advanced RTP features like OPUS payload encoding. 构建基于 GStreamer 的 RTP 协议模块,支持更高级的 RTP 功能,如 OPUS 有效负载编码。
4737 media-sound pulseaudio-daemon ldac LDAC over Bluetooth (primarily Sony headphones), requires media-plugins/gst-plugins-ldac. LDAC over Bluetooth(主要是 Sony 耳机),需要 media-plugins/gst-plugins-ldac。
4738 media-sound pulseaudio-daemon ofono-headset Build with optional oFono HFP backend for bluez 5, requires net-misc/ofono. 使用 bluez 5 的可选 oFono HFP 后端构建,需要 net-misc/ofono。
4739 media-sound pulseaudio-daemon oss Enable OSS sink/source (output/input). Deprecated, upstream does not support this on systems where other sink/source systems are available (i.e.: Linux). The padsp wrapper is now always build if the system supports OSS at all. 启用 OSS sink/source(输出/输入)。已弃用,上游在其他接收器/源系统可用的系统上不支持此功能(即:Linux)。如果系统完全支持 OSS,则现在始终构建 padsp 包装器。
4740 media-sound pulseaudio-daemon ssl Use dev-libs/openssl to provide support for RAOP (AirPort) streaming. 使用 dev-libs/openssl 为 RAOP (AirPort) 流提供支持。
4741 media-sound pulseaudio-daemon system-wide Allow preparation and installation of the system-wide init script for PulseAudio. Since this support is only supported for embedded situations, do not enable without reading the upstream instructions at https://www.freedesktop.org/wiki/Software/PulseAudio/Documentation/User/WhatIsWrongWithSystemWide/ . 允许为 PulseAudio 准备和安装系统范围的初始化脚本。由于仅在嵌入式情况下支持此支持,因此请勿在未阅读 https://www.freedesktop.org/wiki/Software/PulseAudio/Documentation/User/WhatIsWrongWithSystemWide/ 上的上游说明的情况下启用。
4742 media-sound pulseaudio-daemon systemd Build with sys-apps/systemd support to replace standalone ConsoleKit. 使用 sys-apps/systemd 支持构建以替换独立的 ConsoleKit。
4743 media-sound pulseaudio-daemon valgrind Compile in valgrind memory hints 在 valgrind 内存提示中编译
4744 media-sound pulseaudio-daemon webrtc-aec Uses the webrtc.org AudioProcessing library for enhancing VoIP calls greatly in applications that support it by performing acoustic echo cancellation, analog gain control, noise suppression and other processing. 使用 webrtc.org AudioProcessing 库,通过执行回声消除、模拟增益控制、噪声抑制和其他处理,在支持它的应用程序中极大地增强 VoIP 呼叫。
4745 media-sound pulseaudio-modules-bt fdk AAC encoding support using media-libs/fdk-aac 使用 media-libs/fdk-aac 支持 AAC 编码
4746 media-sound pulseaudio-modules-bt ffmpeg APTX, APTX-HD encoding support APTX、APTX-HD 编码支持
4747 media-sound pulseaudio-modules-bt ldac LDAC encoding support, using media-libs/libldac LDAC 编码支持,使用 media-libs/libldac
4748 media-sound pulseaudio-modules-bt native-headset Build with native HSP (Headset Profile) headset for bluez 5 使用 bluez 5 的原生 HSP(耳机配置文件)耳机构建
4749 media-sound pulseaudio-modules-bt ofono-headset Build with oFono HFP (Hands Free Profile) headset for bluez 5, requires net-misc/ofono. 使用适用于 bluez 5 的 oFono HFP(免提配置文件)耳机构建,需要 net-misc/ofono。
4750 media-sound pulseeffects bs2b Enable use of media-libs/libbs2b for the crossfeed FX 为 crossfeed FX 启用 media-libs/libbs2b
4751 media-sound pulseeffects calf Enable use of media-plugins/calf for adding various FX 启用媒体插件/小牛添加各种 FX
4752 media-sound pulseeffects doc Install packages needed to display built-in user documentation 安装显示内置用户文档所需的软件包
4753 media-sound pulseeffects rnnoise Enable use of media-libs/rnnoise for the neural network-based noise-reduction FX 为基于神经网络的降噪 FX 启用 media-libs/rnnoise
4754 media-sound pulseeffects rubberband Enable use of media-libs/rubberband for the pitch-shifting FX 启用媒体库/rubberband 用于音高转换 FX
4755 media-sound pulseeffects webrtc Enable use of media-plugins/gst-plugins-webrtc for various voice-enhancement FX 为各种语音增强 FX 启用 media-plugins/gst-plugins-webrtc
4756 media-sound pulseeffects zamaudio Enable use of media-plugins/zam-plugins for the maximizer FX 为最大化器 FX 启用 media-plugins/zam-plugins
4757 media-sound qmidiarp lv2 Enables Ladspa V2 plugins. 启用 Ladspa V2 插件。
4758 media-sound qmmp analyzer Enable visual analyzer 启用可视化分析器
4759 media-sound qmmp archive Enable archiving plugin via app-arch/libarchive. 通过 app-arch/libarchive 启用归档插件。
4760 media-sound qmmp bs2b Enable Bauer stereophonic-to-binaural headphone filter 启用 Bauer 立体声到双耳耳机滤波器
4761 media-sound qmmp cover Enable album cover support 启用专辑封面支持
4762 media-sound qmmp crossfade Enable crossfade effect when switching tracks 切换轨道时启用交叉渐变效果
4763 media-sound qmmp cue enable CUE sheet parsing 启用 CUE 表解析
4764 media-sound qmmp dbus Enable DBus notifiications and MPRIS support 启用 DBus 通知和 MPRIS 支持
4765 media-sound qmmp enca Detects the character encoding automatically 自动检测字符编码
4766 media-sound qmmp game Enable Game music support 启用游戏音乐支持
4767 media-sound qmmp gnome Enable Gnome hotkey support (requires Qt5DBus) 启用 Gnome 热键支持(需要 Qt5DBus)
4768 media-sound qmmp lyrics Fetch track lyrics from the web 从网上获取曲目歌词
4769 media-sound qmmp midi Enable midi support using wildmidi library 使用 wildmidi 库启用 midi 支持
4770 media-sound qmmp notifier Enable qmmps' notifier system 启用 qmmps 的通知系统
4771 media-sound qmmp pipewire Enable PipeWire output plugin 启用 PipeWire 输出插件
4772 media-sound qmmp projectm Enable projectm music visualization plugin 启用 projectm 音乐可视化插件
4773 media-sound qmmp qsui Enable QMMP simple UI 启用 QMMP 简单 UI
4774 media-sound qmmp qtmedia Enable playback via dev-qt/qtmultimedia 通过 dev-qt/qtmultimedia 启用播放
4775 media-sound qmmp scrobbler Enable audioscrobbler/last.fm support 启用 audioscrobbler/last.fm 支持
4776 media-sound qmmp shout Enable shoutcast plug-in via media-libs/libshout. 通过 media-libs/libshout 启用直播插件。
4777 media-sound qmmp sid Build with SID (Commodore 64 Audio) support 使用 SID(Commodore 64 音频)支持构建
4778 media-sound qmmp sndfile Enable wav playback support via media-libs/libsndfile 通过 media-libs/libsndfile 启用 wav 播放支持
4779 media-sound qmmp soxr Use the SoX resampling library 使用 SoX 重采样库
4780 media-sound qmmp stereo Enable stereo effect 启用立体声效果
4781 media-sound qmmp tray Build tray icon 构建托盘图标
4782 media-sound qmmp xmp Enable module files renderer (modplug replacement) 启用模块文件渲染器(modplug 替换)
4783 media-sound qsampler libgig Enable libgig support for loading Gigasampler files and DLS (Downloadable Sounds) Level 1/2 files 启用 libgig 支持以加载 Gigasampler 文件和 DLS(可下载的声音)级别 1/2 文件
4784 media-sound qtractor aubio Enable media-libs/aubio support 启用媒体库/音频支持
4785 media-sound qtractor dssi Enable support for DSSI Soft Synth Interface 启用对 DSSI 软合成器接口的支持
4786 media-sound qtractor rubberband Enable support for in-place audio clip pitch-shifting through the rubberband library 通过橡皮筋库启用对就地音频剪辑音高转换的支持
4787 media-sound rhythmbox daap Build the local network music sharing plugin which uses the DAAP protocol using net-libs/libdmapsharing 使用 net-libs/libdmapsharing 构建使用 DAAP 协议的本地网络音乐共享插件
4788 media-sound scream pcap Support sniffing packets from network using net-libs/libpcap 支持使用 net-libs/libpcap 从网络嗅探数据包
4789 media-sound shntool alac Add support for Apple Lossless Audio Codec files 添加对 Apple 无损音频编解码器文件的支持
4790 media-sound shntool mac Add support for Monkey's Audio files 添加对 Monkey 的音频文件的支持
4791 media-sound shntool shorten Add support for the shorten audio compressor 添加对缩短音频压缩器的支持
4792 media-sound snapcast client Build and install Snapcast client component 构建和安装 Snapcast 客户端组件
4793 media-sound snapcast server Build and install Snapcast server component 构建和安装 Snapcast 服务器组件
4794 media-sound snapcast tremor Build with TREMOR version of vorbis 使用 vorbis 的 TREMOR 版本构建
4795 media-sound snd s7 Enable the s7 extension language (a version of Scheme) 启用 s7 扩展语言(Scheme 的一个版本)
4796 media-sound sonic-visualiser id3tag Enables ID3 tagging with id3tag library 使用 id3tag 库启用 ID3 标记
4797 media-sound sox amr Enables Adaptive Multi-Rate Audio support 启用自适应多速率音频支持
4798 media-sound sox id3tag Enables ID3 tagging with id3tag library 使用 id3tag 库启用 ID3 标记
4799 media-sound sox sndio Enable support for sndio 启用对 sndio 的支持
4800 media-sound sox twolame Enables twolame support (MPEG Audio Layer 2 encoder) 启用双重支持(MPEG 音频第 2 层编码器)
4801 media-sound split2flac enca Try to guess the charset using enca 尝试使用 enca 猜测字符集
4802 media-sound split2flac flake Add support for Flake, alternative FLAC encoder 添加对 Flake 的支持,替代 FLAC 编码器
4803 media-sound split2flac mac Add support for Monkey's Audio files 添加对 Monkey 的音频文件的支持
4804 media-sound split2flac replaygain Support for Replay Gain metadata, for relative volume adjustment 支持 Replay Gain 元数据,用于相对音量调整
4805 media-sound spotify local-playback Allows playing local files with the Spotify client 允许使用 Spotify 客户端播放本地文件
4806 media-sound spotify pax-kernel Triggers a paxmarking of the main Spotify binary 触发主要 Spotify 二进制文件的 paxmarking
4807 media-sound spotify pulseaudio Controls the dependency on pulseaudio or apulse 控制对 pulseaudio 或 apulse 的依赖
4808 media-sound spotify systray Pulls in dependencies needed for systray support on some desktop environments 在某些桌面环境中引入系统托盘支持所需的依赖项
4809 media-sound strawberry moodbar Enable moodbar support 启用情绪栏支持
4810 media-sound strawberry vlc Enable media-video/vlc backend 启用媒体视频/vlc 后端
4811 media-sound supercollider emacs Enable the SCEL user interface 启用 SCEL 用户界面
4812 media-sound supercollider gedit Enable the SCED user interface 启用 SCED 用户界面
4813 media-sound supercollider gpl3 Build GPL-3 licensed code (recommended) 构建 GPL-3 许可代码(推荐)
4814 media-sound supercollider server Build with internal server 使用内部服务器构建
4815 media-sound supercollider vim Enable the SCVIM user interface 启用 SCVIM 用户界面
4816 media-sound supercollider webengine Enable the internal help system using QtWebengine 使用 QtWebengine 启用内部帮助系统
4817 media-sound teamspeak-client system-libcxx Use sys-libs/libcxx instead of shipped libs. 使用 sys-libs/libcxx 而不是随附的库。
4818 media-sound teamspeak-server tsdns Install TeamSpeaks own DNS service for handling multiple virtual servers. 安装 TeamSpeaks 自己的 DNS 服务以处理多个虚拟服务器。
4819 media-sound umurmur mbedtls Use net-libs/mbedtls as TLS provider 使用 net-libs/mbedtls 作为 TLS 提供者
4820 media-sound umurmur shm Enable shared memory support 启用共享内存支持
4821 media-sound upmpdcli thirdparty Enable streaming from Qobuz and Tidal external services 启用来自 Qobuz 和 Tidal 外部服务的流式传输
4822 media-sound vimpc boost Use boost instead of C++11 libraries 使用 boost 而不是 C++11 库
4823 media-sound vorbis-tools kate Adds support for Ogg Kate subtitles via libkate. 通过 libkate 添加对 Ogg Kate 字幕的支持。
4824 media-sound vorbis-tools ogg123 Build ogg123 player, needs libao and curl 搭建ogg123播放器,需要libao和curl
4825 media-sound wildmidi player Install the wildmidi player 安装wildmidi播放器
4826 media-sound xmms2 airplay Support for airplay format 支持播放格式
4827 media-sound xmms2 fluidsynth Enable fluidsynth support (MIDI) 启用流体合成器支持 (MIDI)
4828 media-sound xmms2 gme Support for various game audio formats using media-libs/game-music-emu 使用 media-libs/game-music-emu 支持各种游戏音频格式
4829 media-sound xmms2 ices Icecast source output plugin Icecast 源输出插件
4830 media-sound xmms2 mac Support for Monkey's Audio (APE) format using media-sound/mac 使用 media-sound/mac 支持 Monkey's Audio (APE) 格式
4831 media-sound xmms2 mlib-update Enable building of xmms2-mlib-updater client 启用 xmms2-mlib-updater 客户端的构建
4832 media-sound xmms2 ofa Support for Open Fingerprint Architecture (OFA) 支持开放指纹架构 (OFA)
4833 media-sound xmms2 server Build xmms2 player daemon (otherwise only clients are built) 构建 xmms2 播放器守护进程(否则只构建客户端)
4834 media-sound xmms2 sid Support for C64 SID using media-libs/libsidplay 使用 media-libs/libsidplay 支持 C64 SID
4835 media-sound xmms2 tremor Support Vorbis using an alternate fixed-point decoder with media-libs/tremor 使用带有 media-libs/tremor 的备用定点解码器支持 Vorbis
4836 media-sound xmms2 valgrind Run unit tests under valgrind 在 valgrind 下运行单元测试
4837 media-sound xmms2 vocoder Phase vocoder effect plugin 相位声码器效果插件
4838 media-sound xmms2 xml Enable support for various XML based playlists and sources: RSS, XSPF 支持各种基于 XML 的播放列表和来源:RSS、XSPF
4839 media-sound xwax alsa Adds support for ALSA audio input/output. 添加对 ALSA 音频输入/输出的支持。
4840 media-sound xwax cdda Sets runtime dependencies to support decoding audio from a compact disc. 设置运行时依赖项以支持从光盘解码音频。
4841 media-sound xwax fallback Sets runtime dependencies to support decoding "other" audio files. 设置运行时依赖项以支持解码“其他”音频文件。
4842 media-sound xwax mp3 Sets runtime dependencies to support decoding MP3 audio. 设置运行时依赖项以支持解码 MP3 音频。
4843 media-sound xwax oss Adds support for OSS (open sound system) audio input/output. 添加对 OSS(开放式声音系统)音频输入/输出的支持。
4844 media-sound yarock mpv Enable media-video/mpv backend 启用媒体视频/mpv 后端
4845 media-sound yarock phonon Enable media-libs/phonon backend 启用 media-libs/phonon 后端
4846 media-sound yarock vlc Enable media-video/vlc backend 启用媒体视频/vlc 后端
4847 media-sound yoshimi lv2 Add support for Ladspa V2 添加对 Ladspa V2 的支持
4848 media-sound zynaddsubfx dssi Enable support for DSSI Soft Synth Interface 启用对 DSSI 软合成器接口的支持
4849 media-tv kodi airplay enable AirPlay support 启用 AirPlay 支持
4850 media-tv kodi bluetooth Enable JSON-RPC over BT for remote control connected via bluetooth 通过蓝牙启用 JSON-RPC over BT 进行远程控制
4851 media-tv kodi bluray Enable playback of Blu-ray filesystems 启用蓝光文件系统的播放
4852 media-tv kodi caps Use sys-libs/libcap to bind to privileged ports as non-root 使用 sys-libs/libcap 以非 root 身份绑定到特权端口
4853 media-tv kodi cec Enable support for HDMI-CEC devices via libcec 通过 libcec 启用对 HDMI-CEC 设备的支持
4854 media-tv kodi dav1d Enables AV1 decoding via media-libs/dav1d 通过 media-libs/dav1d 启用 AV1 解码
4855 media-tv kodi eventclients Install full set of Kodi python evenclients and evenclients examples 安装全套 Kodi python evenclients 和 evenclients 示例
4856 media-tv kodi gbm Use the Graphics Buffer Manager for EGL on KMS. 使用 KMS 上的 EGL 图形缓冲区管理器。
4857 media-tv kodi gles Use simplified OpenGLES instead of full-scale OpenGL 使用简化的 OpenGLES 而不是全尺寸的 OpenGL
4858 media-tv kodi libusb Use virtual/libusb for usb device hotplug support. This flag should only be enabled if you're running a non-Linux kernel or you don't want to use sys-fs/udev. 使用 virtual/libusb 来支持 USB 设备热插拔。只有在运行非 Linux 内核或不想使用 sys-fs/udev 时才应启用此标志。
4859 media-tv kodi lirc Enable support for IR remote controls using app-misc/lirc 使用 app-misc/lirc 启用对 IR 遥控器的支持
4860 media-tv kodi mariadb Enable support store of media library metadata on local or remote MariaDB 在本地或远程 MariaDB 上启用媒体库元数据的支持存储
4861 media-tv kodi mysql Enable support store of media library metadata on local or remote MySQL 在本地或远程 MySQL 上启用媒体库元数据的支持存储
4862 media-tv kodi nfs Enable NFS client support 启用 NFS 客户端支持
4863 media-tv kodi optical Enable Audio CD playback, optical disks detection and reading (CD-ROM, Video CD, and others), and ISO optical disk images direct reading. DVD disks may require additional 'udf' flag. 启用音频 CD 播放、光盘检测和读取(CD-ROM、VCD 等)和 ISO 光盘映像直接读取。 DVD 磁盘可能需要额外的 'udf' 标志。
4864 media-tv kodi pipewire Enable pipewire support 启用管道线支持
4865 media-tv kodi power-control Enable control of shutdown, reboot, suspend, and hibernate 启用对关机、重启、挂起和休眠的控制
4866 media-tv kodi raspberry-pi Enable support for the Raspberry Pi 启用对 Raspberry Pi 的支持
4867 media-tv kodi system-ffmpeg Use system ffmpeg instead of the bundled one 使用系统 ffmpeg 而不是捆绑的
4868 media-tv kodi udev Use sys-fs/udev rules to handle devices' permissions and hotplug support. Unless you know what you're doing do not disable this flag on Linux kernels. This is provided as an option for completeness. 使用 sys-fs/udev 规则来处理设备的权限和热插拔支持。除非您知道自己在做什么,否则不要在 Linux 内核上禁用此标志。这是作为完整性选项提供的。
4869 media-tv kodi udf Enable UDF support. Required for playing blurays. 启用 UDF 支持。播放蓝光时需要。
4870 media-tv kodi upower Use sys-power/upower to get battery level and active power source 使用 sys-power/upower 获取电池电量和有功电源
4871 media-tv kodi webserver Enable internal webserver 启用内部网络服务器
4872 media-tv kodi xslt Enable metadata XSLT scrapers support with dev-libs/libxslt 使用 dev-libs/libxslt 启用元数据 XSLT 抓取工具支持
4873 media-tv linuxtv-dvb-apps alevt Build videotext decoder 构建视频文本解码器
4874 media-tv mythtv alsa Allows MythTV to directly output sound to ALSA devices 允许 MythTV 直接向 ALSA 设备输出声音
4875 media-tv mythtv asi Support for DVEO ASI recorder 支持 DVEO ASI 刻录机
4876 media-tv mythtv autostart Use a custom autostart configuration 使用自定义自动启动配置
4877 media-tv mythtv bluray Use the system libbluray for BluRay support 使用系统 libbluray 支持蓝光
4878 media-tv mythtv cec Allows control of CEC enabled TVs via HDMI 允许通过 HDMI 控制启用 CEC 的电视
4879 media-tv mythtv ceton Ceton InfiniTV 4 a CableCARD-enabled tuner support Ceton InfiniTV 4 支持 CableCARD 调谐器
4880 media-tv mythtv debug Instructs Qt to use the 'debug' target 指示 Qt 使用“调试”目标
4881 media-tv mythtv egl EGL video output support EGL 视频输出支持
4882 media-tv mythtv fftw Support visualizations via sci-libs/fftw 通过 sci-libs/fftw 支持可视化
4883 media-tv mythtv hdhomerun Silicondust USA Inc.network-attached tuner support Silicondust USA Inc. 网络附加调谐器支持
4884 media-tv mythtv hdpvr Hauppauge HD-PVR? Hauppauge HD-PVR?
4885 media-tv mythtv ieee1394 Firewire enabled Cable boxe support 启用火线的电缆盒支持
4886 media-tv mythtv ivtv Support kernel driver for the iTVC15 family of MPEG codecs 支持 iTVC15 系列 MPEG 编解码器的内核驱动程序
4887 media-tv mythtv jack Allows MythTV to use JACK as your sound output device 允许 MythTV 使用 JACK 作为您的声音输出设备
4888 media-tv mythtv java BD-J support for Blu-ray discs BD-J 对蓝光光盘的支持
4889 media-tv mythtv lcd Enable use of app-misc/lcdproc data display 启用 app-misc/lcdproc 数据显示
4890 media-tv mythtv lirc LIRC remote control device support LIRC遥控设备支持
4891 media-tv mythtv nvdec Enable NVDEC (NVCUVID) hardware accelerated video decoding 启用 NVDEC (NVCUVID) 硬件加速视频解码
4892 media-tv mythtv perl Build the perl bindings for MythTV 为 MythTV 构建 perl 绑定
4893 media-tv mythtv vbox V@Box Communications network-attached tuner devices support V@Box Communications 网络附加调谐器设备支持
4894 media-tv mythtv vpx Enable VP8/VP9 support for media-libs/libvpx 为 media-libs/libvpx 启用 VP8/VP9 支持
4895 media-tv mythtv wrapper Use Ubuntu mythtfrontend wrapper 使用 Ubuntu mytfrontend 包装器
4896 media-tv mythtv x265 Enable h265 encoding using x265 使用 x265 启用 h265 编码
4897 media-tv mythtv xmltv Support media-tv/xmltv TV listing - not used by Schedules Direct] 支持 media-tv/xmltv 电视列表 - 不被 Schedules Direct 使用]
4898 media-tv tvheadend capmt Enable support for capmt (dvbapi) protocol 启用对 capmt (dvbapi) 协议的支持
4899 media-tv tvheadend constcw Enable support for the constcw protocol 启用对 constcw 协议的支持
4900 media-tv tvheadend cwc Enable support for the cwc (newcamd) protocol 启用对 cwc (newcamd) 协议的支持
4901 media-tv tvheadend ddci Enable support for DDCI hardware 启用对 DDCI 硬件的支持
4902 media-tv tvheadend dvbcsa Enable decryption of the DVB Common Scrambling Algorithm 启用 DVB 通用加扰算法的解密
4903 media-tv tvheadend dvben50221 Enable support for hardware CAM 启用对硬件 CAM 的支持
4904 media-tv tvheadend hdhomerun Enable support for the HDHomeRun device 启用对 HDHomeRun 设备的支持
4905 media-tv tvheadend imagecache Enable support for image caching 启用对图像缓存的支持
4906 media-tv tvheadend iptv Enable support for Internet Protocol TV 启用对 Internet 协议电视的支持
4907 media-tv tvheadend satip Enable support for IP-based Satellite TV 启用对基于 IP 的卫星电视的支持
4908 media-tv tvheadend timeshift Enable TimeShift support 启用 TimeShift 支持
4909 media-tv tvheadend uriparser Use dev-libs/uriparser 使用开发库/uriparser
4910 media-tv tvheadend vpx Enable transcoding with the VP8/VP9 video codecs 使用 VP8/VP9 视频编解码器启用转码
4911 media-tv tvheadend x264 Enable transcoding with the H.264 video codec 使用 H.264 视频编解码器启用转码
4912 media-tv tvheadend x265 Enable transcoding with the HEVC video codec 使用 HEVC 视频编解码器启用转码
4913 media-tv tvheadend xmltv Use media-tv/xmltv 使用媒体电视/xmltv
4914 media-tv v4l-utils bpf Enables support for IR BPF decoders. 启用对 IR BPF 解码器的支持。
4915 media-tv xmltv ar Argentina tv listing grabber 阿根廷电视列表抓取器
4916 media-tv xmltv ch-search Grabber for Switzerland 瑞士抓斗
4917 media-tv xmltv eu-epgdata include fanart URLs for some European countries. 包括一些欧洲国家的同人画 URL。
4918 media-tv xmltv eu-xmltvse Grabbber for Europe [replaces eu-dotmedia and se-tvzon] 欧洲的 Grabbber [取代 eu-dotmedia 和 se-tvzon]
4919 media-tv xmltv fi Finland tv listing grabber (0.6.1 add ampparit telsu) 芬兰电视列表抓取器(0.6.1 添加 ampparit telsu)
4920 media-tv xmltv fi-sv Grabber for Finland (Swedish) 芬兰的 Grabber(瑞典语)
4921 media-tv xmltv fr France tv listing grabber 法国电视列表抓取器
4922 media-tv xmltv huro Hungarian tv listing grabber 匈牙利电视节目表抓取器
4923 media-tv xmltv is Iceland tv listing grabber 冰岛电视列表抓取器
4924 media-tv xmltv it Italy tv listing grabber (RUV) 意大利电视列表抓取器 (RUV)
4925 media-tv xmltv it-dvb Italy tv listing grabber 意大利电视节目表抓取器
4926 media-tv xmltv na-dd North America tv listing grabber 北美电视列表抓取器
4927 media-tv xmltv na-dtv North America Direct TV grabber 北美直播电视采集卡
4928 media-tv xmltv na-tvmedia Grabber for North America (TVMedia) 北美抓取工具 (TVMedia)
4929 media-tv xmltv pt-vodafone Grabber for Portugal (Vodafone) 葡萄牙抓手(沃达丰)
4930 media-tv xmltv tr Turkey (Digiturk) tv listing grabber 土耳其 (Digiturk) 电视列表抓取器
4931 media-tv xmltv tv-check enable GUI checking 启用 GUI 检查
4932 media-tv xmltv tv-combiner enable grabbers combiner 启用抓取器组合器
4933 media-tv xmltv tv-pick-cgi enable CGI support 启用 CGI 支持
4934 media-tv xmltv uk-tvguide UK and Ireland tv listing grabber using TV Guide website 使用 TV Guide 网站的英国和爱尔兰电视列表采集器
4935 media-tv xmltv zz-sdjson Grabber for schedulesDirect.org SD-JSON service (many countries) schedulesDirect.org SD-JSON 服务的抓取器(许多国家/地区)
4936 media-tv xmltv zz-sdjson-sqlite Grabber for schedulesDirect.org SD-JSON service (sqlite DB) schedulesDirect.org SD-JSON 服务的抓取器(sqlite DB)
4937 media-video aegisub uchardet Enable charset discovery via app-i18n/uchardet 通过 app-i18n/uchardet 启用字符集发现
4938 media-video aravis fast-heartbeat Enable faster heartbeat rate. 启用更快的心跳率。
4939 media-video aravis gstreamer Build the GStreamer plugin. 构建 GStreamer 插件。
4940 media-video aravis packet-socket Enable packet socket support. 启用数据包套接字支持。
4941 media-video aravis viewer Build the GTK+-based video viewer. 构建基于 GTK+ 的视频查看器。
4942 media-video chaplin transcode Enable DVD ripping and transcoding 启用 DVD 翻录和转码
4943 media-video droidcam gtk Build the dev-cpp/gtkmm:3.0 client. 构建 dev-cpp/gtkmm:3.0 客户端。
4944 media-video dv2sub kino install kino plugin 安装kino插件
4945 media-video dvdrip fping Enables fping support for cluster rendering 启用对集群渲染的 fping 支持
4946 media-video dvdrip subtitles Enables support for subtitle ripping 启用对字幕翻录的支持
4947 media-video ffdiaporama openclipart Support openclipart database 支持openclipart数据库
4948 media-video ffdiaporama texturemate Install extra backgrounds 安装额外的背景
4949 media-video ffmpeg amf Enables support for AMD's Advanced Media Framework (AMF) 支持 AMD 的高级媒体框架 (AMF)
4950 media-video ffmpeg amr Enables Adaptive Multi-Rate Audio support 启用自适应多速率音频支持
4951 media-video ffmpeg amrenc Enables Adaptive Multi-Rate Audio encoding support with media-libs/vo-amrwbenc. 通过 media-libs/vo-amrwbenc 启用自适应多速率音频编码支持。
4952 media-video ffmpeg appkit Enables Apple AppKit framework 启用 Apple AppKit 框架
4953 media-video ffmpeg bluray Enable playback of Blu-ray filesystems 启用蓝光文件系统的播放
4954 media-video ffmpeg bs2b Enables media-libs/libbs2b based Bauer stereo-to-binaural filter. 启用基于 media-libs/libbs2b 的 Bauer 立体声到双耳滤波器。
4955 media-video ffmpeg cdio Enables audio CD grabbing with dev-libs/libcdio. 使用 dev-libs/libcdio 启用音频 CD 抓取。
4956 media-video ffmpeg chromaprint Enables audio fingerprinting support with media-libs/chromaprint. 使用 media-libs/chromaprint 启用音频指纹识别支持。
4957 media-video ffmpeg chromium Builds libffmpeg.so to enable media playback in Chromium-based browsers like Opera and Vivaldi. 构建 libffmpeg.so 以在 Opera 和 Vivaldi 等基于 Chromium 的浏览器中启用媒体播放。
4958 media-video ffmpeg codec2 Enables codec2 low bit rate speech codec support via media-libs/codec2. 通过 media-libs/codec2 启用 codec2 低比特率语音编解码器支持。
4959 media-video ffmpeg cpudetection Enables runtime CPU detection (useful for bindist, compatibility on other CPUs) 启用运行时 CPU 检测(对 bindist 有用,在其他 CPU 上兼容)
4960 media-video ffmpeg cuda Enables CUDA-based acceleration. Mostly used for specific filters. 启用基于 CUDA 的加速。主要用于特定的过滤器。
4961 media-video ffmpeg dav1d Enables AV1 decoding via media-libs/dav1d. 通过 media-libs/dav1d 启用 AV1 解码。
4962 media-video ffmpeg fdk Use external fdk-aac library for AAC encoding 使用外部 fdk-aac 库进行 AAC 编码
4963 media-video ffmpeg flite Adds a text-to-speech filter based on app-accessibility/flite. 添加基于 app-accessibility/flite 的文本转语音过滤器。
4964 media-video ffmpeg frei0r Enable frei0r wrapping in libavfilter 在 libavfilter 中启用 frei0r 包装
4965 media-video ffmpeg fribidi Enables fribidi support in the drawtext filter. 在 drawtext 过滤器中启用 fribidi 支持。
4966 media-video ffmpeg gcrypt Enables gcrypt support: Needed for rtmp(t)e support if openssl, librtmp or gmp is not used. 启用 gcrypt 支持:如果未使用 openssl、librtmp 或 gmp,则需要 rtmp(t)e 支持。
4967 media-video ffmpeg gme Enables support for media-libs/game-music-emu for playing various video game music formats. 启用对 media-libs/game-music-emu 的支持,以播放各种视频游戏音乐格式。
4968 media-video ffmpeg gpl Build GPL code. Should be enabled unless you require LGPL binaries. 构建 GPL 代码。除非您需要 LGPL 二进制文件,否则应启用。
4969 media-video ffmpeg hardcoded-tables Use pre-calculated tables rather than calculating them on the fly. 使用预先计算的表格,而不是即时计算它们。
4970 media-video ffmpeg iec61883 Support for FireWire DV/HDV input device using media-libs/libiec61883. 支持使用 media-libs/libiec61883 的 FireWire DV/HDV 输入设备。
4971 media-video ffmpeg kvazaar Enables media-libs/kvazaar based HEVC encoder. 启用基于媒体库/kvazaar 的 HEVC 编码器。
4972 media-video ffmpeg libaom Enables media-libs/libaom based AV1 codec support. 启用基于媒体库/libaom 的 AV1 编解码器支持。
4973 media-video ffmpeg libaribb24 Enables ARIB text and caption decoding via media-libs/aribb24. 通过 media-libs/aribb24 启用 ARIB 文本和字幕解码。
4974 media-video ffmpeg libdrm Enables x11-libs/libdrm support for better screen grabbing and hardware accelerated codecs. 启用 x11-libs/libdrm 支持以获得更好的屏幕抓取和硬件加速编解码器。
4975 media-video ffmpeg libilbc Enables iLBC de/encoding via media-libs/libilbc. 通过 media-libs/libilbc 启用 iLBC 解码/编码。
4976 media-video ffmpeg librtmp Enables Real Time Messaging Protocol using librtmp (media-video/rtmpdump) in addition to FFmpeg's native implementation. 除了 FFmpeg 的本机实现之外,还使用 librtmp (media-video/rtmpdump) 启用实时消息传递协议。
4977 media-video ffmpeg libsoxr Enables audio resampling through media-libs/soxr. 通过 media-libs/soxr 启用音频重采样。
4978 media-video ffmpeg libtesseract Enables the OCR filter via app-text/tesseract. 通过 app-text/tesseract 启用 OCR 过滤器。
4979 media-video ffmpeg libv4l Uses media-libs/libv4l for video4linux instead of direct calls. Adds support for more devices via the userspace library. 对 video4linux 使用 media-libs/libv4l 而不是直接调用。通过用户空间库添加对更多设备的支持。
4980 media-video ffmpeg libxml2 Uses dev-libs/libxml2 to enable dash demuxing support. 使用 dev-libs/libxml2 来启用破折号解复用支持。
4981 media-video ffmpeg lv2 Enables lv2 audio filter wrapper. 启用 lv2 音频过滤器包装器。
4982 media-video ffmpeg mipsdspr1 Enables MIPS DSP ASE R1 optimizations. 启用 MIPS DSP ASE R1 优化。
4983 media-video ffmpeg mipsdspr2 Enables MIPS DSP ASE R2 optimizations. 启用 MIPS DSP ASE R2 优化。
4984 media-video ffmpeg mipsfpu Enables floating point MIPS optimizations. 启用浮点 MIPS 优化。
4985 media-video ffmpeg mmal Enables Multi-Media Abstraction Layer (MMAL) decoding support: Available e.g. on the Raspberry Pi. 启用多媒体抽象层 (MMAL) 解码支持:例如在 Raspberry Pi 上可用。
4986 media-video ffmpeg network Enables network streaming support 启用网络流媒体支持
4987 media-video ffmpeg opencl Enable OpenCL support 启用 OpenCL 支持
4988 media-video ffmpeg openh264 Enables H.264 encoding suppoprt via media-libs/openh264. 通过 media-libs/openh264 启用 H.264 编码支持。
4989 media-video ffmpeg openssl Enables dev-libs/openssl support. Adds support for encrypted network protocols (TLS/HTTPS). 启用 dev-libs/openssl 支持。添加对加密网络协议 (TLS/HTTPS) 的支持。
4990 media-video ffmpeg pic Force shared libraries to be built as PIC (this is slower) 强制将共享库构建为 PIC(这比较慢)
4991 media-video ffmpeg postproc Build and install libpostproc. 构建并安装 libpostproc。
4992 media-video ffmpeg rav1e Enables AV1 encoding support via media-video/rav1e. 通过 media-video/rav1e 启用 AV1 编码支持。
4993 media-video ffmpeg rubberband Adds time-stretching and pitch-shifting audio filter based on media-libs/rubberband. 添加基于 media-libs/rubberband 的时间拉伸和音高转换音频过滤器。
4994 media-video ffmpeg snappy Enable app-arch/snappy support. Required for e.g. Vidvox Hap encoder. 启用 app-arch/snappy 支持。例如 Vidvox Hap 编码器需要。
4995 media-video ffmpeg sndio Enable support for the media-sound/sndio backend 启用对 media-sound/sndio 后端的支持
4996 media-video ffmpeg srt Enable support for Secure Reliable Transport (SRT) via net-libs/srt 通过 net-libs/srt 启用对安全可靠传输 (SRT) 的支持
4997 media-video ffmpeg ssh Enable SSH/sftp support via net-libs/libssh. 通过 net-libs/libssh 启用 SSH/sftp 支持。
4998 media-video ffmpeg svt-av1 Enables AV1 encoding support via media-libs/svt-av1. 通过 media-libs/svt-av1 启用 AV1 编码支持。
4999 media-video ffmpeg twolame Enables MP2 encoding via media-sound/twolame as an alternative to the internal encoder. 通过 media-sound/twolame 启用 MP2 编码,作为内部编码器的替代方案。
5000 media-video ffmpeg vidstab Enables video stabilization filter using vid.stab library (media-libs/vidstab). 使用 vid.stab 库 (media-libs/vidstab) 启用视频稳定过滤器。
5001 media-video ffmpeg vmaf Enables Netflix's perceptual video quality assessment filter using the library (media-libs/libvmaf). 使用库 (media-libs/libvmaf) 启用 Netflix 的感知视频质量评估过滤器。
5002 media-video ffmpeg vpx Enables VP8 and VP9 codec support using libvpx: Decoding does not require this to be enabled but libvpx can also be used for decoding; encoding requires this useflag to be enabled though. 使用 libvpx 启用 VP8 和 VP9 编解码器支持:解码不需要启用此功能,但 libvpx 也可用于解码;编码需要启用此使用标志。
5003 media-video ffmpeg vulkan Enables support for the vulkan API for GPU offload. 启用对用于 GPU 卸载的 vulkan API 的支持。
5004 media-video ffmpeg x265 Enables HEVC encoding with media-libs/x265. 使用 media-libs/x265 启用 HEVC 编码。
5005 media-video ffmpeg zeromq Enables net-libs/zeromq support with the zmq/azmq filters. 使用 zmq/azmq 过滤器启用 net-libs/zeromq 支持。
5006 media-video ffmpeg zimg Enables media-libs/zimg based scale filter. 启用基于媒体库/zimg 的缩放过滤器。
5007 media-video ffmpeg zvbi Enables media-libs/zvbi based teletext decoder. 启用基于媒体库/zvbi 的图文电视解码器。
5008 media-video ffmpeg-chromium cpudetection Enables runtime CPU detection (useful for bindist, compatibility on other CPUs) 启用运行时 CPU 检测(对 bindist 有用,在其他 CPU 上兼容)
5009 media-video ffmpeg-chromium gpl Build GPL code. Should be enabled unless you require LGPL binaries. 构建 GPL 代码。除非您需要 LGPL 二进制文件,否则应启用。
5010 media-video ffmpeg-chromium mmal Enables Multi-Media Abstraction Layer (MMAL) decoding support: Available e.g. on the Raspberry Pi. 启用多媒体抽象层 (MMAL) 解码支持:例如在 Raspberry Pi 上可用。
5011 media-video ffmpeg-chromium vulkan Enables support for the vulkan API for GPU offload. 启用对用于 GPU 卸载的 vulkan API 的支持。
5012 media-video ffmpeg2theora kate Adds support for Ogg Kate subtitles via libkate. 通过 libkate 添加对 Ogg Kate 字幕的支持。
5013 media-video guvcview qt5 Build with Qt5 interface instead Gtk+ 使用 Qt5 界面而不是 Gtk+ 构建
5014 media-video handbrake fdk Support for encoding AAC using media-libs/fdk-aac. 支持使用 media-libs/fdk-aac 编码 AAC。
5015 media-video handbrake gstreamer Support for the streaming media framework from media-libs/gstreamer. 支持来自 media-libs/gstreamer 的流媒体框架。
5016 media-video handbrake gtk Install the GTK UI, ghb. 安装 GTK UI,ghb。
5017 media-video handbrake libav-aac Support for encoding AAC using libav's internal encoder. 支持使用 libav 的内部编码器对 AAC 进行编码。
5018 media-video handbrake numa Adds support for x265's NUMA capabilities. 添加对 x265 的 NUMA 功能的支持。
5019 media-video handbrake x265 Support for encoding h265 using media-libs/x265. 支持使用 media-libs/x265 编码 h265。
5020 media-video kino gpac Enable GPAC support when exporting to 3GPP format 导出为 3GPP 格式时启用 GPAC 支持
5021 media-video libva-utils drm Enables VA/DRM API support. 启用 VA/DRM API 支持。
5022 media-video libva-utils examples Build and install decode, encode, videoprocess and other VA-API examples. 构建和安装 decode、encode、videoprocess 和其他 VA-API 示例。
5023 media-video libva-utils putsurface Build and install putsurface tool. 构建和安装 putsurface 工具。
5024 media-video libva-utils test-va-api Install test_va_api tool for thorough testing of the installed VA-API. 安装 test_va_api 工具以对已安装的 VA-API 进行彻底测试。
5025 media-video libva-utils vainfo Build and install vainfo tool. 构建和安装 vainfo 工具。
5026 media-video makemkv java Handle additional Blu-ray protection mechanisms involving Java 处理涉及 Java 的其他蓝光保护机制
5027 media-video mjpegtools sdlgfx Enables y4mhist to display a graphical histogram 启用 y4mhist 以显示图形直方图
5028 media-video mjpg-streamer http-management Enable experimental HTTP management option 启用实验性 HTTP 管理选项
5029 media-video mjpg-streamer input-control Plugin giving ability to control camera movement (only specific cameras) 插件能够控制相机移动(仅限特定相机)
5030 media-video mjpg-streamer input-file Plugin that watches given directory and send it's content 监视给定目录并发送其内容的插件
5031 media-video mjpg-streamer input-http Plugin that takes http-input 接受 http 输入的插件
5032 media-video mjpg-streamer input-ptp2 Plugin that sends video stream from PTP2 compatible camera 从 PTP2 兼容相机发送视频流的插件
5033 media-video mjpg-streamer input-raspicam Raspberry Pi camera support via the input_raspicam plugin 通过 input_raspicam 插件支持 Raspberry Pi 相机
5034 media-video mjpg-streamer input-testpicture Plugin for sending compiled in, test pictures 编译进来的发送插件,测试图片
5035 media-video mjpg-streamer input-uvc Plugin that sends video stream from UVC compatible camera 从 UVC 兼容相机发送视频流的插件
5036 media-video mjpg-streamer output-autofocus Auto focusing plugin 自动对焦插件
5037 media-video mjpg-streamer output-file Plugin that saves received content under given location 将接收到的内容保存在给定位置的插件
5038 media-video mjpg-streamer output-http Small HTTP server plugin which sends WWW directory content and streams image content 发送 WWW 目录内容和流式传输图像内容的小型 HTTP 服务器插件
5039 media-video mjpg-streamer output-rtsp Plugin which provides a mechanism to take snapshots with a trigger from a UDP packet 插件,它提供了一种机制来使用来自 UDP 数据包的触发器来拍摄快照
5040 media-video mjpg-streamer output-udp Plugin receiving content over UDP and storing to a directory 插件通过 UDP 接收内容并存储到目录
5041 media-video mjpg-streamer output-viewer Plugin which allows to see output with viewer 允许使用查看器查看输出的插件
5042 media-video mjpg-streamer output-zmqserver Plugin which provides zmqserver processing 提供 zmqserver 处理的插件
5043 media-video mjpg-streamer www Installs WWW content 安装 WWW 内容
5044 media-video mjpg-streamer wxp-compat Enable camera WXP compatible format 启用相机 WXP 兼容格式
5045 media-video motion mariadb Add mariadb database support 添加 mariadb 数据库支持
5046 media-video motion mmal Enables Multi-Media Abstraction Layer (MMAL) decoding support: Available e.g. on the Raspberry Pi. 启用多媒体抽象层 (MMAL) 解码支持:例如在 Raspberry Pi 上可用。
5047 media-video motiontrack multiprocess Enables multi-process support (SMP/cluster) for motiontrack programs 为运动轨迹程序启用多进程支持(SMP/集群)
5048 media-video mplayer bl Blinkenlights video output Blinkenlights 视频输出
5049 media-video mplayer bluray Enable playback of Blu-ray filesystems 启用蓝光文件系统的播放
5050 media-video mplayer bs2b Enable Bauer stereophonic-to-binaural headphone filter 启用 Bauer 立体声到双耳耳机滤波器
5051 media-video mplayer cdio Use libcdio for CD support (instead of cdparanoia) 使用 libcdio 来支持 CD(而不是 cdparanoia)
5052 media-video mplayer cdparanoia Enable cdparanoia (audio CD ripper) support 启用 cdparanoia(音频 CD 开膛手)支持
5053 media-video mplayer cpudetection Enables runtime CPU detection (useful for binpkgs, compatibility on other CPUs) 启用运行时 CPU 检测(对 binpkgs 有用,在其他 CPU 上兼容)
5054 media-video mplayer dvdnav Use forked libdvdnav, navigate menus in GUIs 使用分叉的 libdvdnav,在 GUI 中导航菜单
5055 media-video mplayer enca Enables support for charset discovery and conversion 启用对字符集发现和转换的支持
5056 media-video mplayer faac Use external faac library for AAC encoding 使用外部 faac 库进行 AAC 编码
5057 media-video mplayer faad Use external faad library for AAC decoding 使用外部 faad 库进行 AAC 解码
5058 media-video mplayer libmpeg2 Build support for mpeg2 over media-libs/libmpeg2 rather than using ffmpeg. 通过 media-libs/libmpeg2 构建对 mpeg2 的支持,而不是使用 ffmpeg。
5059 media-video mplayer live Enables live.com streaming media support 启用 live.com 流媒体支持
5060 media-video mplayer md5sum Enables md5sum video output 启用 md5sum 视频输出
5061 media-video mplayer mng MNG input support MNG 输入支持
5062 media-video mplayer network Enables network streaming support 启用网络流媒体支持
5063 media-video mplayer osdmenu Enables support for on-screen display (OSD) menus 支持屏幕显示 (OSD) 菜单
5064 media-video mplayer pnm Add PNM video output option, to create PPM/PGM/PGMYUV images 添加 PNM 视频输出选项,以创建 PPM/PGM/PGMYUV 图像
5065 media-video mplayer pvr Enable Video4Linux2 MPEG PVR 启用 Video4Linux2 MPEG PVR
5066 media-video mplayer radio Enable V4L2 radio interface and support 启用 V4L2 无线电接口和支持
5067 media-video mplayer rar Enable Unique RAR File Library 启用唯一的 RAR 文件库
5068 media-video mplayer rtc Enables usage of the linux real time clock. The alternative is software emulation of rtc 启用 linux 实时时钟的使用。另一种方法是 rtc 的软件仿真
5069 media-video mplayer rtmp Enables RTMPDump Streaming Media support 启用 RTMPDump 流媒体支持
5070 media-video mplayer shm Enable support for shm 启用对 shm 的支持
5071 media-video mplayer tga Enables Targa video output 启用 Targa 视频输出
5072 media-video mplayer toolame Enable toolame MPEG-2 encoding 启用 toolame MPEG-2 编码
5073 media-video mplayer tremor Enable internal support for Vorbis 启用对 Vorbis 的内部支持
5074 media-video mplayer twolame Enable twolame MPEG-2 encoding 启用双向 MPEG-2 编码
5075 media-video mplayer vcd Enables VCD support 启用 VCD 支持
5076 media-video mplayer vidix Support for vidix video output 支持vidix视频输出
5077 media-video mplayer yuv4mpeg Enables yuv4mpeg video output 启用 yuv4mpeg 视频输出
5078 media-video mplayer zoran Enables ZR360[56]7/ZR36060 video output 启用 ZR360[56]7/ZR36060 视频输出
5079 media-video mpv archive Enable support for various archive formats via app-arch/libarchive 通过 app-arch/libarchive 启用对各种归档格式的支持
5080 media-video mpv bluray Enable playback of Blu-ray filesystems 启用蓝光文件系统的播放
5081 media-video mpv cli Build mpv CLI player 构建 mpv CLI 播放器
5082 media-video mpv cplugins Enable C plugins support 启用 C 插件支持
5083 media-video mpv drm Enable Kernel Mode Setting / Direct Rendering Manager based video output 启用基于内核模式设置/直接渲染管理器的视频输出
5084 media-video mpv egl Enable support for various EGL-based video outputs / backends 启用对各种基于 EGL 的视频输出/后端的支持
5085 media-video mpv gamepad Enable gamepad input support 启用游戏手柄输入支持
5086 media-video mpv gbm Enable Graphics Buffer Manager based EGL video backend 启用基于图形缓冲区管理器的 EGL 视频后端
5087 media-video mpv jpeg Enable support for saving screenshots in JPEG format 启用以 JPEG 格式保存屏幕截图的支持
5088 media-video mpv libmpv Build mpv shared library 构建mpv共享库
5089 media-video mpv lua Enable Lua scripting, OSC (On Screen Controller) GUI and net-misc/youtube-dl hook-script 启用 Lua 脚本、OSC(屏幕控制器)GUI 和 net-misc/youtube-dl hook-script
5090 media-video mpv opengl Enable support for various OpenGL-based video backends 启用对各种基于 OpenGL 的视频后端的支持
5091 media-video mpv raspberry-pi Enable support for the Raspberry Pi 启用对 Raspberry Pi 的支持
5092 media-video mpv rubberband Enable high quality pitch correction via media-libs/rubberband 通过 media-libs/rubberband 启用高质量的音高校正
5093 media-video mpv sdl Enable media-libs/libsdl2 based video and audio outputs (Note: these outputs exist for compatibility reasons only, avoid if possible) 启用基于 media-libs/libsdl2 的视频和音频输出(注意:这些输出的存在仅出于兼容性原因,尽可能避免)
5094 media-video mpv tools Install extra tools: mpv_identify.sh, mpv_idet.sh, and umpv 安装额外工具:mpv_identify.sh、mpv_idet.sh 和 umpv
5095 media-video mpv uchardet Enable subtitles charset discovery via app-i18n/uchardet 通过 app-i18n/uchardet 启用字幕字符集发现
5096 media-video mpv vulkan Enable support for various Vulkan-based video backends 启用对各种基于 Vulkan 的视频后端的支持
5097 media-video mpv zimg Enable libzimg support (for vf_fingerprint) 启用 libzimg 支持(用于 vf_fingerprint)
5098 media-video noad libmpeg2 Build support for mpeg2 through media-libs/libmpeg2 rather than using media-video/ffmpeg 通过 media-libs/libmpeg2 而不是使用 media-video/ffmpeg 构建对 mpeg2 的支持
5099 media-video obs-studio browser Enable browser source support via (precompiled) CEF. 通过(预编译)CEF 启用浏览器源代码支持。
5100 media-video obs-studio decklink Build the Decklink plugin. 构建 Decklink 插件。
5101 media-video obs-studio fdk Build with LibFDK AAC support. 使用 LibFDK AAC 支持构建。
5102 media-video obs-studio pipewire Build with PipeWire support. 使用 PipeWire 支持构建。
5103 media-video obs-studio python Build with scripting support for Python 3. 使用 Python 3 的脚本支持构建。
5104 media-video obs-studio speex Build with Speex noise suppression filter support. 使用 Speex 噪声抑制滤波器支持构建。
5105 media-video obs-studio ssl Build with TLS/SSL support for RTMPS connections. 为 RTMPS 连接构建 TLS/SSL 支持。
5106 media-video obs-studio vlc Build with VLC media source support. 使用 VLC 媒体源支持构建。
5107 media-video ogmrip ogm Support for OGM container format 支持 OGM 容器格式
5108 media-video ogmrip srt Support for SRT subtitle format 支持 SRT 字幕格式
5109 media-video peek keybinder Enable support for global hotkeys using dev-libs/keybinder 使用 dev-libs/keybinder 启用对全局热键的支持
5110 media-video pipewire X Enable audible bell for X11 为 X11 启用铃声
5111 media-video pipewire echo-cancel Enable WebRTC-based echo canceller via media-libs/webrtc-audio-processing 通过 media-libs/webrtc-audio-processing 启用基于 WebRTC 的回声消除器
5112 media-video pipewire extra Build pw-cat/pw-play/pw-record 构建 pw-cat/pw-play/pw-record
5113 media-video pipewire jack-client Install a plugin for running PipeWire as a JACK client 安装插件以将 PipeWire 作为 JACK 客户端运行
5114 media-video pipewire jack-sdk Use PipeWire as JACK replacement 使用 PipeWire 作为 JACK 替代品
5115 media-video pipewire lv2 Allow loading LV2 plugins via media-libs/lv2 允许通过 media-libs/lv2 加载 LV2 插件
5116 media-video pipewire pipewire-alsa Replace PulseAudio's ALSA plugin with PipeWire's plugin 用 PipeWire 的插件替换 PulseAudio 的 ALSA 插件
5117 media-video pipewire ssl Enable raop-sink support (needs dev-libs/openssl) 启用 raop-sink 支持(需要 dev-libs/openssl)
5118 media-video pipewire system-service Install systemd unit files for running as a system service. Not recommended. 安装 systemd 单元文件以作为系统服务运行。不建议。
5119 media-video qmplay2 audiofilters Build with AudioFilters module 使用 AudioFilters 模块构建
5120 media-video qmplay2 avdevice Build FFmpeg module with libavdevice suport 使用 libavdevice 支持构建 FFmpeg 模块
5121 media-video qmplay2 cdio Build with AudioCD module 使用 AudioCD 模块构建
5122 media-video qmplay2 cuvid Build with CUVID module 使用 CUVID 模块构建
5123 media-video qmplay2 extensions Build with Extensions module and enable other plugins 使用扩展模块构建并启用其他插件
5124 media-video qmplay2 gme Build Chiptune with GME support 在 GME 支持下构建 Chiptune
5125 media-video qmplay2 inputs Build with Inputs module 使用输入模块构建
5126 media-video qmplay2 libass Build with SSA/ASS subtitles rendering support 使用 SSA/ASS 字幕渲染支持构建
5127 media-video qmplay2 notifications Build additional notifications module 构建额外的通知模块
5128 media-video qmplay2 pipewire Build with PipeWire support 使用 PipeWire 支持构建
5129 media-video qmplay2 shaders Compile Vulkan shaders using media-libs/shaderc 使用 media-libs/shaderc 编译 Vulkan 着色器
5130 media-video qmplay2 sid Build Chiptune with SIDPLAY support 使用 SIDPLAY 支持构建 Chiptune
5131 media-video qmplay2 videofilters Build with VideoFilters module 使用 VideoFilters 模块构建
5132 media-video qmplay2 visualizations Build with Visualizations module 使用可视化模块构建
5133 media-video qmplay2 vulkan Build with Vulkan support 使用 Vulkan 支持构建
5134 media-video rav1e capi Build the C-API library and header file 构建 C-API 库和头文件
5135 media-video rtmpdump gnutls Use GnuTLS instead of OpenSSL for Cryptography 使用 GnuTLS 而不是 OpenSSL 进行加密
5136 media-video rtmpdump ssl Enable Cryptographic features 启用加密功能
5137 media-video rtmpdump tools Enable installation of various binary tools in addition to librtmp library 除了 librtmp 库之外,还可以安装各种二进制工具
5138 media-video simplescreenrecorder asm Enable x86 assembly optimisation. 启用 x86 程序集优化。
5139 media-video simplescreenrecorder vpx Enable VP8 codec support via media-libs/libvpx. 通过 media-libs/libvpx 启用 VP8 编解码器支持。
5140 media-video smplayer autoshutdown Enable the option to shutdown your computer after finishing the playlist. This requires dev-qt/qtdbus as dependency. 启用完成播放列表后关闭计算机的选项。这需要 dev-qt/qtdbus 作为依赖项。
5141 media-video smplayer mpris Enable support for MPRIS2 (Media Player Remote Interfacing Specification, version 2), a DBus interface for remote control, which requires dev-qt/qtdbus as dependency. 启用对 MPRIS2(媒体播放器远程接口规范,版本 2)的支持,这是一个用于远程控制的 DBus 接口,需要 dev-qt/qtdbus 作为依赖项。
5142 media-video totem python Build dev-lang/python using plugins (dbusservice for notifications and MPRIS control, interactive python console and opensubtitles lookup) 使用插件构建 dev-lang/python(用于通知和 MPRIS 控制的 dbusservice、交互式 python 控制台和 opensubtitles 查找)
5143 media-video transcode mjpeg Enables mjpegtools support 启用 mjpegtools 支持
5144 media-video transcode nuv NuppelVideo container format demuxing NuppelVideo 容器格式解复用
5145 media-video transcode pic disable optimized assembly code that is not PIC friendly 禁用对 PIC 不友好的优化汇编代码
5146 media-video transcode postproc Build with ffmpeg libpostproc support 使用 ffmpeg libpostproc 支持构建
5147 media-video vdr alternatechannel Use alternate channel on record 使用记录在案的备用频道
5148 media-video vdr bidi fribidi support, for languages, written from right to left fribidi 支持,针对语言,从右到左书写
5149 media-video vdr demoplugins Install demo and example plugins coming with vanilla vdr 安装 vanilla vdr 附带的演示和示例插件
5150 media-video vdr graphtft support for vdr-graphtft plugin up from version 0.1.7 从版本 0.1.7 开始支持 vdr-graphtft 插件
5151 media-video vdr html Install HTML documentation 安装 HTML 文档
5152 media-video vdr keyboard enable keyboard support as remote device 启用键盘支持作为远程设备
5153 media-video vdr mainmenuhooks Allows to replace main menu entries by some special plugins (like epgsearch, extrecmenu, ...) 允许用一些特殊插件(如 epgsearch、extrecmenu、...)替换主菜单条目
5154 media-video vdr menuorg Enables support for the media-plugins/vdr-menuorg 启用对 media-plugins/vdr-menuorg 的支持
5155 media-video vdr menuselection adds support for menu hotkeys of double digits 添加了对两位数菜单热键的支持
5156 media-video vdr naludump Removes NALU fill data from h.264-Streams of TS files 从 TS 文件的 h.264-Streams 中删除 NALU 填充数据
5157 media-video vdr permashift permanent timeshift by recording live TV into RAM, need plugin media-plugins/vdr-permashift 通过将直播电视录制到 RAM 中进行永久时移,需要插件 media-plugins/vdr-permashift
5158 media-video vdr pinplugin Support for media-plugins/vdr-pin 支持媒体插件/vdr-pin
5159 media-video vdr resumereset rreset resume of EOF rreset 恢复 EOF
5160 media-video vdr ttxtsubs support for media-plugins/vdr-ttxtsubs 支持媒体插件/vdr-ttxtsubs
5161 media-video vdr verbose enable full output on compile 在编译时启用完整输出
5162 media-video vidify dbus Support local MPRIS players 支持本地 MPRIS 播放器
5163 media-video vidify mpv Use python-mpv as backend for vidify 使用 python-mpv 作为 vidify 的后端
5164 media-video vidify vlc Use python-vlc as backend for vidify 使用 python-vlc 作为 vidify 的后端
5165 media-video vidify zeroconf Use an external network player 使用外部网络播放器
5166 media-video vlc X Enable support for e.g. fullscreen mode via X and the X C-language binding. It does not build a graphical interface 通过 X 和 X C 语言绑定启用对例如全屏模式的支持。它不构建图形界面
5167 media-video vlc aom Enable AV1 encoding/decoding support using media-libs/libaom 使用 media-libs/libaom 启用 AV1 编码/解码支持
5168 media-video vlc archive Enable support for libarchive stream extractor 启用对 libarchive 流提取器的支持
5169 media-video vlc aribsub Enable support for decoding ARIB STD-B24 subtitles 启用对 ARIB STD-B24 字幕解码的支持
5170 media-video vlc bluray Enable libbluray for Blu-ray disc support 启用 libbluray 以支持蓝光光盘
5171 media-video vlc chromaprint Enable libchromaprint for Chromaprint based audio fingerprinter support 为基于 Chromaprint 的音频指纹支持启用 libchromaprint
5172 media-video vlc chromecast Enable experimental support for Google Chromecast 启用对 Google Chromecast 的实验性支持
5173 media-video vlc dav1d Enable support for media-libs/dav1d AV1 decoder 启用对 media-libs/dav1d AV1 解码器的支持
5174 media-video vlc dc1394 Enable IIDC cameras support 启用 IIDC 相机支持
5175 media-video vlc directx Enable Win32 DirectX, D3D11va and DxVA2 support 启用 Win32 DirectX、D3D11va 和 DxVA2 支持
5176 media-video vlc dvbpsi Enable support for Mpeg-TS files (.ts, .m2ts, .mts) via media-libs/libdvbpsi 通过 media-libs/libdvbpsi 启用对 Mpeg-TS 文件(.ts、.m2ts、.mts)的支持
5177 media-video vlc encode Enable streaming-output support and videolan manager to control multiple streams from within one instance 启用流输出支持和 videolan 管理器以从一个实例中控制多个流
5178 media-video vlc faad Enable AAC audio decoding library support via media-libs/faad2 通过 media-libs/faad2 启用 AAC 音频解码库支持
5179 media-video vlc fdk Enable the Fraunhofer AAC codec library 启用 Fraunhofer AAC 编解码器库
5180 media-video vlc fluidsynth Enable Fluidsynth MIDI software synthesis (with external sound fonts) 启用 Fluidsynth MIDI 软件合成(使用外部声音字体)
5181 media-video vlc gcrypt Enable cryptography support via libgcrypt 通过 libgcrypt 启用加密支持
5182 media-video vlc gme Enable support for media-libs/game-music-emu for playing various video game music formats 启用对 media-libs/game-music-emu 的支持以播放各种视频游戏音乐格式
5183 media-video vlc gstreamer Enable GStreamer based decoding support (currently supports only video decoding) 启用基于 GStreamer 的解码支持(目前仅支持视频解码)
5184 media-video vlc kate Adds support for Ogg Kate subtitles via libkate 通过 libkate 添加对 Ogg Kate 字幕的支持
5185 media-video vlc kms Enable kernel mode setting video output plugin via x11-libs/libdrm 通过 x11-libs/libdrm 启用内核模式设置视频输出插件
5186 media-video vlc libplacebo Enable support for GPU accelerated video rendering with media-libs/libplacebo 使用 media-libs/libplacebo 启用对 GPU 加速视频渲染的支持
5187 media-video vlc libtar Uses libtar instead of the built-in tar reader for reading custom skins 使用 libtar 而不是内置的 tar 阅读器来阅读自定义皮肤
5188 media-video vlc libtiger Enable Ogg Kate subtitles rendering using libtiger 使用 libtiger 启用 Ogg Kate 字幕渲染
5189 media-video vlc linsys Enable support for Linux Linear Systems Ltd. SDI and HD-SDI input cards 启用对 Linux Linear Systems Ltd. SDI 和 HD-SDI 输入卡的支持
5190 media-video vlc live Enable live555 streaming media support (client support for rtsp) 开启live555流媒体支持(客户端支持rtsp)
5191 media-video vlc loudness Enable loudness normalisation according to the EBU R128 standard using media-libs/libebur128 使用 media-libs/libebur128 根据 EBU R128 标准启用响度标准化
5192 media-video vlc lua Enable Lua scripting support, needed for including support for Jamendo (online music platform) and similar things 启用 Lua 脚本支持,需要包括对 Jamendo(在线音乐平台)和类似内容的支持
5193 media-video vlc macosx-notifications Enable Mac OS X notifications module (formerly growl) 启用 Mac OS X 通知模块(以前的咆哮)
5194 media-video vlc matroska Enable matroska support using reference libraries (fallback on other existing matroska support if disabled, i.e., matroska enabled FFmpeg) 使用参考库启用 matroska 支持(如果禁用,则回退到其他现有 matroska 支持,即 matroska 启用 FFmpeg)
5195 media-video vlc mpeg Add libmpeg2 support for mpeg-1 and mpeg-2 video streams 添加对 mpeg-1 和 mpeg-2 视频流的 libmpeg2 支持
5196 media-video vlc nfs Enable support for nfs protocol via net-fs/libnfs 通过 net-fs/libnfs 启用对 nfs 协议的支持
5197 media-video vlc omxil Enable OpenMAX Integration Layer codec module 启用 OpenMAX 集成层编解码器模块
5198 media-video vlc optimisememory Enable optimisation for memory rather than performance 启用内存优化而不是性能优化
5199 media-video vlc projectm Enable the projectM visualization plugin 启用 projectM 可视化插件
5200 media-video vlc run-as-root Allows vlc to start for root. Don't enable this unless you have a very specific (e.g. embedded) need for it! 允许 vlc 以 root 身份启动。除非您对它有非常特定的(例如嵌入式)需求,否则不要启用它!
5201 media-video vlc sdl-image Enable sdl image video decoder (depends on sdl) 启用 sdl 图像视频解码器(取决于 sdl)
5202 media-video vlc sftp Enable libssh2 to support SFTP file transfer 启用 libssh2 以支持 SFTP 文件传输
5203 media-video vlc shout Enable libshout output 启用 libshout 输出
5204 media-video vlc sid Adds support for playing C64 SID files through media-libs/libsidplay:2 添加对通过 media-libs/libsidplay:2 播放 C64 SID 文件的支持
5205 media-video vlc skins Enable support for the skins2 interface 启用对 skins2 界面的支持
5206 media-video vlc soxr Enable SoX Resampler support via media-libs/soxr 通过 media-libs/soxr 启用 SoX Resampler 支持
5207 media-video vlc srt Enable support for Secure Reliable Transport (SRT) via net-libs/srt 通过 net-libs/srt 启用对安全可靠传输 (SRT) 的支持
5208 media-video vlc tremor Enable tremor, a fixed-point version of the Ogg Vorbis decoder 启用震颤,Ogg Vorbis 解码器的定点版本
5209 media-video vlc twolame Enable twolame support (MPEG Audio Layer 2 encoder) 启用 twolame 支持(MPEG 音频第 2 层编码器)
5210 media-video vlc upnp Enable support for the Intel SDK stack based UPnP discovery module instead of CyberLink 支持基于英特尔 SDK 堆栈的 UPnP 发现模块,而不是 CyberLink
5211 media-video vlc vpx Enable the decoder(s) from the WebM VP8 / VP9 Codec SDK 从 WebM VP8 / VP9 Codec SDK 启用解码器
5212 media-video vlc x265 Support X265 Encoder 支持X265编码器
5213 media-video vlc zeroconf Enable support for zero-configuration networking via avahi 通过 avahi 启用对零配置网络的支持
5214 media-video vlc zvbi Enable support for teletext subtitles via the zvbi library 通过 zvbi 库启用对图文电视字幕的支持
5215 media-video webcamoid headers Install development headers 安装开发头文件
5216 media-video webcamoid libuvc Build with libuvc support 使用 libuvc 支持构建
5217 media-video webcamoid qtaudio Enable audio capture/play via dev-qt/qtmultimedia 通过 dev-qt/qtmultimedia 启用音频捕获/播放
5218 media-video webcamoid v4lutils Build with V4L-utils support 使用 V4L-utils 支持构建
5219 media-video webcamoid videoeffects Build video effects 构建视频效果
5220 media-video wireplumber system-service Install systemd unit files for running as a system service. Not recommended. 安装 systemd 单元文件以作为系统服务运行。不建议。
5221 media-video x264-encoder avs enable AvxSynth support in the AviSynth input module 在 AviSynth 输入模块中启用 AvxSynth 支持
5222 media-video x264-encoder ffmpegsource Enable ffmpegsource aka ffms support, disables lavf 启用 ffmpegsource aka ffms 支持,禁用 lavf
5223 media-video x264-encoder interlaced Enable interlaced encoding support, this can decrease encoding speed by up to 2% 启用隔行编码支持,这可以将编码速度降低多达 2%
5224 media-video xine-ui vdr Enables Video Disk Recorder support 启用视频磁盘录像机支持
5225 net-analyzer 2ping server Install the server init scripts. 安装服务器初始化脚本。
5226 net-analyzer argus-clients ft Enable support for flow packets through net-analyzer/flow-tools 通过 net-analyzer/flow-tools 启用对流数据包的支持
5227 net-analyzer barnyard sguil Enable sguil (The Analyst Console for Network Security Monitoring) support 启用 sguil(网络安全监控分析控制台)支持
5228 net-analyzer barnyard2 gre Enable GRE support 启用 GRE 支持
5229 net-analyzer barnyard2 mpls Enable support for mpls networks 启用对 mpls 网络的支持
5230 net-analyzer barnyard2 sguil Enable sguil (The Analyst Console for Network Security Monitoring) support 启用 sguil(网络安全监控分析控制台)支持
5231 net-analyzer bwm-ng csv Enable csv output 启用 csv 输出
5232 net-analyzer bwm-ng html Enable html output 启用 html 输出
5233 net-analyzer cacti doc install html documentation 安装html文档
5234 net-analyzer check_mk_agent apache_status Install check_mk-agent apache-status plugin. 安装 check_mk-agent apache-status 插件。
5235 net-analyzer check_mk_agent inventory Install check_mk-agent linux inventory plugin. 安装 check_mk-agent linux 库存插件。
5236 net-analyzer check_mk_agent logwatch Install check_mk-agent logwatch plugin. 安装 check_mk-agent logwatch 插件。
5237 net-analyzer check_mk_agent mysql Install check_mk-agent mysql plugin. 安装 check_mk-agent mysql 插件。
5238 net-analyzer check_mk_agent nfsexports Install check_mk-agent nfsexports plugin. 安装 check_mk-agent nfsexports 插件。
5239 net-analyzer check_mk_agent postgres Install check_mk-agent postgres plugin. 安装 check_mk-agent postgres 插件。
5240 net-analyzer check_mk_agent smart Install check_mk-agent S.M.A.R.T plugin. 安装 check_mk-agent SMART 插件。
5241 net-analyzer check_mk_agent zypper Install check_mk-agent zypper plugin. 安装 check_mk-agent zypper 插件。
5242 net-analyzer echoping http enable support for http protocol. 启用对 http 协议的支持。
5243 net-analyzer echoping icp enable support for ICP (used to monitor proxies). 启用对 ICP 的支持(用于监控代理)。
5244 net-analyzer echoping priority enable socket priority support. 启用套接字优先级支持。
5245 net-analyzer echoping smtp enable support for SMTP protocol. 启用对 SMTP 协议的支持。
5246 net-analyzer echoping tos enable support for TOS (TYpe Of Service). 启用对 TOS(服务类型)的支持。
5247 net-analyzer ettercap plugins Install ettercap plugins (et_*.so) 安装 ettercap 插件 (et_*.so)
5248 net-analyzer flent plots Enable drawing plots 启用绘图
5249 net-analyzer flowgrind pcap Enable packet capturing support using net-libs/libpcap 使用 net-libs/libpcap 启用数据包捕获支持
5250 net-analyzer fprobe messages enable console messages 启用控制台消息
5251 net-analyzer goaccess geoipv2 Enable support for GeoIP2 through dev-libs/libmaxminddb 通过 dev-libs/libmaxminddb 启用对 GeoIP2 的支持
5252 net-analyzer goaccess getline Use GNU getline() to parse full line requests 使用 GNU getline() 解析整行请求
5253 net-analyzer gr-fosphor glfw enable GLFW based interface 启用基于 GLFW 的接口
5254 net-analyzer graphite-web carbon Enable carbon support 启用碳支持
5255 net-analyzer graphite-web memcached Enable memcached support 启用 memcached 支持
5256 net-analyzer gvm cli Command Line Interface for OpenVAS Scanner OpenVAS 扫描仪的命令行界面
5257 net-analyzer gvm gsa Greenbone Security Assistant (WebUI) Greenbone 安全助手 (WebUI)
5258 net-analyzer gvm ospd Enable support for scanner wrappers 启用对扫描仪包装器的支持
5259 net-analyzer gvm-libs extras Html docs support Html 文档支持
5260 net-analyzer hexinject experimental Install experimental packets.tcl 安装实验包.tcl
5261 net-analyzer hexinject tools Install hex2raw and prettypacket tools 安装 hex2raw 和 prettypacket 工具
5262 net-analyzer httping tfo Enable support for TCP Fast Open 启用对 TCP 快速打开的支持
5263 net-analyzer hydra gcrypt Enable radmin2 support through dev-libs/libgcrypt 通过 dev-libs/libgcrypt 启用 radmin2 支持
5264 net-analyzer hydra libssh Enable SSH support through net-libs/libssh 通过 net-libs/libssh 启用 SSH 支持
5265 net-analyzer hydra mongodb MongoDB support through dev-libs/mongo-c-driver 通过 dev-libs/mongo-c-driver 支持 MongoDB
5266 net-analyzer icinga2 console Adds support for line-editing in the console 在控制台中添加对行编辑的支持
5267 net-analyzer icinga2 jumbo-build Combine source files to speed up build process, requires more memory 合并源文件以加快构建过程,需要更多内存
5268 net-analyzer icinga2 lto Adds support for link time optimization 添加对链接时间优化的支持
5269 net-analyzer icinga2 mail Allows for mailing of alerts 允许邮寄警报
5270 net-analyzer icinga2 mariadb Enable support for the mariadb database backend 启用对 mariadb 数据库后端的支持
5271 net-analyzer icinga2 nano-syntax Adds support for syntax used in the nano editor 添加对 nano 编辑器中使用的语法的支持
5272 net-analyzer icinga2 plugins Adds support for nagios plugins 添加对 nagios 插件的支持
5273 net-analyzer ipsumdump nanotimestamp Enable timestamps with nano-second resolution 启用具有纳秒分辨率的时间戳
5274 net-analyzer linkchecker sqlite Mozilla Bookmark parsing Mozilla 书签解析
5275 net-analyzer monitoring-plugins dns Install net-dns/bind-tools required for monitoring DNS servers. Disabling the flag does not remove any plugins. 安装监控 DNS 服务器所需的 net-dns/bind-tools。禁用该标志不会删除任何插件。
5276 net-analyzer monitoring-plugins fping Install net-analyzer/fping required for fancy ping monitoring. Disabling the flag does not remove any plugins. 安装花式 ping 监控所需的 net-analyzer/fping。禁用该标志不会删除任何插件。
5277 net-analyzer monitoring-plugins game Install games-util/qstat required for monitoring FPS servers. Disabling the flag does not remove any plugins. 安装监控 FPS 服务器所需的 games-util/qstat。禁用该标志不会删除任何插件。
5278 net-analyzer monitoring-plugins snmp Install dev-perl/Net-SNMP and net-analyzer/net-snmp required for monitoring SNMP values. Disabling the flag does not remove any plugins. 安装监控 SNMP 值所需的 dev-perl/Net-SNMP 和 net-analyzer/net-snmp。禁用该标志不会删除任何插件。
5279 net-analyzer monitoring-plugins ssh Install net-misc/openssh required for monitoring SSH servers. Disabling the flag does not remove any plugins. 安装监控 SSH 服务器所需的 net-misc/openssh。禁用该标志不会删除任何插件。
5280 net-analyzer mtr ipinfo Disable support for IP address lookups 禁用对 IP 地址查找的支持
5281 net-analyzer mtr jansson Enable JSON output support through dev-libs/jansson 通过 dev-libs/jansson 启用 JSON 输出支持
5282 net-analyzer munin asterisk Install the packages required for monitoring Asterisk. Disabling the flag does not remove any plugin files. 安装监控 Asterisk 所需的软件包。禁用该标志不会删除任何插件文件。
5283 net-analyzer munin cgi Install the CGI-compatible scripts for on-the-fly generation of web pages and graphs. This is only meaningful if the minimal USE flag is disabled. 安装与 CGI 兼容的脚本以即时生成网页和图形。这仅在最小 USE 标志被禁用时才有意义。
5284 net-analyzer munin dhcpd Install dev-perl/Net-IP, dev-perl/HTTP-Date and net-misc/dhcp to monitor DHCP lease usage. This only works if the server is on the same system as the node, so the server is also brought in. Disabling the flag does not remove any plugin file. 安装 dev-perl/Net-IP、dev-perl/HTTP-Date 和 net-misc/dhcp 以监控 DHCP 租约使用情况。这仅在服务器与节点位于同一系统上时才有效,因此服务器也被引入。禁用该标志不会删除任何插件文件。
5285 net-analyzer munin doc Build and install a local copy of the HTML documentation for the whole software. This requires dev-python/sphinx to process the documentation sources. 为整个软件构建并安装 HTML 文档的本地副本。这需要 dev-python/sphinx 来处理文档源。
5286 net-analyzer munin http Install dev-perl/libwww-perl required for monitoring HTTP-based services such as Apache and nginx. Disabling the flag does not remove any plugin file. 安装监控基于 HTTP 的服务(如 Apache 和 nginx)所需的 dev-perl/libwww-perl。禁用该标志不会删除任何插件文件。
5287 net-analyzer munin ipmi Install sys-apps/ipmitool required for monitoring IPMI sensors. Disabling the flag does not remove any plugin file. 安装监控 IPMI 传感器所需的 sys-apps/ipmitool。禁用该标志不会删除任何插件文件。
5288 net-analyzer munin ipv6 Add support for IPv6 in munin-node. IPv6 support for the master is always enabled, but the node requires a newer version of dev-perl/Net-Server, capable of listening to IPv6 sockets. 在 munin-node 中添加对 IPv6 的支持。始终启用对主节点的 IPv6 支持,但节点需要更新版本的 dev-perl/Net-Server,能够侦听 IPv6 套接字。
5289 net-analyzer munin irc Install the packages required for monitoring IRC. Disabling the flag does not remove any plugin files. 安装监控 IRC 所需的软件包。禁用该标志不会删除任何插件文件。
5290 net-analyzer munin java Build the Java-based plugins to monitor JMX-compatible applications. Disabling the flag removes the jmx monitoring plugins. 构建基于 Java 的插件来监控与 JMX 兼容的应用程序。禁用该标志会删除 jmx 监控插件。
5291 net-analyzer munin memcached Install the packages required for memcached monitoring. Disabling the flag does not remove any plugin files. 安装 memcached 监控所需的软件包。禁用该标志不会删除任何插件文件。
5292 net-analyzer munin minimal Only install munin-node and its plugins. This excludes the scripts to generate the web pages and the graphs. 只安装 munin-node 及其插件。这不包括生成网页和图表的脚本。
5293 net-analyzer munin mysql Install the packages required for monitoring MySQL. Disabling the flag does not remove any plugin files. 安装监控 MySQL 所需的软件包。禁用该标志不会删除任何插件文件。
5294 net-analyzer munin postgres Install the packages required for monitoring PostgreSQL. Disabling the flag does not remove any plugin files. 安装监控 PostgreSQL 所需的软件包。禁用该标志不会删除任何插件文件。
5295 net-analyzer munin syslog Configure the node by default to log on syslog. This requires the presence of virtual/perl-Sys-Syslog. As of version 2.0.2, the master scripts only log to file, and not to syslog. 配置节点默认登录syslog。这需要存在 virtual/perl-Sys-Syslog。从 2.0.2 版开始,主脚本只记录到文件,而不记录到系统日志。
5296 net-analyzer nagios-core classicui use the classic web theme 使用经典的网页主题
5297 net-analyzer nagios-core lighttpd install www-servers/lighttpd config 安装 www-servers/lighttpd 配置
5298 net-analyzer nagios-core web enable web interface 启用网页界面
5299 net-analyzer nagios-plugin-check_raid 3ware Support 3ware RAID controllers 支持3ware RAID控制器
5300 net-analyzer nagios-plugin-check_raid aacraid Support Adaptec AAC-RAID controllers 支持 Adaptec AAC-RAID 控制器
5301 net-analyzer nagios-plugin-check_raid dmraid Support Device-Mapper RAID 支持 Device-Mapper RAID
5302 net-analyzer nagios-plugin-check_raid hpa Support HP Array controllers 支持惠普阵列控制器
5303 net-analyzer nagios-plugin-check_raid hpsa Support HP SmartArray (CCISS) controllers 支持 HP SmartArray (CCISS) 控制器
5304 net-analyzer nagios-plugin-check_raid megaraid-sas Support LSI MegaRAID SAS controllers 支持 LSI MegaRAID SAS 控制器
5305 net-analyzer nagios-plugin-check_raid mpt Support LSI MPT Fusion controllers 支持 LSI MPT Fusion 控制器
5306 net-analyzer nagios-plugin-check_raid mpt-sas2 Support LSI SAS-2 controllers 支持 LSI SAS-2 控制器
5307 net-analyzer nagios-plugins nagios-dns Install net-dns/bind-tools required for monitoring DNS servers. Disabling the flag does not remove any plugin file. 安装监控 DNS 服务器所需的 net-dns/bind-tools。禁用该标志不会删除任何插件文件。
5308 net-analyzer nagios-plugins nagios-game Install games-util/qstat required for monitoring FPS servers. Disabling the flag does not remove any plugin file. 安装监控 FPS 服务器所需的 games-util/qstat。禁用该标志不会删除任何插件文件。
5309 net-analyzer nagios-plugins nagios-ping Install net-analyzer/fping required for fancy ping monitoring. Disabling the flag does not remove any plugin file. 安装花式 ping 监控所需的 net-analyzer/fping。禁用该标志不会删除任何插件文件。
5310 net-analyzer nagios-plugins snmp Install dev-perl/Net-SNMP required for monitoring SNMP values. Disabling the flag does not remove any plugin file. 安装监控 SNMP 值所需的 dev-perl/Net-SNMP。禁用该标志不会删除任何插件文件。
5311 net-analyzer nagios-plugins ssh Install net-misc/openssh required for monitoring SSH servers. Disabling the flag does not remove any plugin file. 安装监控 SSH 服务器所需的 net-misc/openssh。禁用该标志不会删除任何插件文件。
5312 net-analyzer nagios-plugins-linux-madrisan curl Build check_docker which requires net-misc/curl 构建需要 net-misc/curl 的 check_docker
5313 net-analyzer nagios-plugins-linux-madrisan varlink Build check_podman which requires dev-libs/libvarlink 构建需要 dev-libs/libvarlink 的 check_podman
5314 net-analyzer net-snmp elf Enable the use of elf utils to check uptime on some systems 允许使用 elf utils 检查某些系统的正常运行时间
5315 net-analyzer net-snmp kmem Enable usage of /dev/kmem 启用 /dev/kmem 的使用
5316 net-analyzer net-snmp mfd-rewrites Use MFD rewrites of mib modules where available 在可用的情况下使用 mib 模块的 MFD 重写
5317 net-analyzer net-snmp netlink Use dev-libs/libnl to fetch TCP statistics instead of using /proc/net/tcp (Linux only). 使用 dev-libs/libnl 来获取 TCP 统计信息,而不是使用 /proc/net/tcp(仅限 Linux)。
5318 net-analyzer net-snmp pcap Install snmppcap which reads from PCAP files and writes to the SNMP transport 安装从 PCAP 文件读取并写入 SNMP 传输的 snmppcap
5319 net-analyzer net-snmp pci Use libpci (from sys-apps/pciutils) to look up network interface description. This feature is only available on Linux. 使用 libpci(来自 sys-apps/pciutils)查找网络接口描述。此功能仅在 Linux 上可用。
5320 net-analyzer net-snmp rpm Enable monitoring of app-arch/rpm. This flag requires the bzip2 and zlib flags to be enabled as well. 启用对 app-arch/rpm 的监控。此标志还需要启用 bzip2 和 zlib 标志。
5321 net-analyzer net-snmp smux Enable support for the legacy smux protocol (superseded by agentx) 启用对旧 smux 协议的支持(由 agentx 取代)
5322 net-analyzer net-snmp ucd-compat Build UCD compatibility library. Increases significantly the install size. 构建 UCD 兼容性库。显着增加安装大小。
5323 net-analyzer netdata cloud Enable Netdata Cloud support 启用 Netdata 云支持
5324 net-analyzer netdata compression Enable compression via zlib 通过 zlib 启用压缩
5325 net-analyzer netdata dbengine Enable the Netdata database engine 启用 Netdata 数据库引擎
5326 net-analyzer netdata ipmi Install sys-apps/ipmitool required for monitoring IPMI sensors. 安装监控 IPMI 传感器所需的 sys-apps/ipmitool。
5327 net-analyzer netdata jsonc Enable optimization of JSON using dev-libs/json-c 使用 dev-libs/json-c 启用 JSON 优化
5328 net-analyzer netdata kinesis Enable support for Amazon Kenesis as a backend 启用对 Amazon Kenesis 作为后端的支持
5329 net-analyzer netdata lto Build with Link Time Optimization (LTO) 使用链接时间优化 (LTO) 构建
5330 net-analyzer netdata mongodb Enable support for the mongodb backend 启用对 mongodb 后端的支持
5331 net-analyzer netdata nfacct Enable the nfacct plugin 启用 nfacct 插件
5332 net-analyzer netdata nodejs Enable use of nodejs (which some plugins use) 启用 nodejs 的使用(一些插件使用)
5333 net-analyzer netdata prometheus Enable support for the Prometheus remote write backend 启用对 Prometheus 远程写入后端的支持
5334 net-analyzer netdata tor Enable monitoring of tor 启用对 tor 的监控
5335 net-analyzer netdata xen Enable monitoring of xen 启用对 xen 的监控
5336 net-analyzer netperf demo Emit interim results during the run. May affect results 在运行期间发出中间结果。可能会影响结果
5337 net-analyzer nfdump ftconv Build the flow-tools to nfdump converter 将流工具构建到 nfdump 转换器
5338 net-analyzer nfdump jnat Build nfudmp to support JunOS NAT event logging 构建 nfudmp 以支持 JunOS NAT 事件日志记录
5339 net-analyzer nfdump nfpcapd Build nfpcapd collector to create netflow data from precollected pcap traffic 构建 nfpcapd 收集器以从预先收集的 pcap 流量创建 netflow 数据
5340 net-analyzer nfdump nfprofile Build nfprofile used by NfSen 构建 NfSen 使用的 nfprofile
5341 net-analyzer nfdump nftrack Build nfprofile used by PortTracker 构建 PortTracker 使用的 nfprofile
5342 net-analyzer nfdump nsel Build nfudmp to support NSEL/NEL event data 构建 nfudmp 以支持 NSEL/NEL 事件数据
5343 net-analyzer nfdump readpcap Build nfcapd collector to read from pcap file instead ofnetwork data 构建 nfcapd 收集器以读取 pcap 文件而不是网络数据
5344 net-analyzer nfdump sflow Build sflow collector sfcpad 构建 sflow 收集器 sfcpad
5345 net-analyzer nmap libssh2 Enable SSH support through net-libs/libssh2 通过 net-libs/libssh2 启用 SSH 支持
5346 net-analyzer nmap ncat Install the ncat utility 安装 ncat 实用程序
5347 net-analyzer nmap nping Install the nping utility 安装 nping 实用程序
5348 net-analyzer nmap nse Include support for the Nmap Scripting Engine (NSE) 包括对 Nmap 脚本引擎 (NSE) 的支持
5349 net-analyzer nmap system-lua Use dev-lang/lua instead of the bundled liblua 使用 dev-lang/lua 而不是捆绑的 liblua
5350 net-analyzer nrpe command-args Build support for specifying the command-line arguments from the Nagios/Icinga master. Make sure you understand the implications of this flag as it can be a security risk. 构建对从 Nagios/Icinga 主控器指定命令行参数的支持。确保您了解此标志的含义,因为它可能存在安全风险。
5351 net-analyzer nsca crypt Build support for crypted communication with nsca, through dev-libs/libmcrypt. It's recommended not to disable this flag unless all the communication will be handled in an absolutely safe environment. 通过 dev-libs/libmcrypt 构建对与 nsca 的加密通信的支持。建议不要禁用此标志,除非所有通信都将在绝对安全的环境中处理。
5352 net-analyzer nsca minimal Only build and install the send_nsca command and not the daemon. This allows a very minimal install with no overhead when setting up a node. 只构建和安装 send_nsca 命令而不是守护进程。这允许在设置节点时进行非常小的安装而没有开销。
5353 net-analyzer openvas-scanner cron Install a cron job to update GVM's feed daily. 安装 cron 作业以每天更新 GVM 的提要。
5354 net-analyzer openvas-scanner extras Html docs support Html 文档支持
5355 net-analyzer openvas-scanner snmp Build againts net-analyzer/net-snmp for "improved SNMP support" 为“改进的 SNMP 支持”构建 net-analyzer/net-snmp
5356 net-analyzer ossec-hids agent Build "agent" installation target (see package description) 构建“代理”安装目标(见包描述)
5357 net-analyzer ossec-hids hybrid Build "hybrid" installation target 构建“混合”安装目标
5358 net-analyzer ossec-hids local Build "local" installation target 构建“本地”安装目标
5359 net-analyzer ossec-hids server Build "server" installation target 构建“服务器”安装目标
5360 net-analyzer pinger gtk2 Install the gtkpinger GUI utility based on x11-libs/gtk+:2 安装基于 x11-libs/gtk+:2 的 gtkpinger GUI 实用程序
5361 net-analyzer pinger gtk3 Install the gtkpinger GUI utility based on x11-libs/gtk+:3 安装基于 x11-libs/gtk+:3 的 gtkpinger GUI 实用程序
5362 net-analyzer pmacct bgp-bins Link BGP daemon binaries 链接 BGP 守护程序二进制文件
5363 net-analyzer pmacct bmp-bins Link BMP daemon binaries 链接 BMP 守护程序二进制文件
5364 net-analyzer pmacct geoipv2 Enable support for GeoIP2 through dev-libs/libmaxminddb 通过 dev-libs/libmaxminddb 启用对 GeoIP2 的支持
5365 net-analyzer pmacct jansson Enable support for JSON through dev-libs/jansson 通过 dev-libs/jansson 启用对 JSON 的支持
5366 net-analyzer pmacct kafka Enable support for Apache Kafka through dev-libs/librdkafka 通过 dev-libs/librdkafka 启用对 Apache Kafka 的支持
5367 net-analyzer pmacct l2 Enable Layer-2 features and support 启用第 2 层功能和支持
5368 net-analyzer pmacct ndpi Enable support for nDPI through net-libs/nDPI 通过 net-libs/nDPI 启用对 nDPI 的支持
5369 net-analyzer pmacct nflog Enable support for NFLOG through uacctd 通过 uacctd 启用对 NFLOG 的支持
5370 net-analyzer pmacct rabbitmq Enable support for RabbitMQ through net-libs/rabbitmq-c 通过 net-libs/rabbitmq-c 启用对 RabbitMQ 的支持
5371 net-analyzer pmacct st-bins Link Streaming Telemetry daemon binaries 链接流式遥测守护程序二进制文件
5372 net-analyzer pmacct traffic-bins Link IPv4/IPv6 traffic accounting binaries 链接 IPv4/IPv6 流量记帐二进制文件
5373 net-analyzer pmacct zmq Enable support for ZeroMQ through net-libs/zeromq 通过 net-libs/zeromq 启用对 ZeroMQ 的支持
5374 net-analyzer pnp4nagios icinga Build against net-analyzer/icinga2 instead of net-analyzer/nagios-core 针对 net-analyzer/icinga2 而不是 net-analyzer/nagios-core 构建
5375 net-analyzer pnp4nagios nagios Build against net-analyzer/nagios-core (the default) 针对 net-analyzer/nagios-core 构建(默认)
5376 net-analyzer rrdcollect exec Enable exec:/// support 启用 exec:/// 支持
5377 net-analyzer rrdcollect librrd Use the librrd library from net-analyzer/rrdtool 使用来自 net-analyzer/rrdtool 的 librrd 库
5378 net-analyzer rrdtool graph Enable support for graphing functions 启用对图形功能的支持
5379 net-analyzer rrdtool rados Enable support for librados from sys-cluster/ceph 从 sys-cluster/ceph 启用对 librados 的支持
5380 net-analyzer rrdtool rrdcached Build support for write-caching daemon 构建对写缓存守护进程的支持
5381 net-analyzer rrdtool rrdcgi Build rrdcgi support 构建 rrdcgi 支持
5382 net-analyzer sancp sguil Enable sguil (The Analyst Console for Network Security Monitoring) support 启用 sguil(网络安全监控分析控制台)支持
5383 net-analyzer sarg doublecheck Make sarg double check the data it manipulates and output a warning if an error is found 让 sarg 仔细检查它所操作的数据,如果发现错误则输出警告
5384 net-analyzer sarg gd Enable support for graphs in reports through media-libs/gd 通过 media-libs/gd 在报告中启用对图表的支持
5385 net-analyzer sarg glob Disable to ignore wildcards in file names 禁用以忽略文件名中的通配符
5386 net-analyzer sarg pcre Enable support for regular expressions in the hostalias file through dev-libs/libpcre 通过 dev-libs/libpcre 在 hostalias 文件中启用对正则表达式的支持
5387 net-analyzer scanlogd nids Use net-libs/libnids for packet capturing 使用 net-libs/libnids 抓包
5388 net-analyzer scanlogd pcap Use net-libs/libpcap for packet capturing 使用 net-libs/libpcap 抓包
5389 net-analyzer smokeping dig Install net-dns/bind-tools for dig functionality 为挖掘功能安装 net-dns/bind-tools
5390 net-analyzer smokeping echoping Install net-analyzer/echoping for echoping functionality 安装 net-analyzer/echoping 以实现回显功能
5391 net-analyzer sngrep eep Enable EEP packet send/receive support 启用 EEP 数据包发送/接收支持
5392 net-analyzer sngrep gnutls Use net-libs/gnutls to parse captured TLS packets 使用 net-libs/gnutls 解析捕获的 TLS 数据包
5393 net-analyzer sngrep openssl Use dev-libs/openssl to parse captured TLS packets 使用 dev-libs/openssl 解析捕获的 TLS 数据包
5394 net-analyzer snort active-response Enables support for automatically sending TCP resets and ICMP unreachable messages to terminate connections. Used with inline deployments. 启用对自动发送 TCP 重置和 ICMP 不可达消息以终止连接的支持。与内联部署一起使用。
5395 net-analyzer snort control-socket Enables Snort's control socket. 启用 Snort 的控制套接字。
5396 net-analyzer snort file-inspect Enables extended file inspection capabilities. 启用扩展文件检查功能。
5397 net-analyzer snort flexresp3 Enables support for new flexable response preprocessor for enabling connection tearing for inline deployments. Replaces flexresp and flexresp2. 支持新的灵活响应预处理器,以便为内联部署启用连接撕裂。替换 flexresp 和 flexresp2。
5398 net-analyzer snort gre Enable support for inspecting and processing Generic Routing Encapsulation (GRE) packet headers. Only needed if you are monitoring GRE tunnels. 启用对检查和处理通用路由封装 (GRE) 数据包标头的支持。仅当您监控 GRE 隧道时才需要。
5399 net-analyzer snort high-availability Enables high-availability state sharing. 启用高可用性状态共享。
5400 net-analyzer snort inline-init-failopen Enables support to allow traffic to pass (fail-open) through inline deployments while snort is starting and not ready to begin inspecting traffic. If this option is not enabled, network traffic will not pass (fail-closed) until snort has fully started and is ready to perform packet inspection. 启用支持以允许流量在 snort 启动且未准备好开始检查流量时通过内联部署(故障打开)。如果未启用此选项,则在 snort 完全启动并准备好执行数据包检查之前,网络流量将不会通过(失败关闭)。
5401 net-analyzer snort large-pcap-64bit Allows Snort to read pcap files that are larger than 2 GB. ONLY VALID FOR 64bit SYSTEMS! 允许 Snort 读取大于 2 GB 的 pcap 文件。仅适用于 64 位系统!
5402 net-analyzer snort libtirpc Build against net-libs/libtirpc for RPC support 针对 net-libs/libtirpc 构建以获得 RPC 支持
5403 net-analyzer snort linux-smp-stats Enable accurate statistics reporting through /proc on systems with multiple processors. 通过 /proc 在具有多个处理器的系统上启用准确的统计报告。
5404 net-analyzer snort non-ether-decoders Enable decoding of non-ethernet protocols such as TokenRing, FDDI, IPX, etc. 启用对 TokenRing、FDDI、IPX 等非以太网协议的解码。
5405 net-analyzer snort open-appid Enable OpenAppID, an open, application-focused detection language and processing module for Snort that enables users to create, share, and implement application detection. Requires dev-lang/luajit. 启用 OpenAppID,这是一种开放的、以应用程序为中心的检测语言和 Snort 处理模块,使用户能够创建、共享和实施应用程序检测。需要开发语言/luajit。
5406 net-analyzer snort perfprofiling Enables support for preprocessor and rule performance profiling using the perfmonitor preprocessor. 使用 perfmonitor 预处理器启用对预处理器和规则性能分析的支持。
5407 net-analyzer snort ppm Enables support for setting per rule or per packet latency limits. Helps protect against introducing network latency with inline deployments. 启用对设置每个规则或每个数据包延迟限制的支持。有助于防止通过内联部署引入网络延迟。
5408 net-analyzer snort react Enables support for the react rule keyword. Supports interception, termination, and redirection of HTTP connections. 启用对 react 规则关键字的支持。支持 HTTP 连接的拦截、终止和重定向。
5409 net-analyzer snort reload-error-restart Enables support for completely restarting snort if an error is detected during a reload. 如果在重新加载期间检测到错误,则启用对完全重新启动 snort 的支持。
5410 net-analyzer snort shared-rep Enables the use of shared memory for the Reputation Preprocessor (Only available on Linux systems) 为信誉预处理器启用共享内存(仅在 Linux 系统上可用)
5411 net-analyzer snort side-channel Enables Snort's side channel. 启用 Snort 的侧通道。
5412 net-analyzer snort sourcefire Enables Sourcefire specific build options, which include --enable-perfprofiling and --enable-ppm. 启用 Sourcefire 特定的构建选项,包括 --enable-perfprofiling 和 --enable-ppm。
5413 net-analyzer suricata af-packet Enable AF_PACKET support 启用 AF_PACKET 支持
5414 net-analyzer suricata bpf Enable support for eBPF (as well as XDP if supported by the kernel and the NIC driver) for low-level, high-speed packet processing 启用对 eBPF(以及 XDP,如果内核和 NIC 驱动程序支持)的支持,以进行低级、高速数据包处理
5415 net-analyzer suricata control-socket Enable unix socket 启用 unix 套接字
5416 net-analyzer suricata cuda Enable NVIDIA Cuda computations support 启用 NVIDIA Cuda 计算支持
5417 net-analyzer suricata detection Enable detection modules 启用检测模块
5418 net-analyzer suricata hyperscan Enable high-performance regex matching with Hyperscan 使用 Hyperscan 启用高性能正则表达式匹配
5419 net-analyzer suricata lz4 Enable support for compressed pcap logging using the LZ4 algorithm 启用对使用 LZ4 算法的压缩 pcap 日志记录的支持
5420 net-analyzer suricata nflog Enable libnetfilter_log support 启用 libnetfilter_log 支持
5421 net-analyzer suricata nfqueue Enable NFQUEUE support for inline IDP 为内联 IDP 启用 NFQUEUE 支持
5422 net-analyzer suricata redis Enable Redis support 启用 Redis 支持
5423 net-analyzer symon perl Enables a generic perl symux client 启用通用 perl symux 客户端
5424 net-analyzer symon symon Enables the system monitor. Offers no functionality but monitoring and forwarding of measured data 启用系统监视器。不提供任何功能,但监测和转发测量数据
5425 net-analyzer symon symux Enables the multiplexer which stores incoming symon streams on disk in RRD (net-analyzer/rrdtool) files 启用多路复用器,它将传入的 symon 流存储在磁盘上的 RRD (net-analyzer/rrdtool) 文件中
5426 net-analyzer tcpdump drop-root Drop privileges to pcap:pcap when run as root 以 root 身份运行时,将权限删除到 pcap:pcap
5427 net-analyzer tcpdump smi Build with net-libs/libsmi to load MIBs on the fly to decode SNMP packets 使用 net-libs/libsmi 构建以动态加载 MIB 以解码 SNMP 数据包
5428 net-analyzer tcpreplay pcapnav Enable if you want the jump to byte offset feature via net-libs/libpcapnav 如果您想通过 net-libs/libpcapnav 跳转到字节偏移功能,请启用
5429 net-analyzer tcpreplay tcpdump Use net-analyzer/tcpdump for packet decoding feature 使用 net-analyzer/tcpdump 进行数据包解码功能
5430 net-analyzer testssl bundled-openssl Install precompiled versions of OpenSSL for greater testing coverage 安装 OpenSSL 的预编译版本以获得更大的测试覆盖率
5431 net-analyzer tracebox curl Build the curl component for uploading capture files using net-misc/curl 使用 net-misc/curl 构建用于上传捕获文件的 curl 组件
5432 net-analyzer tracebox sniffer Build the sniffer component using net-libs/libnetfilter_queue 使用 net-libs/libnetfilter_queue 构建嗅探器组件
5433 net-analyzer wapiti kerberos Support Kerberos authentication 支持 Kerberos 身份验证
5434 net-analyzer wapiti ntlm Support NTLM authentication 支持NTLM认证
5435 net-analyzer wireshark androiddump Install androiddump, an extcap interface to capture from Android devices 安装 androiddump,一个用于从 Android 设备捕获的 extcap 接口
5436 net-analyzer wireshark bcg729 Use media-libs/bcg729 for G.729 codec support in RTP Player 使用 media-libs/bcg729 在 RTP 播放器中支持 G.729 编解码器
5437 net-analyzer wireshark brotli Use app-arch/brotli for compression/decompression 使用 app-arch/brotli 进行压缩/解压
5438 net-analyzer wireshark capinfos Install capinfos, to print information about capture files 安装 capinfos,打印有关捕获文件的信息
5439 net-analyzer wireshark captype Install captype, to print the file types of capture files 安装captype,打印捕获文件的文件类型
5440 net-analyzer wireshark ciscodump Install ciscodump, extcap interface to capture from a remote Cisco router 安装 ciscodump、extcap 接口以从远程 Cisco 路由器捕获
5441 net-analyzer wireshark dftest Install dftest, to display filter byte-code, for debugging dfilter routines 安装 dftest,显示过滤器字节码,用于调试 dfilter 例程
5442 net-analyzer wireshark dpauxmon Install dpauxmon, an external capture interface (extcap) that captures DisplayPort AUX channel data from linux kernel drivers 安装 dpauxmon,一个外部捕获接口 (extcap),用于从 linux 内核驱动程序中捕获 DisplayPort AUX 通道数据
5443 net-analyzer wireshark dumpcap Install dumpcap, to dump network traffic from inside wireshark 安装dumpcap,从wireshark内部转储网络流量
5444 net-analyzer wireshark editcap Install editcap, to edit and/or translate the format of capture files 安装editcap,编辑和/或翻译捕获文件的格式
5445 net-analyzer wireshark http2 Use net-libs/nghttp2 for HTTP/2 support 使用 net-libs/nghttp2 支持 HTTP/2
5446 net-analyzer wireshark ilbc Build with iLBC support in RTP Player using media-libs/libilbc 使用 media-libs/libilbc 在 RTP Player 中构建 iLBC 支持
5447 net-analyzer wireshark libxml2 Use dev-libs/libxml2 for handling XML configuration in dissectors 使用 dev-libs/libxml2 处理解析器中的 XML 配置
5448 net-analyzer wireshark lto Enable link time optimization 启用链接时间优化
5449 net-analyzer wireshark maxminddb Use dev-libs/libmaxminddb for IP address geolocation 使用 dev-libs/libmaxminddb 进行 IP 地址地理定位
5450 net-analyzer wireshark mergecap Install mergecap, to merge two or more capture files into one 安装mergecap,将两个或多个捕获文件合并为一个
5451 net-analyzer wireshark minizip Build with zip file compression support 使用 zip 文件压缩支持构建
5452 net-analyzer wireshark netlink Use dev-libs/libnl 使用 dev-libs/libnl
5453 net-analyzer wireshark pcap Use net-libs/libpcap for network packet capturing (build dumpcap, rawshark) 使用 net-libs/libpcap 进行网络数据包捕获(构建 dumpcap、rawshark)
5454 net-analyzer wireshark plugin-ifdemo Install plugin interface demo 安装插件界面demo
5455 net-analyzer wireshark plugins Install plugins 安装插件
5456 net-analyzer wireshark randpkt Install randpkt, a utility for creating pcap trace files full of random packets 安装 randpkt,一个用于创建充满随机数据包的 pcap 跟踪文件的实用程序
5457 net-analyzer wireshark randpktdump Install randpktdump, an extcap interface to provide access to the random packet generator (randpkt) 安装 randpktdump,一个 extcap 接口以提供对随机数据包生成器 (randpkt) 的访问
5458 net-analyzer wireshark reordercap Install reordercap, to reorder input file by timestamp into output file 安装 reordercap,按时间戳将输入文件重新排序到输出文件中
5459 net-analyzer wireshark sbc Use media-libs/sbc for playing back SBC encoded packets 使用 media-libs/sbc 播放 SBC 编码的数据包
5460 net-analyzer wireshark sdjournal Install sdjournal, an extcap that captures systemd journal entries 安装 sdjournal,一个捕获 systemd 日志条目的 extcap
5461 net-analyzer wireshark sharkd Install sharkd, the daemon variant of wireshark 安装 Shardd,wireshark 的守护进程变体
5462 net-analyzer wireshark smi Use net-libs/libsmi to resolve numeric OIDs into human readable format 使用 net-libs/libsmi 将数字 OID 解析为人类可读的格式
5463 net-analyzer wireshark spandsp Use media-libs/spandsp for for G.722 and G.726 codec support in the RTP Player 使用 media-libs/spandsp 以获得 RTP 播放器中的 G.722 和 G.726 编解码器支持
5464 net-analyzer wireshark sshdump Install sshdump, an extcap interface to capture from a remote host through SSH 安装 sshdump,一个通过 SSH 从远程主机捕获的 extcap 接口
5465 net-analyzer wireshark text2pcap Install text2pcap, to generate a capture file from an ASCII hexdump of packets 安装 text2pcap,从数据包的 ASCII hexdump 生成捕获文件
5466 net-analyzer wireshark tfshark Install tfshark, a terminal-based version of the FileShark capability 安装 tfshark,基于终端的 FileShark 功能版本
5467 net-analyzer wireshark tshark Install tshark, to dump and analyzer network traffic from the command line 安装 tshark,从命令行转储和分析网络流量
5468 net-analyzer wireshark udpdump Install udpdump, to get packets exported from a source (like a network device or a GSMTAP producer) that are dumped to a pcap file 安装 udpdump,以获取从源(如网络设备或 GMTAP 生产者)导出的数据包,这些数据包被转储到 pcap 文件
5469 net-analyzer zabbix agent Enable zabbix agent (for to-be-monitored machines) 启用zabbix agent(用于被监控机器)
5470 net-analyzer zabbix agent2 Enable go-based zabbix agent 2 (for to-be-monitored machines) 启用基于go的zabbix agent 2(用于被监控机器)
5471 net-analyzer zabbix frontend Enable zabbix web frontend 启用 zabbix web 前端
5472 net-analyzer zabbix ipv6 Turn on support of IPv6 开启对 IPv6 的支持
5473 net-analyzer zabbix java Enable Zabbix Java JMX Management Gateway 启用 Zabbix Java JMX 管理网关
5474 net-analyzer zabbix libxml2 Use libxml2 client library 使用 libxml2 客户端库
5475 net-analyzer zabbix mbedtls Use net-libs/mbedtls as TLS backend 使用 net-libs/mbedtls 作为 TLS 后端
5476 net-analyzer zabbix odbc Enable Database Monitor and use UnixODBC Library by default 启用数据库监视器并默认使用 UnixODBC 库
5477 net-analyzer zabbix openipmi Enable openipmi things 启用 openipmi 事物
5478 net-analyzer zabbix openssl Use dev-libs/openssl as TLS backend 使用 dev-libs/openssl 作为 TLS 后端
5479 net-analyzer zabbix pcre2 Use dev-libs/libpcre2 instead of dev-libs/libpcre 使用 dev-libs/libpcre2 而不是 dev-libs/libpcre
5480 net-analyzer zabbix proxy Enable proxy support 启用代理支持
5481 net-analyzer zabbix server Enable zabbix server 启用 zabbix 服务器
5482 net-analyzer zabbix ssh SSH v2 based checks 基于 SSH v2 的检查
5483 net-analyzer zabbix static Build statically linked binaries 构建静态链接的二进制文件
5484 net-analyzer zmap mongo Add support for storing in a mongo DB via dev-db/mongodb 通过 dev-db/mongodb 添加对存储在 mongo DB 中的支持
5485 net-analyzer zmap redis Add support for storing in a redis DB via dev-libs/hiredis 通过 dev-libs/hiredis 添加对存储在 redis 数据库中的支持
5486 net-dialup accel-ppp ipoe Build IPoE kernel module 构建 IPoE 内核模块
5487 net-dialup accel-ppp libtomcrypt Support crypto algorithms through dev-libs/libtomcrypt instead of dev-libs/openssl 通过 dev-libs/libtomcrypt 而不是 dev-libs/openssl 支持加密算法
5488 net-dialup accel-ppp shaper Support for traffic shaping 支持流量整形
5489 net-dialup accel-ppp valgrind Compile in valgrind hints 在 valgrind 提示中编译
5490 net-dialup freeradius memcached Include dev-libs/libmemcached in caching drivers 在缓存驱动程序中包含 dev-libs/libmemcached
5491 net-dialup freeradius mongodb Include support for MongoDB database 包括对 MongoDB 数据库的支持
5492 net-dialup freeradius pcap Build the RADIUS sniffer which requires net-libs/libpcap. 构建需要 net-libs/libpcap 的 RADIUS 嗅探器。
5493 net-dialup freeradius redis Include support for Redis database 包括对 Redis 数据库的支持
5494 net-dialup freeradius rest Include support for sending and receiving HTTP requests 包括对发送和接收 HTTP 请求的支持
5495 net-dialup freeradius-client scp Add service type hints derived from username prefix 添加从用户名前缀派生的服务类型提示
5496 net-dialup freeradius-client shadow Enable shadow password support 启用影子密码支持
5497 net-dialup mgetty fax Enables fax support 启用传真支持
5498 net-dialup mgetty fidonet Enables FidoNet support 启用 FidoNet 支持
5499 net-dialup openl2tp client Enable l2tp client. 启用 l2tp 客户端。
5500 net-dialup openl2tp dmalloc Enable debugging using dev-libs/dmalloc. 使用 dev-libs/dmalloc 启用调试。
5501 net-dialup openl2tp rpc Enable RPC control management. This flag is required for l2tpconfig to be built and used. 启用 RPC 控制管理。构建和使用 l2tpconfig 需要此标志。
5502 net-dialup openl2tp server Enable l2tp server. 启用 l2tp 服务器。
5503 net-dialup openl2tp stats Enable status files. Note: when they are used, this hampers performance of the daemon. 启用状态文件。注意:当它们被使用时,这会妨碍守护进程的性能。
5504 net-dialup ppp activefilter Enables active filter support 启用有源滤波器支持
5505 net-dialup ppp dhcp Installs PPP DHCP client plugin for IP address allocation by a DHCP server (see http://www.netservers.co.uk/gpl/) 为 DHCP 服务器分配 IP 地址安装 PPP DHCP 客户端插件(参见 http://www.netservers.co.uk/gpl/)
5506 net-dialup ppp eap-tls Enables support for Extensible Authentication Protocol and Transport Level Security (see http://www.nikhef.nl/~janjust/ppp/index.html) 启用对可扩展身份验证协议和传输级别安全性的支持(请参阅 http://www.nikhef.nl/~janjust/ppp/index.html)
5507 net-dialup ppp gtk Installs GTK+ password prompting program that can be used by passprompt.so PPP plugin for reading the password from a X11 input terminal 安装 GTK+ 密码提示程序,passprompt.so PPP 插件可以使用该程序从 X11 输入终端读取密码
5508 net-dialup ppp radius Enables RADIUS support 启用 RADIUS 支持
5509 net-dialup xl2tpd kernel Enable kernel interface for PPPoL2TP 为 PPPoL2TP 启用内核接口
5510 net-dns avahi autoipd Build and install the IPv4LL (RFC3927) network address configuration daemon 构建和安装 IPv4LL (RFC3927) 网络地址配置守护进程
5511 net-dns avahi bookmarks Install the avahi-bookmarks application (requires dev-python/twisted) 安装 avahi-bookmarks 应用程序(需要 dev-python/twisted)
5512 net-dns avahi gtk Use gtk3 for the avahi utilities to build the avahi-ui-gtk3 library 为 avahi 实用程序使用 gtk3 来构建 avahi-ui-gtk3 库
5513 net-dns avahi howl-compat Enable compat libraries for howl 为 howl 启用兼容库
5514 net-dns avahi mdnsresponder-compat Enable compat libraries for mDNSResponder 为 mDNSResponder 启用兼容库
5515 net-dns bind dlz Enables dynamic loaded zones, 3rd party extension 启用动态加载区域、第 3 方扩展
5516 net-dns bind dnsrps Enable the DNS Response Policy Service (DNSRPS) API, a mechanism to allow an external response policy provider 启用 DNS 响应策略服务 (DNSRPS) API,这是一种允许外部响应策略提供程序的机制
5517 net-dns bind dnstap Enables dnstap packet logging 启用 dnstap 数据包日志记录
5518 net-dns bind fixed-rrset Enables fixed rrset-order option 启用固定的 rrset-order 选项
5519 net-dns bind geoip2 Enable GeoIP2 API from MaxMind 从 MaxMind 启用 GeoIP2 API
5520 net-dns bind gssapi Enable gssapi support 启用 gssapi 支持
5521 net-dns bind json Enable JSON statistics channel 启用 JSON 统计通道
5522 net-dns bind lmdb Enable LMDB support to store configuration for 'addzone' zones 启用 LMDB 支持以存储“addzone”区域的配置
5523 net-dns bind-tools gssapi Enable gssapi support 启用 gssapi 支持
5524 net-dns ddclient examples Install various example files, like for cron. 安装各种示例文件,例如 cron。
5525 net-dns ddclient iproute2 Use sys-apps/iproute2 instead of sys-apps/net-tools for interaction. 使用 sys-apps/iproute2 而不是 sys-apps/net-tools 进行交互。
5526 net-dns dnsdist dnscrypt Enable the ability to act as a DNSCrypt server 启用充当 DNSCrypt 服务器的功能
5527 net-dns dnsdist dnstap Enable support for dnstap 启用对 dnstap 的支持
5528 net-dns dnsdist doh Enable support for dns over http via www-servers/h2o 通过 www-servers/h2o 启用对 dns over http 的支持
5529 net-dns dnsdist lmdb Enable support for lmdb 启用对 lmdb 的支持
5530 net-dns dnsdist regex Enable support for regular expression matching via dev-libs/re2 通过 dev-libs/re2 启用对正则表达式匹配的支持
5531 net-dns dnsdist remote-logging Enable support for remote logging via dev-libs/protobuf 通过 dev-libs/protobuf 启用对远程日志记录的支持
5532 net-dns dnsdist ssl Enable support for and encrypted client-server communication via dev-libs/libsodium 通过 dev-libs/libsodium 启用对客户端-服务器通信的支持和加密
5533 net-dns dnsmasq auth-dns Add support for acting as an authorative DNS server. 添加对充当权威 DNS 服务器的支持。
5534 net-dns dnsmasq conntrack Add support for Linux conntrack connection marking. 添加对 Linux conntrack 连接标记的支持。
5535 net-dns dnsmasq dhcp Enable support for acting as a DHCP server. 启用对充当 DHCP 服务器的支持。
5536 net-dns dnsmasq dhcp-tools Install extra command line tools for manually managing DHCP leases. 安装额外的命令行工具来手动管理 DHCP 租约。
5537 net-dns dnsmasq dnssec Enable support DNSSEC validation and caching. 启用支持 DNSSEC 验证和缓存。
5538 net-dns dnsmasq dumpfile Include code to dump packets to a libpcap-format file for debugging 包含将数据包转储到 libpcap 格式文件以进行调试的代码
5539 net-dns dnsmasq id Whether report *.bind CHAOS info to clients, otherwise forward such requests upstream instead 是否向客户端报告 *.bind CHAOS 信息,否则将此类请求转发到上游
5540 net-dns dnsmasq libidn2 Enable support for Internationalized Domain Names, via net-dns/libidn2 rather than net-dns/libidn 通过 net-dns/libidn2 而不是 net-dns/libidn 启用对国际化域名的支持
5541 net-dns dnsmasq loop Include functionality to probe for and remove DNS forwarding loops 包括探测和删除 DNS 转发循环的功能
5542 net-dns dnsmasq nettlehash Use hashing functions from dev-libs/nettle 使用来自 dev-libs/nettle 的散列函数
5543 net-dns dnsmasq script Enable support for calling scripts when leases change. 在租约更改时启用对调用脚本的支持。
5544 net-dns dnsmasq tftp Enables built in TFTP server for netbooting. 启用用于网络引导的内置 TFTP 服务器。
5545 net-dns dnssec-validator dlv Enable support for the DNSSEC look-aside validation 启用对 DNSSEC 后备验证的支持
5546 net-dns dnssec-validator nsec3 Enable support for the NSEC3 Resource Record 启用对 NSEC3 资源记录的支持
5547 net-dns getdns getdns-query Add getdns_query tool 添加 getdns_query 工具
5548 net-dns getdns getdns-server-mon Add getdns_server_mon tool 添加 getdns_server_mon 工具
5549 net-dns getdns libev Enable dev-libs/libev support 启用 dev-libs/libev 支持
5550 net-dns getdns libevent Enable dev-libs/libevent support 启用 dev-libs/libevent 支持
5551 net-dns getdns libuv Enable dev-libs/libuv support 启用 dev-libs/libuv 支持
5552 net-dns getdns stubby Add Stubby DNS Privacy Deamon 添加 Stubby DNS 隐私守护程序
5553 net-dns getdns unbound Enable net-dns/unbound libraries support 启用 net-dns/unbound 库支持
5554 net-dns hash-slinger ipsec Enable support for IPSECKEY records (ipseckey) 启用对 IPSECKEY 记录 (ipseckey) 的支持
5555 net-dns hash-slinger openpgp Enable support for OPENPGPKEY records (openpgpkey) 启用对 OPENPGPKEY 记录的支持 (openpgpkey)
5556 net-dns hash-slinger ssh Enable support for SSHFP records (sshfp) 启用对 SSHFP 记录 (sshfp) 的支持
5557 net-dns idnkit liteonly Compile and install lite library only 仅编译和安装 lite 库
5558 net-dns knot cookies Enable the DNS cookie module (RFC 7873) 启用 DNS cookie 模块 (RFC 7873)
5559 net-dns knot dnsproxy Enable the tiny DNS proxy module 启用微型 DNS 代理模块
5560 net-dns knot dnstap Include support for the dnstap binary log format (http://dnstap.info/) 包括对 dnstap 二进制日志格式的支持 (http://dnstap.info/)
5561 net-dns knot doh Enable DNS over HTTP (DoH) using libnghttp2 使用 libnghttp2 启用 DNS over HTTP (DoH)
5562 net-dns knot fastparser Use a zone file parser that is faster, but requires more memory and CPU time to compile 使用速度更快但需要更多内存和 CPU 时间来编译的区域文件解析器
5563 net-dns knot geoip Enable the Geography-based responses module 启用基于地理的响应模块
5564 net-dns knot libidn2 If IDN support is enabled, use net-dns/libidn2 instead of net-dns/libidn 如果启用了 IDN 支持,请使用 net-dns/libidn2 而不是 net-dns/libidn
5565 net-dns knot noudp Enable the module which can send empty truncated responses to UDP queries 启用可以向 UDP 查询发送空截断响应的模块
5566 net-dns knot onlinesign Enable the module that sign zones on the fly instead of pre-signing zone 启用动态签署区域而不是预签署区域的模块
5567 net-dns knot queryacl Enable the module for query access control 启用查询访问控制模块
5568 net-dns knot rrl Enable the response rate limiting module 开启响应限速模块
5569 net-dns knot stats Enable the server statistics module 启用服务器统计模块
5570 net-dns knot synthrecord Enable the automatic forward/reverse records module 启用自动正向/反向记录模块
5571 net-dns knot utils Install Knot utilities, such as kdig, kzonecheck, ... 安装 Knot 实用程序,例如 kdig、kzonecheck、...
5572 net-dns knot whoami Enable the whoami response module 启用 whoami 响应模块
5573 net-dns knot xdp Enable eXpress Data Path 启用 eXpress 数据路径
5574 net-dns mydns alias Enable David Phillips aliasing 启用 David Phillips 别名
5575 net-dns mydns status Enable the STATUS opcode to check server status 启用 STATUS 操作码以检查服务器状态
5576 net-dns nsd bind8-stats Enables BIND8 like NSTATS and XSTATS 启用 BIND8,如 NSTATS 和 XSTATS
5577 net-dns nsd dnstap Enable the structured binary log format 启用结构化二进制日志格式
5578 net-dns nsd libevent Use libevent or libev, useful when zone count is high 使用 libevent 或 libev,当区域计数很高时很有用
5579 net-dns nsd minimal-responses If minimal responses are disabled, responses are more likely to get truncated, resulting in TCP fallback 如果禁用最小响应,响应更有可能被截断,导致 TCP 回退
5580 net-dns nsd munin Install a plugin for net-analyzer/munin to graph statistical data from nsd. 为 net-analyzer/munin 安装一个插件来绘制来自 nsd 的统计数据。
5581 net-dns nsd nsec3 Enable NSEC3 support 启用 NSEC3 支持
5582 net-dns nsd ratelimit Enables ratelimiting, based on query name, type and source 根据查询名称、类型和来源启用速率限制
5583 net-dns nsd root-server Configure NSD as a root server 将 NSD 配置为根服务器
5584 net-dns nsd runtime-checks Enable runtime checks, this could lead to a reduced service level 启用运行时检查,这可能会导致服务级别降低
5585 net-dns opendnssec external-hsm Enables support for storing DNSSEC keys through an arbitrary non-portage PKCS#11 interface, specified through an environment variable 支持通过环境变量指定的任意非 portage PKCS#11 接口存储 DNSSEC 密钥
5586 net-dns opendnssec opensc Enables support for storing DNSSEC keys through a dev-libs/opensc PKCS#11 interface 支持通过 dev-libs/opensc PKCS#11 接口存储 DNSSEC 密钥
5587 net-dns opendnssec signer Enables signing capabilities for OpenDNSSEC 为 OpenDNSSEC 启用签名功能
5588 net-dns opendnssec softhsm Enables support for storing DNSSEC keys in a dev-libs/softhsm PKCS#11 object 支持将 DNSSEC 密钥存储在 dev-libs/softhsm PKCS#11 对象中
5589 net-dns pdns lmdb Use LMDB as backend. 使用 LMDB 作为后端。
5590 net-dns pdns lua-records Enable LUA records. 启用 LUA 记录。
5591 net-dns pdns mydns Making it possible to use a MyDNS MySQL database with PowerDNS (not recommended for new deployments). 可以将 MyDNS MySQL 数据库与 PowerDNS 一起使用(不推荐用于新部署)。
5592 net-dns pdns remote Use a generic socket or pipe as a backend (via JSON RPC requests). 使用通用套接字或管道作为后端(通过 JSON RPC 请求)。
5593 net-dns pdns sodium Use dev-libs/libsodium for cryptography 使用 dev-libs/libsodium 进行密码学
5594 net-dns pdns tinydns Use a TinyDNS CDB database as backend. 使用 TinyDNS CDB 数据库作为后端。
5595 net-dns pdns tools Build optional tools (dnsscan, dnsscope, etc..). 构建可选工具(dnsscan、dnsscope 等)。
5596 net-dns pdns-recursor dnstap Enable support for dnstap 启用对 dnstap 的支持
5597 net-dns pdns-recursor sodium Use dev-libs/libsodium for cryptography 使用 dev-libs/libsodium 进行密码学
5598 net-dns pdnsd urandom Linux-only: use /dev/urandom (pseudo-random number generation) instead of the default use of random() PRNG. 仅限 Linux:使用 /dev/urandom(伪随机数生成)而不是默认使用 random() PRNG。
5599 net-dns resolvconf-symlink symlink Actually replace /etc/resolv.conf with a symlink. Without this flag, the ebuild is a no-op. 实际上用符号链接替换 /etc/resolv.conf 。没有这个标志,ebuild 是一个空操作。
5600 net-dns unbound dnscrypt Enable DNSCrypt support 启用 DNSCrypt 支持
5601 net-dns unbound dnstap Enable dnstap support 启用 dnstap 支持
5602 net-dns unbound ecdsa Enable ECDSA support 启用 ECDSA 支持
5603 net-dns unbound ecs Enable EDNS client subnet support 启用 EDNS 客户端子网支持
5604 net-dns unbound gost Enable GOST support 启用 GOST 支持
5605 net-dns unbound http2 Enable HTTP/2 support for DoHnet-libs/nghttp2 为 DoHnet-libs/nghttp2 启用 HTTP/2 支持
5606 net-dns unbound redis Enable cache db backend which usesdev-libs/hiredis 启用使用 dev-libs/hiredis 的缓存数据库后端
5607 net-dns unbound tfo Enable TCP Fast Open client+server 启用 TCP 快速打开客户端+服务器
5608 net-firewall arno-iptables-firewall plugins Install optional plugins 安装可选插件
5609 net-firewall arno-iptables-firewall rsyslog Install configuration snippet for app-admin/rsyslog 为 app-admin/rsyslog 安装配置片段
5610 net-firewall conntrack-tools cthelper Use net-libs/libnetfilter_cthelper for userspace conntrack helper support 使用 net-libs/libnetfilter_cthelper 获得用户空间 conntrack 助手支持
5611 net-firewall conntrack-tools cttimeout Use net-libs/libnetfilter_cttimeout for conntrack timeout support 使用 net-libs/libnetfilter_cttimeout 支持 conntrack 超时
5612 net-firewall conntrack-tools libtirpc Use net-libs/libtirpc for RPC support 使用 net-libs/libtirpc 支持 RPC
5613 net-firewall ebtables perl Install the ebtables-save script which uses perl 安装使用 perl 的 ebtables-save 脚本
5614 net-firewall firehol ipset Use net-firewall/ipset. 使用网络防火墙/ipset。
5615 net-firewall firewalld iptables Add support for net-firewall/iptables as firewall backend 添加对 net-firewall/iptables 作为防火墙后端的支持
5616 net-firewall firewalld nftables Add support for net-firewall/nftables as firewall backend 添加对 net-firewall/nftables 作为防火墙后端的支持
5617 net-firewall fwknop client Build fwknop client 构建 fwknop 客户端
5618 net-firewall fwknop extras Install utility scripts and AppArmor policy for fwknopd 为 fwknopd 安装实用程序脚本和 AppArmor 策略
5619 net-firewall fwknop firewalld Use net-firewall/firewalld as the default server backend 使用 net-firewall/firewalld 作为默认服务器后端
5620 net-firewall fwknop gdbm Use sys-libs/gdbm to store fwknopd digest cache 使用 sys-libs/gdbm 存储 fwknopd 摘要缓存
5621 net-firewall fwknop gpg Enable GPG support via app-crypt/gpgme 通过 app-crypt/gpgme 启用 GPG 支持
5622 net-firewall fwknop iptables Use net-firewall/iptables as the default server backend 使用 net-firewall/iptables 作为默认服务器后端
5623 net-firewall fwknop nfqueue Enable UDP-only NFQUEUE server mode (no net-libs/libpcap dependency) 启用 UDP-only NFQUEUE 服务器模式(无 net-libs/libpcap 依赖)
5624 net-firewall fwknop server Build fwknopd server 构建 fwknopd 服务器
5625 net-firewall fwknop udp-server Enable UDP-only server mode (no net-libs/libpcap dependency) 启用 UDP-only 服务器模式(无 net-libs/libpcap 依赖)
5626 net-firewall ipt_netflow natevents Netflow NAT translation events (NEL) support Netflow NAT 转换事件 (NEL) 支持
5627 net-firewall iptables conntrack Build against net-libs/libnetfilter_conntrack when enables the connlabel matcher 启用 connlabel 匹配器时针对 net-libs/libnetfilter_conntrack 构建
5628 net-firewall iptables netlink Build against libnfnetlink which enables the nfnl_osf util 针对启用 nfnl_osf 实用程序的 libnfnetlink 构建
5629 net-firewall iptables nftables Support nftables kernel interface 支持 nftables 内核接口
5630 net-firewall iptables pcap Build against net-libs/libpcap which enables the nfbpf_compile util 针对启用 nfbpf_compile 实用程序的 net-libs/libpcap 构建
5631 net-firewall nftables doc Create man pages for the package (requires app-text/asciidoc) 为包创建手册页(需要 app-text/asciidoc)
5632 net-firewall nftables json Enable JSON support via dev-libs/jansson 通过 dev-libs/jansson 启用 JSON 支持
5633 net-firewall nftables modern-kernel Install init scripts for 3.18 or higher kernels with atomic rule updates 使用原子规则更新为 3.18 或更高版本的内核安装初始化脚本
5634 net-firewall nftables xtables Add libxtables support to try to automatically translate rules added by iptables-compat 添加 libxtables 支持以尝试自动翻译 iptables-compat 添加的规则
5635 net-firewall nufw nfconntrack Use netfilter_conntrack 使用 netfilter_conntrack
5636 net-firewall nufw nfqueue Use NFQUEUE instead of QUEUE 使用 NFQUEUE 代替 QUEUE
5637 net-firewall nufw pam_nuauth Add support for pam nufw from PAM 从 PAM 添加对 pam nufw 的支持
5638 net-firewall nufw plaintext Add support for authentication with plaintext files 添加对使用纯文本文件进行身份验证的支持
5639 net-firewall nufw prelude Add support/bindings for the Prelude Intrusion Detection System 为 Prelude 入侵检测系统添加支持/绑定
5640 net-firewall pglinux cron Install cron script 安装 cron 脚本
5641 net-firewall shorewall init Adds the capability to place the firewall in a safe state prior to bringing up the network interfaces 添加在启动网络接口之前将防火墙置于安全状态的功能
5642 net-firewall shorewall ipv4 Installs everything needed to create a full IPv4 firewall 安装创建完整 IPv4 防火墙所需的一切
5643 net-firewall shorewall ipv6 Adds the capability to create a full IPv6 firewall (requires net-firewall/shorewall ipv4 USE flag) 添加创建完整 IPv6 防火墙的功能(需要 net-firewall/shorewall ipv4 USE 标志)
5644 net-firewall shorewall lite4 Installs everything needed to just *run* an IPv4 compiled firewall script created with net-firewall/shorewall ipv4 USE flag 安装只需*运行*使用 net-firewall/shorewall ipv4 USE 标志创建的 IPv4 编译防火墙脚本所需的一切
5645 net-firewall shorewall lite6 Installs everything needed to just *run* an IPv6 compiled firewall script created with net-firewall/shorewall ipv6 USE flag 安装只需*运行*使用 net-firewall/shorewall ipv6 USE 标志创建的 IPv6 编译防火墙脚本所需的一切
5646 net-firewall ufw examples Example ufw config files ufw 配置文件示例
5647 net-firewall ufw ipv6 IPv6 support for iptables 对 iptables 的 IPv6 支持
5648 net-fs autofs dmalloc Enable debugging with the dmalloc library 使用 dmalloc 库启用调试
5649 net-fs autofs ldap Install LDAP module 安装 LDAP 模块
5650 net-fs autofs libtirpc Use TiRPC library instead of SunRPC 使用 TiRPC 库而不是 SunRPC
5651 net-fs autofs mount-locking Enable locking to prevent corruption of /etc/mtab in the presence of concurrent auto-mounting. If enabled, recursive auto-mounting (eg. using autofs to bind or loop mount a filesystem which is itself auto-mounted) is not possible. 启用锁定以防止 /etc/mtab 在并发自动挂载时损坏。如果启用,递归自动挂载(例如,使用 autofs 绑定或循环挂载本身自动挂载的文件系统)是不可能的。
5652 net-fs autofs sasl Enable SASL support in the LDAP module 在 LDAP 模块中启用 SASL 支持
5653 net-fs cifs-utils ads Enable Active Directory support and create cifs.idmap binary - idmap support 启用 Active Directory 支持并创建 cifs.idmap 二进制文件 - idmap 支持
5654 net-fs cifs-utils caps Enable sys-libs/libcap-ng support 启用 sys-libs/libcap-ng 支持
5655 net-fs cifs-utils creds cifs credentials support cifs 凭证支持
5656 net-fs cifs-utils python Enable support for python and install python tools 启用对 python 的支持并安装 python 工具
5657 net-fs cvmfs server Install the cvmfsd program and init script 安装 cvmfsd 程序和初始化脚本
5658 net-fs libnfs utils Build/install nfs-{cat,ls,cp} utils 构建/安装 nfs-{cat,ls,cp} 工具
5659 net-fs netatalk pgp Add support pgp authentication module 添加支持pgp认证模块
5660 net-fs netatalk quota Add support for user quota on various filesystems 在各种文件系统上添加对用户配额的支持
5661 net-fs netatalk shadow Add shadow support 添加阴影支持
5662 net-fs netatalk ssl Use dev-libs/openssl to provide DHX User Access Modules. These are not used with most recent versions of OS X and can be kept disabled without risks. 使用 dev-libs/openssl 提供 DHX 用户访问模块。这些不与最新版本的 OS X 一起使用,并且可以在没有风险的情况下保持禁用。
5663 net-fs netatalk tracker Add support for spotlight like tracker 添加对跟踪器等聚光灯的支持
5664 net-fs nfs-utils junction Enable NFS junction support in nfsref 在 nfsref 中启用 NFS 连接支持
5665 net-fs nfs-utils ldap Add ldap support 添加 ldap 支持
5666 net-fs nfs-utils libmount Link mount.nfs with libmount 将 mount.nfs 与 libmount 链接
5667 net-fs nfs-utils nfsdcld Enable nfsdcld NFSv4 clientid tracking daemon 启用 nfsdcld NFSv4 clientid 跟踪守护进程
5668 net-fs nfs-utils nfsidmap Enable support for newer nfsidmap helper 启用对较新的 nfsidmap 帮助程序的支持
5669 net-fs nfs-utils nfsv4 Enable support for NFSv4 启用对 NFSv4 的支持
5670 net-fs nfs-utils nfsv41 Enable support for NFSv4.1 启用对 NFSv4.1 的支持
5671 net-fs nfs-utils uuid Support UUID lookups in rpc.mountd 支持 rpc.mountd 中的 UUID 查找
5672 net-fs openafs apidoc Build API documentation using app-doc/doxygen. May take a *long* time to build. 使用 app-doc/doxygen 构建 API 文档。可能需要*长*时间来构建。
5673 net-fs openafs bitmap-later Enable fast startup of file server by not reading bitmap till needed. 通过在需要之前不读取位图来启用文件服务器的快速启动。
5674 net-fs openafs fuse Build fuse client. 构建熔断器客户端。
5675 net-fs openafs kauth Install the DEPRECATED kauth server, PAM modules, and utilities 安装已弃用的 kauth 服务器、PAM 模块和实用程序
5676 net-fs openafs modules Build libafs kernel module. Disable only if you know what you're doing: without this module OpenAFS client will not work. 构建 libafs 内核模块。仅当您知道自己在做什么时才禁用:没有此模块,OpenAFS 客户端将无法工作。
5677 net-fs openafs namei Enable namei fileserver instead of inode fileserver. You should disable this option only if compatibility with inode format AFS storage is required. 启用 namei 文件服务器而不是 inode 文件服务器。仅当需要与 inode 格式 AFS 存储兼容时,才应禁用此选项。
5678 net-fs openafs pthreaded-ubik Enable installation of pthreaded ubik applications. 启用 pthread ubik 应用程序的安装。
5679 net-fs openafs supergroups Enable support for nested pts groups. 启用对嵌套 pts 组的支持。
5680 net-fs openafs tsm Enable use of the Tivoli TSM API libraries from app-backup/tsm for butc support. AMD64 only. 允许使用来自 app-backup/tsm 的 Tivoli TSM API 库来支持 butc。仅限 AMD64。
5681 net-fs openafs ubik-read-while-write Enable vlserver read from db cache during write locks (EXPERIMENTAL) 在写锁定期间启用 vlserver 从 db 缓存读取(实验)
5682 net-fs s3fs gnutls Enable net-libs/gnutls crypto backend 启用 net-libs/gnutls 加密后端
5683 net-fs s3fs nettle Use dev-libs/nettle network functions with GnuTLS. 将 dev-libs/nettle 网络函数与 GnuTLS 一起使用。
5684 net-fs s3fs nss Enable dev-libs/nss crypto backend 启用 dev-libs/nss 加密后端
5685 net-fs s3fs openssl Enable dev-libs/openssl crypto backend 启用 dev-libs/openssl 加密后端
5686 net-fs samba addc Enable Active Directory Domain Controller support 启用 Active Directory 域控制器支持
5687 net-fs samba addns Enable AD DNS integration 启用 AD DNS 集成
5688 net-fs samba ads Enable Active Directory support 启用 Active Directory 支持
5689 net-fs samba ceph Enable support for Ceph distributed filesystem via sys-cluster/ceph 通过 sys-cluster/ceph 启用对 Ceph 分布式文件系统的支持
5690 net-fs samba client Enables the client part 启用客户端部分
5691 net-fs samba cluster Enable support for clustering 启用对集群的支持
5692 net-fs samba glusterfs Enable support for Glusterfs filesystem via sys-cluster/glusterfs 通过 sys-cluster/glusterfs 启用对 Glusterfs 文件系统的支持
5693 net-fs samba gpg Use app-crypt/gpgme for AD DC 为 AD DC 使用 app-crypt/gpgme
5694 net-fs samba iprint Enabling iPrint technology by Novell Novell 启用 iPrint 技术
5695 net-fs samba json Enable json audit support through dev-libs/jansson 通过 dev-libs/jansson 启用 json 审计支持
5696 net-fs samba ntvfs Enable support for NTVFS fileserver 启用对 NTVFS 文件服务器的支持
5697 net-fs samba profiling-data Enables support for collecting profiling data 支持收集分析数据
5698 net-fs samba quota Enables support for user quotas 启用对用户配额的支持
5699 net-fs samba regedit Enable support for regedit command-line tool 启用对 regedit 命令行工具的支持
5700 net-fs samba snapper Enable vfs_snapper module (requires sys-apps/dbus) 启用 vfs_snapper 模块(需要 sys-apps/dbus)
5701 net-fs samba spotlight Enable support for spotlight backend 启用对 Spotlight 后端的支持
5702 net-fs samba system-heimdal Use app-crypt/heimdal instead of bundled heimdal. 使用 app-crypt/heimdal 而不是捆绑的 heimdal。
5703 net-fs samba system-mitkrb5 Use app-crypt/mit-krb5 instead of app-crypt/heimdal. 使用 app-crypt/mit-krb5 代替 app-crypt/heimdal。
5704 net-fs samba winbind Enables support for the winbind auth daemon 启用对 winbind auth 守护进程的支持
5705 net-ftp frox transparent Enable transparent proxying of data connections 启用数据连接的透明代理
5706 net-ftp ftpbase zeroconf Enable support for zero-configuration networking via Avahi. 通过 Avahi 启用对零配置网络的支持。
5707 net-ftp lftp convert-mozilla-cookies Install the convert-mozilla-cookies script and its run-time dependencies 安装 convert-mozilla-cookies 脚本及其运行时依赖项
5708 net-ftp lftp verify-file Install the verify-file script and its run-time dependencies 安装验证文件脚本及其运行时依赖项
5709 net-ftp proftpd authfile Enable support for the auth-file module 启用对 auth-file 模块的支持
5710 net-ftp proftpd ban Enable support for the mod_ban module 启用对 mod_ban 模块的支持
5711 net-ftp proftpd case Enable support for the mod_case module 启用对 mod_case 模块的支持
5712 net-ftp proftpd copy Enable support for the mod_copy module 启用对 mod_copy 模块的支持
5713 net-ftp proftpd ctrls Enable support for the mod_ctrls and mod_ctrls_admin modules 启用对 mod_ctrls 和 mod_ctrls_admin 模块的支持
5714 net-ftp proftpd deflate Enable support for the mod_deflate module 启用对 mod_deflate 模块的支持
5715 net-ftp proftpd diskuse Enable support for the mod_diskuse module 启用对 mod_diskuse 模块的支持
5716 net-ftp proftpd dso Enable support for the mod_dso module 启用对 mod_dso 模块的支持
5717 net-ftp proftpd dynmasq Enable support for the mod_dynmasq module, for dynamically updating MasqueradeAddress for dyndns-like scenarios) 启用对 mod_dynmasq 模块的支持,用于为类似 dyndns 的场景动态更新 MasqueradeAddress)
5718 net-ftp proftpd exec Enable support for the mod_exec module. WARNING: this could be a security risk 启用对 mod_exec 模块的支持。警告:这可能是一个安全风险
5719 net-ftp proftpd ident Enable support for the mod_ident module 启用对 mod_ident 模块的支持
5720 net-ftp proftpd ifsession Enable support for the ifsession module 启用对 ifsession 模块的支持
5721 net-ftp proftpd ifversion Enable support for the mod_ifversion module 启用对 mod_ifversion 模块的支持
5722 net-ftp proftpd log-forensic Enable support for the mod_log_forensic module, log only suspicious actions. 启用对 mod_log_forensic 模块的支持,仅记录可疑操作。
5723 net-ftp proftpd memcache Enable support for the mod_memcache module, for using memcached servers 启用对 mod_memcache 模块的支持,以使用 memcached 服务器
5724 net-ftp proftpd msg Enable support for the mod_msg module, allows system users to send messages to connected clients via the ftpdctl program. 启用对 mod_msg 模块的支持,允许系统用户通过 ftpdctl 程序向连接的客户端发送消息。
5725 net-ftp proftpd qos Enable support for the mod_qos module 启用对 mod_qos 模块的支持
5726 net-ftp proftpd ratio Enable support for the mod_ratio module 启用对 mod_ratio 模块的支持
5727 net-ftp proftpd readme Enable support for the mod_readme module 启用对 mod_readme 模块的支持
5728 net-ftp proftpd rewrite Enable support for the rewrite module 启用对重写模块的支持
5729 net-ftp proftpd sftp Enable support for the mod_sftp module and optionally mod_sftp_sql and mod_sftp_pam if matching USE flags are enabled 如果启用了匹配的 USE 标志,则启用对 mod_sftp 模块的支持以及可选的 mod_sftp_sql 和 mod_sftp_pam
5730 net-ftp proftpd shaper Enable support for the mod_shaper module 启用对 mod_shaper 模块的支持
5731 net-ftp proftpd sitemisc Enable support for the sitemisc module 启用对 sitemisc 模块的支持
5732 net-ftp proftpd sodium Use dev-libs/libsodium for password encryption an key exchange 使用 dev-libs/libsodium 进行密码加密和密钥交换
5733 net-ftp proftpd softquota Enable support for the quotatab module 启用对 quotatab 模块的支持
5734 net-ftp proftpd unique-id Enable support for the mod_unique_id module, every connection gets unique ID. 启用对 mod_unique_id 模块的支持,每个连接都有唯一的 ID。
5735 net-ftp proftpd vroot Enable support for the virtual root module 启用对虚拟根模块的支持
5736 net-ftp pure-ftpd anondel Permit anonymous to delete files 允许匿名删除文件
5737 net-ftp pure-ftpd anonperm Permit anonymous to change file permissions 允许匿名更改文件权限
5738 net-ftp pure-ftpd anonren Permit anonymous to rename files 允许匿名重命名文件
5739 net-ftp pure-ftpd anonres Permit anonymous to resume file transfers 允许匿名恢复文件传输
5740 net-ftp pure-ftpd implicittls Enable TLS on Port 990 在端口 990 上启用 TLS
5741 net-ftp pure-ftpd noiplog Disables logging of IP addresses 禁用 IP 地址记录
5742 net-ftp pure-ftpd paranoidmsg Display paranoid messages instead of normal ones 显示偏执消息而不是正常消息
5743 net-ftp pure-ftpd resolveids Resolve UIDs/GIDs 解析 UID/GID
5744 net-ftp pure-ftpd sysquota Enables system quota support (needs sys-fs/quota) 启用系统配额支持(需要 sys-fs/quota)
5745 net-ftp pure-ftpd vchroot Enable support for virtual chroot (possible security risk) 启用对虚拟 chroot 的支持(可能存在安全风险)
5746 net-ftp tftp-hpa client Compile and install the tftp client 编译安装tftp客户端
5747 net-ftp tftp-hpa server Compile and install the tftp server 编译安装tftp服务器
5748 net-ftp yafc ssh Build with SFTP support 使用 SFTP 支持构建
5749 net-im biboumi udns Asynchronously resolve domain names using net-libs/udns 使用 net-libs/udns 异步解析域名
5750 net-im bitlbee libevent Use libevent for event handling 使用 libevent 进行事件处理
5751 net-im bitlbee msn Enable MSN Messenger IM protocol support. 启用 MSN Messenger IM 协议支持。
5752 net-im bitlbee nss Use NSS for SSL support in MSN and Jabber 在 MSN 和 Jabber 中使用 NSS 支持 SSL
5753 net-im bitlbee oscar Enable Oscar (AIM/ICQ) IM protocol support 启用 Oscar (AIM/ICQ) IM 协议支持
5754 net-im bitlbee otr Enable support for encrypted conversations 启用对加密对话的支持
5755 net-im bitlbee plugins Enable support for plugins 启用对插件的支持
5756 net-im bitlbee purple Use libpurple instead of the built-in IM protocol support 使用 libpurple 代替内置的 IM 协议支持
5757 net-im bitlbee twitter Enable Twitter protocol support 启用 Twitter 协议支持
5758 net-im choqok attica Build Open Collaboration Services plugin using kde-frameworks/attica 使用 kde-frameworks/attica 构建开放式协作服务插件
5759 net-im choqok share Enable support for a share menu using kde-frameworks/purpose 使用 kde-frameworks/purpose 启用对共享菜单的支持
5760 net-im choqok telepathy Enable support for the real-time communication framework telepathy 启用对实时通信框架心灵感应的支持
5761 net-im coturn mongodb Enable support for the mongodb database 启用对 mongodb 数据库的支持
5762 net-im coturn redis Enable support for the redis database 启用对 redis 数据库的支持
5763 net-im dino gpg Enable OpenPGP encryption plugin 启用 OpenPGP 加密插件
5764 net-im dino http Enable HTTP file upload plugin 启用 HTTP 文件上传插件
5765 net-im dino notification-sound notification sounds plugin 通知声音插件
5766 net-im dino omemo Enable OMEMO encryption plugin 启用 OMEMO 加密插件
5767 net-im ejabberd captcha Support for CAPTCHA Forms (XEP-158) on registration 注册时支持验证码表格 (XEP-158)
5768 net-im ejabberd full-xml Use XML features in XMPP stream (ex: CDATA), requires XML compliant clients 在 XMPP 流中使用 XML 功能(例如:CDATA),需要符合 XML 的客户端
5769 net-im ejabberd mssql Enable Microsoft SQL Server support (via ODBC) for data storage 为数据存储启用 Microsoft SQL Server 支持(通过 ODBC)
5770 net-im ejabberd mysql Enable MySQL support for data storage 启用 MySQL 对数据存储的支持
5771 net-im ejabberd odbc Enable ODBC support to access data storage 启用 ODBC 支持以访问数据存储
5772 net-im ejabberd postgres Enable PostgreSQL support for data storage 为数据存储启用 PostgreSQL 支持
5773 net-im ejabberd redis Enable Redis support for transient data 启用 Redis 对瞬态数据的支持
5774 net-im ejabberd roster-gw Turn on workaround for processing gateway subscriptions 打开处理网关订阅的解决方法
5775 net-im ejabberd sip Enable SIP support 启用 SIP 支持
5776 net-im ejabberd sqlite Enable SQLite database support 启用 SQLite 数据库支持
5777 net-im ejabberd stun Enable STUN/TURN support 启用 STUN/TURN 支持
5778 net-im ejabberd zlib Enable Stream Compression (XEP-0138) using zlib 使用 zlib 启用流压缩 (XEP-0138)
5779 net-im ekg2 gadu Enable Gadu-Gadu protocol support (requires net-libs/libgadu). 启用 Gadu-Gadu 协议支持(需要 net-libs/libgadu)。
5780 net-im ekg2 gpg Enable jabber message encryption through app-crypt/gpgme. 通过 app-crypt/gpgme 启用 jabber 消息加密。
5781 net-im ekg2 minimal Disable building extra plugins with no additional deps. 禁用构建额外的插件而不需要额外的依赖。
5782 net-im ekg2 openssl Support encryption in sim plugin, using OpenSSL. 支持 sim 插件中的加密,使用 OpenSSL。
5783 net-im ekg2 sqlite Support logging messages into SQLite3 database. 支持将消息记录到 SQLite3 数据库中。
5784 net-im empathy gnome-online-accounts Enable using net-libs/gnome-online-accounts for authorization (e.g. for Google Talk) 启用使用 net-libs/gnome-online-accounts 进行授权(例如用于 Google Talk)
5785 net-im empathy map Enable world map support through media-libs/libchamplain 通过 media-libs/libchamplain 启用世界地图支持
5786 net-im err irc Pull optional dependencies, needed for IRC backend 拉取可选依赖项,IRC 后端需要
5787 net-im gajim crypt End to end encryption and GPG encryption 端到端加密和GPG加密
5788 net-im gajim geolocation Sharing your location 分享您的位置
5789 net-im gajim jingle Audio and video calls 音频和视频通话
5790 net-im gajim omemo Install dependencies for OMEMO encryption plugin 安装 OMEMO 加密插件的依赖项
5791 net-im gajim remote Controling Gajim instance from command line with gajim-remote 使用 gajim-remote 从命令行控制 Gajim 实例
5792 net-im gajim rst Generating XHTML output from RST code 从 RST 代码生成 XHTML 输出
5793 net-im gajim spell Spellchecking of composed messages 组合消息的拼写检查
5794 net-im gajim upnp Ability to request your router to forward port for file transfer 能够请求您的路由器转发端口以进行文件传输
5795 net-im gajim webp Support WebP avatars 支持WebP头像
5796 net-im libcommuni qml Install optional qml files. 安装可选的 qml 文件。
5797 net-im libcommuni uchardet Use app-i18n/uchardet, which is upstreams default, instead of dev-libs/icu, which makes impossible to run tests. 使用上游默认的 app-i18n/uchardet,而不是 dev-libs/icu,这使得无法运行测试。
5798 net-im mcabber aspell Adds support for app-text/aspell spell checker. 添加对 app-text/aspell 拼写检查器的支持。
5799 net-im mcabber otr Enable encrypted conversations using Off-The-Records messaging 使用非记录消息启用加密对话
5800 net-im pidgin gadu Enable Gadu Gadu protocol support 启用 Gadu Gadu 协议支持
5801 net-im pidgin groupwise Enable Novell Groupwise protocol support 启用 Novell Groupwise 协议支持
5802 net-im pidgin gstreamer Enables voice and video sessions 启用语音和视频会话
5803 net-im pidgin gtk Builds Pidgin, the GTK+ interface 构建 Pidgin,GTK+ 界面
5804 net-im pidgin meanwhile Enable meanwhile support for Sametime protocol 同时启用对 Sametime 协议的支持
5805 net-im pidgin ncurses Build finch, console interface 构建 finch,控制台界面
5806 net-im pidgin prediction Enable Contact Availability Prediction plugin 启用联系可用性预测插件
5807 net-im pidgin python Build libgnt (GLib Ncurses Toolkit used by finch) with python scripting support 使用 python 脚本支持构建 libgnt(finch 使用的 GLib Ncurses 工具包)
5808 net-im pidgin xscreensaver Use X screensaver protocol extension to monitor idle/active status based on mouse/keyboard events 使用 X 屏保协议扩展根据鼠标/键盘事件监控空闲/活动状态
5809 net-im pidgin zephyr Enable Zephyr protocol support 启用 Zephyr 协议支持
5810 net-im profanity gpg Enable OpenPGP encryption 启用 OpenPGP 加密
5811 net-im profanity omemo Enable OMEMO encryption 启用 OMEMO 加密
5812 net-im profanity otr Enable encrypted conversations using Off-The-Records messaging 使用非记录消息启用加密对话
5813 net-im prosody libevent Use libevent for event handling 使用 libevent 进行事件处理
5814 net-im psi aspell Enable spellchecking using app-text/aspell 使用 app-text/aspell 启用拼写检查
5815 net-im psi enchant Enable spellchecking using app-text/enchant 使用 app-text/enchant 启用拼写检查
5816 net-im psi extras Enable Psi+ patchset 启用 Psi+ 补丁集
5817 net-im psi hunspell Enable spellchecking using app-text/hunspell 使用 app-text/hunspell 启用拼写检查
5818 net-im psi iconsets Install additional iconsets, some of them have no clear licensing 安装额外的图标集,其中一些没有明确的许可
5819 net-im psi keyring Enable storing password in system keyring manager 启用在系统密钥环管理器中存储密码
5820 net-im psi webengine Enable themed, html-based chatlogs using dev-qt/qtwebengine 使用 dev-qt/qtwebengine 启用基于 html 的主题聊天日志
5821 net-im psi whiteboarding Enable experimental interactive SVG drawing 启用实验性交互式 SVG 绘图
5822 net-im psi xscreensaver Use X screensaver protocol extension to monitor idle/active status based on mouse/keyboard events 使用 X 屏保协议扩展根据鼠标/键盘事件监控空闲/活动状态
5823 net-im psimedia extras Enable Psi+ mode (required when built for Psi+) 启用 Psi+ 模式(为 Psi+ 构建时需要)
5824 net-im qtox X Enable auto-away support 启用自动离开支持
5825 net-im qtox notification Use snorenotify for desktop notifications 将 snorenotify 用于桌面通知
5826 net-im qtox spellcheck Enable spell checking support 启用拼写检查支持
5827 net-im spectrum2 frotz Enables the Z-Engine backend. 启用 Z-Engine 后端。
5828 net-im spectrum2 irc Enables the IRC backend, based on net-im/libcommuni. 启用基于 net-im/libcommuni 的 IRC 后端。
5829 net-im spectrum2 purple Enables the libpurple backend, based on net-im/pidgin. 启用基于 net-im/pidgin 的 libpurple 后端。
5830 net-im spectrum2 sms Enables the SMS backend, based on app-mobilephone/smstools. 启用基于 app-mobilephone/smstools 的 SMS 后端。
5831 net-im spectrum2 twitter Enables the Twitter backend. 启用 Twitter 后端。
5832 net-im spectrum2 whatsapp Enables the WhatsApp backend, based on net-im/transwhat. 基于 net-im/transwhat 启用 WhatsApp 后端。
5833 net-im teams swiftshader Install SwiftShader OpenGL libaries. 安装 SwiftShader OpenGL 库。
5834 net-im teams system-ffmpeg Use the system-wide media-video/ffmpeg instead of bundled. 使用系统范围的媒体视频/ffmpeg 而不是捆绑。
5835 net-im teams system-mesa Use the system-wide media-libs/mesa instead of bundled. 使用系统范围的媒体库/台面而不是捆绑。
5836 net-im telegram-desktop enchant Enable the app-text/aspell spell-checking backend 启用 app-text/aspell 拼写检查后端
5837 net-im telegram-desktop hunspell Enable the app-text/hunspell spell-checking backend 启用 app-text/hunspell 拼写检查后端
5838 net-im telegram-desktop screencast Enable support for remote desktop and screen cast using media-video/pipewire 使用 media-video/pipewire 启用对远程桌面和屏幕投射的支持
5839 net-im telepathy-connection-managers gadu Enable Gadu Gadu protocol support. 启用 Gadu Gadu 协议支持。
5840 net-im telepathy-connection-managers icq Enable ICQ IM protocol support. 启用 ICQ IM 协议支持。
5841 net-im telepathy-connection-managers irc Enable Internet Relay Chat (IRC) support. 启用 Internet 中继聊天 (IRC) 支持。
5842 net-im telepathy-connection-managers meanwhile Enable meanwhile support for Sametime protocol. 同时启用对 Sametime 协议的支持。
5843 net-im telepathy-connection-managers msn Enable MSN Messenger IM protocol support. 启用 MSN Messenger IM 协议支持。
5844 net-im telepathy-connection-managers sip Enable SIP/SIMPLE messaging and calling. 启用 SIP/SIMPLE 消息传递和呼叫。
5845 net-im telepathy-connection-managers sipe Enable Sip Exchange Protocol. 启用 SIP 交换协议。
5846 net-im telepathy-connection-managers steam Enable Steam Chat support. 启用 Steam 聊天支持。
5847 net-im telepathy-connection-managers xmpp Enable XMPP protocol handler (this is also Google Talk). 启用 XMPP 协议处理程序(这也是 Google Talk)。
5848 net-im telepathy-connection-managers yahoo Enable Yahoo! messaging support. 启用雅虎!消息支持。
5849 net-im telepathy-connection-managers zeroconf Enable Link-Local Messaging via the zeroconf or Bonjour protocol. 通过 zeroconf 或 Bonjour 协议启用链路本地消息传递。
5850 net-im tkabber plugins Enables installation the extra plugins 允许安装额外的插件
5851 net-im toxic audio-notify Enables native sound notifications 启用本机声音通知
5852 net-im toxic games Enables some small mini-games 启用一些小型迷你游戏
5853 net-im toxic llvm Enables support for LLVM Address Sanitizer 启用对 LLVM Address Sanitizer 的支持
5854 net-im toxic notification Enables desktop notifications with libnotify, with sound support. 使用 libnotify 启用桌面通知,并提供声音支持。
5855 net-im toxic qrcode Enables QR code support 启用二维码支持
5856 net-im toxic sound Enables audio calling 启用音频通话
5857 net-im toxic video Enables video calling 启用视频通话
5858 net-im vacuum annotations Enable adding comments to the contacts in the roster 启用向名册中的联系人添加评论
5859 net-im vacuum aspell Select app-text/aspell spell checker backend 选择 app-text/aspell 拼写检查后端
5860 net-im vacuum autostatus Change the status in accordance with the time of inactivity 根据不活动时间更改状态
5861 net-im vacuum avatars Enable assigning and displaying avatars 启用分配和显示头像
5862 net-im vacuum birthdayreminder Reminds about birthdays of your friends 提醒您朋友的生日
5863 net-im vacuum bitsofbinary Allow other modules to receive or send a small amount of binary data in XMPP stanza 允许其他模块在 XMPP 节中接收或发送少量二进制数据
5864 net-im vacuum bookmarks Enable creating bookmarks of the Jabber conferences and Web pages 启用创建 Jabber 会议和网页的书签
5865 net-im vacuum captchaforms Perform tests for humanity outside of Web browser 在 Web 浏览器之外执行人性测试
5866 net-im vacuum chatstates Post user's activity to the chat 将用户的活动发布到聊天中
5867 net-im vacuum clientinfo Enable sending and receiving peer's application version, local time and last activity info 启用发送和接收对等方的应用程序版本、本地时间和上次活动信息
5868 net-im vacuum commands Enable performing special commands provided by various services 启用执行各种服务提供的特殊命令
5869 net-im vacuum compress Compress stream of messages 压缩消息流
5870 net-im vacuum console Enable inspecting a raw XML stream 启用检查原始 XML 流
5871 net-im vacuum dataforms Allow other modules to process and display data forms intended for the user 允许其他模块处理和显示供用户使用的数据表单
5872 net-im vacuum datastreamsmanager Enable initiating a custom data stream between two XMPP entities 启用在两个 XMPP 实体之间启动自定义数据流
5873 net-im vacuum emoticons Enable using smiley images in messages 启用在消息中使用笑脸图像
5874 net-im vacuum enchant Select app-text/enchant spell checker backend 选择应用程序文本/附魔拼写检查器后端
5875 net-im vacuum filemessagearchive Allows to save the history of conversations to local files 允许将对话历史保存到本地文件
5876 net-im vacuum filestreamsmanager Enable transferring files between two XMPP entities 启用在两个 XMPP 实体之间传输文件
5877 net-im vacuum filetransfer Enable sending files to peers 启用向对等方发送文件
5878 net-im vacuum gateways Simplify the interaction with gateways to other IM systems 简化与网关到其他 IM 系统的交互
5879 net-im vacuum hunspell Select app-text/hunspell spell checker backend 选择 app-text/hunspell 拼写检查后端
5880 net-im vacuum inbandstreams Enable initiating in-band data stream between two XMPP enitites 启用在两个 XMPP 实体之间启动带内数据流
5881 net-im vacuum iqauth Enable logging on Jabber servers withous SASL authentication support 在不支持 SASL 身份验证的情况下启用 Jabber 服务器上的日志记录
5882 net-im vacuum jabbersearch Enable searching contacts in Jabber networks 在 Jabber 网络中启用搜索联系人
5883 net-im vacuum messagearchiver Enable saving the communication history both locally and on the server 启用在本地和服务器上保存通信历史记录
5884 net-im vacuum messagecarbons Allows to keep all user IM clients engaged in a conversation 允许让所有用户 IM 客户端参与对话
5885 net-im vacuum multiuserchat Enable Jabber multi-user conferences 启用 Jabber 多用户会议
5886 net-im vacuum pepmanager Allows other plugins to receive and publish PEP events 允许其他插件接收和发布 PEP 事件
5887 net-im vacuum privacylists Enable blocking the undesirable contacts 启用阻止不需要的联系人
5888 net-im vacuum privatestorage Allow other modules to store arbitrary data on the server 允许其他模块在服务器上存储任意数据
5889 net-im vacuum recentcontacts Displays a recently used contacts 显示最近使用的联系人
5890 net-im vacuum registration Enable creating accounts in Jabber services 启用在 Jabber 服务中创建帐户
5891 net-im vacuum remotecontrol Allows to remotely control the client 允许远程控制客户端
5892 net-im vacuum rosteritemexchange Allows to exchange contact list items 允许交换联系人列表项
5893 net-im vacuum rostersearch Allows to search for contacts in the roster 允许搜索名册中的联系人
5894 net-im vacuum servermessagearchive Allows to save the history of communications on the server 允许在服务器上保存通信历史
5895 net-im vacuum servicediscovery Enable receiving information about Jabber entities 启用接收有关 Jabber 实体的信息
5896 net-im vacuum sessionnegotiation Enable initiating the session between two entities with setting the rules for XMPP stanzas exchange 启用通过设置 XMPP 节交换规则启动两个实体之间的会话
5897 net-im vacuum shortcutmanager Allows to setup user defined shortcuts 允许设置用户定义的快捷方式
5898 net-im vacuum socksstreams Enable initiating SOCKS5 data streams between two XMPP entities 启用在两个 XMPP 实体之间启动 SOCKS5 数据流
5899 net-im vacuum urlprocessor Allows other plugins to load data from custom types of URLs 允许其他插件从自定义类型的 URL 加载数据
5900 net-im vacuum vcard Enable obtaining peer's personal contact information 启用获取对等方的个人联系信息
5901 net-im vacuum xmppuriqueries Allow other plugins to handle XMPP URI queries 允许其他插件处理 XMPP URI 查询
5902 net-im zoom bundled-libjpeg-turbo Use bundled libturbojpeg instead of media-libs/libjpeg-turbo 使用捆绑的 libturbojpeg 而不是 media-libs/libjpeg-turbo
5903 net-im zoom bundled-qt Use bundled Qt and icu instead of system-wide libs 使用捆绑的 Qt 和 icu 而不是系统范围的库
5904 net-im zoom opencl Use OpenCL for virtual background support (virtual/opencl) 使用 OpenCL 进行虚拟后台支持(virtual/opencl)
5905 net-irc anope ldap Build LDAP modules for e.g. opertypes 为例如操作类型构建 LDAP 模块
5906 net-irc anope sql Build modules which require SQL 构建需要 SQL 的模块
5907 net-irc anope ssl Provide SSL services using OpenSSL 使用 OpenSSL 提供 SSL 服务
5908 net-irc anope tre Use dev-libs/tre for regular expressions 对正则表达式使用 dev-libs/tre
5909 net-irc atheme-services cracklib Enable nickserv/cracklib module for enforcing strong account passwords 启用 nickserv/cracklib 模块以强制执行强帐户密码
5910 net-irc atheme-services largenet Enable support/tweaks for large networks 为大型网络启用支持/调整
5911 net-irc atheme-services ldap Enable ldap-backed authentication module 启用 ldap 支持的身份验证模块
5912 net-irc atheme-services perl Install a perl module which wraps around the services' XML-RPC interface 安装一个环绕服务的 XML-RPC 接口的 perl 模块
5913 net-irc epic5 archive Use app-arch/libarchive to use zip and tar archives from scripts. 使用 app-arch/libarchive 从脚本中使用 zip 和 tar 存档。
5914 net-irc epic5 valgrind Compile against dev-util/valgrind headers to improve memory-leak checking when running epic5 under valgrind. 在 valgrind 下运行 epic5 时,针对 dev-util/valgrind 头文件进行编译以改进内存泄漏检查。
5915 net-irc hexchat libcanberra Enable sound event support using media-libs/libcanberra 使用 media-libs/libcanberra 启用声音事件支持
5916 net-irc hexchat plugin-checksum Build Checksum plugin (needs plugins) 构建校验和插件(需要插件)
5917 net-irc hexchat plugin-fishlim Build FiSHLiM plugin (needs plugins ) 构建 FiSHLiM 插件(需要插件)
5918 net-irc hexchat plugin-sysinfo Build SysInfo plugin (needs plugins) 构建 SysInfo 插件(需要插件)
5919 net-irc hexchat theme-manager Build the theme manager (mono) 构建主题管理器(单声道)
5920 net-irc inspircd gnutls Enable TLS support 启用 TLS 支持
5921 net-irc inspircd ldap Enable LDAP support 启用 LDAP 支持
5922 net-irc inspircd maxminddb Add support for geolocation using libMaxMindDB 使用 libMaxMindDB 添加对地理定位的支持
5923 net-irc inspircd mbedtls Add support for TLS using the mbedTLS library 使用 mbedTLS 库添加对 TLS 的支持
5924 net-irc inspircd mysql Enable MySQL database backend 启用 MySQL 数据库后端
5925 net-irc inspircd postgres Enable PostgreSQL database backend 启用 PostgreSQL 数据库后端
5926 net-irc inspircd re2 Add support for Google RE2 regular expressions library 添加对 Google RE2 正则表达式库的支持
5927 net-irc inspircd regex-posix Add support for POSIX Regular Expressions 添加对 POSIX 正则表达式的支持
5928 net-irc inspircd regex-stdlib Add support for C++ stdlib regular expressions 添加对 C++ stdlib 正则表达式的支持
5929 net-irc inspircd sqlite Enable Sqlite database backend 启用 Sqlite 数据库后端
5930 net-irc inspircd ssl Enable SSL support 启用 SSL 支持
5931 net-irc inspircd sslrehashsignal Enable rehashing SSL module by SIGUSR1 通过 SIGUSR1 启用重新散列 SSL 模块
5932 net-irc inspircd tre Enable support for TRE, a lightweight, robust, and efficient POSIX compliant regexp matching library 启用对 TRE 的支持,这是一个轻量级、强大且高效的 POSIX 兼容正则表达式匹配库
5933 net-irc iroffer-dinoex admin Compile with HTTP Admin 使用 HTTP Admin 编译
5934 net-irc iroffer-dinoex blowfish Compile with blowfish encryption support 使用河豚加密支持编译
5935 net-irc iroffer-dinoex chroot Compile with chroot support 使用 chroot 支持编译
5936 net-irc iroffer-dinoex http Compile with HTTP server support 使用 HTTP 服务器支持编译
5937 net-irc iroffer-dinoex memsave Compile with memory protection 使用内存保护编译
5938 net-irc iroffer-dinoex telnet Compile with Telnet server support 使用 Telnet 服务器支持编译
5939 net-irc irssi otr Adds support for a loadable IRC otr module 添加对可加载 IRC otr 模块的支持
5940 net-irc irssi proxy Adds support for a loadable IRC proxy module 添加对可加载 IRC 代理模块的支持
5941 net-irc kvirc dcc-video Support video connections over DCC protocol 支持通过 DCC 协议进行视频连接
5942 net-irc kvirc phonon Support Phonon for audio output 支持 Phonon 进行音频输出
5943 net-irc limnoria crypt Enables user authentication with GPG 使用 GPG 启用用户身份验证
5944 net-irc ngircd ident Enables support for net-libs/libident 启用对 net-libs/libident 的支持
5945 net-irc ngircd irc-plus Enables support for the IRC+ protocol (needs virtual/libiconv) 启用对 IRC+ 协议的支持(需要 virtual/libiconv)
5946 net-irc ngircd strict-rfc Strict RFC compliance; may harm compatibility 严格的 RFC 合规性;可能会损害兼容性
5947 net-irc psybnc multinetwork Adds support for multiple networks 添加对多个网络的支持
5948 net-irc psybnc oidentd Adds support for oidentd 添加对 oidentd 的支持
5949 net-irc psybnc scripting Adds scripting support 添加脚本支持
5950 net-irc quassel bundled-icons Use icon themes bundled with Quassel, rather than depending on system packages. 使用与 Quassel 捆绑的图标主题,而不是依赖于系统包。
5951 net-irc quassel crypt Support core->network per-channel and per-query blowfish encryption via app-crypt/qca SLOT 2. 通过 app-crypt/qca SLOT 2 支持 core->network 每个通道和每个查询的河豚加密。
5952 net-irc quassel dbus Support desktop notifications via the StatusNotifier D-Bus service (used by most modern desktop environments). 通过 StatusNotifier D-Bus 服务(大多数现代桌面环境使用)支持桌面通知。
5953 net-irc quassel gui Build the Qt5 GUI client for quassel. If this USE flag is disabled, the GUI is not built, and cannot be used. You might want to disable this on the server, but you need it enabled on the client. 为 quassel 构建 Qt5 GUI 客户端。如果禁用此 USE 标志,则不会构建 GUI,并且无法使用。您可能想在服务器上禁用它,但您需要在客户端上启用它。
5954 net-irc quassel monolithic Build standalone client with integrated core, no external quasselcore needed. Only useful if you don't want to use Quassel's client/server model. The server and X flags are not needed in this case but it is possible to enable them too. 构建具有集成核心的独立客户端,无需外部 quasselcore。仅当您不想使用 Quassel 的客户端/服务器模型时才有用。在这种情况下不需要服务器和 X 标志,但也可以启用它们。
5955 net-irc quassel oxygen Support the Oxygen icon set that was the default for KDE4. 支持 KDE4 的默认氧气图标集。
5956 net-irc quassel server Build the server binary. If this USE flag is disabled, the 'core' server binary for quassel is not built, and cannot be used. You need this enabled on the server, but you might want to disable it on the client. 构建服务器二进制文件。如果禁用此 USE 标志,则不会构建 quassel 的“核心”服务器二进制文件,并且无法使用。您需要在服务器上启用它,但您可能希望在客户端上禁用它。
5957 net-irc quassel snorenotify Support for Snore notification framework. 支持打鼾通知框架。
5958 net-irc quassel urlpreview Use QtWebEngine rendering engine for showing URL thumbnails. 使用 QtWebEngine 渲染引擎显示 URL 缩略图。
5959 net-irc rbot aspell Use aspell instead of ispell in the "spell" plugin for rbot. The vanilla plugin uses ispell, but enabling this flag makes it use the ispell interface from aspell instead. 在 rbot 的“spell”插件中使用 aspell 而不是 ispell。 vanilla 插件使用 ispell,但启用此标志使其使用 aspell 中的 ispell 接口。
5960 net-irc rbot cal Add dependency over a package providing the /usr/bin/cal command, which is needed to enable the "cal" plugin for rbot. If the USE flag is disabled the plugin is also disabled by default. 添加对提供 /usr/bin/cal 命令的包的依赖项,这是启用 rbot 的“cal”插件所必需的。如果 USE 标志被禁用,则默认情况下插件也被禁用。
5961 net-irc rbot figlet Add dependency over app-misc/figlet, which is used by the "figlet" plugin for rbot. If the USE flag is disabled the plugin will be unable to use figlet; if toilet is also disabled, the plugin will be disabled. 添加对 app-misc/figlet 的依赖,它由 rbot 的“figlet”插件使用。如果 USE 标志被禁用,插件将无法使用 figlet;如果厕所也被禁用,插件将被禁用。
5962 net-irc rbot fortune Add dependency over games-misc/fortune-mod, which is needed to enable the "fortune" plugin for rbot. If the USE flag is disabled the plugin is also disabled by default. 添加对 games-misc/fortune-mod 的依赖,这是为 rbot 启用“fortune”插件所必需的。如果 USE 标志被禁用,则默认情况下插件也被禁用。
5963 net-irc rbot host Add dependency over net-dns/bind-tools (providing /usr/bin/host), which is needed to enable the "host" plugin for rbot. If the USE flag is disabled the plugin is also disabled by default. 添加对 net-dns/bind-tools 的依赖(提供 /usr/bin/host),这是为 rbot 启用“主机”插件所必需的。如果 USE 标志被禁用,则默认情况下插件也被禁用。
5964 net-irc rbot nls Build and install translation for the messages coming from the bot and its plugins (through dev-ruby/ruby-gettext). 为来自机器人及其插件的消息构建和安装翻译(通过 dev-ruby/ruby-gettext)。
5965 net-irc rbot timezone Add dependency over dev-ruby/tzinfo to enable the "time" plugin for rbot. If the USE flag is disabled the plugin is also disabled by default. 添加对 dev-ruby/tzinfo 的依赖以启用 rbot 的“时间”插件。如果 USE 标志被禁用,则默认情况下插件也被禁用。
5966 net-irc rbot toilet Add dependency over app-misc/toilet, which is used by the "figlet" plugin for rbot. If the USE flag is disabled the plugin will be unable to use toilet; if figlet is also disabled, the plugin will be disabled. 添加对 app-misc/toilet 的依赖,它由 rbot 的“figlet”插件使用。如果 USE 标志被禁用,插件将无法使用厕所;如果 figlet 也被禁用,插件将被禁用。
5967 net-irc rbot translator Add dependency over dev-ruby/mechanize, which is needed to enable the "translator" plugin for rbot. If the USE flag is disabled the plugin is also disabled by default. 添加对 dev-ruby/mechanize 的依赖,这是为 rbot 启用“翻译器”插件所必需的。如果 USE 标志被禁用,则默认情况下插件也被禁用。
5968 net-irc unrealircd class-nofakelag Enable an unsupported class::options flag called “nofakelag” allowing you to grant fakelag exemption to normal user (instead of just opers). 启用一个名为“nofakelag”的不受支持的 class::options 标志,允许您向普通用户(而不仅仅是操作员)授予 fakelag 豁免。
5969 net-irc unrealircd operoverride Enable OperOverride extension 启用操作覆盖扩展
5970 net-irc unrealircd operoverride-verify Enable requiring opers to invite themselves to +s/+p channels 启用要求操作员邀请自己加入 +s/+p 频道
5971 net-irc unrealircd prefixaq Enable chanadmin and chanowner prefixes 启用 chanadmin 和 chanowner 前缀
5972 net-irc unrealircd showlistmodes Display channel modes in /LIST (only configured at compiletime) 在 /LIST 中显示通道模式(仅在编译时配置)
5973 net-irc weechat alias Enable plugin for alias control 为别名控制启用插件
5974 net-irc weechat buflist Enable buflist plugin 启用 buflist 插件
5975 net-irc weechat charset Enable encoding conversions 启用编码转换
5976 net-irc weechat exec Enable exec plugin 启用执行插件
5977 net-irc weechat fifo Enable FIFO support (sh pipes) 启用 FIFO 支持(sh 管道)
5978 net-irc weechat fset Enable fast set plugin 启用快速设置插件
5979 net-irc weechat irc Enable IRC protocol support 启用 IRC 协议支持
5980 net-irc weechat logger Enable support for logging 启用对日志记录的支持
5981 net-irc weechat relay Enable relay plugin (experimental) 启用中继插件(实验性)
5982 net-irc weechat scripts Build infrastructure for scripting 为脚本构建基础架构
5983 net-irc weechat trigger Enable trigger plugin 启用触发器插件
5984 net-irc weechat typing Enable typing plugin 启用打字插件
5985 net-irc weechat xfer Enable xfer plugin support 启用 xfer 插件支持
5986 net-irc znc zlib Enable mod_deflate-like gzip support for znc's web interface using sys-libs/zlib. 使用 sys-libs/zlib 为 znc 的 Web 界面启用类似 mod_deflate 的 gzip 支持。
5987 net-libs aqbanking ebics Enable support for Electronic Banking Internet Communication Standard (EBICS) 启用对电子银行互联网通信标准 (EBICS) 的支持
5988 net-libs axtls cgi-lua Enables lua backed cgi for axhttpd server 为 axhttpd 服务器启用 lua 支持的 cgi
5989 net-libs axtls cgi-php Enables php backed cgi for axhttpd server 为 axhttpd 服务器启用 php 支持的 cgi
5990 net-libs axtls httpd Enables axhttpd web server component 启用 axhttpd Web 服务器组件
5991 net-libs axtls static Statically build axhttpd server 静态搭建axhttpd服务器
5992 net-libs c-client chappa Enable Eduardo Chappa's patches for use with mail-client/alpine (mainly adds support for maildir) 启用 Eduardo Chappa 的补丁以与 mail-client/alpine 一起使用(主要添加对 maildir 的支持)
5993 net-libs c-client doc Install RFCs related to IMAP 安装与 IMAP 相关的 RFC
5994 net-libs c-client topal Enable support for net-mail/topal for use with mail-client/alpine 启用对 net-mail/topal 的支持,以便与 mail-client/alpine 一起使用
5995 net-libs canlock header-parser Build article header parsers 构建文章标题解析器
5996 net-libs canlock legacy Build legacy API (v2 compatible) 构建旧版 API(兼容 v2)
5997 net-libs cvm vpopmail Enable vpopmail support 启用 vpopmail 支持
5998 net-libs czmq drafts Build draft API, which may change at any time without any notice, and is therefore not recommended for normal use. (requires draft support in net-libs/zeromq as well) 构建草稿API,可能随时更改,恕不另行通知,因此不建议正常使用。 (也需要 net-libs/zeromq 中的草案支持)
5999 net-libs czmq http-client Build support for HTTP client using net-misc/curl 使用 net-misc/curl 构建对 HTTP 客户端的支持
6000 net-libs czmq http-server Build support for HTTP server using net-libs/libmicrohttpd 使用 net-libs/libmicrohttpd 构建对 HTTP 服务器的支持
6001 net-libs czmq nss Use dev-libs/nss for SHA instead of an internal implementation 为 SHA 使用 dev-libs/nss 而不是内部实现
6002 net-libs czmq uuid Enable UUID support using sys-apps/util-linux 使用 sys-apps/util-linux 启用 UUID 支持
6003 net-libs daq afpacket Build the AFPacket data acquisition module. Functions similar to the PCAP module but with better performance. Snort can run unprivileged when using this module. AFpacket supports both inline and passive modes. 构建AFPacket数据采集模块。功能类似于 PCAP 模块,但性能更好。使用此模块时,Snort 可以非特权运行。 AFpacket 支持内联和被动模式。
6004 net-libs daq dump Build the Dump data acquisition module. The dump DAQ allows you to test the various inline mode features available in 2.9 Snort like injection and normalization. 构建转储数据采集模块。转储 DAQ 允许您测试 2.9 Snort 中可用的各种内联模式功能,例如注入和规范化。
6005 net-libs daq ipq Build the IPQ data acquisition module. IPQ is the old way to process iptables packets for inline deployments. Snort can not run unprivileged when using this module. 构建 IPQ 数据采集模块。 IPQ 是为内联部署处理 iptables 数据包的旧方法。使用此模块时,Snort 无法以非特权方式运行。
6006 net-libs daq nfq Build the NFQ data acquisition module. NFQ is the new way to process iptables packets for inline deployments. Snort can not run unprivileged when using this module. 构建NFQ数据采集模块。 NFQ 是为内联部署处理 iptables 数据包的新方法。使用此模块时,Snort 无法以非特权方式运行。
6007 net-libs daq pcap Build the PCAP data acquisition module. 构建 PCAP 数据采集模块。
6008 net-libs davix tools Install additional tools 安装附加工具
6009 net-libs farstream valgrind Compile in valgrind memory hints 在 valgrind 内存提示中编译
6010 net-libs freaklabs-chibiarduino promisc Enable promisc in the config file for packet sniffing 在配置文件中启用 promisc 以进行数据包嗅探
6011 net-libs glib-networking gnome Extract HTTP/HTTPS/SOCKS proxy configuration stored using GSettings 提取使用 GSettings 存储的 HTTP/HTTPS/SOCKS 代理配置
6012 net-libs glib-networking libproxy Use net-libs/libproxy for getting the HTTP/HTTPS/SOCKS proxy configuration 使用 net-libs/libproxy 获取 HTTP/HTTPS/SOCKS 代理配置
6013 net-libs gnome-online-accounts gnome Use gnome-base/gnome-control-center to set GNOME online accounts preferences 使用 gnome-base/gnome-control-center 设置 GNOME 在线帐户首选项
6014 net-libs gnutls brotli Enable brotli decompression support via app-arch/brotli 通过 app-arch/brotli 启用 brotli 解压支持
6015 net-libs gnutls dane Build libgnutls-dane, implementing DNS-based Authentication of Named Entities. Requires net-dns/unbound 构建 libgnutls-dane,实现命名实体的基于 DNS 的身份验证。需要 net-dns/unbound
6016 net-libs gnutls openssl Build openssl compatibility libraries 构建 openssl 兼容性库
6017 net-libs gnutls pkcs11 Add support for PKCS#11 through app-crypt/p11-kit 通过 app-crypt/p11-kit 添加对 PKCS#11 的支持
6018 net-libs gnutls sslv2 Support for the old/insecure SSLv2 protocol 支持旧的/不安全的 SSLv2 协议
6019 net-libs gnutls sslv3 Support for the old/insecure SSLv3 protocol 支持旧的/不安全的 SSLv3 协议
6020 net-libs gnutls test-full Enable full test mode 启用完整测试模式
6021 net-libs gnutls tls-heartbeat Enable the Heartbeat Extension in TLS and DTLS 在 TLS 和 DTLS 中启用心跳扩展
6022 net-libs gnutls tools Build extra tools 构建额外的工具
6023 net-libs gnutls valgrind Enable usage of dev-util/valgrind in debug 在调试中启用 dev-util/valgrind
6024 net-libs ldns dane Enable DNS-based Authentication of Named Entities (DANE) support 启用基于 DNS 的命名实体身份验证 (DANE) 支持
6025 net-libs ldns ecdsa Enable ECDSA support 启用 ECDSA 支持
6026 net-libs ldns ed25519 Enable ED25519 support 启用 ED25519 支持
6027 net-libs ldns ed448 Enable ED448 support 启用 ED448 支持
6028 net-libs ldns gost Enable GOST support 启用 GOST 支持
6029 net-libs libbitcoinconsensus asm Enable assembly for optimization 启用装配以进行优化
6030 net-libs libbitcoinconsensus knots Build enhanced Bitcoin Knots version, rather than Bitcoin Core 构建增强的比特币结版本,而不是比特币核心
6031 net-libs libetpan liblockfile Enable support for liblockfile library 启用对 liblockfile 库的支持
6032 net-libs libetpan lmdb Use dev-db/lmdb as cache DB 使用 dev-db/lmdb 作为缓存数据库
6033 net-libs libgsasl gcrypt Use dev-libs/libgcrypt for low-level crypto 使用 dev-libs/libgcrypt 进行低级加密
6034 net-libs libgsasl ntlm Add support for Microsoft's NTLM mechanism using net-libs/libntlm 使用 net-libs/libntlm 添加对 Microsoft 的 NTLM 机制的支持
6035 net-libs libiio aio Enable asynchronous IO support 启用异步 IO 支持
6036 net-libs libiscsi rdma Enable infiniband support via sys-cluster/rdma-core 通过 sys-cluster/rdma-core 启用 infiniband 支持
6037 net-libs libisds openssl Use dev-libs/openssl as crypto backend instead of app-crypt/gpgme and dev-libs/libgcrypt 使用 dev-libs/openssl 作为加密后端,而不是 app-crypt/gpgme 和 dev-libs/libgcrypt
6038 net-libs libmicrohttpd epoll Use epoll() system call 使用 epoll() 系统调用
6039 net-libs libmicrohttpd thread-names Assign thread names to internal threads, useful for dependent apps debugging 将线程名称分配给内部线程,对依赖应用程序调试很有用
6040 net-libs libnids glib Use dev-libs/glib for multiprocessing support 使用 dev-libs/glib 进行多处理支持
6041 net-libs libnids libnet Include code requiring net-libs/libnet 包括需要 net-libs/libnet 的代码
6042 net-libs libnma pkcs11 Enable PKCS#11 support in certificate chooser via app-crypt/gcr 通过 app-crypt/gcr 在证书选择器中启用 PKCS#11 支持
6043 net-libs liboauth bindist Alias for the nss USE flag, since there are license compliancy trouble when using OpenSSL. nss USE 标志的别名,因为使用 OpenSSL 时存在许可证合规问题。
6044 net-libs liboauth curl If enabled, net-misc/curl is used thorugh the libcurl library; if it's not, the curl command is used instead. Some features are only available when using the library, but using it as library requires matching SSL implementations. 如果启用,则通过 libcurl 库使用 net-misc/curl;如果不是,则使用 curl 命令。某些功能仅在使用该库时可用,但将其用作库需要匹配 SSL 实现。
6045 net-libs liboauth nss Use Mozilla NSS (dev-libs/nss) as hash library; if this is disabled, dev-libs/openssl is used instead. 使用 Mozilla NSS (dev-libs/nss) 作为哈希库;如果禁用,则使用 dev-libs/openssl。
6046 net-libs liboping filecaps Allow non-root users to use [n]oping utility. 允许非 root 用户使用 [n]oping 实用程序。
6047 net-libs liboping ncurses Build ncurses-based version of oping utility (requires sys-libs/ncurses) 构建基于 ncurses 的 oping 实用程序版本(需要 sys-libs/ncurses)
6048 net-libs libpcap netlink Use dev-libs/libnl to put wireless interfaces in monitor mode. 使用 dev-libs/libnl 将无线接口置于监控模式。
6049 net-libs libpcap rdma Enable RDMA capture support using sys-cluster/rdma-core 使用 sys-cluster/rdma-core 启用 RDMA 捕获支持
6050 net-libs libpcap remote Enable remote packet capture which may expose libpcap-based applications to attacks by malicious remote capture servers! 启用远程数据包捕获,这可能会使基于 libpcap 的应用程序受到恶意远程捕获服务器的攻击!
6051 net-libs libpcap yydebug Enable parser debugging code 启用解析器调试代码
6052 net-libs libprotoident tools Build and install command-line tools 构建和安装命令行工具
6053 net-libs libproxy duktape Use dev-lang/duktape for PAC parsing 使用 dev-lang/duktape 进行 PAC 解析
6054 net-libs libproxy gnome Enable support for reading proxy settings from GNOME 启用对从 GNOME 读取代理设置的支持
6055 net-libs libproxy kde Enable support for reading proxy settings from KDE 启用对从 KDE 读取代理设置的支持
6056 net-libs libproxy spidermonkey Use libmozjs from dev-lang/spidermonkey for PAC parsing 使用来自 dev-lang/spidermonkey 的 libmozjs 进行 PAC 解析
6057 net-libs libproxy webkit Use libjavascriptcoregtk from net-libs/webkit-gtk for PAC parsing 使用 net-libs/webkit-gtk 中的 libjavascriptcoregtk 进行 PAC 解析
6058 net-libs libqmi mbim Support QMI over Mobile Broadband Interface Model (MBIM) 支持基于移动宽带接口模型 (MBIM) 的 QMI
6059 net-libs libqmi qrtr Support QMI over IPC Router bus (QRTR) 支持 QMI over IPC 路由器总线 (QRTR)
6060 net-libs libsoup brotli Enable brotli decompression support 启用brotli解压支持
6061 net-libs libsoup gssapi Enable GSSAPI support 启用 GSSAPI 支持
6062 net-libs libsoup samba Use net-fs/samba for NTLM Single Sign-On 使用 net-fs/samba 进行 NTLM 单点登录
6063 net-libs libsoup sysprof Enable profiling data capture support using dev-util/sysprof-capture 使用 dev-util/sysprof-capture 启用分析数据捕获支持
6064 net-libs libsrtp aesicm Use AES ICM cryptographic algorithm 使用 AES ICM 加密算法
6065 net-libs libsrtp console Use /dev/console instead of stdout for error messages 使用 /dev/console 而不是 stdout 来获取错误消息
6066 net-libs libsrtp nss Use NSS crypto primitives 使用 NSS 加密原语
6067 net-libs libsrtp openssl Use OpenSSL crypto primitives 使用 OpenSSL 加密原语
6068 net-libs libsrtp syslog Use syslog for error messages 使用 syslog 获取错误消息
6069 net-libs libssh gcrypt Use dev-libs/libgcrypt as TLS provider 使用 dev-libs/libgcrypt 作为 TLS 提供者
6070 net-libs libssh gssapi Enable gssapi support 启用 gssapi 支持
6071 net-libs libssh mbedtls Use net-libs/mbedtls as TLS provider 使用 net-libs/mbedtls 作为 TLS 提供者
6072 net-libs libssh pcap Build with PCAP output support 使用 PCAP 输出支持构建
6073 net-libs libssh server Build with SSH server support 使用 SSH 服务器支持构建
6074 net-libs libssh sftp Build with SFTP support 使用 SFTP 支持构建
6075 net-libs libssh2 gcrypt Use dev-libs/libgcrypt instead of dev-libs/openssl 使用 dev-libs/libgcrypt 而不是 dev-libs/openssl
6076 net-libs libssh2 mbedtls Use net-libs/mbedtls instead of dev-libs/openssl 使用 net-libs/mbedtls 而不是 dev-libs/openssl
6077 net-libs libtorrent-rasterbar dht Enable DHT (distributed hash table) support 启用 DHT(分布式哈希表)支持
6078 net-libs libtrace numa Use sys-process/numactl 使用 sys-process/numactl
6079 net-libs libupnp blocking-tcp Do not use async socket calls 不要使用异步套接字调用
6080 net-libs libupnp reuseaddr Allow clean restarts by binding the socket with SO_REUSEADDR 通过将套接字与 SO_REUSEADDR 绑定来允许干净重启
6081 net-libs libupnp samples Install sample applications 安装示例应用程序
6082 net-libs libvncserver 24bpp Enable 24bpp support 启用 24bpp 支持
6083 net-libs libvncserver filetransfer Enable support for TightVNC's file transfer protocol 启用对 TightVNC 文件传输协议的支持
6084 net-libs libvncserver gcrypt Use dev-libs/libgcrypt as crypto backend 使用 dev-libs/libgcrypt 作为加密后端
6085 net-libs libvncserver lzo Enable LZO support via dev-libs/lzo instead of using internal miniLZO implementation 通过 dev-libs/lzo 启用 LZO 支持,而不是使用内部 miniLZO 实现
6086 net-libs libwebsockets access-log Support generating Apache-compatible access logs 支持生成兼容Apache的访问日志
6087 net-libs libwebsockets client The client part of the library and libwebsockets-test-client 库的客户端部分和 libwebsockets-test-client
6088 net-libs libwebsockets generic-sessions With the Generic Sessions plugin 使用通用会话插件
6089 net-libs libwebsockets http-proxy Support for rewriting HTTP proxying 支持重写 HTTP 代理
6090 net-libs libwebsockets http2 Support the HTTP/2 protocol 支持 HTTP/2 协议
6091 net-libs libwebsockets lejp With the Lightweight JSON Parser 使用轻量级 JSON 解析器
6092 net-libs libwebsockets libev Support event loops via dev-libs/libev 通过 dev-libs/libev 支持事件循环
6093 net-libs libwebsockets libevent Support event loops via dev-libs/libevent 通过 dev-libs/libevent 支持事件循环
6094 net-libs libwebsockets libuv Support asynchronous I/O via dev-libs/libuv 通过 dev-libs/libuv 支持异步 I/O
6095 net-libs libwebsockets mbedtls Use mbedTLS replacement for OpenSSL 使用 mbedTLS 替换 OpenSSL
6096 net-libs libwebsockets peer-limits Track peers and restrict resources a single peer can allocate 跟踪对等点并限制单个对等点可以分配的资源
6097 net-libs libwebsockets server-status Support json + jscript server monitoring 支持json+jscript服务器监控
6098 net-libs libwebsockets smtp Provide SMTP support 提供 SMTP 支持
6099 net-libs libwebsockets sqlite3 Require SQLITE3 support 需要 SQLITE3 支持
6100 net-libs loudmouth asyncns Use net-libs/libasyncns for asynchronous name resolution. 使用 net-libs/libasyncns 进行异步名称解析。
6101 net-libs loudmouth openssl Enable dev-libs/openssl support instead of gnutls (which is the default). 启用 dev-libs/openssl 支持而不是 gnutls(这是默认设置)。
6102 net-libs mbedtls cmac Enable block cipher-based message authentication code algorithm 启用基于分组密码的消息认证码算法
6103 net-libs mbedtls havege Enable the HAVEGE random generator. Warning: the HAVEGE random generator is not suitable for virtualized environments 启用 HAVEGE 随机发生器。警告:HAVEGE 随机生成器不适合虚拟化环境
6104 net-libs mbedtls programs Build PolarSSL programs 构建 PolarSSL 程序
6105 net-libs neon libproxy Add support for net-libs/libproxy 添加对 net-libs/libproxy 的支持
6106 net-libs neon pkcs11 Add support for PKCS#11 using dev-libs/pakchois 使用 dev-libs/pakchois 添加对 PKCS#11 的支持
6107 net-libs nghttp2 hpack-tools Install HPACK (header compression) helper tools 安装 HPACK(头压缩)帮助工具
6108 net-libs nghttp2 utils Install nghttp, nghttpd and nghttpx 安装 nghttp、nghttpd 和 nghttpx
6109 net-libs ngtcp2 openssl Provide SSL support using OpenSSL (requires dev-libs/openssl) 使用 OpenSSL 提供 SSL 支持(需要 dev-libs/openssl)
6110 net-libs nodejs inspector Enable V8 inspector 启用 V8 检查器
6111 net-libs nodejs lto Build with link-time optimisation 使用链接时优化构建
6112 net-libs nodejs npm Enable NPM package manager 启用 NPM 包管理器
6113 net-libs nodejs pax-kernel Enable building under a PaX enabled kernel 在启用 PaX 的内核下启用构建
6114 net-libs nodejs snapshot Enable snapshot creation for faster startup 启用快照创建以加快启动速度
6115 net-libs nodejs system-icu Use system dev-libs/icu instead of the bundled version 使用系统 dev-libs/icu 而不是捆绑版本
6116 net-libs nodejs system-ssl Use system OpenSSL instead of the bundled one 使用系统 OpenSSL 而不是捆绑的
6117 net-libs nodejs systemtap Enable SystemTAP/DTrace tracing 启用 SystemTAP/DTrace 跟踪
6118 net-libs ntirpc gssapi Include support for RPCSEC GSS 包括对 RPCSEC GSS 的支持
6119 net-libs ntirpc rdma Include support for RDMA RPC 包括对 RDMA RPC 的支持
6120 net-libs ortp ntp-timestamp Turn on NTP timestamping on received packet 在收到的数据包上打开 NTP 时间戳
6121 net-libs ortp srtp Add support for Secure RTP 添加对安全 RTP 的支持
6122 net-libs pjproject amr Inlcude AMR codec in the build 在构建中包含 AMR 编解码器
6123 net-libs pjproject epoll Use /dev/epoll ioqueue on Linux (experimental) 在 Linux 上使用 /dev/epoll ioqueue(实验性)
6124 net-libs pjproject g711 Include G.711 codecs in the build 在构建中包含 G.711 编解码器
6125 net-libs pjproject g722 Include G.722 codec in the build 在构建中包含 G.722 编解码器
6126 net-libs pjproject g7221 Include G.722.1 codec in the build 在构建中包含 G.722.1 编解码器
6127 net-libs pjproject g729 Include G.729 codec via net-libs/bcg729 通过 net-libs/bcg729 包含 G.729 编解码器
6128 net-libs pjproject ilbc Include iLBC codec in the build 在构建中包含 iLBC 编解码器
6129 net-libs pjproject l16 Include Linear/L16 codec family in the build 在构建中包含线性/L16 编解码器系列
6130 net-libs pjproject libyuv Include libyuv in the build 在构建中包含 libyuv
6131 net-libs pjproject openh264 Include Open H.264 support in the build 在构建中包含 Open H.264 支持
6132 net-libs pjproject resample Include resampling implementations in the build 在构建中包含重采样实现
6133 net-libs pjproject silk Include SILK support in the build 在构建中包含 SILK 支持
6134 net-libs pjproject v4l2 Include Video4Linux v2 support in the build 在构建中包含 Video4Linux v2 支持
6135 net-libs pjproject vpx Include VP8 and VP9 codec support in the build 在构建中包含 VP8 和 VP9 编解码器支持
6136 net-libs pjproject webrtc Enable WebRTC support 启用 WebRTC 支持
6137 net-libs qxmpp vpx Enable VP8 codec support via media-libs/libvpx 通过 media-libs/libvpx 启用 VP8 编解码器支持
6138 net-libs rabbitmq-c tools Builds cli tools to interact with brokers 构建 cli 工具以与代理交互
6139 net-libs rtrlib ssh Enable SSH support 启用 SSH 支持
6140 net-libs shairplay alac Add support for Apple Lossless Audio Codec files 添加对 Apple 无损音频编解码器文件的支持
6141 net-libs shairplay playfair Add support for handling fairplay handshake (used in for example screen mirroring) 添加对处理公平握手的支持(用于例如屏幕镜像)
6142 net-libs shairplay tools Build and install a binary shairplay in /usr/bin 在 /usr/bin 中构建并安装二进制 shairplay
6143 net-libs telepathy-qt farstream Enable support for audio/video calls via farstream 通过远流启用对音频/视频通话的支持
6144 net-libs tox av Adds support for audio and video. 添加对音频和视频的支持。
6145 net-libs tox daemon Enable the DHT Bootstrap Daemon. 启用 DHT 引导守护程序。
6146 net-libs tox dht-node Enables DHT Bootstrap Node. 启用 DHT 引导节点。
6147 net-libs tox key-utils Builds utilities to create custom keys and profiles 构建实用程序以创建自定义密钥和配置文件
6148 net-libs tox log-debug Log level: 4 日志级别:4
6149 net-libs tox log-error Log level: 1 日志级别:1
6150 net-libs tox log-info Log level: 3 日志级别:3
6151 net-libs tox log-trace Log level: 5 日志级别:5
6152 net-libs tox log-warn Log level: 2 日志级别:2
6153 net-libs udns tools Build and install dnsget, ex-rdns and rblcheck tools 构建和安装 dnsget、ex-rdns 和 rblcheck 工具
6154 net-libs wandio http Build support for reading files over HTTP using net-misc/curl 使用 net-misc/curl 构建对通过 HTTP 读取文件的支持
6155 net-libs webkit-gtk avif Enable support for AVIF images via media-libs/libavif 通过 media-libs/libavif 启用对 AVIF 图像的支持
6156 net-libs webkit-gtk egl Enable EGL support 启用 EGL 支持
6157 net-libs webkit-gtk examples Install the MiniBrowser example application 安装 MiniBrowser 示例应用程序
6158 net-libs webkit-gtk gamepad Enable gamepad input support via dev-libs/libmanette 通过 dev-libs/libmanette 启用游戏手柄输入支持
6159 net-libs webkit-gtk geolocation Enable geolocation support through app-misc/geoclue 通过 app-misc/geoclue 启用地理定位支持
6160 net-libs webkit-gtk jumbo-build Combine source files to speed up build process 合并源文件以加快构建过程
6161 net-libs wvstreams boost Use dev-libs/boost to provide TR1-compatible functional interface. This USE flag is only needed with GCC earlier than version 4.1, or with other compilares not providing said interface. 使用 dev-libs/boost 提供兼容 TR1 的功能接口。只有 4.1 版之前的 GCC 或其他不提供所述接口的编译器才需要此 USE 标志。
6162 net-libs xdp-tools tools Install various helper tools rather than just libxdp. 安装各种帮助工具,而不仅仅是 libxdp。
6163 net-libs xrootd fuse Enable the sys-fs/fuse filesystem driver 启用 sys-fs/fuse 文件系统驱动程序
6164 net-libs xrootd http Enable http protocol support 启用 http 协议支持
6165 net-libs xrootd libxml2 Use dev-libs/libxml2 for XML parsing (preferred) instead of bundled tinyxml 使用 dev-libs/libxml2 进行 XML 解析(首选)而不是捆绑的 tinyxml
6166 net-libs xrootd server Install xrootd server and related plug-ins 安装xrootd server及相关插件
6167 net-libs zeromq drafts Build draft API, which may change at any time without any notice, and is therefore not recommended for normal use. 构建草稿API,可能随时更改,恕不另行通知,因此不建议正常使用。
6168 net-libs zeromq libbsd Use strlcpy() from dev-libs/libbsd instead of internal implementation. 使用 dev-libs/libbsd 中的 strlcpy() 而不是内部实现。
6169 net-libs zeromq pgm Build PGM (Pragmatic General Multicast)extention, a protocol for reliable multicast transport of data over IP networks. 构建 PGM(实用通用多播)扩展,一种用于通过 IP 网络进行可靠多播数据传输的协议。
6170 net-libs zeromq sodium Use dev-libs/libsodium for cryptography 使用 dev-libs/libsodium 进行密码学
6171 net-mail courier-imap trashquota include deleted messages, and the Trash folder, in the estimated quota usage for maildirs 在邮件目录的估计配额使用中包括已删除的邮件和垃圾箱文件夹
6172 net-mail cyrus-imapd backup Enable backup service support 启用备份服务支持
6173 net-mail cyrus-imapd calalarm Enable CalDAV alarm support 启用 CalDAV 警报支持
6174 net-mail cyrus-imapd http Enable http and http/2 support 启用 http 和 http/2 支持
6175 net-mail cyrus-imapd lmdb Enable support for using dev-db/lmdb 启用对使用 dev-db/lmdb 的支持
6176 net-mail cyrus-imapd replication Enable replication support 启用复制支持
6177 net-mail cyrus-imapd server Enable building server binaries 启用构建服务器二进制文件
6178 net-mail cyrus-imapd sieve Enable sieve support 启用筛子支持
6179 net-mail cyrus-imapd xapian Enable Xapian search engine support 启用 Xapian 搜索引擎支持
6180 net-mail dbmail sieve Enable sieve filter support 启用筛滤器支持
6181 net-mail dovecot argon2 Add support for ARGON2 password schemes 添加对 ARGON2 密码方案的支持
6182 net-mail dovecot lucene Add lucene full text search (FTS) support using dev-cpp/clucene 使用 dev-cpp/clucene 添加 lucene 全文搜索 (FTS) 支持
6183 net-mail dovecot managesieve Add managesieve protocol support 添加 managesieve 协议支持
6184 net-mail dovecot rpc Add support for NFS quotas 添加对 NFS 配额的支持
6185 net-mail dovecot sieve Add sieve support 添加筛子支撑
6186 net-mail dovecot solr Add solr full text search (FTS) support 添加 solr 全文搜索 (FTS) 支持
6187 net-mail dovecot stemmer Add libstemmer support (for FTS) 添加 libstemmer 支持(对于 FTS)
6188 net-mail dovecot textcat Add libtextcat language guessing support for full text search (FTS) 为全文搜索 (FTS) 添加 libtextcat 语言猜测支持
6189 net-mail dovecot zstd Add support for zstd (de)compression 添加对 zstd (de)compression 的支持
6190 net-mail fetchmail socks Enable support for socks proxy 启用对 socks 代理的支持
6191 net-mail fetchmail tk Enable support for Tk GUI toolkit, in particular it installs fetchmailconf 启用对 Tk GUI 工具包的支持,特别是它安装 fetchmailconf
6192 net-mail gnubiff password Enable save passwords to connect mail servers in user space 启用保存密码以连接用户空间中的邮件服务器
6193 net-mail lbdb abook Enables app-misc/abook support 启用 app-misc/abook 支持
6194 net-mail lbdb bbdb Include support for app-emacs/bbdb 包括对 app-emacs/bbdb 的支持
6195 net-mail lbdb evo Add support for mail-client/evolution 添加对邮件客户端/演进的支持
6196 net-mail lbdb finger Enables finger support 启用手指支持
6197 net-mail mailutils clients Build client programs - frm maidag mail sieve messages readmsg dotlock movemail mimeview mh 构建客户端程序 - frm maidag mail sieve messages readmsg dotlock movemail mimeview mh
6198 net-mail mailutils kyotocabinet Enable Kyoto Cabinet database support 启用京都内阁数据库支持
6199 net-mail mailutils servers Build server programs - imap4d pop3d comsatd 构建服务器程序 - imap4d pop3d comsatd
6200 net-mail mailutils tokyocabinet Enable Tokyo Cabinet database support 启用东京内阁数据库支持
6201 net-mail mboxgrep dmalloc Enable debugging using dev-libs/dmalloc 使用 dev-libs/dmalloc 启用调试
6202 net-mail mu emacs Install the mu4e mail client 安装mu4e邮件客户端
6203 net-mail notmuch apidoc Provide doxygen generated API docs 提供 doxygen 生成的 API 文档
6204 net-mail notmuch crypt Support decryption and verification of PGP/MIME messages and in Emacs UI - encryption; support also S/MIME signature verification since version 0.22 支持 PGP/MIME 消息和 Emacs UI 中的解密和验证 - 加密;从 0.22 版开始也支持 S/MIME 签名验证
6205 net-mail notmuch doc Install API documentation 安装 API 文档
6206 net-mail notmuch emacs Install Emacs UI (the main one) 安装 Emacs UI(主要的)
6207 net-mail notmuch mutt Install helper script for Mutt 为 Mutt 安装帮助脚本
6208 net-mail notmuch nmbug Install experimental tag sharing / pseudo-bug-tracking script for Notmuch (see http://notmuchmail.org/nmbug/) 为 Notmuch 安装实验性标签共享/伪错误跟踪脚本(参见 http://notmuchmail.org/nmbug/)
6209 net-mail notmuch valgrind Depend on dev-util/valgrind for test suite 依赖于 dev-util/valgrind 的测试套件
6210 net-mail qmailadmin maildrop Filter spam using maildrop 使用 maildrop 过滤垃圾邮件
6211 net-mail tpop3d authexternal Enable authentication by an external program 通过外部程序启用身份验证
6212 net-mail tpop3d flatfile Enable authentication against /etc/passwd-style flat files 针对 /etc/passwd 样式的平面文件启用身份验证
6213 net-mail tpop3d passwd Enable /etc/passwd authentication 启用 /etc/passwd 身份验证
6214 net-mail tpop3d sha1 Use OpenSSL for sha1 encrypted passwords. 对 sha1 加密密码使用 OpenSSL。
6215 net-mail tpop3d shadow Enable /etc/shadow authentication 启用 /etc/shadow 身份验证
6216 net-mail vchkuser debug Enables debug messages to syslog 启用调试消息到 syslog
6217 net-mail vpopmail clearpasswd Enables cleartext password storage in the vpasswd files 在 vpasswd 文件中启用明文密码存储
6218 net-mail vpopmail ipalias Enables enable-ip-alias-domains 启用 enable-ip-alias-domains
6219 net-mail vpopmail maildrop Enables mail-filter/maildrop support in vdelivermail 在 vdelivermail 中启用邮件过滤器/邮件投递支持
6220 net-mail vpopmail spamassassin Enables mail-filter/spamassassin support 启用邮件过滤器/spamassassin 支持
6221 net-misc AQtion lro Enable/disable Large Receive Offload. This MUST be disabled for bridging or forwarding. 启用/禁用大型接收卸载。必须禁用桥接或转发。
6222 net-misc apt-cacher-ng fuse Install the sys-fs/fuse based acngfs, to use a userspace filesystem for the apt cache. 安装基于 sys-fs/fuse 的 acngfs,将用户空间文件系统用于 apt 缓存。
6223 net-misc aria2 bittorrent Enable support for the bittorrent protocol. 启用对 bittorrent 协议的支持。
6224 net-misc aria2 gnutls Use net-libs/gnutls as TLS provider (preferred). Otherwise, dev-libs/openssl will be used as TLS provider. Both apply only with USE=ssl. 使用 net-libs/gnutls 作为 TLS 提供者(首选)。否则,dev-libs/openssl 将用作 TLS 提供程序。两者都只适用于 USE=ssl。
6225 net-misc aria2 libuv Use dev-libs/libuv backend. 使用 dev-libs/libuv 后端。
6226 net-misc aria2 libxml2 Use dev-libs/libxml2 for XML parsing (preferred) instead of dev-libs/expat. 使用 dev-libs/libxml2 进行 XML 解析(首选)而不是 dev-libs/expat。
6227 net-misc aria2 metalink Enable support for metalink. 启用对金属链接的支持。
6228 net-misc aria2 nettle Use dev-libs/nettle for message digests, plus dev-libs/gmp for bittorrent (if enabled). If this flag is disabled, dev-libs/libgcrypt is used instead. This flag is ignored if dev-libs/openssl is used. 将 dev-libs/nettle 用于消息摘要,将 dev-libs/gmp 用于 bittorrent(如果启用)。如果禁用此标志,则改用 dev-libs/libgcrypt。如果使用 dev-libs/openssl,则忽略此标志。
6229 net-misc aria2 scripts Install additional scripts which use aria2's xmlrpc functionality. 安装使用 aria2 的 xmlrpc 功能的附加脚本。
6230 net-misc aria2 ssh Enable SFTP support. 启用 SFTP 支持。
6231 net-misc asterisk blocks Utlize -fblocks (only supported by, and required when using, clang/LLVM) Utlize -fblocks(仅支持并在使用时需要,clang/LLVM)
6232 net-misc asterisk cluster Enable high-availability support through the Corosync Cluster Engine 通过 Corosync 集群引擎启用高可用性支持
6233 net-misc asterisk codec2 Enable Codec2 support in asterisk 在星号中启用 Codec2 支持
6234 net-misc asterisk dahdi Support Digium compatible hardware (formerly known as Zaptel) 支持 Digium 兼容硬件(以前称为 Zaptel)
6235 net-misc asterisk deprecated Enable deprecated features (eg, app_macro) 启用不推荐使用的功能(例如,app_macro)
6236 net-misc asterisk gtalk Enable support for Google Talk services 启用对 Google Talk 服务的支持
6237 net-misc asterisk http Enable embedded web server 启用嵌入式 Web 服务器
6238 net-misc asterisk ilbc Enable the Internet Low Bitrate Codec (iLBC) 启用互联网低比特率编解码器 (iLBC)
6239 net-misc asterisk newt Include additional tools that require redhats windowing toolkit 包括需要 redhats 窗口工具包的其他工具
6240 net-misc asterisk pjproject Enable support for pjproject (pjsip) 启用对 pjproject (pjsip) 的支持
6241 net-misc asterisk span Enable support for the spandsp codec 启用对 spandsp 编解码器的支持
6242 net-misc asterisk srtp Enable support for encrypted voice transmission (secure RTP) 启用对加密语音传输(安全 RTP)的支持
6243 net-misc asterisk statsd Enable statsd integration 启用 statsd 集成
6244 net-misc asterisk unbound Enable improved DNS core (SRV, NAPTR) by use of libunbound 通过使用 libunbound 启用改进的 DNS 核心(SRV、NAPTR)
6245 net-misc asterisk-core-sounds alaw Install the sounds files for the alaw codec. 安装 alaw 编解码器的声音文件。
6246 net-misc asterisk-core-sounds g722 Install the sounds files for the g722 codec. 安装 g722 编解码器的声音文件。
6247 net-misc asterisk-core-sounds g729 Install the sounds files for the g729 codec. 安装 g729 编解码器的声音文件。
6248 net-misc asterisk-core-sounds siren14 Install the sounds files for the siren14 codec. 安装 siren14 编解码器的声音文件。
6249 net-misc asterisk-core-sounds siren7 Install the sounds files for the siren7 codec. 安装siren7 编解码器的声音文件。
6250 net-misc asterisk-core-sounds sln16 Install the sounds files for the sln16 codec. 安装 sln16 编解码器的声音文件。
6251 net-misc asterisk-core-sounds ulaw Install the sounds files for the ulaw codec. 安装 ulaw 编解码器的声音文件。
6252 net-misc asterisk-core-sounds wav Install the sounds files for the wav codec. 安装 wav 编解码器的声音文件。
6253 net-misc asterisk-extra-sounds alaw Install the sounds files for the alaw codec. 安装 alaw 编解码器的声音文件。
6254 net-misc asterisk-extra-sounds g722 Install the sounds files for the g722 codec. 安装 g722 编解码器的声音文件。
6255 net-misc asterisk-extra-sounds g729 Install the sounds files for the g729 codec. 安装 g729 编解码器的声音文件。
6256 net-misc asterisk-extra-sounds gsm Install the sounds files for the gsm codec. 安装 gsm 编解码器的声音文件。
6257 net-misc asterisk-extra-sounds siren14 Install the sounds files for the siren14 codec. 安装 siren14 编解码器的声音文件。
6258 net-misc asterisk-extra-sounds siren7 Install the sounds files for the siren7 codec. 安装siren7 编解码器的声音文件。
6259 net-misc asterisk-extra-sounds sln16 Install the sounds files for the sln16 codec. 安装 sln16 编解码器的声音文件。
6260 net-misc asterisk-extra-sounds ulaw Install the sounds files for the ulaw codec. 安装 ulaw 编解码器的声音文件。
6261 net-misc asterisk-extra-sounds wav Install the sounds files for the wav codec. 安装 wav 编解码器的声音文件。
6262 net-misc asterisk-moh-opsound alaw Install the sounds files for the alaw codec. 安装 alaw 编解码器的声音文件。
6263 net-misc asterisk-moh-opsound g722 Install the sounds files for the g722 codec. 安装 g722 编解码器的声音文件。
6264 net-misc asterisk-moh-opsound g729 Install the sounds files for the g729 codec. 安装 g729 编解码器的声音文件。
6265 net-misc asterisk-moh-opsound gsm Install the sounds files for the gsm codec. 安装 gsm 编解码器的声音文件。
6266 net-misc asterisk-moh-opsound siren14 Install the sounds files for the siren14 codec. 安装 siren14 编解码器的声音文件。
6267 net-misc asterisk-moh-opsound siren7 Install the sounds files for the siren7 codec. 安装siren7 编解码器的声音文件。
6268 net-misc asterisk-moh-opsound sln16 Install the sounds files for the sln16 codec. 安装 sln16 编解码器的声音文件。
6269 net-misc asterisk-moh-opsound ulaw Install the sounds files for the ulaw codec. 安装 ulaw 编解码器的声音文件。
6270 net-misc asterisk-moh-opsound wav Install the sounds files for the wav codec. 安装 wav 编解码器的声音文件。
6271 net-misc bfgminer adl Enable support for controlling fans and overclocking on AMD cards with AMD Display Library 使用 AMD 显示库支持在 AMD 卡上控制风扇和超频
6272 net-misc bfgminer alchemist Enable support for mining with AlcheMist 启用对使用 AlcheMist 进行挖掘的支持
6273 net-misc bfgminer avalon Enable support for mining with Avalon 1 ASIC modules 启用对使用 Avalon 1 ASIC 模块的挖掘的支持
6274 net-misc bfgminer avalonmm Enable support for mining with Avalon 2/3 ASIC modules 启用对使用 Avalon 2/3 ASIC 模块的挖掘的支持
6275 net-misc bfgminer bfsb Enable support for mining on BFSB host Raspberry Pi 在 BFSB 主机 Raspberry Pi 上启用对挖掘的支持
6276 net-misc bfgminer bfx Enable support for mining with BFx2 USB sticks 启用对使用 BFx2 USB 记忆棒进行挖掘的支持
6277 net-misc bfgminer bifury Enable support for mining with Bi*fury USB sticks 启用对使用 Bi*fury USB 记忆棒进行挖掘的支持
6278 net-misc bfgminer bigpic Enable support for mining with Big Picture Mining USB sticks (Red/BlueFury, BF1, etc) 启用对 Big Picture Mining USB 记忆棒(Red/BlueFury、BF1 等)的采矿支持
6279 net-misc bfgminer bitforce Enable support for mining with ButterFly Labs BitFORCE ASICs and/or FPGAs 支持使用 ButterFly Labs BitFORCE ASIC 和/或 FPGA 进行挖掘
6280 net-misc bfgminer bitfury Enable support for mining with 55nm Bitfury-based devices 支持使用基于 55nm Bitfury 的设备进行挖矿
6281 net-misc bfgminer bitmain Enable support for mining with Bitmain Antminer S* series 启用比特大陆蚂蚁 S* 系列挖矿支持
6282 net-misc bfgminer cointerra Enable support for mining with CoinTerra TerraMiner. 启用对使用 CoinTerra TerraMiner 进行挖掘的支持。
6283 net-misc bfgminer cpumining Enable support for mining with CPUs 启用对使用 CPU 进行挖掘的支持
6284 net-misc bfgminer drillbit Enable support for mining with Drillbit boards 使用 Drillbit 板启用对采矿的支持
6285 net-misc bfgminer dualminer Enable support for mining with DualMiner USB sticks 启用对使用 DualMiner USB 记忆棒进行挖掘的支持
6286 net-misc bfgminer gridseed Enable support for mining with 5-chip GridSeed orbs 启用对使用 5 芯片 GridSeed 球体进行挖掘的支持
6287 net-misc bfgminer hashbuster Enable support for mining with HashBuster nano boards 使用 HashBuster 纳米板启用对采矿的支持
6288 net-misc bfgminer hashbuster2 Enable support for mining with HashBuster micro boards 使用 HashBuster 微板启用对采矿的支持
6289 net-misc bfgminer hashfast Enable support for mining with HashFast devices 启用对使用 HashFast 设备进行挖掘的支持
6290 net-misc bfgminer icarus Enable support for mining with Icarus-compatible devices (including Block Erupter Sapphire ASICs) 支持使用与 Icarus 兼容的设备(包括 Block Erupter Sapphire ASIC)进行挖矿
6291 net-misc bfgminer jingtian Enable support for mining on JingTian boards via SPI/GPIO 通过 SPI/GPIO 开启竞天板挖矿支持
6292 net-misc bfgminer keccak Enable support for mining with Keccak miners 启用对使用 Keccak 矿工进行挖矿的支持
6293 net-misc bfgminer klondike Enable support for mining with Klondike USB miners 启用对使用 Klondike USB 矿工进行挖矿的支持
6294 net-misc bfgminer libusb Use libusb 使用 libusb
6295 net-misc bfgminer littlefury Enable support for mining with LittleFury USB sticks 启用对使用 LittleFury USB 记忆棒进行挖掘的支持
6296 net-misc bfgminer metabank Enable support for mining on Metabank host Raspberry Pi 在 Metabank 主机 Raspberry Pi 上启用对挖掘的支持
6297 net-misc bfgminer minion Enable support for mining on minion chips via SPI (BlackArrow Prospero) 通过 SPI (BlackArrow Prospero) 启用对 Minion 芯片挖矿的支持
6298 net-misc bfgminer modminer Enable support for mining with ModMiner FPGAs 支持使用 ModMiner FPGA 进行挖掘
6299 net-misc bfgminer nanofury Enable support for mining with NanoFury USB sticks 启用对使用 NanoFury USB 记忆棒进行挖掘的支持
6300 net-misc bfgminer opencl Enable support for mining with OpenCL-capable devices (GPUs) 启用对使用支持 OpenCL 的设备 (GPU) 进行挖掘的支持
6301 net-misc bfgminer proxy Enable support for virtual proxy device 启用对虚拟代理设备的支持
6302 net-misc bfgminer proxy_getwork Enable proxy support for getwork protocol (often used with Block Erupter Blades) 启用对 getwork 协议的代理支持(通常与 Block Erupter Blades 一起使用)
6303 net-misc bfgminer proxy_stratum Enable proxy support for stratum protocol 启用对层协议的代理支持
6304 net-misc bfgminer rockminer Enable support for mining with RockMiner devices 启用对使用 RockMiner 设备进行挖矿的支持
6305 net-misc bfgminer screen Provide start-bfgminer.sh script to launch BFGMiner in app-misc/screen 提供 start-bfgminer.sh 脚本以在 app-misc/screen 中启动 BFGMiner
6306 net-misc bfgminer scrypt Enable support for scrypt mining algorithm 启用对 scrypt 挖掘算法的支持
6307 net-misc bfgminer sha256d Enable support for SHA256d mining algorithm 启用对 SHA256d 挖掘算法的支持
6308 net-misc bfgminer twinfury Enable support for mining with Twinfury USB sticks 启用对使用 Twinfury USB 记忆棒进行采矿的支持
6309 net-misc bfgminer udev-broad-rules Enable broader udev rules that may match non-mining devices 启用可能匹配非挖矿设备的更广泛的 udev 规则
6310 net-misc bfgminer x6500 Enable support for mining with X6500 FPGAs 支持使用 X6500 FPGA 进行挖掘
6311 net-misc bfgminer zeusminer Enable support for mining with ZeusMiner units 启用对使用 ZeusMiner 单元进行挖掘的支持
6312 net-misc bfgminer ztex Enable support for mining with Ztex FPGAs 支持使用 Ztex FPGA 进行挖掘
6313 net-misc bird client Build the ncurses/readline full featured CLI 构建 ncurses/readline 全功能 CLI
6314 net-misc bird libssh Enables net-libs/libssh binding, mendatory for RPKI support 启用 net-libs/libssh 绑定,需要 RPKI 支持
6315 net-misc casync fuse Enable fuse support 启用保险丝支持
6316 net-misc cfengine libvirt Enable support for virtual machine management through app-emulation/libvirt 通过 app-emulation/libvirt 启用对虚拟机管理的支持
6317 net-misc cfengine masterfiles Install the Masterfiles Policy Framework 安装 Masterfiles 策略框架
6318 net-misc cfengine qdbm Use dev-db/qdbm as database backend 使用 dev-db/qdbm 作为数据库后端
6319 net-misc cfengine tokyocabinet Use dev-db/tokyocabinet as database backend 使用 dev-db/tokyocabinet 作为数据库后端
6320 net-misc cgminer ants1 Enable support for Antminer S1 Bitmain 启用对 Antminer S1 比特大陆的支持
6321 net-misc cgminer ants2 Enable support for Antminer S2 Bitmain 启用对 Antminer S2 比特大陆的支持
6322 net-misc cgminer ants3 Enable support for Antminer S3 Bitmain 启用对 Antminer S3 比特大陆的支持
6323 net-misc cgminer avalon Enable support for Avalon ASICs 启用对 Avalon ASIC 的支持
6324 net-misc cgminer avalon-miner Enable support for Avalon miner ASICs 启用对 Avalon 矿工 ASIC 的支持
6325 net-misc cgminer avalon2 Enable support for Avalon2 ASICs 启用对 Avalon2 ASIC 的支持
6326 net-misc cgminer avalon4 Enable support for Avalon4 ASICs 启用对 Avalon4 ASIC 的支持
6327 net-misc cgminer avalon7 Enable support for Avalon7 ASICs 启用对 Avalon7 ASIC 的支持
6328 net-misc cgminer bab Enable support for BlackArrow Bitfury 启用对 BlackArrow Bitfury 的支持
6329 net-misc cgminer bflsc Enable support for BFL ASICs 启用对 BFL ASIC 的支持
6330 net-misc cgminer bitforce Enable support for mining with ButterFly Labs BitFORCE FPGAs 使用 ButterFly Labs BitFORCE FPGA 支持采矿
6331 net-misc cgminer bitfury Enable support for mining with BitFury ASICs 启用对使用 BitFury ASIC 进行挖掘的支持
6332 net-misc cgminer bitmine_A1 Enable support for mining with Bitmine.ch A1 ASICs 启用对使用 Bitmine.ch A1 ASIC 进行挖掘的支持
6333 net-misc cgminer blockerupter Enable support for mining with BlockRupter ASICs 启用对使用 BlockRupter ASIC 进行挖掘的支持
6334 net-misc cgminer cointerra Enable support for mining with Cointerra ASICs 启用对使用 Cointerra ASIC 进行挖掘的支持
6335 net-misc cgminer drillbit Enable support for mining with Drillbit BitFury ASICs 启用对使用 Drillbit BitFury ASIC 进行挖掘的支持
6336 net-misc cgminer hashfast Enable support for mining with Hashfast 启用对使用 Hashfast 进行挖掘的支持
6337 net-misc cgminer hashratio Enable support for mining with Hashratio 启用对使用 Hashratio 进行挖掘的支持
6338 net-misc cgminer icarus Enable support for mining with Icarus FPGAs 支持使用 Icarus FPGA 进行挖掘
6339 net-misc cgminer klondike Enable support for mining with Klondik ASICs 启用对使用 Klondik ASIC 进行挖掘的支持
6340 net-misc cgminer knc Enable support for mining with KnC miners 启用对 KnC 矿工挖矿的支持
6341 net-misc cgminer minion Enable support for mining with BlackArrow Bitfury 启用对 BlackArrow Bitfury 挖矿的支持
6342 net-misc cgminer modminer Enable support for mining with ModMiner FPGAs 支持使用 ModMiner FPGA 进行挖掘
6343 net-misc cgminer sp10 Enable support for Spondoolies SP10 启用对 Spondoolies SP10 的支持
6344 net-misc cgminer sp30 Enable support for Spondoolies SP30 启用对 Spondoolies SP30 的支持
6345 net-misc chrony cmdmon Support for command and monitoring 支持命令和监控
6346 net-misc chrony debug Get DEBUG_LOG output from chronyd when passing -dd parameter 传递 -dd 参数时从 chronyd 获取 DEBUG_LOG 输出
6347 net-misc chrony html Install HTML documentation 安装 HTML 文档
6348 net-misc chrony libtomcrypt Support different hashes via dev-libs/libtomcrypt 通过 dev-libs/libtomcrypt 支持不同的哈希
6349 net-misc chrony nettle Use dev-libs/nettle for hash functions or nts 将 dev-libs/nettle 用于散列函数或 nts
6350 net-misc chrony nss Use dev-libs/nss for hash functions 将 dev-libs/nss 用于哈希函数
6351 net-misc chrony ntp Support for the Network Time Protocol (NTP) 支持网络时间协议 (NTP)
6352 net-misc chrony nts Support for Network Time Security (NTS). Uses net-libs/gnutls 支持网络时间安全 (NTS)。使用 net-libs/gnutls
6353 net-misc chrony phc Support for the PTP (Precision Time Protocol) Hardware Clock (PHC) interface 支持 PTP(精确时间协议)硬件时钟 (PHC) 接口
6354 net-misc chrony pps Support for the Linux Pulse Per Second (PPS) interface 支持 Linux 每秒脉冲 (PPS) 接口
6355 net-misc chrony refclock Support for reference clocks 支持参考时钟
6356 net-misc chrony rtc Support for the Linux Real Time Clock interface 支持 Linux 实时时钟接口
6357 net-misc chrony sechash Enable support for hashes other than MD5 启用对 MD5 以外的哈希的支持
6358 net-misc connman ethernet Enable ethernet support. 启用以太网支持。
6359 net-misc connman iptables Use net-firewall/iptables as firewall. 使用 net-firewall/iptables 作为防火墙。
6360 net-misc connman iwd Enable wifi support via net-wireless/iwd 通过 net-wireless/iwd 启用 wifi 支持
6361 net-misc connman l2tp Use net-dialup/xl2tpd for L2TP VPN support. 使用 net-dialup/xl2tpd 来支持 L2TP VPN。
6362 net-misc connman nftables Use net-firewall/nftables as firewall. 使用 net-firewall/nftables 作为防火墙。
6363 net-misc connman ofono Use net-misc/ofono for telephony support. 使用 net-misc/ofono 进行电话支持。
6364 net-misc connman openconnect Use net-vpn/openconnect for VPN support. 使用 net-vpn/openconnect 支持 VPN。
6365 net-misc connman openvpn Use net-vpn/openvpn for openvpn support. 使用 net-vpn/openvpn 来支持 openvpn。
6366 net-misc connman pptp Use net-dialup/pptpclient for PPTP VPN support. 使用 net-dialup/pptpclient 支持 PPTP VPN。
6367 net-misc connman tools Enable testing tools. 启用测试工具。
6368 net-misc connman vpnc Use net-vpn/vpnc for cisco VPN support. 使用 net-vpn/vpnc 获得 cisco VPN 支持。
6369 net-misc connman wireguard Enable WireGuard VPN support. 启用 WireGuard VPN 支持。
6370 net-misc connman wispr Enable support for WISPr hotspot logins. 启用对 WISPr 热点登录的支持。
6371 net-misc connman-gtk openconnect Support easier authentication to AnyConnect VPNs 支持更轻松地对 AnyConnect VPN 进行身份验证
6372 net-misc csync sftp Enable sftp transfer support via net-libs/libssh 通过 net-libs/libssh 启用 sftp 传输支持
6373 net-misc curl alt-svc Enable alt-svc support 启用 alt-svc 支持
6374 net-misc curl brotli Enable brotli compression support 启用 brotli 压缩支持
6375 net-misc curl ftp Enable FTP support 启用 FTP 支持
6376 net-misc curl gnutls Enable gnutls ssl backend 启用 gnutls ssl 后端
6377 net-misc curl gopher Enable Gopher protocol support 启用 Gopher 协议支持
6378 net-misc curl hsts Enable HTTP Strict Transport Security 启用 HTTP 严格传输安全
6379 net-misc curl http2 Enable HTTP/2.0 support 启用 HTTP/2.0 支持
6380 net-misc curl imap Enable Internet Message Access Protocol support 启用 Internet 消息访问协议支持
6381 net-misc curl mbedtls Enable mbedtls ssl backend 启用 mbedtls ssl 后端
6382 net-misc curl nghttp3 Enable HTTP/3.0 support using net-libs/nghttp3 and net-libs/ngtcp2 使用 net-libs/nghttp3 和 net-libs/ngtcp2 启用 HTTP/3.0 支持
6383 net-misc curl nss Enable nss ssl backend 启用 nss ssl 后端
6384 net-misc curl openssl Enable openssl ssl backend 启用 openssl ssl 后端
6385 net-misc curl pop3 Enable Post Office Protocol 3 support 启用邮局协议 3 支持
6386 net-misc curl progress-meter Enable the progress meter 启用进度表
6387 net-misc curl quiche Enable HTTP/3.0 support using net-libs/quiche 使用 net-libs/quiche 启用 HTTP/3.0 支持
6388 net-misc curl rtmp Enable RTMP Streaming Media support 启用 RTMP 流媒体支持
6389 net-misc curl smtp Enable Simple Mail Transfer Protocol support 启用简单邮件传输协议支持
6390 net-misc curl ssh Enable SSH urls in curl using libssh2 使用 libssh2 在 curl 中启用 SSH url
6391 net-misc curl ssl Enable crypto engine support (via openssl if USE='-gnutls -nss') 启用加密引擎支持(如果 USE='-gnutls -nss',则通过 openssl)
6392 net-misc curl sslv3 Support for the old/insecure SSLv3 protocol 支持旧的/不安全的 SSLv3 协议
6393 net-misc curl telnet Enable Telnet protocol support 启用 Telnet 协议支持
6394 net-misc curl tftp Enable TFTP support 启用 TFTP 支持
6395 net-misc curl winssl Enable winssl ssl backend 启用 winssl ssl 后端
6396 net-misc curl zstd Enable zstd compression 启用 zstd 压缩
6397 net-misc dahdi flash Support (short) flash on FXS 在 FXS 上支持(短)闪光
6398 net-misc dahdi oslec Enable OSLEC (software) echo canceller (require ECHO in kernel) 启用 OSLEC(软件)回声消除器(内核中需要 ECHO)
6399 net-misc dahdi-tools ppp Enables PPP/DAHDIRAS support 启用 PPP/DAHDIRAS 支持
6400 net-misc dhcp client Install the dhclient program 安装dhclient程序
6401 net-misc dhcp server Install the dhcpd and dhcrelay programs 安装 dhcpd 和 dhcrelay 程序
6402 net-misc dhcpcd embedded Embed the definitions of dhcp options in the dhcpcd executable 在 dhcpcd 可执行文件中嵌入 dhcp 选项的定义
6403 net-misc dhcpcd privsep Enable support for privilege separation 启用对权限分离的支持
6404 net-misc dibbler resolvconf Use resolvconf to handle /etc/resolv.conf updates 使用 resolvconf 处理 /etc/resolv.conf 更新
6405 net-misc dropbear bsdpty Add support for legacy BSD pty's rather than dynamic UNIX pty's -- do not use this flag unless you are absolutely sure you actually want it 添加对遗留 BSD pty 而不是动态 UNIX pty 的支持——除非您绝对确定您确实需要它,否则不要使用此标志
6406 net-misc dropbear multicall Build all the programs as one little binary (to save space) 将所有程序构建为一个小二进制文件(以节省空间)
6407 net-misc dropbear shadow Enable shadow password support 启用影子密码支持
6408 net-misc dropbox-cli gpg Use app-crypt/gpgme to verify signatures 使用 app-crypt/gpgme 验证签名
6409 net-misc electron-cash amodem Enable plugin to support Audio Modem 启用插件以支持音频调制解调器
6410 net-misc electron-cash cli Enables the CLI interface 启用 CLI 界面
6411 net-misc electron-cash cosign Enable plugin to support multisig wallets between multiple Electrum clients 启用插件以支持多个 Electrum 客户端之间的多重签名钱包
6412 net-misc electron-cash digitalbitbox Enable plugin to support Digital Bitbox hardware wallet 启用插件以支持 Digital Bitbox 硬件钱包
6413 net-misc electron-cash email Enable plugin to support emailing invoices 启用插件以支持通过电子邮件发送发票
6414 net-misc electron-cash qrcode Enable QR code scanning with media-gfx/zbar 使用 media-gfx/zbar 启用 QR 码扫描
6415 net-misc electron-cash sync Enable plugin to sync wallet metadata across multiple Electrum clients 启用插件以跨多个 Electrum 客户端同步钱包元数据
6416 net-misc electron-cash vkb Enable plugin for virtual keyboard 启用虚拟键盘插件
6417 net-misc electrum cli Enables the CLI interface 启用 CLI 界面
6418 net-misc electrum qrcode Enable QR code scanning with media-gfx/zbar 使用 media-gfx/zbar 启用 QR 码扫描
6419 net-misc electrum-ltc audio_modem Enable plugin to support Audio Modem 启用插件以支持音频调制解调器
6420 net-misc electrum-ltc cli Enables the CLI interface 启用 CLI 界面
6421 net-misc electrum-ltc cosign Enable plugin to support multisig wallets between multiple Electrum clients 启用插件以支持多个 Electrum 客户端之间的多重签名钱包
6422 net-misc electrum-ltc digitalbitbox Enable plugin to support Digital Bitbox hardware wallet 启用插件以支持 Digital Bitbox 硬件钱包
6423 net-misc electrum-ltc email Enable plugin to support emailing invoices 启用插件以支持通过电子邮件发送发票
6424 net-misc electrum-ltc qrcode Enable QR code scanning with media-gfx/zbar 使用 media-gfx/zbar 启用 QR 码扫描
6425 net-misc electrum-ltc sync Enable plugin to sync wallet metadata across multiple Electrum clients 启用插件以跨多个 Electrum 客户端同步钱包元数据
6426 net-misc electrum-ltc vkb Enable plugin for virtual keyboard 启用虚拟键盘插件
6427 net-misc etherdfs tsr Build the TSR program for DOS, which acts as a client. 为充当客户端的 DOS 构建 TSR 程序。
6428 net-misc ethflop tsr Build the TSR program for DOS, which acts as a client. 为充当客户端的 DOS 构建 TSR 程序。
6429 net-misc eventd libcanberra Enable plugin for sounds via media-libs/libcanberra 通过 media-libs/libcanberra 启用声音插件
6430 net-misc eventd libnotify Enable plugin to relay events to notification daemon (Note: not required for local notifications via net-misc/eventd) 启用插件以将事件中继到通知守护程序(注意:通过 net-misc/eventd 的本地通知不需要)
6431 net-misc eventd notification Enable plugin to display on-screen notifications 启用插件以显示屏幕通知
6432 net-misc eventd purple Enable plugin for IM notifications via libpurple 通过 libpurple 启用 IM 通知插件
6433 net-misc eventd speech Enable plugin for Text-To-Speech support 为文本转语音支持启用插件
6434 net-misc eventd webhook Enable plugin to send payloads to webhook handlers 启用插件以将有效负载发送到 webhook 处理程序
6435 net-misc eventd websocket Enable support for WebSocket protocol 启用对 WebSocket 协议的支持
6436 net-misc fatrat bittorrent Use the bittorrent protocol via net-libs/libtorrent-rasterbar. 通过 net-libs/libtorrent-rasterbar 使用 bittorrent 协议。
6437 net-misc felix bird Use BIRD, e.g. for route reflection 使用 BIRD,例如用于路由反射
6438 net-misc freerdp openh264 Enable H.264 support using media-libs/openh264 使用 media-libs/openh264 启用 H.264 支持
6439 net-misc freerdp server Build server binaries 构建服务器二进制文件
6440 net-misc frr fpm Enable Forwarding Plane Manager support 启用转发平面管理器支持
6441 net-misc frr grpc Enable gRPC plugin 启用 gRPC 插件
6442 net-misc frr nhrp Build Next Hop Resolution Protocol daemon 构建下一跳解析协议守护进程
6443 net-misc frr ospfapi Build OSPFAPI support 构建 OSPFAPI 支持
6444 net-misc frr pam Add support for PAM (via sys-libs/pam) to the Virtual Terminal Interface Shell (vtysh) 将 PAM 支持(通过 sys-libs/pam)添加到虚拟终端接口 Shell (vtysh)
6445 net-misc frr rpki Enable RPKI 启用 RPKI
6446 net-misc gerbera curl Support HTTP media sources (e.g. internet radio) 支持 HTTP 媒体源(例如网络广播)
6447 net-misc gerbera exiv2 Use media-gfx/exiv2 to extract EXIF information 使用 media-gfx/exiv2 提取 EXIF 信息
6448 net-misc gerbera ffmpegthumbnailer Enable video thumbnail support with media-video/ffmpegthumbnailer 使用 media-video/ffmpegthumbnailer 启用视频缩略图支持
6449 net-misc gerbera lastfm Enable last.fm support 启用 last.fm 支持
6450 net-misc gerbera mysql Use dev-db/mysql as backend rather than SQLite3 使用 dev-db/mysql 作为后端而不是 SQLite3
6451 net-misc gerbera taglib Use media-libs/taglib for reading files' metadata 使用 media-libs/taglib 读取文件的元数据
6452 net-misc gnome-online-miners flickr Enable Flickr support 启用 Flickr 支持
6453 net-misc gsasl client Build client component 构建客户端组件
6454 net-misc gsasl gcrypt Use dev-libs/libgcrypt for low-level crypto 使用 dev-libs/libgcrypt 进行低级加密
6455 net-misc gsasl ntlm Add support for Microsoft's NTLM mechanism using net-libs/libntlm 使用 net-libs/libntlm 添加对 Microsoft 的 NTLM 机制的支持
6456 net-misc gsasl server Build server component 构建服务器组件
6457 net-misc htbinit esfq Add support for Enhanced Stochastic Fairness queueing discipline. 添加对增强随机公平排队规则的支持。
6458 net-misc hylafaxplus html Convert faxes into html email 将传真转换为 html 电子邮件
6459 net-misc hylafaxplus jbig JBIG Fax Compression Support JBIG 传真压缩支持
6460 net-misc hylafaxplus mgetty Receive faxes via serial port connections 通过串行端口连接接收传真
6461 net-misc hylafaxplus pam hfaxd authentication via PAM 通过 PAM 进行 hfaxd 身份验证
6462 net-misc icecast kate Add karaoke and text encapsulation support for Ogg files 为 Ogg 文件添加卡拉 OK 和文本封装支持
6463 net-misc icecast yp Build support for yp public directory listings 构建对 yp 公共目录列表的支持
6464 net-misc iputils arping Build and install arping -- tool for sending ARP requests to peers (see also net-analyzer/arping) 构建和安装 arping -- 用于向对等方发送 ARP 请求的工具(另见 net-analyzer/arping)
6465 net-misc iputils clockdiff Build and install clockdiff -- tool for comparing clocks via ICMP packets 构建和安装clockdiff——通过ICMP数据包比较时钟的工具
6466 net-misc iputils rarpd Build and install rarpd -- server for handling RARP (reverse ARP) requests; generally only used by old systems 构建和安装 rarpd -- 用于处理 RARP(反向 ARP)请求的服务器;通常仅由旧系统使用
6467 net-misc iputils rdisc Build and install rdisc -- server for the client side of the ICMP router discover protocol 构建和安装 rdisc -- ICMP 路由器发现协议客户端的服务器
6468 net-misc iputils tracepath Build and install tracepath -- tool for tracing network paths for discovering MTU values 构建和安装 tracepath -- 用于跟踪网络路径以发现 MTU 值的工具
6469 net-misc kafka-bin connect Install init for Kafka Connect Distributed mode 为 Kafka Connect 分布式模式安装 init
6470 net-misc kafka-bin internal-zookeeper Use bundled local zookeeper instance 使用捆绑的本地 zookeeper 实例
6471 net-misc kafkacat avro Enable avro serialization/deserialization support 启用 avro 序列化/反序列化支持
6472 net-misc kafkacat json Enable json support 启用 json 支持
6473 net-misc kea openssl Use dev-libs/openssl instead of dev-libs/botan 使用 dev-libs/openssl 而不是 dev-libs/botan
6474 net-misc kea samples Install sample configuration files 安装示例配置文件
6475 net-misc kea shell Install kea-shell text management client for Control Agent 为 Control Agent 安装 kea-shell 文本管理客户端
6476 net-misc knock server Installs the knockd server daemon. 安装 knockd 服务器守护程序。
6477 net-misc libteam zmq Build witch net-libs/zeromq support 构建女巫 net-libs/zeromq 支持
6478 net-misc lldpd cdp Enable Cisco Discovery Protocol 启用思科发现协议
6479 net-misc lldpd dot1 Enable Dot1 extension (VLAN stuff) 启用 Dot1 扩展(VLAN 的东西)
6480 net-misc lldpd dot3 Enable Dot3 extension (PHY stuff) 启用 Dot3 扩展(PHY 的东西)
6481 net-misc lldpd edp Enable Extreme Discovery Protocol 启用极端发现协议
6482 net-misc lldpd fdp Enable Foundry Discovery Protocol 启用 Foundry 发现协议
6483 net-misc lldpd graph Create dot graphs in documentations 在文档中创建点图
6484 net-misc lldpd lldpmed Enable LLDP-MED extension 启用 LLDP-MED 扩展
6485 net-misc lldpd old-kernel Enable compatibility with Linux kernel older than 2.6.39 启用与早于 2.6.39 的 Linux 内核的兼容性
6486 net-misc lldpd sanitizers Enable code instrumentation with selected sanitizers 使用选定的消毒剂启用代码检测
6487 net-misc lldpd snmp Enable the use of SNMP 启用 SNMP
6488 net-misc lldpd sonmp Enable SynOptics Network Management 启用 SynOptics 网络管理
6489 net-misc memcached slabs-reassign Allow manual reassignment of memory slabs at the cost of slab optimizations. 允许以板优化为代价手动重新分配内存板。
6490 net-misc minidlna netgear Enable netgear branding 启用 netgear 品牌
6491 net-misc minidlna readynas Enable readynas branding 启用 readynas 品牌
6492 net-misc miniupnpd igd2 Build for IGDv2 instead of an IGDv1 为 IGDv2 而不是 IGDv1 构建
6493 net-misc miniupnpd leasefile Enable lease file. 启用租约文件。
6494 net-misc miniupnpd nftables Use net-firewall/nftables rather than net-firewall/iptables. 使用 net-firewall/nftables 而不是 net-firewall/iptables。
6495 net-misc miniupnpd pcp-peer Enable support for PCP-PEER to allow NAT-PMP clients to mangle their packets. 启用对 PCP-PEER 的支持以允许 NAT-PMP 客户端破坏其数据包。
6496 net-misc miniupnpd portinuse Check if a port is in use before allowing a NAT-PMP client to map it. 在允许 NAT-PMP 客户端映射端口之前检查端口是否正在使用。
6497 net-misc miniupnpd strict Be more strict regarding compliance with UPnP specifications. 更加严格地遵守 UPnP 规范。
6498 net-misc modemmanager mbim Enable MBIM modem protocol 启用 MBIM 调制解调器协议
6499 net-misc modemmanager qmi Enable support for the QMI modem protocol used by devices with Qualcomm chipsets 启用对带有 Qualcomm 芯片组的设备使用的 QMI 调制解调器协议的支持
6500 net-misc modemmanager qrtr Enable support for the QMI over IPC Router bus (QRTR) protocol 启用对 QMI over IPC 路由器总线 (QRTR) 协议的支持
6501 net-misc mosh client Build network client 构建网络客户端
6502 net-misc mosh examples Include example scripts 包括示例脚本
6503 net-misc mosh mosh-hardening Enable compiler and linker options to frustrate memory corruption exploits 启用编译器和链接器选项以阻止内存损坏漏洞利用
6504 net-misc mosh server Build network server 搭建网络服务器
6505 net-misc mosh ufw Install net-firewall/ufw rule set 安装 net-firewall/ufw 规则集
6506 net-misc mosh utempter Include libutempter support 包括 libuempter 支持
6507 net-misc mrouted rsrr Enable Routing Support for Resource Reservations, for RSVP 为资源预留启用路由支持,用于 RSVP
6508 net-misc mulk checksum Enable checksum verification for Metalink from dev-libs/openssl 从 dev-libs/openssl 为 Metalink 启用校验和验证
6509 net-misc mulk metalink Enable support for media-libs/libmetalink 启用对 media-libs/libmetalink 的支持
6510 net-misc netifrc dhcp Allow interfaces to configure via DHCP 允许接口通过 DHCP 进行配置
6511 net-misc netkit-bootparamd libtirpc Build against net-libs/libtirpc for RPC support 针对 net-libs/libtirpc 构建以获得 RPC 支持
6512 net-misc networkmanager concheck Enable connectivity checking support 启用连接检查支持
6513 net-misc networkmanager connection-sharing Support connection sharing (uses net-dns/dnsmasq) 支持连接共享(使用 net-dns/dnsmasq)
6514 net-misc networkmanager dhclient Use dhclient from net-misc/dhcp for getting an IP via DHCP 使用 net-misc/dhcp 中的 dhclient 通过 DHCP 获取 IP
6515 net-misc networkmanager dhcpcd Use net-misc/dhcpcd for getting an IP 使用 net-misc/dhcpcd 获取 IP
6516 net-misc networkmanager elogind Use sys-auth/elogind for session tracking 使用 sys-auth/elogind 进行会话跟踪
6517 net-misc networkmanager iptables Use net-firewall/iptables for connection sharing 使用 net-firewall/iptables 进行连接共享
6518 net-misc networkmanager iwd Use net-wireless/iwd instead of net-wireless/wpa_supplicant for wifi support by default 默认情况下使用 net-wireless/iwd 而不是 net-wireless/wpa_supplicant 来支持 wifi
6519 net-misc networkmanager lto Build using Link Time Optimizations (LTO) 使用链接时间优化 (LTO) 构建
6520 net-misc networkmanager modemmanager Enable support for mobile broadband devices using net-misc/modemmanager 使用 net-misc/modemmanager 启用对移动宽带设备的支持
6521 net-misc networkmanager nftables Use net-firewall/nftables for connection sharing 使用 net-firewall/nftables 进行连接共享
6522 net-misc networkmanager nss Use dev-libs/nss for cryptography 使用 dev-libs/nss 进行加密
6523 net-misc networkmanager ofono Use net-misc/ofono for telephony support. 使用 net-misc/ofono 进行电话支持。
6524 net-misc networkmanager ovs Enable OpenVSwitch support 启用 OpenVSwitch 支持
6525 net-misc networkmanager ppp Enable support for mobile broadband and PPPoE connections using net-dialup/ppp 使用 net-dialup/ppp 启用对移动宽带和 PPPoE 连接的支持
6526 net-misc networkmanager psl Use public suffix list via net-libs/libpsl 通过 net-libs/libpsl 使用公共后缀列表
6527 net-misc networkmanager resolvconf Use net-dns/openresolv for managing DNS information in /etc/resolv.conf. Generally, a symlink to /run/NetworkManager/resolv.conf is simpler. On systems running systemd-resolved, disable this flag and create a symlink to /run/systemd/resolve/stub-resolv.conf. 使用 net-dns/openresolv 管理 /etc/resolv.conf 中的 DNS 信息。通常,指向 /run/NetworkManager/resolv.conf 的符号链接更简单。在运行 systemd-resolved 的系统上,禁用此标志并创建指向 /run/systemd/resolve/stub-resolv.conf 的符号链接。
6528 net-misc networkmanager teamd Enable Teamd control support 启用 Teamd 控制支持
6529 net-misc networkmanager tools Build cli tools such as nmcli, nmtui and nm_cloud_setup 构建 cli 工具,例如 nmcli、nmtui 和 nm_cloud_setup
6530 net-misc networkmanager wext Enable support for the deprecated Wext (Wireless Extensions) API; needed for some older drivers (e.g. ipw2200, ndiswrapper) 启用对已弃用的 Wext(无线扩展)API 的支持;一些较旧的驱动程序需要(例如 ipw2200、ndiswrapper)
6531 net-misc networkmanager wifi Enable support for wifi and 802.1x security 启用对 wifi 和 802.1x 安全性的支持
6532 net-misc nextcloud-client dolphin Install the kde-apps/dolphin extension 安装 kde-apps/dolphin 扩展
6533 net-misc nextcloud-client nautilus Install the gnome-base/nautilus extension 安装 gnome-base/nautilus 扩展
6534 net-misc nextcloud-client webengine Enable old Flow1 login using dev-qt/qtwebengine 使用 dev-qt/qtwebengine 启用旧 Flow1 登录
6535 net-misc ntp openntpd Allow ntp to be installed alongside openntpd 允许 ntp 与 openntpd 一起安装
6536 net-misc ntp parse-clocks Add support for PARSE clocks 添加对 PARSE 时钟的支持
6537 net-misc ntp samba Provide support for Samba's signing daemon (needed for Active Directory domain controllers) 为 Samba 的签名守护进程提供支持(Active Directory 域控制器需要)
6538 net-misc ntpsec early Drop root privileges early 尽早放弃root权限
6539 net-misc ntpsec gdb Enable debugging with gdb 使用 gdb 启用调试
6540 net-misc ntpsec heat Install contrib heat generating scripts 安装 contrib 发热脚本
6541 net-misc ntpsec libbsd Use libbsd instead of internal funcs 使用 libbsd 而不是内部函数
6542 net-misc ntpsec nist Set local clock deps 设置本地时钟部门
6543 net-misc ntpsec ntpviz Make visualizations of offsets, jiffies, etc. 对偏移量、jiffies 等进行可视化。
6544 net-misc ntpsec rclock_arbiter Arbiter 1088A/B GPS driver 仲裁者 1088A/B GPS 驱动程序
6545 net-misc ntpsec rclock_generic Enable support for generic time radios and GPSDOs 启用对通用时间收音机和 GPSDO 的支持
6546 net-misc ntpsec rclock_gpsd Enable gpsd daemon support 启用 gpsd 守护进程支持
6547 net-misc ntpsec rclock_hpgps Hewlett Packard GPS driver 惠普 GPS 驱动程序
6548 net-misc ntpsec rclock_jjy JJY driver JJY司机
6549 net-misc ntpsec rclock_local Support for undisciplined local clock (not recommended) 支持无规律的本地时钟(不推荐)
6550 net-misc ntpsec rclock_modem NIST/USNO/PTB Modem Time Services NIST/USNO/PTB 调制解调器时间服务
6551 net-misc ntpsec rclock_nmea NMEA GPS driver NMEA GPS 驱动程序
6552 net-misc ntpsec rclock_oncore Oncore driver 核心驱动程序
6553 net-misc ntpsec rclock_pps PPS cesium clock driver PPS 铯钟驱动器
6554 net-misc ntpsec rclock_shm Obtain refclock info from shared memory-segment 从共享内存段获取 refclock 信息
6555 net-misc ntpsec rclock_spectracom Spectracom driver Spectracom 驱动程序
6556 net-misc ntpsec rclock_trimble Trimble driver 天宝司机
6557 net-misc ntpsec rclock_truetime Trutime driver (deprecated) Trutime 驱动程序(已弃用)
6558 net-misc ntpsec rclock_zyfer Zyfer driver Zyfer 驱动程序
6559 net-misc ntpsec smear Specify the interval over which a leap second is applied (experimental) 指定应用闰秒的时间间隔(实验性)
6560 net-misc ntpsec tests Enable tests 启用测试
6561 net-misc ofono atmodem ETSI AT modem support. ETSI AT 调制解调器支持。
6562 net-misc ofono bluetooth Enable Bluetooth modem support using net-wireless/bluez. 使用 net-wireless/bluez 启用蓝牙调制解调器支持。
6563 net-misc ofono cdmamodem Enable CDMA modem support. 启用 CDMA 调制解调器支持。
6564 net-misc ofono datafiles Enable install configuration and data files. 启用安装配置和数据文件。
6565 net-misc ofono dundee Enable BlueTooth DUN deamon support. 启用蓝牙 DUN 守护程序支持。
6566 net-misc ofono isimodem Enable PhoNet/ISI modem support. 启用 PhoNet/ISI 调制解调器支持。
6567 net-misc ofono phonesim Enable phone Simulator support 启用手机模拟器支持
6568 net-misc ofono provision Enable GPRS provisioning support 启用 GPRS 配置支持
6569 net-misc ofono qmimodem Enable Qualcomm QMI modem support 启用 Qualcomm QMI 调制解调器支持
6570 net-misc ofono tools Enable testing tools 启用测试工具
6571 net-misc oidentd masquerade Enable support for masqueraded/NAT connections 启用对伪装/NAT 连接的支持
6572 net-misc olsrd pud Install the Node Position Update plugin 安装节点位置更新插件
6573 net-misc openntpd constraints Enable HTTPS TLS time constraint support 启用 HTTPS TLS 时间限制支持
6574 net-misc openssh X509 Adds support for X.509 certificate authentication 添加对 X.509 证书身份验证的支持
6575 net-misc openssh hpn Enable high performance ssh 启用高性能 ssh
6576 net-misc openssh ldns Use LDNS for DNSSEC/SSHFP validation. 使用 LDNS 进行 DNSSEC/SSHFP 验证。
6577 net-misc openssh livecd Enable root password logins for live-cd environment. 为 live-cd 环境启用 root 密码登录。
6578 net-misc openssh scp Enable scp command with known security problems. See bug 733802 启用存在已知安全问题的 scp 命令。请参阅错误 733802
6579 net-misc openssh security-key Include builtin U2F/FIDO support 包括内置 U2F/FIDO 支持
6580 net-misc openssh ssl Enable additional crypto algorithms via OpenSSL 通过 OpenSSL 启用其他加密算法
6581 net-misc openssh xmss Enable XMSS post-quantum authentication algorithm 启用 XMSS 后量子认证算法
6582 net-misc openvswitch monitor Build the Python and GUI dependent monitor applications 构建依赖 Python 和 GUI 的监视器应用程序
6583 net-misc owncloud-client dolphin Install the kde-apps/dolphin extension 安装 kde-apps/dolphin 扩展
6584 net-misc owncloud-client nautilus Install the gnome-base/nautilus extension 安装 gnome-base/nautilus 扩展
6585 net-misc packETH cli Build and install packETHcli 构建和安装 packETHcli
6586 net-misc plowshare view-captcha View captcha with aview 查看验证码
6587 net-misc ps3mediaserver multiuser Allow renderer customization per-user. 允许每个用户自定义渲染器。
6588 net-misc ps3mediaserver transcode Install optional dependencies for transcoding support via media-video/mplayer 通过 media-video/mplayer 为转码支持安装可选依赖项
6589 net-misc ps3mediaserver tsmuxer Install optional dependencies for transcoding support via media-video/tsmuxer 通过 media-video/tsmuxer 安装用于转码支持的可选依赖项
6590 net-misc ptpd debug Enable debugging informations 启用调试信息
6591 net-misc ptpd experimental Enable experimental features 启用实验性功能
6592 net-misc ptpd ntp Enable NTPD cooperation 启用NTPD合作
6593 net-misc ptpd pcap Require net-libs/libpcap to allow layer 2 (raw Ethernet) transport 需要 net-libs/libpcap 以允许第 2 层(原始以太网)传输
6594 net-misc ptpd slave-only Enable slave only operation (remove master mode functionality) 启用仅从属操作(删除主模式功能)
6595 net-misc ptpd snmp Require net-analyzer/net-snmp to enable SNMP configuration 需要 net-analyzer/net-snmp 来启用 SNMP 配置
6596 net-misc ptpd statistics Enable compution of statistics 启用统计数据计算
6597 net-misc putty gssapi Enable support for GSSAPI (virtual/krb5) 启用对 GSSAPI(虚拟/krb5)的支持
6598 net-misc putty gtk Build the PuTTY client which requires x11-libs/gtk+. If disabled only the CLI tools puttygen, plink, pscp and psftp will be built 构建需要 x11-libs/gtk+ 的 PuTTY 客户端。如果禁用,则只会构建 CLI 工具 puttygen、plink、pscp 和 psftp
6599 net-misc putty gtk2 Build the PuTTY client with x11-libs/gtk+:2 instead of x11-libs/gtk+:3 使用 x11-libs/gtk+:2 而不是 x11-libs/gtk+:3 构建 PuTTY 客户端
6600 net-misc r8125 multi-tx-q Enable Multiple Tx Queue ("RSS" for sending) 启用多个 Tx 队列(“RSS”用于发送)
6601 net-misc r8125 ptp Enable Precision Time Protocol support 启用精确时间协议支持
6602 net-misc r8125 rss Enable Receive Side Scaling (RSS) 启用接收端缩放 (RSS)
6603 net-misc r8125 use-firmware Support automatic firmware loading 支持自动固件加载
6604 net-misc r8168 use-firmware Enable support for automatic firmware loading 启用对自动固件加载的支持
6605 net-misc rdesktop kerberos Enable CredSPP support + Kerberos authentication 启用 CredSPP 支持 + Kerberos 身份验证
6606 net-misc rdesktop pcsc-lite Enable smartcard support with sys-apps/pcsc-lite driver 使用 sys-apps/pcsc-lite 驱动程序启用智能卡支持
6607 net-misc rdesktop xrandr Enable XRandR window extension support 启用 XRandR 窗口扩展支持
6608 net-misc remmina gvnc Enable GVNC plugin using gtk-vnc, suitable for KVM and Vino servers 使用 gtk-vnc 启用 GVNC 插件,适用于 KVM 和 Vino 服务器
6609 net-misc remmina kwallet Enable KDE Wallet plugin 启用 KDE 钱包插件
6610 net-misc remmina spice Support connecting to SPICE-enabled virtual machines 支持连接到启用 SPICE 的虚拟机
6611 net-misc remmina ssh Enable support for SSH/SFTP protocol 启用对 SSH/SFTP 协议的支持
6612 net-misc remmina x2go Enable support for X2Go 启用对 X2Go 的支持
6613 net-misc rsync stunnel Provide helper scripts for using rsync via >=net-misc/stunnel-4 通过 >=net-misc/stunnel-4 提供使用 rsync 的帮助脚本
6614 net-misc rsync system-zlib Use system zlib instead of bundled one. This is incompatible with older rsync releases! 使用系统 zlib 而不是捆绑的。这与旧的 rsync 版本不兼容!
6615 net-misc rsync xxhash Enable dev-libs/xxhash support for hashing 为散列启用 dev-libs/xxhash 支持
6616 net-misc rygel tracker Install dependencies for the tracker plugin 安装跟踪器插件的依赖项
6617 net-misc rygel transcode Install dependencies for transcoding support 安装依赖项以支持转码
6618 net-misc scponly chroot Enables adding and configuring an 'scponlyc' chrooted user 启用添加和配置 'scponlyc' chrooted 用户
6619 net-misc scponly gftp Enables gFTP compatibility 启用 gFTP 兼容性
6620 net-misc scponly logging Enables SFTP logging compatibility 启用 SFTP 日志记录兼容性
6621 net-misc scponly passwd Enables passwd compatibility 启用密码兼容性
6622 net-misc scponly quota Enables quota compatibility 启用配额兼容性
6623 net-misc scponly rsync Enables rsync compatibility with potential security risks 启用 rsync 与潜在安全风险的兼容性
6624 net-misc scponly scp Enables scp compatibility with potential security risks 启用与潜在安全风险的 scp 兼容性
6625 net-misc scponly sftp Enables SFTP compatibility 启用 SFTP 兼容性
6626 net-misc scponly subversion Enables Subversion compatibility with potential security risks 启用 Subversion 与潜在安全风险的兼容性
6627 net-misc scponly unison Enables Unison compatibility with potential security risks 使 Unison 兼容潜在的安全风险
6628 net-misc scponly wildcards Enables wildcard processing with potential security risks 启用具有潜在安全风险的通配符处理
6629 net-misc scponly winscp Enables WinSCP 2.0 compatibility with potential security risks 启用与潜在安全风险的 WinSCP 2.0 兼容性
6630 net-misc seafile-client shibboleth Build support for Shibboleth single sign-on 构建对 Shibboleth 单点登录的支持
6631 net-misc sipp pcap Enable functionality to replay RTP data from a pcap file 启用从 pcap 文件重放 RTP 数据的功能
6632 net-misc sitecopy rsh This allows the use of rsh (remote shell) and rcp (remote copy) for authoring websites. sftp is a much more secure protocol and is preferred. 这允许使用 rsh(远程 shell)和 rcp(远程复制)来创作网站。 sftp 是一个更安全的协议,是首选。
6633 net-misc sitecopy webdav Enable WebDav (Web-based Distributed Authoring and Versioning) support. This system allows users to collaborate on websites using a web based interface. See the ebuild for an FAQ page. Enables neon as well to handle webdav support. 启用 WebDav(基于 Web 的分布式创作和版本控制)支持。该系统允许用户使用基于 Web 的界面在网站上进行协作。请参阅 ebuild 以获取常见问题解答页面。启用 neon 以及处理 webdav 支持。
6634 net-misc sks optimize Enables bytecode optimization 启用字节码优化
6635 net-misc smb4k discovery Build with net-libs/kdsoap-ws-discovery-client support to discover domains and workgroups 使用 net-libs/kdsoap-ws-discovery-client 支持构建以发现域和工作组
6636 net-misc sntpd adjtimex Install adjtimex for the clock adjustment algorithm. 为时钟调整算法安装 adjtimex。
6637 net-misc spice-gtk gtk3 Build the spice client (spicy), requires x11-libs/gtk+:3 构建 spice 客户端(spicy),需要 x11-libs/gtk+:3
6638 net-misc spice-gtk mjpeg Enable builtin mjpeg video decoder 启用内置 mjpeg 视频解码器
6639 net-misc spice-gtk policykit Enable sys-auth/polkit support for the usbredir acl helper 为 usbredir acl 助手启用 sys-auth/polkit 支持
6640 net-misc spice-gtk usbredir Use sys-apps/usbredir to redirect USB devices to another machine over TCP 使用 sys-apps/usbredir 通过 TCP 将 USB 设备重定向到另一台机器
6641 net-misc spice-gtk webdav Support for folder-sharing between guest and client using net-libs/phodav 支持使用 net-libs/phodav 在来宾和客户端之间共享文件夹
6642 net-misc sshrc mosh Install Support for mosh 安装对 mosh 的支持
6643 net-misc streamtuner shout Enable shoutcast plug-in. 启用直播插件。
6644 net-misc streamtuner xiph Enable xiph.org plug-in. 启用 xiph.org 插件。
6645 net-misc stunnel stunnel3 Install the stunnel3 wrapper. 安装 stunnel3 包装器。
6646 net-misc tigervnc dri3 Build with DRI3 support 使用 DRI3 支持构建
6647 net-misc tigervnc drm Build with DRM support 使用 DRM 支持构建
6648 net-misc tigervnc server Build TigerVNC server 搭建TigerVNC服务器
6649 net-misc tigervnc xorgmodule Build the Xorg module 构建 Xorg 模块
6650 net-misc uftp server Install uftp server daemon 安装 uftp 服务器守护进程
6651 net-misc vde pcap Enable the pcap-based plugin that allows creating a switch against a real interface. 启用基于 pcap 的插件,该插件允许针对真实界面创建开关。
6652 net-misc vde ssl Enable the cryptcab plugin that allows creating an encrypted virtual cable. 启用允许创建加密虚拟电缆的 cryptcab 插件。
6653 net-misc wget cookie-check Enable cookie checks via net-libs/libpsl 通过 net-libs/libpsl 启用 cookie 检查
6654 net-misc wget metalink Enable support for media-libs/libmetalink 启用对 media-libs/libmetalink 的支持
6655 net-misc wget ntlm Enable support for NTLM (Windows-based) authorization 启用对 NTLM(基于 Windows)授权的支持
6656 net-misc wget uuid Generate UUIDs for the WARC (Web ARChive file format) using libuuid; otherwise use a simple RNG (random number generator) 使用 libuuid 为 WARC(Web ARCHive 文件格式)生成 UUID;否则使用简单的 RNG(随机数生成器)
6657 net-misc wget2 brotli Enable support for brotli compression 启用对 brotli 压缩的支持
6658 net-misc wget2 gpgme Build app-crypt/gpgme backend 构建 app-crypt/gpgme 后端
6659 net-misc wget2 http2 Enable HTTP/2.0 support via net-libs/nghttp2 通过 net-libs/nghttp2 启用 HTTP/2.0 支持
6660 net-misc wget2 lzip Enable app-arch/lzip support 启用 app-arch/lzip 支持
6661 net-misc wget2 openssl Enable crypto support via dev-libs/openssl 通过 dev-libs/openssl 启用加密支持
6662 net-misc wget2 psl Use public suffix list via net-libs/libpsl 通过 net-libs/libpsl 使用公共后缀列表
6663 net-misc wget2 valgrind Depend on dev-util/valgrind for test suite 依赖于 dev-util/valgrind 的测试套件
6664 net-misc whois xcrypt Enable crypt through sys-libs/libxcrypt package 通过 sys-libs/libxcrypt 包启用 crypt
6665 net-misc x2goserver fuse Use net-fs/sshfs to allow shared folders 使用 net-fs/sshfs 允许共享文件夹
6666 net-misc xmrig donate Set the default donation level to 1% instead of 0 将默认捐赠水平设置为 1% 而不是 0
6667 net-misc xmrig hwloc Use sys-apps/hwloc for CPU affinity support 使用 sys-apps/hwloc 获得 CPU 亲和性支持
6668 net-misc xmrig opencl Enable OpenCL support 启用 OpenCL 支持
6669 net-misc youtube-dl yt-dlp Use net-misc/yt-dlp to provide the command and only install the python module 使用 net-misc/yt-dlp 提供命令并且只安装 python 模块
6670 net-misc youtube-viewer gtk Install the gtk3 GUI 安装 gtk3 图形用户界面
6671 net-misc ytfzf minimal Skip app-shells/fzf and media-video/mpv dependencies (requires custom settings) 跳过 app-shells/fzf 和 media-video/mpv 依赖项(需要自定义设置)
6672 net-misc zerotier clang Use Clang compiler instead of GCC 使用 Clang 编译器而不是 GCC
6673 net-nds 389-ds-base accountpolicy Enable account policy plugin - automatically lock an account after a certain amount of time has elapsed 启用帐户策略插件 - 在经过一定时间后自动锁定帐户
6674 net-nds 389-ds-base auto-dn-suffix Enable auto bind with auto dn suffix over unix domain socket (LDAPI) support 通过 unix 域套接字 (LDAPI) 支持使用自动 dn 后缀启用自动绑定
6675 net-nds 389-ds-base autobind Enable auto bind over unix domain socket (LDAPI) support 通过 unix 域套接字 (LDAPI) 支持启用自动绑定
6676 net-nds 389-ds-base bitwise Enable bitwise plugin - supported data in raw/bitwise format 启用按位插件 - 支持原始/按位格式的数据
6677 net-nds 389-ds-base dna Enable dna (distributed numeric assignment ) plugin - to automatically assign unique uid numbers to new user entries as they are created. 启用 dna(分布式数字分配)插件 - 在创建新用户条目时自动为其分配唯一的 uid 编号。
6678 net-nds 389-ds-base ldapi Enable LDAP over unix domain socket (LDAPI) support 启用 LDAP over unix domain socket (LDAPI) 支持
6679 net-nds 389-ds-base pam-passthru Enable pam-passthru plugin - for simple and fast system services used in ldap 启用 pam-passthru 插件 - 用于 ldap 中使用的简单快速的系统服务
6680 net-nds ldapvi gnutls Use net-libs/gnutls instead of dev-libs/openssl 使用 net-libs/gnutls 而不是 dev-libs/openssl
6681 net-nds nsscache nsscache Depend on sys-auth/libnss-cache to handle flat files 依赖 sys-auth/libnss-cache 来处理平面文件
6682 net-nds nsscache s3 Support for S3-based NSS sources 支持基于 S3 的 NSS 源
6683 net-nds openldap argon2 Enable password hashing algorithm from app-crypt/argon2 从 app-crypt/argon2 启用密码哈希算法
6684 net-nds openldap autoca Automatic Certificate Authority overlay 自动证书颁发机构覆盖
6685 net-nds openldap cleartext Enable use of cleartext passwords 启用明文密码
6686 net-nds openldap experimental Enable experimental backend options 启用实验性后端选项
6687 net-nds openldap kinit Enable support for kerberos init 启用对 kerberos init 的支持
6688 net-nds openldap minimal Build libraries & userspace tools only. Does not install any server code 仅构建库和用户空间工具。不安装任何服务器代码
6689 net-nds openldap odbc Enable ODBC and SQL backend options 启用 ODBC 和 SQL 后端选项
6690 net-nds openldap overlays Enable contributed OpenLDAP overlays 启用贡献的 OpenLDAP 覆盖
6691 net-nds openldap pbkdf2 Enable support for pbkdf2 passwords 启用对 pbkdf2 密码的支持
6692 net-nds openldap sha2 Enable support for pw-sha2 password hashes 启用对 pw-sha2 密码哈希的支持
6693 net-nds openldap smbkrb5passwd Enable overlay for syncing ldap, unix and lanman passwords 启用覆盖以同步 ldap、unix 和 lanman 密码
6694 net-nds rpcbind remotecalls Enable remote calls 启用远程呼叫
6695 net-nds rpcbind warmstarts Enables rpcbind to cache configuration for warm restarts 启用 rpcbind 以缓存热重启的配置
6696 net-nds tac_plus finger Adds support for checking user counts via fingering the NAS 添加对通过指法 NAS 检查用户计数的支持
6697 net-nds tac_plus maxsess Enforce a limit on maximum sessions per user 强制限制每个用户的最大会话数
6698 net-news rssguard webengine Use dev-qt/qtwebengine for embedded web browser 将 dev-qt/qtwebengine 用于嵌入式 Web 浏览器
6699 net-news sfeed theme-mono Use mono theme 使用单声道主题
6700 net-news sfeed theme-mono-highlight Use mono_highlight theme 使用 mono_highlight 主题
6701 net-news sfeed theme-newsboat Use newsboat theme 使用新闻船主题
6702 net-news sfeed theme-templeos Use templeos theme 使用 Templeos 主题
6703 net-nntp nzbget parcheck Enable support for checking PAR archives 启用对检查 PAR 档案的支持
6704 net-nntp sabnzbd 7za Add support for extracting 7za files 添加对提取 7za 文件的支持
6705 net-nntp sabnzbd rar Add support for extracting rar files 添加对提取 rar 文件的支持
6706 net-nntp sabnzbd unzip Add support for extracting zip files 添加对提取 zip 文件的支持
6707 net-nntp slrn canlock Add support for cancel locks via net-libs/canlock 通过 net-libs/canlock 添加对取消锁的支持
6708 net-nntp slrn uudeview Add support for yEnc coding and more using dev-libs/uulib 使用 dev-libs/uulib 添加对 yEnc 编码等的支持
6709 net-nntp tin cancel-locks Enable Cancel-Lock header functionality 启用 Cancel-Lock 标头功能
6710 net-nntp tin gpg Enable app-crypt/gnupg support 启用 app-crypt/gnupg 支持
6711 net-p2p airdcpp-webclient nat-pmp Enable support for the NAT-PMP protocol 启用对 NAT-PMP 协议的支持
6712 net-p2p airdcpp-webclient tbb Enable support of the TBB library to improve performance 启用对 TBB 库的支持以提高性能
6713 net-p2p airdcpp-webclient webui Enable the Web UI 启用网页界面
6714 net-p2p amule daemon Enable amule daemon 启用 amule 守护进程
6715 net-p2p amule remote Enable remote controlling of the client 启用客户端的远程控制
6716 net-p2p amule stats Enable statistic reporting 启用统计报告
6717 net-p2p bitcoin-cli knots Build enhanced Bitcoin Knots version, rather than Bitcoin Core 构建增强的比特币结版本,而不是比特币核心
6718 net-p2p bitcoin-qt asm Enable assembly for optimization 启用装配以进行优化
6719 net-p2p bitcoin-qt external-signer Include support for external wallet signer programs 包括对外部钱包签名程序的支持
6720 net-p2p bitcoin-qt knots Build enhanced Bitcoin Knots version, rather than Bitcoin Core 构建增强的比特币结版本,而不是比特币核心
6721 net-p2p bitcoin-qt nat-pmp Enable NAT-PMP port forwarding 启用 NAT-PMP 端口转发
6722 net-p2p bitcoin-qt qrcode Enable generation of QR Codes for receiving payments 启用生成二维码以接收付款
6723 net-p2p bitcoin-qt system-leveldb Use the system-wide dev-libs/leveldb instead of bundled 使用系统范围的 dev-libs/leveldb 而不是捆绑
6724 net-p2p bitcoin-qt systemtap Enable SystemTAP/DTrace tracing 启用 SystemTAP/DTrace 跟踪
6725 net-p2p bitcoin-qt upnp Enable Universal Plug and Play 启用通用即插即用
6726 net-p2p bitcoin-qt wallet Enable wallet support 启用钱包支持
6727 net-p2p bitcoin-qt zeromq Report blocks and transactions via zeromq 通过 zeromq 报告区块和交易
6728 net-p2p bitcoind asm Enable assembly for optimization 启用装配以进行优化
6729 net-p2p bitcoind external-signer Include support for external wallet signer programs 包括对外部钱包签名程序的支持
6730 net-p2p bitcoind knots Build enhanced Bitcoin Knots version, rather than Bitcoin Core 构建增强的比特币结版本,而不是比特币核心
6731 net-p2p bitcoind nat-pmp Enable NAT-PMP port forwarding 启用 NAT-PMP 端口转发
6732 net-p2p bitcoind system-leveldb Use the system-wide dev-libs/leveldb instead of bundled 使用系统范围的 dev-libs/leveldb 而不是捆绑
6733 net-p2p bitcoind systemtap Enable SystemTAP/DTrace tracing 启用 SystemTAP/DTrace 跟踪
6734 net-p2p bitcoind upnp Enable Universal Plug and Play 启用通用即插即用
6735 net-p2p bitcoind wallet Enable wallet support 启用钱包支持
6736 net-p2p bitcoind zeromq Report blocks and transactions via zeromq 通过 zeromq 报告区块和交易
6737 net-p2p dbhub switch-user Enable support for switching user 启用对切换用户的支持
6738 net-p2p deluge console Enable default console UI 启用默认控制台 UI
6739 net-p2p deluge webinterface Install dependencies needed for the web interface 安装 Web 界面所需的依赖项
6740 net-p2p eiskaltdcpp cli Enable sample cli based on readline 启用基于 readline 的示例 cli
6741 net-p2p eiskaltdcpp daemon Enable eiskaltdcpp-daemon 启用 eiskaltdcpp 守护进程
6742 net-p2p eiskaltdcpp dht Enable DHT (distributed hash table) support for libeiskaltdcpp 为 libeiskaltdcpp 启用 DHT(分布式哈希表)支持
6743 net-p2p eiskaltdcpp gold Use gold.ld instead of ld 使用 gold.ld 而不是 ld
6744 net-p2p eiskaltdcpp libcanberra Enable sound notifications support over libcanberra in EiskaltDC++ Gtk 在 EiskaltDC++ Gtk 中启用对 libcanberra 的声音通知支持
6745 net-p2p eiskaltdcpp minimal Don't install headers 不要安装标题
6746 net-p2p fms frost Add support for frost boards 添加对霜板的支持
6747 net-p2p fms ssl Add support for FCP connection over SSL 添加对通过 SSL 的 FCP 连接的支持
6748 net-p2p freenet nss Use nss for crypto operations, if it is the fastest way 使用 nss 进行加密操作,如果它是最快的方式
6749 net-p2p go-ethereum devtools Build Ethereum development tools (evm, abigen, puppeth, ...) 构建以太坊开发工具(evm、abigen、puppeth,...)
6750 net-p2p ktorrent bwscheduler Schedule upload and download limits over a period of a week 在一周内安排上传和下载限制
6751 net-p2p ktorrent downloadorder Specify the download order of a multi-file torrent 指定多文件种子的下载顺序
6752 net-p2p ktorrent infowidget Displays general information about a torrent in several tabs 在多个选项卡中显示有关种子的一般信息
6753 net-p2p ktorrent ipfilter Filter IP addresses through a blocklist 通过阻止列表过滤 IP 地址
6754 net-p2p ktorrent logviewer Displays the logging output 显示日志输出
6755 net-p2p ktorrent magnetgenerator Generates magnet URI's 生成磁铁 URI
6756 net-p2p ktorrent mediaplayer Phonon-based media player 基于声子的媒体播放器
6757 net-p2p ktorrent rss Syndication plugin for KTorrent, supporting RSS and Atom feeds KTorrent 的 Syndication 插件,支持 RSS 和 Atom 提要
6758 net-p2p ktorrent scanfolder Scan folders for torrent files and load them 扫描文件夹中的 torrent 文件并加载它们
6759 net-p2p ktorrent shutdown Shutdown when done 完成后关机
6760 net-p2p ktorrent stats Shows statistics about torrents in several graphs 在多个图表中显示有关种子的统计信息
6761 net-p2p ktorrent upnp Forward ports using UPnP 使用 UPnP 转发端口
6762 net-p2p ktorrent webengine Embedded search for torrents using dev-qt/qtwebengine 使用 dev-qt/qtwebengine 嵌入式搜索种子
6763 net-p2p ktorrent zeroconf Discover peers on the local network using the Zeroconf protocol 使用 Zeroconf 协议发现本地网络上的对等点
6764 net-p2p litecoind wallet Enable wallet support 启用钱包支持
6765 net-p2p mldonkey bittorrent enable bittorrent support 启用 bittorrent 支持
6766 net-p2p mldonkey fasttrack enable fasttrack support 启用快速通道支持
6767 net-p2p mldonkey gnutella enable gnutella and gnutella2 support 启用 gnutella 和 gnutella2 支持
6768 net-p2p mldonkey guionly enable client build only 仅启用客户端构建
6769 net-p2p qbittorrent webui Enable the Web UI 启用网页界面
6770 net-p2p retroshare autologin Enables potentially insecure autologin capability via app-crypt/libsecret 通过 app-crypt/libsecret 启用可能不安全的自动登录功能
6771 net-p2p retroshare cli Enables terminal login support for retroshare-service 为 retroshare-service 启用终端登录支持
6772 net-p2p retroshare control-socket Enables API via Unix socket support 通过 Unix 套接字支持启用 API
6773 net-p2p retroshare gnome-keyring Enables potentially insecure autologin capability via gnome-base/gnome-keyring 通过 gnome-base/gnome-keyring 启用可能不安全的自动登录功能
6774 net-p2p retroshare jsonapi Enables the new RetroShare JSON API 启用新的 RetroShare JSON API
6775 net-p2p retroshare libupnp Enables UPnP port forwarding via net-libs/libupnp 通过 net-libs/libupnp 启用 UPnP 端口转发
6776 net-p2p retroshare miniupnp Enables UPnP port forwarding via net-libs/miniupnpc 通过 net-libs/miniupnpc 启用 UPnP 端口转发
6777 net-p2p retroshare service Enables the new RetroShare service 启用新的 RetroShare 服务
6778 net-p2p retroshare sqlcipher Enables GXS database encryption via SQLCipher 通过 SQLCipher 启用 GXS 数据库加密
6779 net-p2p retroshare webui Enables Web interface and API support 启用 Web 界面和 API 支持
6780 net-p2p retroshare xapian Enables GXS content indexing and search via dev-libs/xapian 通过 dev-libs/xapian 启用 GXS 内容索引和搜索
6781 net-p2p rtorrent daemon Uses app-misc/screen to daemonize this application 使用 app-misc/screen 来守护这个应用程序
6782 net-p2p syncthing tools Install stdiscosrv, strelaysrv and other tools to /usr/libexec/syncthing/. 将stdiscosrv、strelaysrv等工具安装到/usr/libexec/syncthing/。
6783 net-p2p transmission cli Build command-line client 构建命令行客户端
6784 net-p2p transmission lightweight Optimize transmission for low-resource systems (smaller cache size, prefer unencrypted peer connections, etc.) 优化低资源系统的传输(更小的缓存大小,更喜欢未加密的对等连接等)
6785 net-p2p transmission mbedtls Use mbed TLS instead of OpenSSL 使用 mbed TLS 而不是 OpenSSL
6786 net-p2p transmission web Build Web client 构建 Web 客户端
6787 net-p2p transmission-remote-gtk libproxy Use net-libs/libproxy for getting the HTTP/HTTPS/SOCKS proxy configuration. 使用 net-libs/libproxy 获取 HTTP/HTTPS/SOCKS 代理配置。
6788 net-print cups openssl Use dev-libs/openssl instead of net-libs/gnutls for TLS support 使用 dev-libs/openssl 而不是 net-libs/gnutls 来支持 TLS
6789 net-print cups-filters foomatic Build the included foomatic-rip printer driver. Strongly recommended. 构建包含的 foomatic-rip 打印机驱动程序。强力推荐。
6790 net-print cups-filters pclm Enable PCLm support 启用 PCLm 支持
6791 net-print dymo-cups-drivers usb-modeswitch Include usb_modeswitch for some hardware (bug #601242) 包括一些硬件的 usb_modeswitch (bug #601242)
6792 net-print fax4cups efax Install net-misc/efax backend 安装 net-misc/efax 后端
6793 net-print fax4cups hylafax Install net-misc/hylafax backend 安装 net-misc/hylafax 后端
6794 net-print fax4cups mgetty-fax Install net-dialup/mgetty backend 安装 net-dialup/mgetty 后端
6795 net-print hplip X Enables scanner GUI dependencies with USE="scanner" where media-gfx/xsane is preferred over media-gfx/sane-frontends 使用 USE="scanner" 启用扫描仪 GUI 依赖项,其中 media-gfx/xsane 优于 media-gfx/sane-frontends
6796 net-print hplip fax Enable fax on multifunction devices which support it 在支持传真的多功能设备上启用传真
6797 net-print hplip hpcups Build the hpcups driver for cups (by HP) 为杯子构建 hpcups 驱动程序(由 HP 提供)
6798 net-print hplip hpijs Build the IJS driver for cups (Foomatic) 为杯子构建 IJS 驱动程序(Foomatic)
6799 net-print hplip kde Enables kde-misc/skanlite as scanner GUI with USE="scanner X" 使用 USE="scanner X" 启用 kde-misc/skanlite 作为扫描仪 GUI
6800 net-print hplip libusb0 Depend on virtual/libusb SLOT 0. Some old printers do not work with virtual/libusb SLOT 1. 取决于 virtual/libusb SLOT 0。一些旧打印机无法使用 virtual/libusb SLOT 1。
6801 net-print hplip minimal Only build internal hpijs/hpcups driver (not recommended at all, make sure you know what you are doing) 只构建内部 hpijs/hpcups 驱动程序(完全不推荐,确保你知道你在做什么)
6802 net-print hplip parport Enable parallel port for devices which require it 为需要它的设备启用并行端口
6803 net-print hplip scanner Enable scanner on multifunction devices which support it 在支持它的多功能设备上启用扫描仪
6804 net-print hplip snmp Add support for net-analyzer/net-snmp which enables this driver to work over networks (both for server and client) 添加对 net-analyzer/net-snmp 的支持,使该驱动程序能够在网络上工作(用于服务器和客户端)
6805 net-print hplip static-ppds Use statically-generated PPDs instead of Dynamic PPDs. Although this is deprecated some printers may still need it to work properly. Use this flag if hp-setup fails to find/create a valid PPD file 使用静态生成的 PPD 而不是动态 PPD。尽管已弃用此功能,但某些打印机可能仍需要它才能正常工作。如果 hp-setup 无法找到/创建有效的 PPD 文件,请使用此标志
6806 net-print hplip-plugin orblite Install the ORBlite scanner plugin 安装 ORBlite 扫描仪插件
6807 net-print kyocera-1x2x-mfp-driver rastertokpsl-fix Use custom wrapper script to sanitize arguments before passing to 'rastertokpsl' filter program 在传递给“rastertokpsl”过滤程序之前,使用自定义包装脚本清理参数
6808 net-proxy haproxy 51degrees Device Detection using 51 Degrees 使用 51 度进行设备检测
6809 net-proxy haproxy net_ns Enable network namespace support (CONFIG_NET_NS) 启用网络命名空间支持 (CONFIG_NET_NS)
6810 net-proxy haproxy pcre-jit Use JIT support for PCRE 对 PCRE 使用 JIT 支持
6811 net-proxy haproxy pcre2 Enable PCRE2 RegEx support 启用 PCRE2 正则表达式支持
6812 net-proxy haproxy pcre2-jit Use JIT support for PCRE2 对 PCRE2 使用 JIT 支持
6813 net-proxy haproxy prometheus-exporter Also build the prometheus exporter 同时构建普罗米修斯出口商
6814 net-proxy haproxy slz Use dev-libs/libslz compression library 使用 dev-libs/libslz 压缩库
6815 net-proxy haproxy tools Install additional tools (halog, iprange) 安装附加工具(halog、iprange)
6816 net-proxy haproxy wurfl Device Detection using WURFL 使用 WURFL 进行设备检测
6817 net-proxy privoxy brotli Decompress brotli compressed data using app-arch/brotli before filtering 过滤前使用 app-arch/brotli 解压 brotli 压缩数据
6818 net-proxy privoxy client-tags Enable support for client-specific tags 启用对客户端特定标签的支持
6819 net-proxy privoxy compression Allow privoxy to compress buffered content before sending to the client, if it supports it 允许 privoxy 在发送到客户端之前压缩缓冲的内容,如果它支持的话
6820 net-proxy privoxy editor Enable the web-based actions file editor 启用基于 Web 的操作文件编辑器
6821 net-proxy privoxy extended-host-patterns Enable and require PCRE syntax in host patterns. You must convert action files to PCRE, see privoxy-url-pattern-translator.pl (see tools USE flag). Use at your own risk! 在主机模式中启用并要求 PCRE 语法。您必须将操作文件转换为 PCRE,请参阅 privoxy-url-pattern-translator.pl(请参阅工具 USE 标志)。使用风险自负!
6822 net-proxy privoxy extended-statistics Gather extended statistics 收集扩展统计信息
6823 net-proxy privoxy external-filters Allow to filter content with scripts and programs. Experimental 允许使用脚本和程序过滤内容。实验性的
6824 net-proxy privoxy fast-redirects Support fast redirects 支持快速重定向
6825 net-proxy privoxy force Allow single-page disable (force load) 允许单页禁用(强制加载)
6826 net-proxy privoxy fuzz Exposes Privoxy internals to input from files or stdout. Intended for fuzzing testing 将 Privoxy 内部暴露给来自文件或标准输出的输入。用于模糊测试
6827 net-proxy privoxy graceful-termination Allow to shutdown Privoxy through the webinterface 允许通过 Web 界面关闭 Privoxy
6828 net-proxy privoxy image-blocking Allows the +handle-as-image action, to send "blocked" images instead of HTML 允许 +handle-as-image 操作,发送“被阻止”的图像而不是 HTML
6829 net-proxy privoxy jit Enable PCRE jit (recommended) 启用 PCRE jit(推荐)
6830 net-proxy privoxy lfs Support large files (>2GB) on 32-bit systems 支持 32 位系统上的大文件 (>2GB)
6831 net-proxy privoxy mbedtls Use net-libs/mbedtls for HTTPS filtering 使用 net-libs/mbedtls 进行 HTTPS 过滤
6832 net-proxy privoxy openssl Use dev-libs/openssl for HTTPS filtering 使用 dev-libs/openssl 进行 HTTPS 过滤
6833 net-proxy privoxy png-images Use PNG format instead of GIF for built-in images 对内置图像使用 PNG 格式而不是 GIF
6834 net-proxy privoxy sanitize Enable asan, msan and usan sanitizers. Your compiler must support them 启用 asan、msan 和 usan 消毒剂。你的编译器必须支持它们
6835 net-proxy privoxy ssl HTTPS inspection support. Enables privoxy to perform SSL MITM filtering, see docs, use with care HTTPS 检查支持。启用 privoxy 执行 SSL MITM 过滤,请参阅文档,小心使用
6836 net-proxy privoxy stats Keep statistics 保持统计
6837 net-proxy privoxy threads Enable POSIX threads. Highly recommended, otherwise both build and run-time features may not work properly. 启用 POSIX 线程。强烈推荐,否则构建和运行时功能可能无法正常工作。
6838 net-proxy privoxy toggle Support temporary disable toggle via web interface 支持通过网页界面临时禁用切换
6839 net-proxy privoxy tools Install log parser, regression tester and user agent generator tools 安装日志解析器、回归测试器和用户代理生成器工具
6840 net-proxy privoxy whitelists Support trust files (white lists) 支持信任文件(白名单)
6841 net-proxy privoxy zlib Decompress zlib compressed data using sys-libs/zlib before filtering 过滤前使用 sys-libs/zlib 解压 zlib 压缩数据
6842 net-proxy rejik banlists Install upstream provided simple banlists 安装上游提供的简单禁止列表
6843 net-proxy squid ecap Adds support for loadable content adaptation modules (http://www.e-cap.org) 添加对可加载内容适配模块的支持 (http://www.e-cap.org)
6844 net-proxy squid esi Enable ESI for accelerators, will cause squid reverse proxies to be capable of the Edge Acceleration Specification (www.esi.org) 为加速器启用 ESI,将导致 squid 反向代理能够支持边缘加速规范 (www.esi.org)
6845 net-proxy squid htcp Enable HTCP protocol 启用 HTCP 协议
6846 net-proxy squid logrotate Use app-admin/logrotate for rotating logs 使用 app-admin/logrotate 来轮换日志
6847 net-proxy squid qos Adds support for Quality of Service using netfilter conntrack - see qos_flow directive for more info 使用 netfilter conntrack 添加对服务质量的支持 - 有关更多信息,请参阅 qos_flow 指令
6848 net-proxy squid ssl-crtd Adds support for dynamic SSL certificate generation in SslBump environments 在 SslBump 环境中添加对动态 SSL 证书生成的支持
6849 net-proxy squid tproxy Enables real Transparent Proxy support for Linux Netfilter TPROXY 为 Linux Netfilter TPROXY 启用真正的透明代理支持
6850 net-proxy squid wccp Enable Web Cache Coordination Protocol 启用 Web 缓存协调协议
6851 net-proxy squid wccpv2 Enable Web Cache Coordination V2 Protocol 启用 Web 缓存协调 V2 协议
6852 net-proxy tinyproxy filter-proxy Enable filtering of domains/URLS 启用域/URLS 过滤
6853 net-proxy tinyproxy reverse-proxy Enable reverse proxying 启用反向代理
6854 net-proxy tinyproxy transparent-proxy Enable transparent proxying 启用透明代理
6855 net-proxy tinyproxy upstream-proxy Enable upstream proxying 启用上游代理
6856 net-proxy tinyproxy xtinyproxy-header Include the X-Tinyproxy header 包括 X-Tinyproxy 标头
6857 net-proxy trojan mysql build with MySQL support 使用 MySQL 支持构建
6858 net-proxy tsocks dns Force DNS queries to use SOCKS server via tcp 通过 tcp 强制 DNS 查询使用 SOCKS 服务器
6859 net-proxy tsocks envconf Allow TSOCKS_CONF_FILE to specify configuration file 允许 TSOCKS_CONF_FILE 指定配置文件
6860 net-proxy tsocks server-lookups Allow hostname resolution _for_ SOCKS servers 允许主机名解析_for_ SOCKS 服务器
6861 net-proxy tsocks tordns Apply tordns patch which allows transparent TORification of the DNS queries 应用允许对 DNS 查询进行透明 TORification 的 tordns 补丁
6862 net-voip captagent redis Enable redis support 启用 redis 支持
6863 net-voip telepathy-gabble jingle Enable voice calls for jabber 为 jabber 启用语音呼叫
6864 net-voip telepathy-gabble plugins Enable plugin loader 启用插件加载器
6865 net-voip yate amrnb use AMR-NB 使用 AMR-NB
6866 net-voip yate dahdi Enable Dahdi driver 启用 Dahdi 驱动程序
6867 net-voip yate gsm use GSM codec 使用 GSM 编解码器
6868 net-voip yate ilbc Enable iLBC codec 启用 iLBC 编解码器
6869 net-voip yate ilbc-webrtc Enable iLBC webrtc codec 启用 iLBC webrtc 编解码器
6870 net-voip yate isac-fixed Enable iSAC fixed codec 启用 iSAC 固定编解码器
6871 net-voip yate isac-float Enable iSAC float codec 启用 iSAC 浮动编解码器
6872 net-voip yate mysql use MySQL client library 使用 MySQL 客户端库
6873 net-voip yate postgres use Postgress SQL 使用 Postgress SQL
6874 net-voip yate spandsp use spandsp library 使用 spandsp 库
6875 net-voip yate speex use Speex codec 使用 Speex 编解码器
6876 net-voip yate tdmcard Enable TDMV API card driver 启用 TDMV API 卡驱动程序
6877 net-voip yate wanpipe Enable Wanpipe support 启用 Wanpipe 支持
6878 net-voip yate wpcard Enable Wanpipe card driver 启用 Wanpipe 卡驱动
6879 net-voip yate zaptel Enable Zaptel driver 启用 Zaptel 驱动程序
6880 net-vpn i2p nls Adds Native Language Support using GNU gettext. 使用 GNU gettext 添加本地语言支持。
6881 net-vpn i2pd i2p-hardening Compile with hardening on vanilla compilers/linkers 在 vanilla 编译器/链接器上进行强化编译
6882 net-vpn libreswan dnssec Use DNSSEC resolver (requires net-dns/unbound) 使用 DNSSEC 解析器(需要 net-dns/unbound)
6883 net-vpn networkmanager-sstp gtk4 Use gui-libs/gtk for GUI support. 使用 gui-libs/gtk 获得 GUI 支持。
6884 net-vpn networkmanager-strongswan gtk4 Use GTK4 instead of GTK3. 使用 GTK4 代替 GTK3。
6885 net-vpn ocserv otp Enable support for one-time passwords 启用对一次性密码的支持
6886 net-vpn openconnect gssapi Build GSSAPI support 构建 GSSAPI 支持
6887 net-vpn openconnect libproxy Enable proxy support 启用代理支持
6888 net-vpn openconnect pskc Enable PSKC file storage of HOTP/TOTP keys 启用 HOTP/TOTP 密钥的 PSKC 文件存储
6889 net-vpn openconnect stoken Enable stoken support 启用代币支持
6890 net-vpn openvpn down-root Enable the down-root plugin 启用下根插件
6891 net-vpn openvpn iproute2 Enabled iproute2 support instead of net-tools 启用 iproute2 支持而不是 net-tools
6892 net-vpn openvpn mbedtls Use mbed TLS as the backend crypto library 使用 mbed TLS 作为后端加密库
6893 net-vpn openvpn openssl Use OpenSSL as the backend crypto library 使用 OpenSSL 作为后端加密库
6894 net-vpn openvpn pkcs11 Enable PKCS#11 smartcard support 启用 PKCS#11 智能卡支持
6895 net-vpn openvpn plugins Enable the OpenVPN plugin system 启用 OpenVPN 插件系统
6896 net-vpn pptpd gre-extreme-debug Log all GRE accepted packets when in debug mode (required if you want upstream support) 在调试模式下记录所有 GRE 接受的数据包(如果需要上游支持,则需要)
6897 net-vpn strongswan constraints Enable advanced X.509 constraint checking plugin 启用高级 X.509 约束检查插件
6898 net-vpn strongswan dhcp Enable server support for querying virtual IP addresses for clients from a DHCP server. (IKEv2 only) 启用服务器支持以从 DHCP 服务器查询客户端的虚拟 IP 地址。 (仅限 IKEv2)
6899 net-vpn strongswan eap Enable support for the different EAP modules that are supported 启用对受支持的不同 EAP 模块的支持
6900 net-vpn strongswan farp Enable faking of ARP responses for virtual IP addresses assigned to clients (IKEv2 only) 为分配给客户端的虚拟 IP 地址启用伪造 ARP 响应(仅限 IKEv2)
6901 net-vpn strongswan gcrypt Enable dev-libs/libgcrypt plugin which provides 3DES, AES, Blowfish, Camellia, CAST, DES, Serpent and Twofish ciphers along with MD4, MD5 and SHA1/2 hash algorithms, RSA and DH groups 1,2,5,14-18 and 22-24(4.4+). Also includes a software random number generator. 启用 dev-libs/libgcrypt 插件,该插件提供 3DES、AES、Blowfish、Camellia、CAST、DES、Serpent 和 Twofish 密码以及 MD4、MD5 和 SHA1/2 哈希算法、RSA 和 DH 组 1、2、5、14-18和 22-24(4.4+)。还包括一个软件随机数生成器。
6902 net-vpn strongswan non-root Force IKEv1/IKEv2 daemons to normal user privileges. This might impose some restrictions mainly to the IKEv1 daemon. Disable only if you really require superuser privileges. 强制 IKEv1/IKEv2 守护程序具有普通用户权限。这可能主要对 IKEv1 守护进程施加一些限制。仅当您确实需要超级用户权限时才禁用。
6903 net-vpn strongswan openssl Enable dev-libs/openssl plugin which is required for Elliptic Curve Cryptography (DH groups 19-21,25,26) and ECDSA. Also provides 3DES, AES, Blowfish, Camellia, CAST, DES, IDEA and RC5 ciphers along with MD2, MD4, MD5 and SHA1/2 hash algorithms, RSA and DH groups 1,2,5,14-18 and 22-24(4.4+) dev-libs/openssl has to be compiled with USE="-bindist". 启用椭圆曲线密码术(DH 组 19-21、25、26)和 ECDSA 所需的 dev-libs/openssl 插件。还提供 3DES、AES、Blowfish、Camellia、CAST、DES、IDEA 和 RC5 密码以及 MD2、MD4、MD5 和 SHA1/2 哈希算法、RSA 和 DH 组 1、2、5、14-18 和 22-24( 4.4+) dev-libs/openssl 必须使用 USE="-bindist" 编译。
6904 net-vpn strongswan pkcs11 Enable pkcs11 support 启用 pkcs11 支持
6905 net-vpn strongswan strongswan_plugins_addrblock Enable support for the addrblock crypto plugin 启用对 addrblock 加密插件的支持
6906 net-vpn strongswan strongswan_plugins_aesni Enable support for Intel AES-NI crypto plugin 启用对英特尔 AES-NI 加密插件的支持
6907 net-vpn strongswan strongswan_plugins_blowfish Enable support for the blowfish plugin 启用对河豚插件的支持
6908 net-vpn strongswan strongswan_plugins_bypass-lan Enable support for the bypass-lan plugin 启用对 bypass-lan 插件的支持
6909 net-vpn strongswan strongswan_plugins_ccm Enable support for the ccm plugin 启用对 ccm 插件的支持
6910 net-vpn strongswan strongswan_plugins_chapoly Enable ChaCha20/Poly1305 AEAD implementation and ChaCha20 XOF plugin 启用 ChaCha20/Poly1305 AEAD 实现和 ChaCha20 XOF 插件
6911 net-vpn strongswan strongswan_plugins_ctr Enable support for the ctr plugin 启用对 ctr 插件的支持
6912 net-vpn strongswan strongswan_plugins_error-notify Enable support for the error-notify plugin 启用对错误通知插件的支持
6913 net-vpn strongswan strongswan_plugins_forecast Enable multicast and broadcast forwarding plugin 启用多播和广播转发插件
6914 net-vpn strongswan strongswan_plugins_gcm Enable support for the gcm plugin 启用对 gcm 插件的支持
6915 net-vpn strongswan strongswan_plugins_ha Enable support for the ha plugin 启用对 ha 插件的支持
6916 net-vpn strongswan strongswan_plugins_ipseckey Enable support for the ipseckey plugin 启用对 ipseckey 插件的支持
6917 net-vpn strongswan strongswan_plugins_kdf Enable support for the kdf plugin 启用对 kdf 插件的支持
6918 net-vpn strongswan strongswan_plugins_led Enable support for the led plugin 启用对 led 插件的支持
6919 net-vpn strongswan strongswan_plugins_lookip Enable support for the lookip plugin 启用对 lookip 插件的支持
6920 net-vpn strongswan strongswan_plugins_newhope Enable plugin that allows key exchange based on post-quantum computer New Hope algorithm 启用允许基于后量子计算机新希望算法的密钥交换的插件
6921 net-vpn strongswan strongswan_plugins_ntru Enable support for the ntru plugin 启用对 ntru 插件的支持
6922 net-vpn strongswan strongswan_plugins_padlock Enable support for the padlock plugin 启用对挂锁插件的支持
6923 net-vpn strongswan strongswan_plugins_prf-plus Enable support for the prf-plus plugin 启用对 prf-plus 插件的支持
6924 net-vpn strongswan strongswan_plugins_rdrand Enable support for the rdrand plugin 启用对 rdrand 插件的支持
6925 net-vpn strongswan strongswan_plugins_save-keys Enable plugin that saves IKE and/or ESP keys to files compatible with Wireshark (for debugging) 启用将 IKE 和/或 ESP 密钥保存到与 Wireshark 兼容的文件的插件(用于调试)
6926 net-vpn strongswan strongswan_plugins_systime-fix Enable support for the systime-fix plugin 启用对 systime-fix 插件的支持
6927 net-vpn strongswan strongswan_plugins_unbound Enable support for the unbound plugin 启用对未绑定插件的支持
6928 net-vpn strongswan strongswan_plugins_unity Enable support for the unity plugin 启用对统一插件的支持
6929 net-vpn strongswan strongswan_plugins_vici Enable support for the vici plugin 启用对 vici 插件的支持
6930 net-vpn strongswan strongswan_plugins_whitelist Enable support for the whitelist plugin 启用对白名单插件的支持
6931 net-vpn strongswan strongswan_plugins_xauth-noauth Enable support for the xauth-noauth plugin 启用对 xauth-noauth 插件的支持
6932 net-vpn tinc uml Enable support for User Mode Linux Sockets 启用对用户模式 Linux 套接字的支持
6933 net-vpn tinc vde Enable Virtual Distributed Ethernet (VDE) based networking 启用基于虚拟分布式以太网 (VDE) 的网络
6934 net-vpn tor scrypt Use app-crypt/libscrypt for the scrypt algorithm 对 scrypt 算法使用 app-crypt/libscrypt
6935 net-vpn tor server Enable tor's relay module so it can operate as a relay/bridge/authority 启用tor的中继模块,使其可以作为中继/网桥/授权运行
6936 net-vpn tor tor-hardening Compile tor with hardening on vanilla compilers/linkers 在 vanilla 编译器/链接器上使用硬化来编译 tor
6937 net-vpn vpnc resolvconf Enable support for DNS managing framework net-dns/openresolv 启用对 DNS 管理框架 net-dns/openresolv 的支持
6938 net-vpn wireguard-modules debug Enable verbose debug reporting in dmesg of various WireGuard peer and device information. 在 dmesg 中启用各种 WireGuard 对等点和设备信息的详细调试报告。
6939 net-vpn wireguard-modules module Compile the actual WireGuard kernel module. Most certainly you want this enabled, unless you're doing something strange. 编译实际的 WireGuard 内核模块。除非您正在做一些奇怪的事情,否则您肯定希望启用此功能。
6940 net-vpn wireguard-modules module-src Install the module source code to /usr/src, in case you like building kernel modules yourself. 将模块源代码安装到 /usr/src,以防您喜欢自己构建内核模块。
6941 net-vpn wireguard-tools wg-quick Install the wg-quick(8) helper tool. Most users want to use this. 安装 wg-quick(8) 辅助工具。大多数用户都想使用它。
6942 net-wireless aircrack-ng airdrop-ng Build airdrop-ng 构建空投-ng
6943 net-wireless aircrack-ng airgraph-ng Build airgraph-ng 构建 airgraph-ng
6944 net-wireless aircrack-ng experimental Build the "experimental" tools which may randomly fail to run properly 构建可能随机无法正常运行的“实验性”工具
6945 net-wireless aircrack-ng netlink Use netlink for channel control instead of WEXT 使用 netlink 进行通道控制而不是 WEXT
6946 net-wireless bladerf tecla use libtecla for command line editing, tab completion, and history 使用 libtecla 进行命令行编辑、制表符补全和历史记录
6947 net-wireless bladerf-fpga x115 bitstream for the x115 kLE Cyclone IV FPGA bladerf model" x115 kLE Cyclone IV FPGA Bladerf 模型的比特流"
6948 net-wireless bladerf-fpga x40 bitstream for the x40 kLE Cyclone IV FPGA bladerf model" x40 kLE Cyclone IV FPGA Bladerf 模型的比特流"
6949 net-wireless bladerf-fpga xA4 bitstream for the xA4 49 kLE Cyclone V FPGA bladerf 2.0 micro model" xA4 49 kLE Cyclone V FPGA Bladerf 2.0 微型模型的比特流"
6950 net-wireless bladerf-fpga xA9 bitstream for the xA9 301 kLE Cyclone V FPGA bladerf 2.0 micro model" xA9 301 kLE Cyclone V FPGA Bladerf 2.0 微型模型的比特流"
6951 net-wireless blueman network Add functionality to setup (host) PAN connections using either net-dns/dnsmasq or net-misc/dhcp 添加功能以使用 net-dns/dnsmasq 或 net-misc/dhcp 设置(主机)PAN 连接
6952 net-wireless bluez btpclient Enable BTP client 启用 BTP 客户端
6953 net-wireless bluez deprecated Build deprecated plugins 构建已弃用的插件
6954 net-wireless bluez experimental Build experimental plugins 构建实验插件
6955 net-wireless bluez extra-tools Install tools that upstream doesn't install on purpose by default. All this tools shouldn't be used. Then, please notify upstream about you still need them to let them know the situation. 安装上游默认不故意安装的工具。不应使用所有这些工具。然后,请通知上游您仍然需要他们让他们知道情况。
6956 net-wireless bluez mesh Add support for Bluetooth Mesh control application and advertising bearer. 添加对蓝牙Mesh控制应用和广告承载的支持。
6957 net-wireless bluez midi Enable MIDI support 启用 MIDI 支持
6958 net-wireless bluez obex Enable OBEX transfer support 启用 OBEX 传输支持
6959 net-wireless bluez test-programs Install tools for testing of various Bluetooth functions 安装用于测试各种蓝牙功能的工具
6960 net-wireless crda gcrypt Use libgcrypt instead of openssl for key checking 使用 libgcrypt 而不是 openssl 进行密钥检查
6961 net-wireless dump1090 bladerf Build with Nuand BladeRF support 使用 Nuand BladeRF 支持构建
6962 net-wireless dump1090 hackrf Build with Great Scott Gadgets HackRF support 使用 Great Scott Gadgets HackRF 支持构建
6963 net-wireless dump1090 minimal Exclude all HTML/webserver extras for a tiny build, e.g. to export data only 排除所有 HTML/webserver 附加内容以进行小型构建,例如仅导出数据
6964 net-wireless dump1090 rtlsdr Build with Realtek RTL2832U (rtlsdr) support 使用 Realtek RTL2832U (rtlsdr) 支持构建
6965 net-wireless gnome-bluetooth sendto Build the bluetooth-sendto application to send files to various locations/devices 构建 bluetooth-sendto 应用程序以将文件发送到各个位置/设备
6966 net-wireless gnuradio analog enable analog signal processing blocks 启用模拟信号处理模块
6967 net-wireless gnuradio audio enable blocks to connect to audio sources (mic-in) and sinks (speaker-out) ports on a computer 使模块能够连接到计算机上的音频源(麦克风输入)和接收器(扬声器输出)端口
6968 net-wireless gnuradio channels enable channel mode blocks 启用通道模式块
6969 net-wireless gnuradio ctrlport enable control port interface 启用控制端口接口
6970 net-wireless gnuradio digital enable digital signal processing blocks 启用数字信号处理模块
6971 net-wireless gnuradio dtv enable digital tv signal processing blocks 启用数字电视信号处理模块
6972 net-wireless gnuradio fec enable block for convolutional encoding using the CCSDS standard polynomial ("Voyager") 使用 CCSDS 标准多项式(“Voyager”)启用卷积编码块
6973 net-wireless gnuradio filter enable filter signal processing blocks 启用滤波器信号处理模块
6974 net-wireless gnuradio grc enable GNU Radio Companion graphical tool to design signal processing flow graphs 启用 GNU Radio Companion 图形工具来设计信号处理流程图
6975 net-wireless gnuradio modtool enable modtool for editing GNU Radio modules and components 启用 modtool 以编辑 GNU Radio 模块和组件
6976 net-wireless gnuradio performance-counters enable block performance counters 启用块性能计数器
6977 net-wireless gnuradio trellis enable trellis blocks for FSM 为 FSM 启用格子块
6978 net-wireless gnuradio uhd install UHD source and sink blocks 安装超高清源和汇块
6979 net-wireless gnuradio utils install scripts to enable viewing and analysis of files produced by flow graphs 安装脚本以启用对流程图生成的文件的查看和分析
6980 net-wireless gnuradio vocoder enable blocks for audio voice encoders 音频语音编码器的启用块
6981 net-wireless gnuradio wavelet enable wavelet signal processing blocks 启用小波信号处理模块
6982 net-wireless gnuradio zeromq enable zeromq message passing blocks 启用 zeromq 消息传递块
6983 net-wireless gqrx gr-audio Use audio support from net-wireless/gnuradio 使用来自 net-wireless/gnuradio 的音频支持
6984 net-wireless gr-osmosdr airspy Build with Airspy support 在 Airspy 支持下构建
6985 net-wireless gr-osmosdr bladerf Build with Nuand BladeRF support 使用 Nuand BladeRF 支持构建
6986 net-wireless gr-osmosdr hackrf Build with Great Scott Gadgets HackRF support 使用 Great Scott Gadgets HackRF 支持构建
6987 net-wireless gr-osmosdr iqbalance Enable support for I/Q balancing using gr-iqbal 使用 gr-iqbal 启用对 I/Q 平衡的支持
6988 net-wireless gr-osmosdr rtlsdr Build with Realtek RTL2832U (rtlsdr) support 使用 Realtek RTL2832U (rtlsdr) 支持构建
6989 net-wireless gr-osmosdr sdrplay Enable support for SDRplay devices through net-wireless/sdrplay 通过 net-wireless/sdrplay 启用对 SDRplay 设备的支持
6990 net-wireless gr-osmosdr soapy Build with SoapySDR support 使用 SoapySDR 支持构建
6991 net-wireless gr-osmosdr uhd Build with Ettus Research USRP Hardware Driver support 使用 Ettus Research USRP 硬件驱动程序支持构建
6992 net-wireless gr-osmosdr xtrx Build with xtrx Hardware Driver support 使用 xtrx 硬件驱动程序支持构建
6993 net-wireless horst pcap Add support for network packet capture via net-libs/libpcap 通过 net-libs/libpcap 添加对网络数据包捕获的支持
6994 net-wireless hostapd crda Add CRDA support 添加 CRDA 支持
6995 net-wireless hostapd internal-tls Use internal TLSv1 implementation instead of depending on OpenSSL or GnuTLS 使用内部 TLSv1 实现而不是依赖于 OpenSSL 或 GnuTLS
6996 net-wireless hostapd netlink Adding support for using netlink to create VLANs 添加对使用 netlink 创建 VLAN 的支持
6997 net-wireless hostapd suiteb Adding support for NSA Suite B Cryptography 添加对 NSA Suite B 加密的支持
6998 net-wireless hostapd wps Add support for Wi-Fi Protected Setup 添加对 Wi-Fi 保护设置的支持
6999 net-wireless iwd client Enable iwctl client tool 启用 iwctl 客户端工具
7000 net-wireless iwd crda Use net-wireless/crda for regulatory domain loading instead of in-kernel (4.15+) support 使用 net-wireless/crda 进行监管域加载,而不是内核 (4.15+) 支持
7001 net-wireless iwd monitor Enable iwmon monitor tool 启用 iwmon 监控工具
7002 net-wireless iwd ofono Enable support for oFono SIM authentication 启用对 oFono SIM 身份验证的支持
7003 net-wireless iwd standalone Enable standalone mode with built-in DHCP client and DNS handling" 使用内置 DHCP 客户端和 DNS 处理启用独立模式"
7004 net-wireless iwd systemd Use systemd-resolve rather than resolvconf for DNS handling in standalone mode 在独立模式下使用 systemd-resolve 而不是 resolvconf 进行 DNS 处理
7005 net-wireless iwd wired Enable ethernet authentication daemon 启用以太网身份验证守护进程
7006 net-wireless kismet libusb Support libusb based capture sources such as mousejack, cc2540(ble), and nrf51822(ble) 支持基于 libusb 的捕获源,例如 mousejack、cc2540(ble) 和 nrf51822(ble)
7007 net-wireless kismet pcre Build with pcre support 使用 pcre 支持构建
7008 net-wireless kismet rtlsdr Enable rtlsdr based kismet capture sources 启用基于 rtlsdr 的 kismet 捕获源
7009 net-wireless kismet suid Install a setuid root helper binary with limited functionality; this allows running kismet as a normal user, significantly reducing security risks 安装一个功能有限的 setuid root helper 二进制文件;这允许以普通用户身份运行 kismet,显着降低安全风险
7010 net-wireless kismet ubertooth Enable capture source for ubertooth to sniff bluetooth low energy 为 ubertooth 启用捕获源以嗅探蓝牙低能量
7011 net-wireless libxtrxll usb3380 support xtrx usb model 支持 xtrx USB 型号
7012 net-wireless neard tools Build and install 'nfctool' for further NFC debugging 构建并安装“nfctool”以进行进一步的 NFC 调试
7013 net-wireless rtl-sdr zerocopy may cause a bus error on some ARM systems 在某些 ARM 系统上可能会导致总线错误
7014 net-wireless rtl_433 rtlsdr Build with Realtek RTL2832U (rtlsdr) support 使用 Realtek RTL2832U (rtlsdr) 支持构建
7015 net-wireless rtl_433 soapysdr Build with SoapySDR support 使用 SoapySDR 支持构建
7016 net-wireless soapysdr bladerf Add support for bladerf hardware 添加对 Bladerf 硬件的支持
7017 net-wireless soapysdr hackrf Add support for hackrf hardware 添加对hackrf硬件的支持
7018 net-wireless soapysdr plutosdr Add support for Analog Devices ADALM-PLUTO hardware 添加对 Analog Devices ADALM-PLUTO 硬件的支持
7019 net-wireless soapysdr rtlsdr Add support for rtlsdr hardware 添加对 rtlsdr 硬件的支持
7020 net-wireless soapysdr uhd Add support for Ettus USRP hardware 添加对 Ettus USRP 硬件的支持
7021 net-wireless spectools debug Build the raw output client for spectools. (for developers) 为 spectools 构建原始输出客户端。 (针对开发人员)
7022 net-wireless spectools gtk Build the gtk-2 based client for spectools 为 spectools 构建基于 gtk-2 的客户端
7023 net-wireless spectools ncurses Build the ncurses based client for spectools 为 spectools 构建基于 ncurses 的客户端
7024 net-wireless ubertooth bluez use bluez to support clock following and scanning 使用 bluez 支持时钟跟踪和扫描
7025 net-wireless ubertooth ubertooth1-firmware Build/install ubertooth1-firmware 构建/安装 ubertooth1-firmware
7026 net-wireless uhd b100 support B100 hardware 支持B100硬件
7027 net-wireless uhd b200 support B200, B210, B200mini, B205mini hardware 支持 B200、B210、B200mini、B205mini 硬件
7028 net-wireless uhd e300 support E300, E310 hardware 支持E300、E310硬件
7029 net-wireless uhd mpmd support N300, N310 hardware 支持N300、N310硬件
7030 net-wireless uhd n230 support N230 harware 支持N230硬件
7031 net-wireless uhd octoclock Octoclock Network Support Octoclock 网络支持
7032 net-wireless uhd usrp1 support USRP1 hardware 支持USRP1硬件
7033 net-wireless uhd usrp2 support USRP2, N200, N210 hardware 支持USRP2、N200、N210硬件
7034 net-wireless uhd utils utilities needed to list, query, calibrate, or update FPGA/Firmware 列出、查询、校准或更新 FPGA/固件所需的实用程序
7035 net-wireless uhd x300 support X300, X310 hardware 支持X300、X310硬件
7036 net-wireless unifi system-mongodb Using dev-db/mongodb systemd service instead of the bundled one 使用 dev-db/mongodb systemd 服务而不是捆绑的服务
7037 net-wireless urh airspy use native backend which directly uses net-wireless/airspy 使用直接使用 net-wireless/airspy 的本地后端
7038 net-wireless urh audio use a soundcard instead of an sdr 使用声卡而不是 sdr
7039 net-wireless urh bladerf use native backend which directly uses net-wireless/bladerf 使用直接使用 net-wireless/bladerf 的本地后端
7040 net-wireless urh hackrf use native backend which directly uses net-libs/libhackrf 使用直接使用 net-libs/libhackrf 的本地后端
7041 net-wireless urh limesdr use native backend which directly uses net-wireless/limesuite 使用直接使用 net-wireless/limesuite 的本地后端
7042 net-wireless urh plutosdr use native backend which directly uses net-libs/libiio 使用直接使用 net-libs/libiio 的本地后端
7043 net-wireless urh rtlsdr use native backend which directly uses net-wireless/rtl-sdr 使用直接使用 net-wireless/rtl-sdr 的本地后端
7044 net-wireless urh sdrplay use native backend which directly uses net-wireless/sdrplay 使用直接使用 net-wireless/sdrplay 的本地后端
7045 net-wireless urh uhd use native backend which directly uses net-wireless/uhd 使用直接使用 net-wireless/uhd 的本地后端
7046 net-wireless wepattack john Build with app-crypt/johntheripper support 使用 app-crypt/johntheripper 支持构建
7047 net-wireless wireless-tools multicall Build the most commonly used tools as one binary 将最常用的工具构建为一个二进制文件
7048 net-wireless wpa_supplicant ap Add support for access point mode 添加对接入点模式的支持
7049 net-wireless wpa_supplicant broadcom-sta Flag to help users disable features not supported by broadcom-sta driver 帮助用户禁用 Broadcom-sta 驱动程序不支持的功能的标志
7050 net-wireless wpa_supplicant crda Use net-wireless/crda for regulatory domain loading instead of in-kernel (4.15+) support 使用 net-wireless/crda 进行监管域加载,而不是内核 (4.15+) 支持
7051 net-wireless wpa_supplicant eap-sim Add support for EAP-SIM authentication algorithm 添加对 EAP-SIM 身份验证算法的支持
7052 net-wireless wpa_supplicant eapol-test Build and install eapol_test binary 构建和安装 eapol_test 二进制文件
7053 net-wireless wpa_supplicant fasteap Add support for FAST-EAP authentication algorithm 添加对 FAST-EAP 身份验证算法的支持
7054 net-wireless wpa_supplicant fils Add support for Fast Initial Link Setup (802.11ai) 添加对快速初始链路设置 (802.11ai) 的支持
7055 net-wireless wpa_supplicant hs2-0 Add support for 802.11u and Passpoint for HotSpot 2.0 为 HotSpot 2.0 添加对 802.11u 和 Passpoint 的支持
7056 net-wireless wpa_supplicant macsec Add support for wired macsec 添加对有线 macsec 的支持
7057 net-wireless wpa_supplicant mbo Add support Multiband Operation 添加支持多频段操作
7058 net-wireless wpa_supplicant mesh Add support for mesh mode 添加对网格模式的支持
7059 net-wireless wpa_supplicant p2p Add support for Wi-Fi Direct mode 添加对 Wi-Fi Direct 模式的支持
7060 net-wireless wpa_supplicant privsep Enable wpa_priv privledge separation binary 启用 wpa_priv 权限分离二进制
7061 net-wireless wpa_supplicant ps3 Add support for ps3 hypervisor driven gelic wifi 添加对 ps3 管理程序驱动的 gelic wifi 的支持
7062 net-wireless wpa_supplicant smartcard Add support for smartcards 添加对智能卡的支持
7063 net-wireless wpa_supplicant tdls Add support for Tunneled Direct Link Setup (802.11z) 添加对隧道直接链路设置 (802.11z) 的支持
7064 net-wireless wpa_supplicant tkip Add support for WPA TKIP (deprecated 2009) 添加对 WPA TKIP 的支持(2009 年弃用)
7065 net-wireless wpa_supplicant uncommon-eap-types Add support for GPSK, SAKE, GPSK_SHA256, IKEV2 and EKE 添加对 GPSK、SAKE、GPSK_SHA256、IKEV2 和 EKE 的支持
7066 net-wireless wpa_supplicant wep Add support for Wired Equivalent Privacy (deprecated 2004) 添加对有线等效隐私的支持(2004 年弃用)
7067 net-wireless wpa_supplicant wimax Add support for Wimax EAP-PEER authentication algorithm 添加对 Wimax EAP-PEER 认证算法的支持
7068 net-wireless wpa_supplicant wps Add support for Wi-Fi Protected Setup 添加对 Wi-Fi 保护设置的支持
7069 sci-astronomy cpl gasgano Enable support for sci-astronomy/gasgano file organizer 启用对 sci-astronomy/gasgano 文件管理器的支持
7070 sci-astronomy esomidas libtirpc Build against net-libs/libtirpc for RPC support 针对 net-libs/libtirpc 构建以获得 RPC 支持
7071 sci-astronomy kstars fits Enable support for NASA's sci-libs/cfitsio library 启用对 NASA 的 sci-libs/cfitsio 库的支持
7072 sci-astronomy kstars indi Enable support for Astronomical control library using libindi 使用 libindi 启用对天文控制库的支持
7073 sci-astronomy kstars password Store passwords securely via dev-libs/qtkeychain 通过 dev-libs/qtkeychain 安全地存储密码
7074 sci-astronomy kstars wcs Enable support for World Coordinate System library using wcslib 使用 wcslib 启用对世界坐标系库的支持
7075 sci-astronomy predict xforms Add a "map" client which uses the x11-libs/xforms library for its GUI 添加一个使用 x11-libs/xforms 库作为其 GUI 的“地图”客户端
7076 sci-astronomy predict xplanet Project predict data onto world maps generated by x11-misc/xplanet / x11-misc/xearth 将预测数据投影到由 x11-misc/xplanet / x11-misc/xearth 生成的世界地图上
7077 sci-astronomy psfex plplot Build with sci-libs/plplot to allow diagnostic plots during processing 使用 sci-libs/plplot 构建以允许在处理期间进行诊断图
7078 sci-astronomy scamp plplot Build with sci-libs/plplot to allow diagnostic plots during processing 使用 sci-libs/plplot 构建以允许在处理期间进行诊断图
7079 sci-astronomy sextractor modelfit Enable profile model fitting, needs sci-libs/atlas and sci-libs/fftw 启用轮廓模型拟合,需要 sci-libs/atlas 和 sci-libs/fftw
7080 sci-astronomy siril heif Add support for the HEIF image format 添加对 HEIF 图像格式的支持
7081 sci-astronomy siril wcs Add supprt astrometry features using sci-astronomy/wcslib 使用 sci-astronomy/wcslib 添加支持天体测量功能
7082 sci-astronomy stellarium deep-sky Install extra deep sky objects catalog (may affect performance) 安装额外的深空天体目录(可能会影响性能)
7083 sci-astronomy stellarium media Enable sound and video support 启用声音和视频支持
7084 sci-astronomy stellarium stars Install extra star catalogs 安装额外的星目录
7085 sci-astronomy stellarium telescope Enable telescope control via sci-libs/indilib 通过 sci-libs/indilib 启用望远镜控制
7086 sci-astronomy stellarium webengine Show online results about the selected star in an embedded window using dev-qt/qtwebengine 使用 dev-qt/qtwebengine 在嵌入式窗口中显示有关所选星的在线结果
7087 sci-astronomy swarp cfitsio Link with sci-libs/cfitsio 与 sci-libs/cfitsio 链接
7088 sci-astronomy wcslib fits Enable support for the FITS format through sci-libs/cfitsio 通过 sci-libs/cfitsio 启用对 FITS 格式的支持
7089 sci-astronomy wcslib pgplot Builds PGBSOX routines, needs sci-libs/pgplot library 构建 PGBSOX 例程,需要 sci-libs/pgplot 库
7090 sci-astronomy wcslib tools Builds and installs extra command line utilities for WCS checking 为 WCS 检查构建和安装额外的命令行实用程序
7091 sci-biology abyss misc-haskell build abyss-samtobreak tool, pull in haskell toolchain 构建 abyss-samtobreak 工具,引入 haskell 工具链
7092 sci-biology bioperl db Install sci-biology/bioperl-run 安装 sci-biology/bioperl-run
7093 sci-biology bioperl network Install sci-biology/bioperl-run 安装 sci-biology/bioperl-run
7094 sci-biology bioperl run Install sci-biology/bioperl-run 安装 sci-biology/bioperl-run
7095 sci-biology clustalw-mpi mpi-njtree Use MPI (as opposed to serial) code for computing neighbor-joining trees 使用 MPI(而不是串行)代码来计算邻接树
7096 sci-biology clustalw-mpi static-pairalign Use static (as opposed to dynamic) scheduling for pair alignments 使用静态(相对于动态)调度进行配对对齐
7097 sci-biology exonerate utils Install all utilities 安装所有实用程序
7098 sci-biology fasttree double-precision use double precision instead of single-precision floating point (2x memroy required) 使用双精度而不是单精度浮点(需要 2x 内存)
7099 sci-biology mcl blast Add support for NCBI BLAST data 添加对 NCBI BLAST 数据的支持
7100 sci-biology newick-utils xml Uses dev-libs/libxml2 to handle ornaments 使用 dev-libs/libxml2 处理饰品
7101 sci-biology seqan tools Build and install SeqAn commandline tools, such as the Yara aligner 构建和安装 SeqAn 命令行工具,例如 Yara aligner
7102 sci-biology ucsc-genome-browser server Install genome browser Web application. If this flag is off, only libraries and utilities from the suite are installed. 安装基因组浏览器 Web 应用程序。如果此标志关闭,则仅安装套件中的库和实用程序。
7103 sci-biology yass dmalloc Enable debugging with the dmalloc library 使用 dmalloc 库启用调试
7104 sci-biology yass lowmem Build for environments with low amounts of memory 为内存量少的环境构建
7105 sci-calculators datamash linux-crypto Use Linux kernel cryptographic API 使用 Linux 内核加密 API
7106 sci-calculators datamash openssl Use dev-libs/openssl for hash routines instead of internal gnulib 将 dev-libs/openssl 用于哈希例程而不是内部 gnulib
7107 sci-calculators units units-cur Install the units_cur python script that updates currencies 安装更新货币的units_cur python脚本
7108 sci-chemistry avogadro2 rpc Enable RPC server 启用 RPC 服务器
7109 sci-chemistry avogadro2 vtk include vtk support 包括 vtk 支持
7110 sci-chemistry chemtool emf EMF export support EMF 导出支持
7111 sci-chemistry gnome-chemistry-utils gnumeric Add a Gnumeric plugin to provide a molarmass function for the spreadsheet 添加一个 Gnumeric 插件,为电子表格提供摩尔质量函数
7112 sci-chemistry gromacs build-manual Build manual instead of downloading it 构建手册而不是下载它
7113 sci-chemistry gromacs clang Build gromacs with Clang instead of default compiler 使用 Clang 而不是默认编译器构建 gromacs
7114 sci-chemistry gromacs clang-cuda Use clang for cuda units compilation 使用 clang 进行 cuda 单元编译
7115 sci-chemistry gromacs cuda Enable cuda non-bonded kernels 启用 cuda 非绑定内核
7116 sci-chemistry gromacs double-precision More precise calculations at the expense of speed 以速度为代价进行更精确的计算
7117 sci-chemistry gromacs gmxapi Add support for gmxapi library 添加对 gmxapi 库的支持
7118 sci-chemistry gromacs gmxapi-legacy Enable installing lagacy headers 启用安装传统标头
7119 sci-chemistry gromacs hwloc Enable HWLoc lib support 启用 HWLoc 库支持
7120 sci-chemistry gromacs lmfit Use external sci-libs/lmfit 使用外部 sci-libs/lmfit
7121 sci-chemistry gromacs mkl Use sci-libs/mkl for fft, blas, lapack routines 将 sci-libs/mkl 用于 fft、blas、lapack 例程
7122 sci-chemistry gromacs offensive Enable gromacs partly offensive quotes 启用 gromacs 部分令人反感的报价
7123 sci-chemistry gromacs opencl Enable opencl non-bonded kernels 启用 opencl 非绑定内核
7124 sci-chemistry gromacs single-precision Single precision version of gromacs (default) gromacs 的单精度版本(默认)
7125 sci-chemistry gromacs tng Enable new trajectory format - tng 启用新的轨迹格式 - tng
7126 sci-chemistry molequeue client Build the client application 构建客户端应用程序
7127 sci-chemistry molequeue server Build the serve application 构建服务应用程序
7128 sci-chemistry molequeue zeromq Build with net-libs/zeromq support 使用 net-libs/zeromq 支持构建
7129 sci-chemistry mopac7 gmxmopac7 Add support library for gromacs 添加 gromacs 的支持库
7130 sci-chemistry openbabel inchi Build support for IUPAC International Chemical Identifier format 建立对 IUPAC 国际化学标识符格式的支持
7131 sci-chemistry openbabel json Build support for JSON formats (ChemDoodle, PubChem, etc...) 构建对 JSON 格式(ChemDoodle、PubChem 等)的支持
7132 sci-chemistry pymol web Install Pymodule needed for web app support 安装 Web 应用支持所需的 Pymodule
7133 sci-chemistry raster3d gd libgd support for PNG and JPEG output libgd 支持 PNG 和 JPEG 输出
7134 sci-chemistry vmd cuda Use nvidia cuda toolkit for speeding up computations 使用 nvidia cuda 工具包加速计算
7135 sci-chemistry vmd gromacs Add support for TNG file format 添加对 TNG 文件格式的支持
7136 sci-chemistry vmd msms Add support for MSMS SES calcualtion tool 添加对 MSMS SES 计算工具的支持
7137 sci-chemistry vmd povray Add support for povray raytracer for HQ images 为 HQ 图像添加对 povray 光线追踪器的支持
7138 sci-chemistry vmd tachyon Add support for tachyon raytracer for HQ images 为 HQ 图像添加对超光速粒子光线追踪器的支持
7139 sci-chemistry votca gromacs Add support for gromacs file formats through sci-chemistry/gromacs 通过 sci-chemistry/gromacs 添加对 gromacs 文件格式的支持
7140 sci-chemistry votca-csg extras Pull in extra applications from sci-chemistry/votca-csgapps 从 sci-chemistry/votca-csgapps 中提取额外的应用程序
7141 sci-chemistry votca-csg gromacs Add support for gromacs file formats through sci-chemistry/gromacs 通过 sci-chemistry/gromacs 添加对 gromacs 文件格式的支持
7142 sci-electronics geda stroke enable mouse gesture support 启用鼠标手势支持
7143 sci-electronics gerbv unit-mm Set default unit for coordinates in status bar to mm 将状态栏中坐标的默认单位设置为 mm
7144 sci-electronics gspiceui schematics Use sci-electronics/geda for schematics editing 使用 sci-electronics/geda 进行原理图编辑
7145 sci-electronics gspiceui waveform Use sci-electronics/gwave for waveform display 使用 sci-electronics/gwave 进行波形显示
7146 sci-electronics gtkwave fasttree Enables experimental Fast SST Tree widget code. 启用实验性快速 SST 树小部件代码。
7147 sci-electronics gtkwave fatlines Renders lines as double width in gtkwave. 在 gtkwave 中将线条渲染为双倍宽度。
7148 sci-electronics gtkwave judy Enables Judy array support. 启用 Judy 数组支持。
7149 sci-electronics gtkwave packed Enables '#pragma pack' for data arrays (saves memory, costs time). 为数据数组启用“#pragma pack”(节省内存、花费时间)。
7150 sci-electronics kicad github Add github support into PCB editor 在 PCB 编辑器中添加 github 支持
7151 sci-electronics kicad ngspice Enable circuit simulation 启用电路仿真
7152 sci-electronics kicad occ Enable viewing 3D rendering of designs via sci-libs/opencascade 启用通过 sci-libs/opencascade 查看设计的 3D 渲染
7153 sci-electronics kicad pcm Enable plugin content manager 启用插件内容管理器
7154 sci-electronics kicad python Enable python scripting support 启用 python 脚本支持
7155 sci-electronics kicad-meta minimal Do not install extra data like 3D packages and templates. 不要安装额外的数据,如 3D 包和模板。
7156 sci-electronics kicad-packages3d occ Use sci-libs/opencascade for data exchange 使用 sci-libs/opencascade 进行数据交换
7157 sci-electronics ktechlab gpsim Enable support for Microchip PIC microcontrollers similation using dev-embedded/gpsim 启用对使用 dev-embedded/gpsim 模拟 Microchip PIC 微控制器的支持
7158 sci-electronics ngspice deprecated Build old and deprecated apps 构建旧的和已弃用的应用程序
7159 sci-electronics ngspice shared Build ngspice as a shared library 将 ngspice 构建为共享库
7160 sci-electronics pcb gcode gcode file export gcode 文件导出
7161 sci-electronics pcb gif GIF graphics export GIF 图形导出
7162 sci-electronics pcb gsvit GSvit file export GSvit 文件导出
7163 sci-electronics pcb jpeg JPEG graphics export JPEG图形导出
7164 sci-electronics pcb m4lib-png Enable creating png previews for the m4 library 启用为 m4 库创建 png 预览
7165 sci-electronics pcb nelma NELMA file export NELMA 文件导出
7166 sci-electronics pcb png PNG graphics export PNG图形导出
7167 sci-electronics pcb tk Build tcl/tk graphical QFP footprint generator 构建 tcl/tk 图形 QFP 封装生成器
7168 sci-electronics pcb toporouter Build toporouter 构建拓扑路由器
7169 sci-electronics pulseview decode Enable decoding of protocols while capturing 在捕获时启用协议解码
7170 sci-electronics sigrok-cli decode Enable decoding of protocols while capturing 在捕获时启用协议解码
7171 sci-electronics splat hires Builds additional high resolution application 'rfsplat-hd' 构建额外的高分辨率应用程序“rfsplat-hd”
7172 sci-geosciences gmt gdal Enable sci-libs/gdal library support 启用 sci-libs/gdal 库支持
7173 sci-geosciences gmt geos Enable sci-libs/geos library support 启用 sci-libs/geos 库支持
7174 sci-geosciences gmt gmttria Non GNU triangulation method, more efficient 非GNU三角法,更高效
7175 sci-geosciences gmt gshhg Install coastline database 安装海岸线数据库
7176 sci-geosciences gmt htmldoc Install html documentation 安装html文档
7177 sci-geosciences gmt metric Use SI (cm) units instead of US (inches) ones 使用 SI (cm) 单位而不是 US (inches)
7178 sci-geosciences gmt mex Enable compilation of mex supplement which requires Octave/Matlab 启用需要 Octave/Matlab 的 mex 补充的编译
7179 sci-geosciences gmt octave Enable octave support 启用八度支持
7180 sci-geosciences gmt pcre2 Use libpcre2 for regular expressions 将 libpcre2 用于正则表达式
7181 sci-geosciences gmt tutorial Install data files for tutorial 安装教程的数据文件
7182 sci-geosciences gpsd dbus export gpsd data over dbus connections 通过 dbus 连接导出 gpsd 数据
7183 sci-geosciences gpsd latency-timing support latency timing information 支持延迟时间信息
7184 sci-geosciences gpsd ntp Enable net-misc/ntp shared memory interface and PPS kernel support for GPS time 为 GPS 时间启用 net-misc/ntp 共享内存接口和 PPS 内核支持
7185 sci-geosciences gpsd shm export gpsd over shared memory 通过共享内存导出 gpsd
7186 sci-geosciences gpsd sockets export gpsd over unix sockets 通过 unix 套接字导出 gpsd
7187 sci-geosciences grass geos Use sci-libs/geos for v.buffer and adds extended options to the v.select module 为 v.buffer 使用 sci-libs/geos 并向 v.select 模块添加扩展选项
7188 sci-geosciences grass las Include support for LAS and LAZ encoded LiDAR files through sci-geosciences/liblas 包括通过 sci-geosciences/liblas 支持 LAS 和 LAZ 编码的 LiDAR 文件
7189 sci-geosciences grass liblas Include support for LAS and LAZ encoded LiDAR files through sci-geosciences/liblas 包括通过 sci-geosciences/liblas 支持 LAS 和 LAZ 编码的 LiDAR 文件
7190 sci-geosciences grass opencl Enable OpenCL support 启用 OpenCL 支持
7191 sci-geosciences gshhs data Add earth data with sci-geosciences/gshhs-data 使用 sci-geosciences/gshhs-data 添加地球数据
7192 sci-geosciences liblas gdal Add support for the sci-libs/gdal geospatial raster library 添加对 sci-libs/gdal 地理空间栅格库的支持
7193 sci-geosciences mapserver apache Enable mapserver to run under apache 让mapserver在apache下运行
7194 sci-geosciences mapserver geos Enable sci-libs/geos library support 启用 sci-libs/geos 库支持
7195 sci-geosciences mapserver postgis Enable dev-db/postgis support 启用 dev-db/postgis 支持
7196 sci-geosciences merkaartor libproxy Use net-libs/libproxy for getting the HTTP/HTTPS/SOCKS proxy configuration 使用 net-libs/libproxy 获取 HTTP/HTTPS/SOCKS 代理配置
7197 sci-geosciences merkaartor webengine Enable dev-qt/qtwebengine in some plugins 在某些插件中启用 dev-qt/qtwebengine
7198 sci-geosciences qgis 3d Build QGIS 3D library using dev-qt/qt3d 使用 dev-qt/qt3d 构建 QGIS 3D 库
7199 sci-geosciences qgis georeferencer Determines whether georeferencer plugin should be built 确定是否应构建地理参考插件
7200 sci-geosciences qgis grass Add support for grass 添加对草的支持
7201 sci-geosciences qgis hdf5 Enable MDAL support for sci-libs/hdf5 为 sci-libs/hdf5 启用 MDAL 支持
7202 sci-geosciences qgis mapserver Determines whether mapserver should be built 确定是否应构建地图服务器
7203 sci-geosciences qgis netcdf Enable MDAL support for GRIB and XMDF formats 启用对 GRIB 和 XMDF 格式的 MDAL 支持
7204 sci-geosciences qgis opencl Enable OpenCL support 启用 OpenCL 支持
7205 sci-geosciences qgis pdal Enable support for PDAL for point clouds via sci-libs/pdal 通过 sci-libs/pdal 启用对点云的 PDAL 支持
7206 sci-geosciences qgis polar Enable support for the polar coordinate system via x11-libs/qwtpolar 通过 x11-libs/qwtpolar 启用对极坐标系的支持
7207 sci-geosciences qgis qml Enable support Qml-based plugins using dev-qt/qtdeclarative 使用 dev-qt/qtdeclarative 启用支持基于 Qml 的插件
7208 sci-geosciences qgis serial Enable support for serial GPS using dev-qt/qtserialport 使用 dev-qt/qtserialport 启用对串行 GPS 的支持
7209 sci-geosciences viking geoclue Use app-misc/geoclue to determine current location 使用 app-misc/geoclue 确定当前位置
7210 sci-geosciences viking libexif Use media-libs/libexif for EXIF support 使用 media-libs/libexif 来支持 EXIF
7211 sci-geosciences viking oauth Enable OAuth authentication for OSM 为 OSM 启用 OAuth 身份验证
7212 sci-libs ViSP coin Enables Coin3D support. 启用 Coin3D 支持。
7213 sci-libs ViSP demos Installs demo programs. 安装演示程序。
7214 sci-libs ViSP dmtx Enables barcode data matrix support. 启用条形码数据矩阵支持。
7215 sci-libs ViSP ogre Enables dev-games/ogre support. 启用开发游戏/食人魔支持。
7216 sci-libs ViSP opencv Enables media-libs/opencv support. 启用媒体库/opencv 支持。
7217 sci-libs ViSP pcl Enables sci-libs/pcl support. 启用 sci-libs/pcl 支持。
7218 sci-libs ViSP tutorials Installs tutorials. 安装教程。
7219 sci-libs ViSP zbar Enables barcodes reading. 启用条形码读取。
7220 sci-libs XNNPACK assembly Build with assembly micro-kernels 使用汇编微内核构建
7221 sci-libs XNNPACK jit Build with JIT micro-kernels 使用 JIT 微内核构建
7222 sci-libs XNNPACK memopt Build with optimized memory allocation scheme 使用优化的内存分配方案构建
7223 sci-libs XNNPACK sparse Build with graph rewriting for sparse inference 使用图重写构建稀疏推理
7224 sci-libs adolc boost Use the boost allocator from dev-libs/boost 使用来自 dev-libs/boost 的 boost 分配器
7225 sci-libs adolc sparse Add support for sparse matrix algebra with sci-libs/colpack 使用 sci-libs/colpack 添加对稀疏矩阵代数的支持
7226 sci-libs armadillo arpack Link with sci-libs/arpack libraries for eigen decomposition 与 sci-libs/arpack 库链接以进行特征分解
7227 sci-libs armadillo mkl Use matrix allocation from the Intel MKL sci-libs/mkl 使用来自英特尔 MKL sci-libs/mkl 的矩阵分配
7228 sci-libs armadillo superlu Use SuperLU for sparse linear equation solving sci-libs/superlu 使用 SuperLU 求解稀疏线性方程组 sci-libs/superlu
7229 sci-libs arprec qd Use sci-libs/qd for quad-double datatype 将 sci-libs/qd 用于四双数据类型
7230 sci-libs atlas generic Build atlas assuming a fairly generic architecture (sse2 for x86, core2 for amd64) 假设一个相当通用的架构构建图集(x86 为 sse2,amd64 为 core2)
7231 sci-libs avogadrolibs archive Enable archive support using app-arch/libarchive 使用 app-arch/libarchive 启用归档支持
7232 sci-libs avogadrolibs vtk Enable sci-libs/vtk support 启用 sci-libs/vtk 支持
7233 sci-libs blis 64bit-index Enable 64bit array indexing, incompatible with runtime switching 启用 64 位数组索引,与运行时切换不兼容
7234 sci-libs blis eselect-ldso Enable runtime library switching by eselect and ld.so. 通过 eselect 和 ld.so 启用运行时库切换。
7235 sci-libs blis openmp Use openmp threadding model 使用 openmp 线程模型
7236 sci-libs blis pthread Use pthread threadding model 使用 pthread 线程模型
7237 sci-libs blis serial Use no threadding model 使用无线程模型
7238 sci-libs cantera cti Install CTI tools (ck2cti, ck2yaml, ctml_writer) for conversion of Chemkin files to Cantera format 安装 CTI 工具(ck2cti、ck2yaml、ctml_writer)以将 Chemkin 文件转换为 Cantera 格式
7239 sci-libs cddlib tools Add a few executables and tests for cddlib 为 cddlib 添加一些可执行文件和测试
7240 sci-libs ceres-solver cxsparse Enable simple support for sparse matrix algebra from sci-libs/cxsparse with no LAPACK dependencies 从 sci-libs/cxsparse 启用对稀疏矩阵代数的简单支持,没有 LAPACK 依赖项
7241 sci-libs ceres-solver gflags Use dev-cpp/gflags for flag parsing 使用 dev-cpp/gflags 进行标志解析
7242 sci-libs ceres-solver schur Enable fixed-size schur specializations (disable if binary size is an issue) 启用固定大小的 schur 专业化(如果二进制大小有问题,则禁用)
7243 sci-libs ceres-solver sparse Enable support for sparse matrix algebra with various packages from SuiteSparse 使用 SuiteSparse 中的各种包启用对稀疏矩阵代数的支持
7244 sci-libs cfitsio tools Build optional utilities (cookbook fitscopy imcopy smem speed testprog fpack funpack) 构建可选实用程序(cookbook fitcopy imcopy smem speed testprog fpack funpack)
7245 sci-libs cgnslib base-scope Enable base scoped families or connectivities 启用基本范围的系列或连接
7246 sci-libs cgnslib legacy Enable or disable building legacy code (3.0 compatible) 启用或禁用构建遗留代码(3.0 兼容)
7247 sci-libs cgnslib scoping Enable scoping of enumeration values 启用枚举值的范围
7248 sci-libs cgnslib tools A number of utility programs: cgnscheck, cgnscompress, cgnsdiff, cgnslist, cgnsnames, cgnsupdate, cgnsconvert, adf2hdf, hdf2adf. 许多实用程序:cgnscheck、cgnscompress、cgnsdiff、cgnslist、cgnsnames、cgnsupdate、cgnsconvert、adf2hdf、hdf2adf。
7249 sci-libs cholmod cuda Use nvidia cuda toolkit for speeding up computations 使用 nvidia cuda 工具包加速计算
7250 sci-libs cholmod matrixops Support basic sparse and dense matrix operations (add, multiply, scale, et cetera) 支持基本的稀疏和密集矩阵运算(加法、乘法、缩放等)
7251 sci-libs cholmod modify Enable Cholesky-modification routines like update, downdate, row-add, and row-delete 启用 Cholesky 修改例程,例如 update、downdate、row-add 和 row-delete
7252 sci-libs cholmod partition Enable graph partitioning and graph-partition-based orderings through sci-libs/metis or sci-libs/parmetis 通过 sci-libs/metis 或 sci-libs/parmetis 启用图形分区和基于图形分区的排序
7253 sci-libs clblas client Build a command line clBLAS client program. 构建命令行 clBLAS 客户端程序。
7254 sci-libs clblas ktest A command line tool for testing single clBLAS kernel. 用于测试单个 clBLAS 内核的命令行工具。
7255 sci-libs clblas performance Copy performance scripts that can measure and graph performance. 复制可以测量和绘制性能的性能脚本。
7256 sci-libs clblast client Enable compilation of the clients to test and compare performance with reference libraries 启用客户端编译以测试和比较参考库的性能
7257 sci-libs clblast cuda Build with support for cuda instead of opencl (beta!) 构建支持 cuda 而不是 opencl(测试版!)
7258 sci-libs clblast opencl Build with support for opencl 构建支持 opencl
7259 sci-libs coinor-clp glpk Enable GNU Linear Programming Kit sci-mathematics/glpk support 启用 GNU 线性规划工具包 sci-mathematics/glpk 支持
7260 sci-libs coinor-clp metis Enable partitioning with sci-libs/metis 使用 sci-libs/metis 启用分区
7261 sci-libs coinor-clp mumps Enable sci-libs/mumps support 启用 sci-libs/mumps 支持
7262 sci-libs coinor-clp sparse Enable support for sparse matrix with sci-libs/cholmod 使用 sci-libs/cholmod 启用对稀疏矩阵的支持
7263 sci-libs coinor-cppad adolc Add support for ADOL-C (sci-libs/adolc) 添加对 ADOL-C 的支持 (sci-libs/adolc)
7264 sci-libs coinor-cppad eigen Add support for Eigen (dev-cpp/eigen) 添加对 Eigen 的支持 (dev-cpp/eigen)
7265 sci-libs coinor-cppad ipopt Add support for IPOPT (sci-libs/ipopt) 添加对 IPOPT (sci-libs/ipopt) 的支持
7266 sci-libs coinor-symphony glpk Enable GNU Linear Programming Kit sci-mathematics/glpk support 启用 GNU 线性规划工具包 sci-mathematics/glpk 支持
7267 sci-libs coinor-utils glpk Enable GNU Linear Programming Kit sci-mathematics/glpk support 启用 GNU 线性规划工具包 sci-mathematics/glpk 支持
7268 sci-libs dealii adolc Adds support for ADOL-C (sci-libs/adolc) 添加对 ADOL-C (sci-libs/adolc) 的支持
7269 sci-libs dealii arborx Adds support for ARBORX (sci-libs/arborx) 添加对 ARBORX (sci-libs/arborx) 的支持
7270 sci-libs dealii arpack Adds support for ARPACK (sci-libs/arpack) 添加对 ARPACK (sci-libs/arpack) 的支持
7271 sci-libs dealii assimp Add support for assimp (media-libs/assimp) 添加对 assimp 的支持 (media-libs/assimp)
7272 sci-libs dealii cgal Adds support for CGAL (sci-mathematics/cgal) 添加对 CGAL (sci-mathematics/cgal) 的支持
7273 sci-libs dealii cuda Add support for cuda (dev-util/nvidia-cuda-sdk) 添加对 cuda 的支持 (dev-util/nvidia-cuda-sdk)
7274 sci-libs dealii debug Build an additional debug library with extra debug codepaths, like asserts and extra output. If you want to get meaningful backtraces see 使用额外的调试代码路径构建额外的调试库,例如断言和额外的输出。如果您想获得有意义的回溯,请参阅
7275 sci-libs dealii ginkgo Add support for ginkgo (sci-libs/ginkgo) 添加对银杏的支持(sci-libs/ginkgo)
7276 sci-libs dealii gmsh Add support for gmsh (sci-libs/gmsh) 添加对 gmsh 的支持 (sci-libs/gmsh)
7277 sci-libs dealii metis Add support for metis (sci-libs/metis) 添加对metis的支持(sci-libs/metis)
7278 sci-libs dealii muparser Add support for muparser (dev-cpp/muParser) 添加对 muparser 的支持 (dev-cpp/muParser)
7279 sci-libs dealii opencascade Add support for opencascade (sci-libs/opencascade) 添加对 opencascade 的支持 (sci-libs/opencascade)
7280 sci-libs dealii p4est Add support for p4est (sci-libs/p4est) 添加对 p4est (sci-libs/p4est) 的支持
7281 sci-libs dealii petsc Add support for petsc (sci-mathematics/petsc) 添加对 petsc 的支持(sci-mathematics/petsc)
7282 sci-libs dealii scalapack Add support for ScaLAPACK (sci-libs/scalapack) 添加对 ScaLAPACK (sci-libs/scalapack) 的支持
7283 sci-libs dealii slepc Add support for slepc (sci-mathematics/slepc) 添加对 slepc 的支持(sci-mathematics/slepc)
7284 sci-libs dealii sparse Add support for suitesparse (sci-libs/suitesparse) 添加对 suitesparse 的支持 (sci-libs/suitesparse)
7285 sci-libs dealii sundials Add support for sundials (sci-libs/sundials) 添加对日晷的支持(sci-libs/sundials)
7286 sci-libs dealii symengine Add support for symengine (sci-libs/symengine) 添加对 symengine (sci-libs/symengine) 的支持
7287 sci-libs dealii trilinos Add support for trilinos (sci-libs/trilinos) 添加对 trilinos 的支持 (sci-libs/trilinos)
7288 sci-libs dlib cblas Build with CBLAS virtual/cblas 使用 CBLAS virtual/cblas 构建
7289 sci-libs dlib cuda Enable support for CUDA for Deep Neural Networks (cuDNN) on GPU (experimental) 在 GPU 上启用对用于深度神经网络 (cuDNN) 的 CUDA 的支持(实验性)
7290 sci-libs dlib mkl Enable support for Intel FFT sci-libs/mkl 启用对英特尔 FFT sci-libs/mkl 的支持
7291 sci-libs dlib python Enable support for Python API bindings 启用对 Python API 绑定的支持
7292 sci-libs dmlc-core s3 Support for the Amazon Simple Storage Service 支持亚马逊简单存储服务
7293 sci-libs eccodes defs Install full set of definition files. 安装全套定义文件。
7294 sci-libs eccodes extra-test Install full set of test data (large). 安装全套测试数据(大)。
7295 sci-libs eccodes memfs Enable memory based access to definition/sample files (conflicts with tests). 启用对定义/示例文件的基于内存的访问(与测试冲突)。
7296 sci-libs fcl octomap OctoMap library support OctoMap 库支持
7297 sci-libs fcl profiling Enable profiling 启用分析
7298 sci-libs fftw zbus Adds support for ZBus cycle-counter of mips 添加对 mips 的 ZBus 循环计数器的支持
7299 sci-libs flann cuda Enable support for nVidia CUDA 启用对 nVidia CUDA 的支持
7300 sci-libs flann octave Add bindings for sci-mathematics/octave 为 sci-mathematics/octave 添加绑定
7301 sci-libs fplll qd Use sci-libs/qd for quad-double datatype 将 sci-libs/qd 用于四双数据类型
7302 sci-libs gdal armadillo Use sci-libs/armadillo for faster TPS transform computation 使用 sci-libs/armadillo 进行更快的 TPS 变换计算
7303 sci-libs gdal aux-xml Enable Portable Auxilliary Metadata generation 启用便携式辅助元数据生成
7304 sci-libs gdal fits Enable support for NASA's sci-libs/cfitsio library 启用对 NASA 的 sci-libs/cfitsio 库的支持
7305 sci-libs gdal geos Add support for geometry engine (sci-libs/geos) 添加对几何引擎(sci-libs/geos)的支持
7306 sci-libs gdal gml Enable support for dev-libs/xerces-c C++ API 启用对 dev-libs/xerces-c C++ API 的支持
7307 sci-libs gdal heif Enable support for ISO/IEC 23008-12:2017 HEIF/HEIC image format using media-libs/libheif 使用 media-libs/libheif 启用对 ISO/IEC 23008-12:2017 HEIF/HEIC 图像格式的支持
7308 sci-libs gdal mdb Enable support for Microsoft Access database 启用对 Microsoft Access 数据库的支持
7309 sci-libs gdal ogdi Enable support for the open geographic datastore interface (sci-libs/ogdi) 启用对开放地理数据存储接口 (sci-libs/ogdi) 的支持
7310 sci-libs gdal opencl Enable OpenCL support 启用 OpenCL 支持
7311 sci-libs gdal spatialite Enable Spatial DBMS over sqlite dev-db/spatialite 通过 sqlite dev-db/spatialite 启用空间 DBMS
7312 sci-libs gdal xls Add the dev-libs/freexl library for xls import support 添加用于 xls 导入支持的 dev-libs/freexl 库
7313 sci-libs ginkgo cuda Add support for cuda assimp (dev-util/nvidia-cuda-sdk) 添加对 cuda assimp 的支持 (dev-util/nvidia-cuda-sdk)
7314 sci-libs ginkgo hwloc Add support for hwloc (sys-apps/hwloc) 添加对 hwloc (sys-apps/hwloc) 的支持
7315 sci-libs gloo libuv Enable libuv support 启用 libuv 支持
7316 sci-libs gloo redis Enable Redis backend for storage via dev-libs/hiredis 通过 dev-libs/hiredis 启用 Redis 后端进行存储
7317 sci-libs gmsh alglib Enable alglib support for mesh optimizers 启用对网格优化器的 alglib 支持
7318 sci-libs gmsh cgns Enables cgns output support 启用 cgns 输出支持
7319 sci-libs gmsh eigen Build matrix manipulation with dev-cpp/eigen 使用 dev-cpp/eigen 构建矩阵操作
7320 sci-libs gmsh gmm A simple alternative to petsc based on sci-mathematics/gmm 基于 sci-mathematics/gmm 的 petsc 的简单替代方案
7321 sci-libs gmsh med Enables med support 启用医疗支持
7322 sci-libs gmsh metis Enables metis support 启用metis支持
7323 sci-libs gmsh mumps Enables mumps solver support 启用腮腺炎求解器支持
7324 sci-libs gmsh netgen Enable 3D Frontal triangulation using netgen lib 使用 netgen lib 启用 3D 正面三角测量
7325 sci-libs gmsh opencascade Enable OpenCASCADE support 启用 OpenCASCADE 支持
7326 sci-libs gmsh petsc Enable sci-mathematics/petsc support 启用 sci-mathematics/petsc 支持
7327 sci-libs gmsh shared Install shared library and headers 安装共享库和头文件
7328 sci-libs gmsh slepc Enable sci-mathematics/slepc support 启用 sci-mathematics/slepc 支持
7329 sci-libs gmsh voro Enable support to sci-libs/voro++ meshing 启用对 sci-libs/voro++ 网格划分的支持
7330 sci-libs gsl cblas-external Link gsl with external cblas provided by (virtual/cblas) instead of shipped internal version 将 gsl 与 (virtual/cblas) 提供的外部 cblas 链接,而不是随附的内部版本
7331 sci-libs gsl deprecated Enable deprecated functions 启用已弃用的功能
7332 sci-libs hdf5 hl Enable high level API (https://support.hdfgroup.org/HDF5/doc/HL/index.html) 启用高级 API (https://support.hdfgroup.org/HDF5/doc/HL/index.html)
7333 sci-libs hdf5 ros3 Enable support for read-only S3 access (https://portal.hdfgroup.org/display/HDF5/Configuration+and+Setup+for+HDF5+Read+Only+S3+VFD) 启用对只读 S3 访问的支持 (https://portal.hdfgroup.org/display/HDF5/Configuration+and+Setup+for+HDF5+Read+Only+S3+VFD)
7334 sci-libs hdf5 unsupported Enable unsupported combinations of configuration options 启用不受支持的配置选项组合
7335 sci-libs hipCUB benchmark Build and install benchmark binaries. 构建和安装基准二进制文件。
7336 sci-libs hipFFT benchmark Build and install benchmark programs hipfft-rider. 构建和安装基准程序 hipfft-rider。
7337 sci-libs hypre int64 Build the 64 bits integer library 构建 64 位整数库
7338 sci-libs indilib rtlsdr Enable support for devices supported by net-wireless/rtl-sdr 启用对 net-wireless/rtl-sdr 支持的设备的支持
7339 sci-libs indilib websocket Enable support for WebSocket protocol 启用对 WebSocket 协议的支持
7340 sci-libs ipopt hsl hsl hsl
7341 sci-libs ipopt mumps Enable sci-libs/mumps support 启用 sci-libs/mumps 支持
7342 sci-libs kissfft alloca Use alloca(3) instead of malloc(3) for memory management 使用 alloca(3) 代替 malloc(3) 进行内存管理
7343 sci-libs kissfft tools Build command line tools 构建命令行工具
7344 sci-libs lapack deprecated Also build deprecated functions 还构建不推荐使用的功能
7345 sci-libs lapack eselect-ldso Enable runtime library switching by eselect and ld.so. 通过 eselect 和 ld.so 启用运行时库切换。
7346 sci-libs lapack lapacke Build LAPACKE 构建拉帕克
7347 sci-libs lemon coin Enable the sci-libs/coinor-clp and sci-libs/coinor-cbc graph algorithms 启用 sci-libs/coinor-clp 和 sci-libs/coinor-cbc 图算法
7348 sci-libs lemon glpk Enable GNU Linear Programming Kit sci-mathematics/glpk support 启用 GNU 线性规划工具包 sci-mathematics/glpk 支持
7349 sci-libs libccd double-precision More precise calculations at the expense of speed 以速度为代价进行更精确的计算
7350 sci-libs libgeodecomp cuda Enables plugins for NVIDIA GPUs 为 NVIDIA GPU 启用插件
7351 sci-libs libgeodecomp hpx Enables HPX backend 启用 HPX 后端
7352 sci-libs libgeodecomp opencl Enables OpenCL backend 启用 OpenCL 后端
7353 sci-libs libgeodecomp opencv Enables OpenCV related code 启用 OpenCV 相关代码
7354 sci-libs libgeodecomp silo Enables SILO related code 启用 SILO 相关代码
7355 sci-libs libghemical mopac7 Use sci-chemistry/mopac7 for semi-empirical calculations 使用 sci-chemistry/mopac7 进行半经验计算
7356 sci-libs libghemical mpqc Use sci-chemistry/mpqc for quantum-mechanical calculations 使用 sci-chemistry/mpqc 进行量子力学计算
7357 sci-libs liborigin tools Install opj2dat command line util 安装 opj2dat 命令行工具
7358 sci-libs libsc romio Build with support for the ROMIO MPI-IO component 构建时支持 ROMIO MPI-IO 组件
7359 sci-libs libsigrok ftdi Enable drivers that need dev-embedded/libftdi 启用需要 dev-embedded/libftdi 的驱动程序
7360 sci-libs libsigrok hidapi Enable drivers that need dev-libs/hidapi 启用需要 dev-libs/hidapi 的驱动程序
7361 sci-libs libsigrok nettle Enable drivers that need dev-libs/nettle 启用需要 dev-libs/nettle 的驱动程序
7362 sci-libs libsigrok parport Enable drivers that are parallel (IEEE1284) based 启用基于并行 (IEEE1284) 的驱动程序
7363 sci-libs libsigrok serial Enable drivers that are serial (RS232) based 启用基于串行 (RS232) 的驱动程序
7364 sci-libs libsvm tools Install python based tool scripts for data selection and visualization with sci-visualization/gnuplot 使用 sci-visualization/gnuplot 安装基于 python 的工具脚本,用于数据选择和可视化
7365 sci-libs linbox opencl Enable the use of OpenCL in LinBox 在 LinBox 中启用 OpenCL
7366 sci-libs linux-gpib firmware Install firmware 安装固件
7367 sci-libs lis quad Enable quadruple precision operations 启用四倍精度操作
7368 sci-libs lis saamg Build the Smoothed Aggregation Algebraic MultiGrid preconditioner 构建平滑聚合代数 MultiGrid 预处理器
7369 sci-libs mathgl hdf Add support for the Hierarchical Data Format v.4 sci-libs/hdf 添加对分层数据格式 v.4 sci-libs/hdf 的支持
7370 sci-libs mathgl octave Add bindings for sci-mathematics/octave 为 sci-mathematics/octave 添加绑定
7371 sci-libs matio sparse Extend formats for sparse matrix (not matlab) 扩展稀疏矩阵的格式(不是 matlab)
7372 sci-libs metis double-precision Use double- rather than single-precision floating-point representation 使用双精度而非单精度浮点表示
7373 sci-libs metis int64 Use 64- rather than 32-bit integer representation (needed for > 2^31 vertices) 使用 64 位而不是 32 位整数表示(> 2^31 个顶点需要)
7374 sci-libs mpir cpudetection Enables runtime cpudetection (useful for bindist, compatibility on other CPUs) 启用运行时 cpudetection(对 bindist 有用,在其他 CPU 上兼容)
7375 sci-libs mumps metis Enable matrix ordering with METIS (sci-libs/metis, sci-libs/parmetis) 使用 METIS 启用矩阵排序(sci-libs/metis、sci-libs/parmetis)
7376 sci-libs mumps scotch Enable matrix ordering with sci-libs/scotch 使用 sci-libs/scotch 启用矩阵排序
7377 sci-libs netcdf dap Support for remote data access with the built-in OPeNDAP client 使用内置的 OPeNDAP 客户端支持远程数据访问
7378 sci-libs netcdf hdf Add support for the Hierarchical Data Format v.4 sci-libs/hdf 添加对分层数据格式 v.4 sci-libs/hdf 的支持
7379 sci-libs netcdf tools Build the utilities nccopy, ncgen and ncdump 构建实用程序 nccopy、ncgen 和 ncdump
7380 sci-libs nlopt octave Add plugin for sci-mathematics/octave 为 sci-mathematics/octave 添加插件
7381 sci-libs o2scl armadillo Build matrix manipulation with sci-libs/armadillo 使用 sci-libs/armadillo 构建矩阵操作
7382 sci-libs o2scl eigen Build matrix manipulation with dev-cpp/eigen 使用 dev-cpp/eigen 构建矩阵操作
7383 sci-libs octomap dynamicEDT3D Build and install dynamicEDT3D library: A library for incrementally updatable Euclidean distance transforms in 3D. 构建和安装 dynamicEDT3D 库:用于增量更新的 3D 欧几里德距离变换库。
7384 sci-libs openblas dynamic Build dynamic architecture detection at run time (for multi targets) 在运行时构建动态架构检测(针对多目标)
7385 sci-libs openblas eselect-ldso Enable BLAS/LAPACK runtime switching 启用 BLAS/LAPACK 运行时切换
7386 sci-libs openblas index-64bit Compile a separate INTERFACE64 OpenBLAS 编译一个单独的 INTERFACE64 OpenBLAS
7387 sci-libs openblas pthread Build with pthread threading model 使用 pthread 线程模型构建
7388 sci-libs openblas relapack Build the ReLAPACK extension to OpenBLAS 构建 OpenBLAS 的 ReLAPACK 扩展
7389 sci-libs opencascade eigen Enable support for eigenvalues through the header-only dev-cpp/eigen package. 通过仅标头 dev-cpp/eigen 包启用对特征值的支持。
7390 sci-libs opencascade freeimage Enable support for image i/o via media-libs/freeimage 通过 media-libs/freeimage 启用对图像 i/o 的支持
7391 sci-libs opencascade gles2 Use OpenGL ES 2.0 使用 OpenGL ES 2.0
7392 sci-libs opencascade json Enable JSON support through dev-libs/rapidjson 通过 dev-libs/rapidjson 启用 JSON 支持
7393 sci-libs opencascade optimize Don't clear allocated memory. Use optimized memory manager unless tbb USE flag is set. 不要清除分配的内存。除非设置了 tbb USE 标志,否则使用优化的内存管理器。
7394 sci-libs opencascade tbb Enable multithreading with the Intel Threads Building Block dev-cpp/tbb 使用英特尔线程构建模块 dev-cpp/tbb 启用多线程
7395 sci-libs opencascade vtk Enable Visualization Toolkit support via sci-libs/vtk 通过 sci-libs/vtk 启用可视化工具包支持
7396 sci-libs orocos_kdl models Build models for some well known robots. 为一些知名机器人构建模型。
7397 sci-libs p4est romio Build with support for the ROMIO MPI-IO component 构建时支持 ROMIO MPI-IO 组件
7398 sci-libs p4est vtk-binary Enable binary vtk output. If disabled vtk files will be written in ASCII text format. 启用二进制 vtk 输出。如果禁用 vtk 文件,将以 ASCII 文本格式写入。
7399 sci-libs pastix cuda Enable GPU support using CUDA kernels 使用 CUDA 内核启用 GPU 支持
7400 sci-libs pastix fortran Install the Fortran interface 安装 Fortran 界面
7401 sci-libs pastix int64 Use 64- rather than 32-bit integer representation 使用 64 位而不是 32 位整数表示
7402 sci-libs pastix metis Enable matrix ordering with sci-libs/metis 使用 sci-libs/metis 启用矩阵排序
7403 sci-libs pastix scotch Enable matrix ordering with sci-libs/scotch 使用 sci-libs/scotch 启用矩阵排序
7404 sci-libs pastix starpu Enable support for ther dev-libs/starpu runtime 启用对 dev-libs/starpu 运行时的支持
7405 sci-libs pcl cuda Adds support for NVIDIA CUDA. 添加对 NVIDIA CUDA 的支持。
7406 sci-libs pcl openni Adds support for Kinect-like 3D sensors devices with dev-libs/OpenNI. 通过 dev-libs/OpenNI 添加对类似 Kinect 的 3D 传感器设备的支持。
7407 sci-libs pcl openni2 Adds support for Kinect-like 3D sensors devices with dev-libs/OpenNI2 (should be preferred over openni). 添加对带有 dev-libs/OpenNI2 的类似 Kinect 的 3D 传感器设备的支持(应该优先于 openni)。
7408 sci-libs pcl pcap Adds pcap file capabilities in some drivers. 在某些驱动程序中添加 pcap 文件功能。
7409 sci-libs pcl qhull Adds convex-hull operation support via media-libs/qhull. 通过 media-libs/qhull 添加凸包操作支持。
7410 sci-libs pcl tutorials Builds and installs tutorials. 构建和安装教程。
7411 sci-libs pcl vtk Adds support for VTK-Visualizations. 添加对 VTK 可视化的支持。
7412 sci-libs plplot dynamic Build with dynamic drivers 使用动态驱动程序构建
7413 sci-libs plplot octave Add bindings for sci-mathematics/octave 为 sci-mathematics/octave 添加绑定
7414 sci-libs plplot qhull Add bindings for media-libs/qhull 为 media-libs/qhull 添加绑定
7415 sci-libs plplot shapefile Enable support for ESRI shapefiles 启用对 ESRI shapefile 的支持
7416 sci-libs proj europe Install the PROJ collection of European grids and init-files 安装欧洲网格和初始化文件的 PROJ 集合
7417 sci-libs rocBLAS benchmark Build and install rocblas-bench. 构建并安装 rocblas-bench。
7418 sci-libs rocBLAS test Perform rocblas-test to compare the result between rocBLAS and system BLAS. 执行 rocblas-test 比较 rocBLAS 和系统 BLAS 的结果。
7419 sci-libs rocFFT benchmark Build and install [dyna-]rocfft-rider. 构建并安装 [dyna-]rocfft-rider。
7420 sci-libs rocFFT perfscripts Install rocfft-perf performance visualization suite. 安装 rocfft-perf 性能可视化套件。
7421 sci-libs rocPRIM benchmark Build and install benchmark programs. 构建和安装基准程序。
7422 sci-libs rocRAND benchmark Build and install benchmark programs. 构建和安装基准程序。
7423 sci-libs rocSOLVER benchmark Build and install rocsolver-bench. 构建并安装 rocsolver-bench。
7424 sci-libs rocSOLVER test Perform rocsolver-test to compare the result between rocSOLVER and system LAPACK. 执行 rocsolver-test 比较 rocSOLVER 和系统 LAPACK 的结果。
7425 sci-libs rocSPARSE benchmark Build and install rocblas-bench. 构建并安装 rocblas-bench。
7426 sci-libs rocThrust benchmark Build and install benchmark binary. 构建和安装基准二进制文件。
7427 sci-libs rtabmap openni2 Adds support for Kinect-like 3D sensors devices with dev-libs/OpenNI2. 通过 dev-libs/OpenNI2 添加对类似 Kinect 的 3D 传感器设备的支持。
7428 sci-libs scotch int64 Build the 64 bits integer library (needed for > 2^31 vertices) 构建 64 位整数库(> 2^31 个顶点需要)
7429 sci-libs scotch tools Provides the graph, mesh, architecture, mapping/ordering, output handling programs (see Scotch User's Guide). 提供图形、网格、架构、映射/排序、输出处理程序(参见 Scotch 用户指南)。
7430 sci-libs silo browser Enable browser support 启用浏览器支持
7431 sci-libs silo silex Build silex data browser 构建silex数据浏览器
7432 sci-libs spqr partition Use the partition module of sci-libs/cholmod for partitioning 使用 sci-libs/cholmod 的分区模块进行分区
7433 sci-libs spqr tbb Enable multithreading with the Intel Threads Building Block dev-cpp/tbb 使用英特尔线程构建模块 dev-cpp/tbb 启用多线程
7434 sci-libs spr root Add sci-physics/root graphics and i/o support 添加 sci-physics/root 图形和 i/o 支持
7435 sci-libs suitesparse cuda Enable nvidia cuda toolkit for speeding up computations 启用 nvidia cuda 工具包以加快计算速度
7436 sci-libs suitesparse partition Enable graph partitioning and graph-partition-based orderings through sci-libs/metis or sci-libs/parmetis 通过 sci-libs/metis 或 sci-libs/parmetis 启用图形分区和基于图形分区的排序
7437 sci-libs suitesparse tbb Enable multithreading with the Intel Threads Building Block dev-cpp/tbb 使用英特尔线程构建模块 dev-cpp/tbb 启用多线程
7438 sci-libs sundials hypre Build with sci-libs/hypre conditioners 使用 sci-libs/hypre 调节器构建
7439 sci-libs sundials int64 Use index size of 64 rather than 32 bits 使用 64 位而不是 32 位的索引大小
7440 sci-libs sundials sparse Enable support for sci-libs/klu sparse solver 启用对 sci-libs/klu 稀疏求解器的支持
7441 sci-libs sundials superlumt Build with sci-libs/superlu_mt 使用 sci-libs/superlu_mt 构建
7442 sci-libs superlu_mt int64 Build the 64 bits integer library 构建 64 位整数库
7443 sci-libs symengine arb Add support for arb (sci-mathematics/arb) 添加对 arb 的支持(sci-mathematics/arb)
7444 sci-libs symengine benchmarks Build benchmarks 建立基准
7445 sci-libs symengine boost Add support for boost integers(dev-libs/boost) 添加对 boost 整数的支持(dev-libs/boost)
7446 sci-libs symengine ecm Add support for ECM integer factorization library (sci-mathematics/gmp-ecm) 添加对 ECM 整数分解库 (sci-mathematics/gmp-ecm) 的支持
7447 sci-libs symengine flint Add support for (sci-mathematics/flint) 添加对 (sci-mathematics/flint) 的支持
7448 sci-libs symengine llvm Build with LLVM 使用 LLVM 构建
7449 sci-libs symengine mpc Add support for multiprecision complex arithmetic(dev-libs/mpc) 添加对多精度复数算术的支持(dev-libs/mpc)
7450 sci-libs symengine mpfr Add support for multiprecision floating point rouding(dev-libs/mpfr) 添加对多精度浮点路由的支持(dev-libs/mpfr)
7451 sci-libs tensorflow cuda Enable support for nVidia CUDA 启用对 nVidia CUDA 的支持
7452 sci-libs tensorflow xla XLA (Accelerated Linear Algebra) Optimizing Compiler for TensorFlow TensorFlow 的 XLA(加速线性代数)优化编译器
7453 sci-libs trilinos adolc Add support for adolc (sci-libs/adolc) 添加对 adolc (sci-libs/adolc) 的支持
7454 sci-libs trilinos all-packages Enable all supported Trilinos packages (per default only a subset is built) 启用所有受支持的 Trilinos 包(默认情况下只构建一个子集)
7455 sci-libs trilinos arprec Add support for arprec (sci-libs/arprec) 添加对 arprec 的支持 (sci-libs/arprec)
7456 sci-libs trilinos clp Add support for clp (sci-libs/coinor-clp) 添加对 clp 的支持(sci-libs/coinor-clp)
7457 sci-libs trilinos cuda Add support for cuda (dev-util/nvidia-cuda-toolkit) 添加对 cuda 的支持 (dev-util/nvidia-cuda-toolkit)
7458 sci-libs trilinos eigen Add support for eigen (dev-cpp/eigen) 添加对 eigen 的支持 (dev-cpp/eigen)
7459 sci-libs trilinos glpk Add support for glpk (sci-mathematics/glpk) 添加对 glpk (sci-mathematics/glpk) 的支持
7460 sci-libs trilinos gtest Add support for gtest (dev-cpp/gtest) 添加对 gtest (dev-cpp/gtest) 的支持
7461 sci-libs trilinos hdf5 Add support for hdf5 (sci-libs/hdf5) 添加对 hdf5 (sci-libs/hdf5) 的支持
7462 sci-libs trilinos hwloc Add support for hwloc (sys-apps/hwloc) 添加对 hwloc (sys-apps/hwloc) 的支持
7463 sci-libs trilinos hypre Add support for hypre (sci-libs/hypre) 添加对 hypre (sci-libs/hypre) 的支持
7464 sci-libs trilinos matio Add support for matio (sci-libs/matio) 添加对 matio 的支持 (sci-libs/matio)
7465 sci-libs trilinos metis Add support for metis (sci-libs/metis or sci-libs/parmetis) 添加对 metis 的支持(sci-libs/metis 或 sci-libs/parmetis)
7466 sci-libs trilinos mkl Add support for mkl (sci-libs/mkl) 添加对 mkl (sci-libs/mkl) 的支持
7467 sci-libs trilinos mumps Add support for mumps (sci-libs/mumps) 添加对腮腺炎(sci-libs/mumps)的支持
7468 sci-libs trilinos netcdf Add support for netcdf (sci-libs/netcdf) 添加对 netcdf (sci-libs/netcdf) 的支持
7469 sci-libs trilinos petsc Add support for petsc (sci-mathematics/petsc) 添加对 petsc 的支持(sci-mathematics/petsc)
7470 sci-libs trilinos qd Add support for qd (sci-libs/qd) 添加对 qd (sci-libs/qd) 的支持
7471 sci-libs trilinos scalapack Add support for scalapack (sci-libs/scalapack) 添加对 scalapack (sci-libs/scalapack) 的支持
7472 sci-libs trilinos scotch Add support for scotch (sci-libs/scotch) 添加对 scotch 的支持 (sci-libs/scotch)
7473 sci-libs trilinos sparse Add support for sparse matrix solvers (sci-libs/umfpack) 添加对稀疏矩阵求解器的支持 (sci-libs/umfpack)
7474 sci-libs trilinos superlu Add support for superlu (sci-libs/superlu) 添加对 superlu (sci-libs/superlu) 的支持
7475 sci-libs trilinos taucs Add support for taucs (sci-libs/taucs) 添加对 taucs 的支持(sci-libs/taucs)
7476 sci-libs trilinos tbb Add support for threading building blocks library (dev-cpp/tbb) 添加对线程构建块库 (dev-cpp/tbb) 的支持
7477 sci-libs trilinos tvmet Add support for tvmet (dev-libs/tvmet) 添加对 tvmet 的支持 (dev-libs/tvmet)
7478 sci-libs trilinos yaml Add support for yaml (dev-cpp/yaml-cpp) 添加对 yaml 的支持 (dev-cpp/yaml-cpp)
7479 sci-libs umfpack cholmod Use sci-libs/cholmod for matrix ordering 使用 sci-libs/cholmod 进行矩阵排序
7480 sci-libs vtk all-modules Build all modules 构建所有模块
7481 sci-libs vtk boost Add support for boost 添加对提升的支持
7482 sci-libs vtk cuda Add support for CUDA 添加对 CUDA 的支持
7483 sci-libs vtk gdal Support for gdal formated data 支持 gdal 格式的数据
7484 sci-libs vtk imaging Building Imaging modules 建筑成像模块
7485 sci-libs vtk json Support for json formatted data 支持json格式数据
7486 sci-libs vtk kits Build kits in addition to modules 除了模块之外的构建工具包
7487 sci-libs vtk offscreen Offscreen rendering through OSMesa 通过 OSMesa 进行屏幕外渲染
7488 sci-libs vtk pegtl Use pegtl to build parsers 使用 pegtl 构建解析器
7489 sci-libs vtk rendering Building Redering modules 构建 Redering 模块
7490 sci-libs vtk tbb Use dev-cpp/tbb to handle smp support 使用 dev-cpp/tbb 处理 smp 支持
7491 sci-libs vtk views Building Views modules 建筑视图模块
7492 sci-libs vtk web Install web component 安装网页组件
7493 sci-mathematics agda cpphs Use cpphs instead of cpp. 使用 cpphs 而不是 cpp。
7494 sci-mathematics agda debug Enable debugging features that may slow Agda down. 启用可能会降低 Agda 速度的调试功能。
7495 sci-mathematics agda enable-cluster-counting Enable the --count-clusters flag. (If enable-cluster-counting is False, then the --count-clusters flag triggers an error message.) 启用 --count-clusters 标志。 (如果 enable-cluster-counting 为 False,则 --count-clusters 标志会触发错误消息。)
7496 sci-mathematics agda stdlib Install the standard library. 安装标准库。
7497 sci-mathematics bertini optimization Accept upstream's choices for -O option. 接受上游对 -O 选项的选择。
7498 sci-mathematics cadabra jupyter Build the Cadabra Jupyter kernel 构建 Cadabra Jupyter 内核
7499 sci-mathematics cgal mpfi Enable support for multiple recision interval arithmetic via sci-libs/mpfi 通过 sci-libs/mpfi 启用对多个 recision 区间算术的支持
7500 sci-mathematics cgal ntl Enable support for dev-libs/ntl 启用对 dev-libs/ntl 的支持
7501 sci-mathematics cgal shared Build shared library 构建共享库
7502 sci-mathematics cvc4 cln Use sci-libs/cln 使用 sci-libs/cln
7503 sci-mathematics cvc4 proofs Support for proof generation 支持证明生成
7504 sci-mathematics cvc4 replay Turn on the replay feature 开启重播功能
7505 sci-mathematics cvc4 statistics Include statistics 包括统计数据
7506 sci-mathematics eclib boost Add parallel capabilities using dev-libs/boost. 使用 dev-libs/boost 添加并行功能。
7507 sci-mathematics eclib flint Enable the use of sci-mathematics/flint for certain operations. 为某些操作启用 sci-mathematics/flint。
7508 sci-mathematics eclib minimal Build only the "mwrank" program. 仅构建“mwrank”程序。
7509 sci-mathematics flint ntl Build NTL interface 构建 NTL 接口
7510 sci-mathematics form devref Build and install developers reference 构建和安装开发人员参考
7511 sci-mathematics form doxygen Build and install API documentation 构建和安装 API 文档
7512 sci-mathematics fricas clisp Add support for GNU CLISP (dev-lisp/clisp) 添加对 GNU CLISP (dev-lisp/clisp) 的支持
7513 sci-mathematics fricas clozurecl Add support for Clozure Common Lisp (dev-lisp/clozurecl) 添加对 Clozure Common Lisp 的支持 (dev-lisp/clozurecl)
7514 sci-mathematics fricas cmucl Add support for CMU Common Lisp (dev-lisp/cmucl) 添加对 CMU Common Lisp (dev-lisp/cmucl) 的支持
7515 sci-mathematics fricas ecls Add support for Embeddable Common Lisp (dev-lisp/ecls) 添加对 Embeddable Common Lisp (dev-lisp/ecls) 的支持
7516 sci-mathematics fricas gcl Add support for GNU Common Lisp (dev-lisp/gcl) 添加对 GNU Common Lisp (dev-lisp/gcl) 的支持
7517 sci-mathematics fricas sbcl Add support for Steel Bank Common Lisp (dev-lisp/sbcl) 添加对 Steel Bank Common Lisp (dev-lisp/sbcl) 的支持
7518 sci-mathematics geomview motionaveraging Enable experimental motion averaging technique 启用实验运动平均技术
7519 sci-mathematics giac ecm Enable the use of sci-mathematics/gmp-ecm 启用 sci-mathematics/gmp-ecm
7520 sci-mathematics giac gc Enable garbage collection support via dev-libs/boehm-gc 通过 dev-libs/boehm-gc 启用垃圾收集支持
7521 sci-mathematics giac glpk Enable the use of sci-mathematics/glpk 启用 sci-mathematics/glpk
7522 sci-mathematics gmp-ecm cuda Use NVidia's cuda toolkit for computations 使用 NVidia 的 cuda 工具包进行计算
7523 sci-mathematics gmp-ecm custom-tune Improve performance of some operations by selecting machine-specific defaults 通过选择特定于机器的默认值来提高某些操作的性能
7524 sci-mathematics gretl R Enable support for dev-lang/R 启用对 dev-lang/R 的支持
7525 sci-mathematics gretl extras Build and install add-ons bundled with gretl 构建和安装与 gretl 捆绑的附加组件
7526 sci-mathematics gsl-shell fox Build a x11-libs/fox GUI 构建 x11-libs/fox GUI
7527 sci-mathematics lcalc double Use double precision (the upstream default) 使用双精度(上游默认)
7528 sci-mathematics lcalc double-double Use sci-libs/qdfor double-double precision 使用 sci-libs/qd 实现双精度
7529 sci-mathematics lcalc pari Use sci-mathematics/pari for elliptic curve L-functions 对椭圆曲线 L 函数使用 sci-mathematics/pari
7530 sci-mathematics lcalc quad-double Use sci-libs/qdfor quad-double precision 将 sci-libs/qd 用于四双精度
7531 sci-mathematics maxima clisp Compile maxima with GNU CLISP (dev-lisp/clisp) 使用 GNU CLISP (dev-lisp/clisp) 编译最大值
7532 sci-mathematics maxima clozurecl Compile maxima with 32-bit Clozure Common Lisp (dev-lisp/clozurecl) 使用 32 位 Clozure Common Lisp (dev-lisp/clozurecl) 编译最大值
7533 sci-mathematics maxima clozurecl64 Compile maxima with 64-bit Clozure Common Lisp (dev-lisp/clozurecl) 使用 64 位 Clozure Common Lisp (dev-lisp/clozurecl) 编译最大值
7534 sci-mathematics maxima cmucl Compile maxima with CMU Common Lisp (dev-lisp/cmucl) 使用 CMU Common Lisp (dev-lisp/cmucl) 编译最大值
7535 sci-mathematics maxima ecls Compile maxima with Embeddable Common Lisp (dev-lisp/ecls) 使用 Embeddable Common Lisp (dev-lisp/ecls) 编译最大值
7536 sci-mathematics maxima gcl Compile maxima with GNU Common Lisp (dev-lisp/gcl) 使用 GNU Common Lisp (dev-lisp/gcl) 编译最大值
7537 sci-mathematics maxima sbcl Compile maxima with Steel Bank Common Lisp (dev-lisp/sbcl) 使用 Steel Bank Common Lisp (dev-lisp/sbcl) 编译最大值
7538 sci-mathematics maxima vtk Support plotting with sci-libs/vtk 支持使用 sci-libs/vtk 进行绘图
7539 sci-mathematics msieve ecm Enable support for the GMP-ECM library 启用对 GMP-ECM 库的支持
7540 sci-mathematics normaliz extras Install Macaulay2 and sci-mathematics/singularpackages as shipped by upstream 安装由上游提供的 Macaulay2 和 sci-mathematics/singularpackages
7541 sci-mathematics normaliz nauty Use sci-mathematics/nauty to compute automorphism groups. 使用 sci-mathematics/nauty 计算自同构群。
7542 sci-mathematics octave glpk Add support for sci-mathematics/glpk for linear programming 添加对 sci-mathematics/glpk 的支持以进行线性规划
7543 sci-mathematics octave json Allow using jsonencode and jsondecode commands via dev-libs/rapidjson 允许通过 dev-libs/rapidjson 使用 jsonencode 和 jsondecode 命令
7544 sci-mathematics octave qhull Add support for media-libs/qhull, to allow `delaunay', `convhull', and related functions 添加对 media-libs/qhull 的支持,以允许 `delaunay'、`convhull' 和相关功能
7545 sci-mathematics octave qrupdate Add support for sci-libs/qrupdatefor QR and Cholesky update functions 为 QR 和 Cholesky 更新函数添加对 sci-libs/qrupdate 的支持
7546 sci-mathematics octave sparse Add enhanced support for sparse matrix algebra with SuiteSparse 使用 SuiteSparse 添加对稀疏矩阵代数的增强支持
7547 sci-mathematics octave sundials Enable the ode15i and ode15s ODE solvers using sci-libs/sundials 使用 sci-libs/sundials 启用 ode15i 和 ode15s ODE 求解器
7548 sci-mathematics pari data Add additional data (elldata, galdata, seadata, nftables) 添加其他数据(elldata、galdata、seadata、nftables)
7549 sci-mathematics petsc afterimage Use Afterstep image library (media-libs/libafterimage) 使用 Afterstep 图像库 (media-libs/libafterimage)
7550 sci-mathematics petsc boost Use boost (dev-libs/boost) 使用 boost (dev-libs/boost)
7551 sci-mathematics petsc complex-scalars Make scalars complex 使标量复杂
7552 sci-mathematics petsc hypre Use HYPRE (sci-mathematics/hypre) and for preconditioning 使用 HYPRE (sci-mathematics/hypre) 和预处理
7553 sci-mathematics petsc int64 Use 64 bit indexes 使用 64 位索引
7554 sci-mathematics petsc metis Add support for metis (sci-libs/parmetis) 添加对 metis (sci-libs/parmetis) 的支持
7555 sci-mathematics petsc mumps Add support for mumps (sci-libs/mumps) 添加对腮腺炎(sci-libs/mumps)的支持
7556 sci-mathematics petsc scotch Add support for scotch (sci-libs/scotch) 添加对 scotch 的支持 (sci-libs/scotch)
7557 sci-mathematics petsc sparse Use suitesparse (sci-libs/suitesparse) including cholmod (sci-libs/cholmod) for sparse factorization 使用 suitesparse (sci-libs/suitesparse) 包括 cholmod (sci-libs/cholmod) 进行稀疏分解
7558 sci-mathematics petsc superlu Use superlu (sci-libs/superlu) for preconditioning 使用 superlu (sci-libs/superlu) 进行预处理
7559 sci-mathematics polymake bliss Enable sci-libs/bliss interface for graph and face lattice isomorphism computations. 为图形和面晶格同构计算启用 sci-libs/bliss 接口。
7560 sci-mathematics polymake cdd Enable sci-libs/cddlib interface for convex hull computations (Should be kept enabled). 为凸包计算启用 sci-libs/cddlib 接口(应保持启用)。
7561 sci-mathematics polymake flint Build with "strongly recommended" support for sci-mathematics/flint. 使用对 sci-mathematics/flint 的“强烈推荐”支持构建。
7562 sci-mathematics polymake libpolymake Build the polymake library to build applications using the C++ interface. 构建 polymake 库以使用 C++ 接口构建应用程序。
7563 sci-mathematics polymake lrs Enable sci-libs/lrslib interface for convex hull computations. 为凸包计算启用 sci-libs/lrslib 接口。
7564 sci-mathematics polymake nauty Build the extension for graph automorphism computations using sci-mathematics/nauty. 使用 sci-mathematics/nauty 构建图自同构计算的扩展。
7565 sci-mathematics polymake normaliz Build the bundled extension for lattice computations using sci-mathematics/normaliz. 使用 sci-mathematics/normaliz 构建用于晶格计算的捆绑扩展。
7566 sci-mathematics polymake ppl Enable dev-libs/ppl interface for convex hull computations. 为凸包计算启用 dev-libs/ppl 接口。
7567 sci-mathematics polymake singular Enable the interface to sci-mathematics/singular for ideal related computations. 启用与 sci-mathematics/singular 的接口以进行理想的相关计算。
7568 sci-mathematics primecount executable Build the primecount CLI executable 构建 primecount CLI 可执行文件
7569 sci-mathematics primesieve executable Build the primesieve CLI executable 构建 primesieve CLI 可执行文件
7570 sci-mathematics rstudio server Build and install the RStudio server 构建并安装 RStudio 服务器
7571 sci-mathematics singular polymake Enable the interface to TOPCOM 启用到 TOPCOM 的接口
7572 sci-mathematics slepc complex-scalars Make scalars complex 使标量复杂
7573 sci-mathematics stp cryptominisat Enable sci-mathematics/cryptominisat support 启用 sci-mathematics/cryptomimisat 支持
7574 sci-mathematics stp python Enable building the Python interface 启用构建 Python 接口
7575 sci-mathematics unuran prng Use sci-mathematics/prng library 使用 sci-mathematics/prng 库
7576 sci-mathematics unuran rngstreams Use sci-mathematics/rngstreams library 使用 sci-mathematics/rngstreams 库
7577 sci-mathematics vampire z3 Enable support for sci-mathematics/z3 启用对 sci-mathematics/z3 的支持
7578 sci-mathematics why3 coq Add sci-mathematics/coq support 添加 sci-mathematics/coq 支持
7579 sci-mathematics why3 gtk Build the IDE x11-libs/gtk+ 构建 IDE x11-libs/gtk+
7580 sci-mathematics why3 re Use Re (dev-ml/re) instead of Str for regular expressions 对正则表达式使用 Re (dev-ml/re) 而不是 Str
7581 sci-mathematics why3 sexp Add support for outputting S-expressions with dev-ml/ppx_sexp_conv 添加对使用 dev-ml/ppx_sexp_conv 输出 S 表达式的支持
7582 sci-mathematics why3 stackify Enable structure reconstruction algorithm for MLCFG 为 MLCFG 启用结构重建算法
7583 sci-mathematics why3 zarith Use Zarith (dev-ml/zarith) instead of Nums (dev-ml/num) for computations 使用 Zarith (dev-ml/zarith) 而不是 Nums (dev-ml/num) 进行计算
7584 sci-mathematics why3 zip Enable compression of session files 启用会话文件的压缩
7585 sci-mathematics why3-for-spark coq Add sci-mathematics/coq support 添加 sci-mathematics/coq 支持
7586 sci-mathematics why3-for-spark html Build HTML documentation 构建 HTML 文档
7587 sci-mathematics why3-for-spark hypothesis-selection Enable hypothesis selection 启用假设选择
7588 sci-mathematics why3-for-spark sexp Add support for outputting S-expressions with dev-ml/ppx_sexp_conv 添加对使用 dev-ml/ppx_sexp_conv 输出 S 表达式的支持
7589 sci-mathematics why3-for-spark zarith Use Zarith (dev-ml/zarith) instead of Nums (dev-ml/num) for computations 使用 Zarith (dev-ml/zarith) 而不是 Nums (dev-ml/num) 进行计算
7590 sci-mathematics why3-for-spark zip Enable compression of session files 启用会话文件的压缩
7591 sci-mathematics yacas jupyter Add support for jupyter notebook 添加对 jupyter notebook 的支持
7592 sci-mathematics z3 isabelle Add integration support for the Isabelle/HOL theorem prover. 添加对 Isabelle/HOL 定理证明器的集成支持。
7593 sci-misc boinc cuda Use nvidia cuda toolkit for speeding up computations. NOTE: works only for subset of nvidia graphic cards so make sure your card is supported before opening a bug about it. 使用 nvidia cuda 工具包加速计算。注意:仅适用于 nvidia 显卡的子集,因此在打开有关它的错误之前确保您的显卡受支持。
7594 sci-misc h5utils hdf Build hdf to hdf5 (and vice-versa) converter 构建 hdf 到 hdf5(反之亦然)转换器
7595 sci-misc h5utils octave Build Octave plugins 构建 Octave 插件
7596 sci-misc nco dap Support for remote data access with the NETCDF DAP client 支持使用 NETCDF DAP 客户端进行远程数据访问
7597 sci-misc nco ncap2 Build next generation netcdf arithmetic processor (needs dev-java/antlr) 构建下一代netcdf算术处理器(需要dev-java/antlr)
7598 sci-misc nco udunits Add sci-libs/udunits files support 添加 sci-libs/udunits 文件支持
7599 sci-physics bullet double-precision Build libraries in double precision 以双精度构建库
7600 sci-physics bullet extras Build the extras 构建附加功能
7601 sci-physics bullet tbb Enable multithreading with the Intel Threads Building Block dev-cpp/tbb 使用英特尔线程构建模块 dev-cpp/tbb 启用多线程
7602 sci-physics espresso cuda Enable cuda support 启用 cuda 支持
7603 sci-physics espresso examples Installs the examples 安装示例
7604 sci-physics fastjet cgal Use sci-mathematics/cgal instead of bundled algorithms 使用 sci-mathematics/cgal 而不是捆绑算法
7605 sci-physics fastjet plugins Build all standard and C++ plugins 构建所有标准和 C++ 插件
7606 sci-physics geant c++11 Build using the C++11 standard 使用 C++11 标准构建
7607 sci-physics geant c++14 Build using the C++14 standard 使用 C++14 标准构建
7608 sci-physics geant c++17 Build using the C++17 standard 使用 C++17 标准构建
7609 sci-physics geant c++20 Build using the C++20 standard 使用 C++20 标准构建
7610 sci-physics geant data Add a lot of standard physics data files for geant4 为geant4添加大量标准物理数据文件
7611 sci-physics geant dawn Add support for media-gfx/dawn (3D postscript rendering) 添加对 media-gfx/dawn 的支持(3D postscript 渲染)
7612 sci-physics geant freetype Add support for media-libs/freetype 添加对 media-libs/freetype 的支持
7613 sci-physics geant gdml Enable geometry markup language for xml 为 xml 启用几何标记语言
7614 sci-physics geant geant3 Add compatibility for geant321 to geant4 将 geant321 的兼容性添加到 geant4
7615 sci-physics geant inventor Add support for Open Inventor SGI toolkit via Coin3D 通过 Coin3D 添加对 Open Inventor SGI 工具包的支持
7616 sci-physics geant raytracerx Enable raytracing for physics events 为物理事件启用光线追踪
7617 sci-physics geant tbb Enable support for dev-cpp/tbb 启用对 dev-cpp/tbb 的支持
7618 sci-physics geant vrml Enable output of geant4 in vrml formats 以 vrml 格式启用 geant4 的输出
7619 sci-physics geant vtk Use sci-libs/vtk for visualization (experimental) 使用 sci-libs/vtk 进行可视化(实验性)
7620 sci-physics geant4_vmc g4root Build G4Root (interface for GEANT4 simulation with a ROOT geometry) 构建 G4Root(使用 ROOT 几何图形进行 GEANT4 模拟的接口)
7621 sci-physics geant4_vmc geant3 Build with Geant4 G3toG4 library 使用 Geant4 G3toG4 库构建
7622 sci-physics geant4_vmc mtroot Build MTRoot (provides ROOT IO manager classes with multi-threading support) 构建 MTRoot(提供具有多线程支持的 ROOT IO 管理器类)
7623 sci-physics geant4_vmc vgm Enable the Virtual Geometry Model (sci-physics/vgm) 启用虚拟几何模型 (sci-physics/vgm)
7624 sci-physics hepmc cm Build with cm instead of default mm for length units 使用 cm 而不是默认的 mm 作为长度单位构建
7625 sci-physics hepmc gev Build with GeV instead of default MeV for momentum units 使用 GeV 而不是默认的 MeV 构建动量单位
7626 sci-physics lammps cuda Enable cuda gpu computing support 启用 cuda gpu 计算支持
7627 sci-physics lammps hip Enable hip gpu computing support 启用 hip gpu 计算支持
7628 sci-physics lammps lammps-memalign Enables the use of the posix_memalign() call instead of malloc() when large chunks or memory are allocated by LAMMPS. Aliengnment is on 16 byte boundaries. 当 LAMMPS 分配大块或内存时,启用 posix_memalign() 调用而不是 malloc() 调用。 Aliengnment 在 16 字节边界上。
7629 sci-physics lammps opencl Enable opencl gpu computing support 启用 opencl gpu 计算支持
7630 sci-physics pythia fastjet Build jets using the sci-physics/fastjet package 使用 sci-physics/fastjet 包构建喷气机
7631 sci-physics pythia hepmc Adds support for High Energy Physics Monte Carlo Generators sci-physics/hepmc 添加对高能物理 Monte Carlo Generators sci-physics/hepmc 的支持
7632 sci-physics pythia lhapdf Support the use of external PDF sets via sci-physics/lhapdf 支持通过 sci-physics/lhapdf 使用外部 PDF 集
7633 sci-physics pythia root Use sci-physics/root trees and histograms (in examples only) 使用 sci-physics/根树和直方图(仅在示例中)
7634 sci-physics root R Enable support for dev-lang/R 启用对 dev-lang/R 的支持
7635 sci-physics root asimage Enable support for media-libs/libafterimage 启用对 media-libs/libafterimage 的支持
7636 sci-physics root c++11 Build using the C++11 standard 使用 C++11 标准构建
7637 sci-physics root c++14 Build using the C++14 standard 使用 C++14 标准构建
7638 sci-physics root c++17 Build using the C++17 standard 使用 C++17 标准构建
7639 sci-physics root cuda Enable support for nVidia CUDA 启用对 nVidia CUDA 的支持
7640 sci-physics root cudnn Enable support for nVidia cuDNN library 启用对 nVidia cuDNN 库的支持
7641 sci-physics root davix Enable support for DAVIX Data Management Client (https://cern.ch/davix) 启用对 DAVIX 数据管理客户端 (https://cern.ch/davix) 的支持
7642 sci-physics root fits Enable support for images and data from FITS files with sci-libs/cfitsio 使用 sci-libs/cfitsio 启用对来自 FITS 文件的图像和数据的支持
7643 sci-physics root fortran Compile included Fortran programs 编译包含的 Fortran 程序
7644 sci-physics root gdml Enable GDML writer and reader 启用 GDML 写入器和读取器
7645 sci-physics root http Enable http server support including but not limited to fastcgi support 启用 http 服务器支持,包括但不限于 fastcgi 支持
7646 sci-physics root libcxx Build ROOT against sys-libs/libcxx 针对 sys-libs/libcxx 构建 ROOT
7647 sci-physics root minuit Build ROOT's internal versions of minuit (fortran) and minuit2 (C++) 构建 ROOT 的 minuit (fortran) 和 minuit2 (C++) 的内部版本
7648 sci-physics root pythia6 Build the interface for sci-physics/pythia version 6.x 为 sci-physics/pythia 版本 6.x 构建接口
7649 sci-physics root pythia8 Build the interface for sci-physics/pythia version 8.x 为 sci-physics/pythia 版本 8.x 构建接口
7650 sci-physics root roofit Build RooFit function fitting package 构建 RooFit 功能拟合包
7651 sci-physics root root7 Build experimental features to be released with ROOT 7 构建与 ROOT 7 一起发布的实验性功能
7652 sci-physics root shadow Enable shadow authentication in rootd and proofd 在 rootd 和 proofed 中启用影子身份验证
7653 sci-physics root tbb Enable implicit multi-threading (IMT) with dev-cpp/tbb 使用 dev-cpp/tbb 启用隐式多线程 (IMT)
7654 sci-physics root tmva Built TMVA (ROOT's multi-variate analysis toolkit for machine learning) 构建 TMVA(ROOT 用于机器学习的多变量分析工具包)
7655 sci-physics root unuran Enable support for sci-mathematics/unuran 启用对 sci-mathematics/unuran 的支持
7656 sci-physics root uring Enable support for sys-libs/liburing in RNTuple 在 RNTuple 中启用对 sys-libs/liburing 的支持
7657 sci-physics root vc Enable support for dev-libs/vc with VecCore 使用 VecCore 启用对 dev-libs/vc 的支持
7658 sci-physics root vmc Built the Virtual Monte Carlo library 构建了虚拟蒙特卡洛库
7659 sci-physics root xrootd Build the interface for net-libs/xrootd 为 net-libs/xrootd 构建接口
7660 sci-physics thepeg c++11 Build ThePEG using the C++11 standard. Experimental feature, not for production use. 使用 C++11 标准构建 ThePEG。实验功能,不用于生产。
7661 sci-physics thepeg fastjet Adds support for sci-physics/fastjet 添加对 sci-physics/fastjet 的支持
7662 sci-physics thepeg hepmc Adds support for High Energy Physics Monte Carlo Generators sci-physics/hepmc 添加对高能物理 Monte Carlo Generators sci-physics/hepmc 的支持
7663 sci-physics thepeg lhapdf Adds support for sci-physics/lhapdf 添加对 sci-physics/lhapdf 的支持
7664 sci-physics vgm geant4 Enable interaction with Geant4(sci-physics/geant:4) 启用与 Geant4(sci-physics/geant:4) 的交互
7665 sci-physics vgm root Enable interaction with ROOT (sci-physics/root) 启用与 ROOT 的交互 (sci-physics/root)
7666 sci-physics vmc c++14 Build using the C++14 standard 使用 C++14 标准构建
7667 sci-physics vmc c++17 Build using the C++17 standard 使用 C++17 标准构建
7668 sci-physics yoda root Adds support for sci-physics/root 添加对 sci-physics/root 的支持
7669 sci-visualization fityk nlopt Enable optimization with sci-libs/nlopt 使用 sci-libs/nlopt 启用优化
7670 sci-visualization gnuplot bitmap Enable dot-matrix printers and pbm terminal 启用点阵打印机和 pbm 终端
7671 sci-visualization gnuplot gd Add support for media-libs/gd. Needed for GIF, JPEG, and PNG image output. 添加对媒体库/gd 的支持。需要 GIF、JPEG 和 PNG 图像输出。
7672 sci-visualization gnuplot libcerf Enable special functions from sci-libs/libcerf 从 sci-libs/libcerf 启用特殊功能
7673 sci-visualization gnuplot regis Enable ReGIS terminal 启用 ReGIS 终端
7674 sci-visualization gwyddion fits Enable FITS image import via sci-libs/cfitsio 通过 sci-libs/cfitsio 启用 FITS 图像导入
7675 sci-visualization gwyddion jansson Enable JSON data manipulation via dev-libs/jansson 通过 dev-libs/jansson 启用 JSON 数据操作
7676 sci-visualization gwyddion sourceview Enable support for x11-libs/gtksourceview 启用对 x11-libs/gtksourceview 的支持
7677 sci-visualization gwyddion unique Enable remote control backend via dev-libs/libunique 通过 dev-libs/libunique 启用远程控制后端
7678 sci-visualization labplot cantor Enable support for different open-source computer algebra systems via kde-apps/cantor 通过 kde-apps/cantor 启用对不同开源计算机代数系统的支持
7679 sci-visualization labplot fits Enable support for NASA's sci-libs/cfitsio library 启用对 NASA 的 sci-libs/cfitsio 库的支持
7680 sci-visualization labplot libcerf Enable special functions from sci-libs/libcerf 从 sci-libs/libcerf 启用特殊功能
7681 sci-visualization labplot markdown Enable Markdown support via app-text/discount 通过 app-text/discount 启用 Markdown 支持
7682 sci-visualization labplot matio Enable support for matio (sci-libs/matio) 启用对 matio (sci-libs/matio) 的支持
7683 sci-visualization labplot origin Enable support for reading OriginLab OPJ project files through sci-libs/liborigin 启用对通过 sci-libs/liborigin 读取 OriginLab OPJ 项目文件的支持
7684 sci-visualization labplot root Enable support for CERN's ROOT file type 启用对 CERN 的 ROOT 文件类型的支持
7685 sci-visualization labplot serial Enable support for RS232 serial ports using dev-qt/qtserialport 使用 dev-qt/qtserialport 启用对 RS232 串行端口的支持
7686 sci-visualization opendx cdf Add support for sci-libs/cdf data exchange format 添加对 sci-libs/cdf 数据交换格式的支持
7687 sci-visualization opendx hdf Add support for the Hierarchical Data Format (sci-libs/hdf) 添加对分层数据格式 (sci-libs/hdf) 的支持
7688 sci-visualization paraview boost Enable the usage of dev-libs/boost 启用 dev-libs/boost 的使用
7689 sci-visualization paraview cg Add support for nvidia's cg shaders 添加对 nvidia 的 cg 着色器的支持
7690 sci-visualization paraview nvcontrol Add NVCONTROL support for OpenGL options 为 OpenGL 选项添加 NVCONTROL 支持
7691 sci-visualization paraview offscreen Offscreen rendering through OSMesa 通过 OSMesa 进行屏幕外渲染
7692 sci-visualization paraview plugins Build and install additional plugins 构建和安装其他插件
7693 sci-visualization paraview webengine Add support for dev-qt/qtwebengine 添加对 dev-qt/qtwebengine 的支持
7694 sci-visualization scidavis origin Add support for reading OriginLab OPJ project files through sci-libs/liborigin. 添加对通过 sci-libs/liborigin 读取 OriginLab OPJ 项目文件的支持。
7695 sci-visualization scidavis python Build support for python scripting. 构建对 python 脚本的支持。
7696 sec-policy selinux-base ubac Enable User Based Access Control (UBAC) in the SELinux policy 在 SELinux 策略中启用基于用户的访问控制 (UBAC)
7697 sec-policy selinux-base unconfined Enable support for the unconfined SELinux module 启用对不受限制的 SELinux 模块的支持
7698 sec-policy selinux-base unknown-perms Default allow unknown classes in kernels newer than the policy (SELinux policy capability). 默认允许内核中的未知类比策略更新(SELinux 策略功能)。
7699 sec-policy selinux-base-policy unconfined Enable support for the unconfined SELinux policy module 启用对不受限制的 SELinux 策略模块的支持
7700 sys-apps accountsservice elogind Use sys-auth/elogind for session tracking 使用 sys-auth/elogind 进行会话跟踪
7701 sys-apps accountsservice systemd Use sys-apps/systemd for session tracking 使用 sys-apps/systemd 进行会话跟踪
7702 sys-apps baselayout-prefix split-usr Enable this if /bin and /usr/bin are separate directories 如果 /bin 和 /usr/bin 是单独的目录,请启用此选项
7703 sys-apps busybox make-symlinks Create all the appropriate symlinks in /bin and /sbin. 在 /bin 和 /sbin 中创建所有适当的符号链接。
7704 sys-apps busybox math Enable math support in gawk (requires libm) 在 gawk 中启用数学支持(需要 libm)
7705 sys-apps busybox mdev Create the appropriate symlink in /sbin and install mdev.conf and support files 在 /sbin 中创建适当的符号链接并安装 mdev.conf 和支持文件
7706 sys-apps busybox sep-usr Support a separate /usr without needing an initramfs by booting with init=/ginit 通过使用 init=/ginit 引导支持单独的 /usr 而不需要 initramfs
7707 sys-apps busybox static Make the system rescue shell (/bin/bb) static so you can recover even when glibc is broken 将系统救援 shell (/bin/bb) 设为静态,这样即使 glibc 损坏也可以恢复
7708 sys-apps busybox systemd Support systemd 支持系统
7709 sys-apps coreutils caps Add Linux capabilities support in output of file utilities (ls, dir, ...) via sys-libs/libcap 通过 sys-libs/libcap 在文件实用程序(ls、dir、...)的输出中添加 Linux 功能支持
7710 sys-apps coreutils hostname Build the hostname program 构建主机名程序
7711 sys-apps coreutils kill Build the kill program 构建杀死程序
7712 sys-apps coreutils multicall Build all tools into a single `coreutils` program akin to busybox to save space 将所有工具构建到一个类似于busybox的“coreutils”程序中以节省空间
7713 sys-apps coreutils split-usr Enable this if /bin and /usr/bin are separate directories 如果 /bin 和 /usr/bin 是单独的目录,请启用此选项
7714 sys-apps dbus elogind Use sys-auth/elogind for session tracking. 使用 sys-auth/elogind 进行会话跟踪。
7715 sys-apps dbus systemd Build with sys-apps/systemd at_console support 使用 sys-apps/systemd at_console 支持构建
7716 sys-apps dbus-broker launcher dbus-daemon compatibility launcher dbus-daemon 兼容性启动器
7717 sys-apps debianutils installkernel Install /sbin/installkernel script (for Linux). installkernel is required whenever a kernel will be installed via make install 安装 /sbin/installkernel 脚本(适用于 Linux)。每当通过 make install 安装内核时,都需要 installkernel
7718 sys-apps dtc yaml support .yaml-encoded device trees 支持 .yaml 编码的设备树
7719 sys-apps duc X Use X11 for the GUI instead of OpenGL. This is the recommended option 将 X11 用于 GUI 而不是 OpenGL。这是推荐的选项
7720 sys-apps duc cairo Build support for exporting to PNG and PDF with x11-libs/cairo 使用 x11-libs/cairo 构建对导出到 PNG 和 PDF 的支持
7721 sys-apps duc leveldb Use dev-libs/leveldb as the backend 使用 dev-libs/leveldb 作为后端
7722 sys-apps duc ncurses Build support for the ncurses client 构建对 ncurses 客户端的支持
7723 sys-apps duc sqlite Use dev-db/sqlite:3 as the backend 使用 dev-db/sqlite:3 作为后端
7724 sys-apps duc tokyocabinet Use dev-db/tokyocabinet as the backend 使用 dev-db/tokyocabinet 作为后端
7725 sys-apps earlyoom docs Generate man page 生成手册页
7726 sys-apps elfix ptpax Enable PT_PAX_FLAGS support. 启用 PT_PAX_FLAGS 支持。
7727 sys-apps elfix xtpax Enable XATTR_PAX_FLAGS support. 启用 XATTR_PAX_FLAGS 支持。
7728 sys-apps etckeeper cron Install cron script 安装 cron 脚本
7729 sys-apps ethtool netlink Enable netlink interface via net-libs/libmnl 通过 net-libs/libmnl 启用 netlink 接口
7730 sys-apps firejail X Enable X11 sandboxing 启用 X11 沙盒
7731 sys-apps firejail apparmor Enable support for custom AppArmor profiles 启用对自定义 AppArmor 配置文件的支持
7732 sys-apps firejail chroot Enable chrooting to custom directory 启用 chrooting 到自定义目录
7733 sys-apps firejail contrib Install contrib scripts 安装贡献脚本
7734 sys-apps firejail dbusproxy Enable DBus proxying to filter access in supporting profiles 启用 DBus 代理以过滤支持配置文件中的访问
7735 sys-apps firejail file-transfer Enable file transfers between sandboxes and the host system 启用沙盒和主机系统之间的文件传输
7736 sys-apps firejail globalcfg Enable global config file 启用全局配置文件
7737 sys-apps firejail network Enable networking features 启用网络功能
7738 sys-apps firejail private-home Enable private home feature 启用私人住宅功能
7739 sys-apps firejail userns Enable attaching a new user namespace to a sandbox (--noroot option) 启用将新用户命名空间附加到沙箱(--noroot 选项)
7740 sys-apps firejail-lts apparmor Enable support for custom AppArmor profiles 启用对自定义 AppArmor 配置文件的支持
7741 sys-apps firejail-lts globalcfg Enable global config file 启用全局配置文件
7742 sys-apps firejail-lts network Enable networking features 启用网络功能
7743 sys-apps firejail-lts seccomp Enable system call filtering 启用系统调用过滤
7744 sys-apps firejail-lts userns Enable attaching a new user namespace to a sandbox (--noroot option) 启用将新用户命名空间附加到沙箱(--noroot 选项)
7745 sys-apps firejail-lts whitelist Enable file and directory whitelisting 启用文件和目录白名单
7746 sys-apps flashrom atahpt Highpoint (HPT) ATA/RAID controller support Highpoint (HPT) ATA/RAID 控制器支持
7747 sys-apps flashrom atapromise Support for Promise PDC2026x (FastTrak/Ultra) 支持 Promise PDC2026x (FastTrak/Ultra)
7748 sys-apps flashrom atavia Support for VIA VT6421A SATA controllers 支持威盛 VT6421A SATA 控制器
7749 sys-apps flashrom buspirate-spi Enable Bus Pirate SPI programmer 启用 Bus Pirate SPI 编程器
7750 sys-apps flashrom ch341a-spi Enable WCH CH341A SPI programmer 启用 WCH CH341A SPI 编程器
7751 sys-apps flashrom dediprog Dediprog SF100 support Dediprog SF100 支持
7752 sys-apps flashrom developerbox-spi Enable Devloperbox SPI recovery support 启用 Devloperbox SPI 恢复支持
7753 sys-apps flashrom digilent-spi Enable support for Digilent iCEblink40 development board 启用对 Digilent iCEblink40 开发板的支持
7754 sys-apps flashrom drkaiser Enable Dr. Kaiser programmer 启用 Dr. Kaiser 程序员
7755 sys-apps flashrom dummy Enable dummy tracing 启用虚拟跟踪
7756 sys-apps flashrom ft2232-spi Enable ftdi programmer, flashing through FTDI/SPI USB interface 开启 ftdi 编程器,通过 FTDI/SPI USB 接口烧写
7757 sys-apps flashrom gfxnvidia Enable NVIDIA programmer 启用 NVIDIA 程序员
7758 sys-apps flashrom internal Enable internal/onboard support 启用内部/板载支持
7759 sys-apps flashrom internal-dmi Enable internal DMI decoding rather than use sys-apps/dmidecode 启用内部 DMI 解码而不是使用 sys-apps/dmidecode
7760 sys-apps flashrom it8212 Support for ITE IT8212F ATA/RAID controllers 支持 ITE IT8212F ATA/RAID 控制器
7761 sys-apps flashrom jlink-spi Support for SEGGER J-Link and compatible devices 支持 SEGGER J-Link 和兼容设备
7762 sys-apps flashrom linux-mtd Enable support for Linux mtd SPI flash devices 启用对 Linux mtd SPI 闪存设备的支持
7763 sys-apps flashrom linux-spi Enable support for Linux userspace spidev interface 启用对 Linux 用户空间 spidev 接口的支持
7764 sys-apps flashrom mstarddc-spi Support for SPI flash ROMs accessible through DDC in MSTAR-equipped displays 支持通过 DDC 在配备 MSTAR 的显示器中访问 SPI 闪存 ROM
7765 sys-apps flashrom nic3com Enable 3Com NIC programmer 启用 3Com 网卡编程器
7766 sys-apps flashrom nicintel Support for Intel NICs 支持英特尔 NIC
7767 sys-apps flashrom nicintel-eeprom Support for EEPROMs on Intel Gigabit network cards 支持英特尔千兆网卡上的 EEPROM
7768 sys-apps flashrom nicintel-spi Support for SPI on Intel NICs 支持 Intel NIC 上的 SPI
7769 sys-apps flashrom nicnatsemi Support for National Semiconductor NICs 支持 National Semiconductor NIC
7770 sys-apps flashrom nicrealtek Support for Realtek NICs 支持 Realtek NIC
7771 sys-apps flashrom ogp-spi Enable support for OGP (Open Graphics Project) SPI flashing 启用对 OGP(开放图形项目)SPI 闪烁的支持
7772 sys-apps flashrom pickit2-spi SUpport for SPI flash ROMs accessible via Microchip PICkit2 支持通过 Microchip PICkit2 访问的 SPI 闪存 ROM
7773 sys-apps flashrom pony-spi Enable support for SI-Prog like hardware by Lancos 启用对 Lancos 类似硬件的 SI-Prog 的支持
7774 sys-apps flashrom rayer-spi RayeR SPIPGM hardware support RayeR SPIPGM 硬件支持
7775 sys-apps flashrom satamv Enable programmer for Marvell SATA controllers 为 Marvell SATA 控制器启用编程器
7776 sys-apps flashrom satasii Enable programmer for SiI SATA controllers 为 SiI SATA 控制器启用编程器
7777 sys-apps flashrom serprog Enable Serial Flasher programmer 启用串行闪存编程器
7778 sys-apps flashrom stlinkv3-spi Enable SPI programmer using STLINK-V3 使用 STLINK-V3 启用 SPI 编程器
7779 sys-apps flashrom tools Install ich_descriptor_tool, a tool for reading descriptor-mode SPI-flash images for Intel chipsets 安装 ich_descriptor_tool,这是一个用于读取英特尔芯片组的描述符模式 SPI 闪存映像的工具
7780 sys-apps flashrom usbblaster-spi Enable support for Altera USB-Blaster dongles 启用对 Altera USB-Blaster 加密狗的支持
7781 sys-apps fwupd amt Build and install Intel AMT plugin 构建和安装英特尔 AMT 插件
7782 sys-apps fwupd archive Use app-arch/libarchive for archives support 使用 app-arch/libarchive 来支持归档
7783 sys-apps fwupd cbor Enable CBOR support for coSWID and uSWID via dev-libs/libcbor 通过 dev-libs/libcbor 启用对 coSWID 和 uSWID 的 CBOR 支持
7784 sys-apps fwupd dell Enable Dell-specific support 启用戴尔特定的支持
7785 sys-apps fwupd fastboot Build and install fastboot plugin 构建并安装 fastboot 插件
7786 sys-apps fwupd flashrom Enable flashrom plugin via sys-apps/flashrom 通过 sys-apps/flashrom 启用 flashrom 插件
7787 sys-apps fwupd gusb Enable dev-libs/libgusb support 启用 dev-libs/libgusb 支持
7788 sys-apps fwupd logitech Build and install Logitech bulk controller plugin 构建和安装 Logitech 批量控制器插件
7789 sys-apps fwupd modemmanager Build and install Modem Manager plugin 构建和安装调制解调器管理器插件
7790 sys-apps fwupd nvme Build and install NVMe plugin 构建和安装 NVMe 插件
7791 sys-apps fwupd spi Install Intel-SPI plugin 安装 Intel-SPI 插件
7792 sys-apps fwupd synaptics Install synaptics plugin 安装突触插件
7793 sys-apps fwupd thunderbolt Install Thunderbolt plugin 安装迅雷插件
7794 sys-apps fwupd tpm Install Trusted Platform Module plugin 安装可信平台模块插件
7795 sys-apps fwupd uefi Enable UEFI support 启用 UEFI 支持
7796 sys-apps gawk mpfr use mpfr for high precision arithmetic (-M / --bignum) 使用 mpfr 进行高精度算术 (-M / --bignum)
7797 sys-apps gnome-disk-utility fat Include FAT16/FAT32 support (sys-fs/dosfstools) 包括 FAT16/FAT32 支持 (sys-fs/dosfstools)
7798 sys-apps groff uchardet Enable automatic encoding detection via app-i18n/uchardet 通过 app-i18n/uchardet 启用自动编码检测
7799 sys-apps hwloc X use the X Window System 使用 X 窗口系统
7800 sys-apps hwloc cairo Enable the Cairo back-end of hwloc's lstopo command 启用 hwloc 的 lstopo 命令的 Cairo 后端
7801 sys-apps hwloc cpuid Enable the cpuid-based architecture specific support (x86 component) 启用基于 cpuid 的架构特定支持(x86 组件)
7802 sys-apps hwloc cuda Enable CUDA device discovery using libcudart 使用 libcudart 启用 CUDA 设备发现
7803 sys-apps hwloc gl Enable GL display device discovery (NVCtrl) 启用 GL 显示设备发现 (NVCtrl)
7804 sys-apps hwloc netloc Enable Netloc 启用网络定位
7805 sys-apps hwloc numa Add support for numa memory allocation 添加对 numa 内存分配的支持
7806 sys-apps hwloc nvml Enable the NVML device discovery 启用 NVML 设备发现
7807 sys-apps hwloc pci Enable PCI device discovery using libpci 使用 libpci 启用 PCI 设备发现
7808 sys-apps hwloc plugins Build hwloc components as plugins so that the hwloc core library does not directly depend on their dependencies (for instance the libpci library) 将 hwloc 组件构建为插件,以便 hwloc 核心库不直接依赖于它们的依赖项(例如 libpci 库)
7809 sys-apps hwloc xml use libxml2 for XML support, instead of a custom minimalistic support 使用 libxml2 来支持 XML,而不是自定义的简约支持
7810 sys-apps ibm-powerpc-utils rtas Add support for the Run Time Abstraction Services (RTAS) 添加对运行时抽象服务 (RTAS) 的支持
7811 sys-apps iotools make-symlinks Generate sub-command symlinks to iotools -- note that a lot are simple like "xor" 生成指向 iotools 的子命令符号链接——注意很多很简单,比如“xor”
7812 sys-apps ipmicfg uefi Install compatible UEFI file for boot. 安装兼容的 UEFI 文件以进行引导。
7813 sys-apps ipmitool openbmc Enable OpenBMC D-Bus interface 启用 OpenBMC D-Bus 接口
7814 sys-apps ipmitool openipmi Use the system OpenIPMI implementation. 使用系统 OpenIPMI 实现。
7815 sys-apps iproute2 berkdb build programs that use berkdb (just arpd) 构建使用 berkdb 的程序(只是 arpd)
7816 sys-apps iproute2 bpf Use dev-libs/libbpf 使用 dev-libs/libbpf
7817 sys-apps iproute2 elf support loading eBPF programs from ELFs (e.g. LLVM's eBPF backend) 支持从 ELF 加载 eBPF 程序(例如 LLVM 的 eBPF 后端)
7818 sys-apps iproute2 iptables include support for iptables filtering 包括对 iptables 过滤的支持
7819 sys-apps iproute2 libbsd Use dev-libs/libbsd instead of internal funcs 使用 dev-libs/libbsd 而不是内部函数
7820 sys-apps iproute2 minimal only install ip and tc programs, without eBPF support 只安装ip和tc程序,不支持eBPF
7821 sys-apps iproute2 nfs Support RPC lookups via net-libs/libtirpc in ss 支持通过 ss 中的 net-libs/libtirpc 进行 RPC 查找
7822 sys-apps irqbalance numa Support balancing IRQs across NUMA nodes 支持跨 NUMA 节点平衡 IRQ
7823 sys-apps irqbalance tui Enable build of irqbalance terminal user interface 启用 irqbalance 终端用户界面的构建
7824 sys-apps kexec-tools booke Include support for Book-E memory management 包括对 Book-E 内存管理的支持
7825 sys-apps kexec-tools lzma Enables support for LZMA compressed kernel images 启用对 LZMA 压缩内核映像的支持
7826 sys-apps kexec-tools xen Enable extended xen support 启用扩展的 xen 支持
7827 sys-apps kmod lzma Enable support for XZ compressed modules 启用对 XZ 压缩模块的支持
7828 sys-apps kmod pkcs7 Enable PKCS#7 signature parsing for modinfo. 为 modinfo 启用 PKCS#7 签名解析。
7829 sys-apps kmod tools Install module loading/unloading tools. 安装模块加载/卸载工具。
7830 sys-apps kmod zlib Enable support for gzipped modules 启用对 gzip 模块的支持
7831 sys-apps kmscon drm Enable Linux DRM for backend 为后端启用 Linux DRM
7832 sys-apps kmscon fbdev Enable Linux FBDev for backend 为后端启用 Linux FBDev
7833 sys-apps kmscon gles2 Enable GLES2 for backend 为后端启用 GLES2
7834 sys-apps kmscon optimizations Enable optimizations 启用优化
7835 sys-apps kmscon pango Enable pango font rendering 启用 pango 字体渲染
7836 sys-apps kmscon pixman Enable pixman font rendering 启用 pixman 字体渲染
7837 sys-apps kmscon systemd Enable multiseat support via systemd 通过 systemd 启用多席位支持
7838 sys-apps linux-misc-apps usbip Include USB/IP binaries to replace net-misc/usbip 包括 USB/IP 二进制文件以替换 net-misc/usbip
7839 sys-apps lm-sensors contrib Installs user contributed configuration files so you don't need to find settings on your own for your system if somebody else has already created such a configuration for sensors/mainboards you are using. 安装用户贡献的配置文件,因此如果其他人已经为您正在使用的传感器/主板创建了这样的配置,您无需为您的系统自行查找设置。
7840 sys-apps lm-sensors sensord Enable sensord - a daemon that can be used to periodically log sensor readings from hardware health-monitoring chips 启用 sensord - 一个可用于定期记录来自硬件健康监控芯片的传感器读数的守护进程
7841 sys-apps man-db manpager Enable manpager wrapper for colorizing output 启用 manpager 包装器以对输出进行着色
7842 sys-apps memtest86 serial Compile with serial console support 使用串行控制台支持编译
7843 sys-apps memtest86+ bios32 Compile a BIOS-bootable 32bit memtest image 编译 BIOS 可引导的 32 位 memtest 映像
7844 sys-apps memtest86+ bios64 Compile a BIOS-bootable 64bit memtest image 编译 BIOS 可引导的 64 位 memtest 映像
7845 sys-apps memtest86+ boot Also install to /boot instead of just /usr/share/memtest86+/ 也安装到 /boot 而不仅仅是 /usr/share/memtest86+/
7846 sys-apps memtest86+ efi32 Compile a EFI32-bootable 32bit memtest image 编译一个 EFI32-bootable 32bit memtest 镜像
7847 sys-apps memtest86+ efi64 Compile a UEFI-bootable 64bit memtest image 编译 UEFI 可引导的 64 位 memtest 映像
7848 sys-apps memtest86+ floppy Install a script to create floppy disks containing memtest86+ binaries. 安装脚本以创建包含 memtest86+ 二进制文件的软盘。
7849 sys-apps memtest86+ iso Compile an ISO image 编译 ISO 映像
7850 sys-apps memtest86+ iso32 Compile a 32bit ISO image 编译 32 位 ISO 映像
7851 sys-apps memtest86+ iso64 Compile a 64bit ISO image 编译 64 位 ISO 映像
7852 sys-apps memtest86+ serial Compile with serial console support 使用串行控制台支持编译
7853 sys-apps moreutils perl Install scripts written in Perl 安装用 Perl 编写的脚本
7854 sys-apps net-tools arp build the arp and rarp tools (for manipulating the ARP cache) 构建 arp 和 rarp 工具(用于操作 ARP 缓存)
7855 sys-apps net-tools hostname build the hostname and dnsdomainname tools 构建主机名和 dnsdomainname 工具
7856 sys-apps net-tools plipconfig build the plipconfig tool (for working with old PLIP hardware) 构建 plipconfig 工具(用于使用旧的 PLIP 硬件)
7857 sys-apps net-tools slattach build the slattach tool (for working with old serial ports) 构建 slattach 工具(用于使用旧串行端口)
7858 sys-apps nvme-cli hugepages Use huge pages for memory allocations via sys-libs/libhugetlbfs 通过 sys-libs/libhugetlbfs 使用大页面进行内存分配
7859 sys-apps nvme-cli json Support JSON output via dev-libs/json-c 支持通过 dev-libs/json-c 输出 JSON
7860 sys-apps nvme-cli uuid UUID support via sys-apps/util-linux 通过 sys-apps/util-linux 支持 UUID
7861 sys-apps openrc bash enable the use of bash in service scripts (experimental) 启用在服务脚本中使用 bash(实验性)
7862 sys-apps openrc netifrc enable Gentoo's network stack (net.* scripts) 启用 Gentoo 的网络堆栈(net.* 脚本)
7863 sys-apps openrc newnet enable the new network stack (experimental) 启用新的网络堆栈(实验性)
7864 sys-apps openrc sysv-utils Install sysvinit compatibility scripts for halt, init, poweroff, reboot and shutdown 安装 sysvinit 兼容性脚本以进行暂停、初始化、关机、重启和关机
7865 sys-apps pciutils dns Enable support for querying the central database of PCI IDs using DNS 启用对使用 DNS 查询 PCI ID 中央数据库的支持
7866 sys-apps pciutils kmod Enable sys-apps/kmod support for the -k switch in lspci command 为 lspci 命令中的 -k 开关启用 sys-apps/kmod 支持
7867 sys-apps pciutils zlib Support compressed pci.ids database 支持压缩的 pci.ids 数据库
7868 sys-apps pcmciautils staticsocket Add support for static sockets 添加对静态套接字的支持
7869 sys-apps pcsc-lite embedded limit RAM and CPU ressources by disabling features 通过禁用功能来限制 RAM 和 CPU 资源
7870 sys-apps pcsc-lite libusb Use dev-libs/libusb detection to hotplug new smartcard readers. This flag should only be enabled if you're running a non-Linux kernel or you don't want to use sys-fs/udev. 使用 dev-libs/libusb 检测来热插拔新的智能卡读卡器。只有在运行非 Linux 内核或不想使用 sys-fs/udev 时才应启用此标志。
7871 sys-apps pcsc-lite policykit Uses sys-auth/polkit to restrict access to smartcard readers or smartcars to given users. 使用 sys-auth/polkit 来限制给定用户对智能卡读卡器或智能汽车的访问。
7872 sys-apps pcsc-lite udev Use virtual/libudev rules to handle devices' permissions and hotplug support. Unless you know what you're doing do not disable this flag on Linux kernels. This is provided as an option for completeness. 使用 virtual/libudev 规则来处理设备的权限和热插拔支持。除非您知道自己在做什么,否则不要在 Linux 内核上禁用此标志。这是作为完整性选项提供的。
7873 sys-apps pcsc-tools network-cron Monthly cronjob the update-smartcard_list script 每月 cronjob update-smartcard_list 脚本
7874 sys-apps plocate io-uring Enable efficient I/O via sys-libs/liburing. 通过 sys-libs/liburing 启用高效的 I/O。
7875 sys-apps policycoreutils audit Enable support for sys-process/audit and use the audit_* functions (like audit_getuid instead of getuid()) 启用对 sys-process/audit 的支持并使用 audit_* 函数(如 audit_getuid 而不是 getuid())
7876 sys-apps portage apidoc Build html API documentation with sphinx-apidoc. 使用 sphinx-apidoc 构建 html API 文档。
7877 sys-apps portage gentoo-dev Enable features required for Gentoo ebuild development. 启用 Gentoo ebuild 开发所需的功能。
7878 sys-apps portage ipc Use inter-process communication between portage and running ebuilds. 在 portage 和正在运行的 ebuild 之间使用进程间通信。
7879 sys-apps portage native-extensions Compiles native "C" extensions (speedups, instead of using python backup code). Currently includes libc-locales. This should only be temporarily disabled for some bootstrapping operations. Cross-compilation is not supported. 编译本机“C”扩展(加速,而不是使用 python 备份代码)。目前包括 libc-locales。这应该只对某些引导操作暂时禁用。不支持交叉编译。
7880 sys-apps portage rsync-verify Enable full-tree cryptographic verification of Gentoo repository rsync checkouts using app-portage/gemato. 使用 app-portage/gemato 启用 Gentoo 存储库 rsync 签出的全树加密验证。
7881 sys-apps portage xattr Preserve extended attributes (filesystem-stored metadata) when installing files. Usually only required for hardened systems. 安装文件时保留扩展属性(文件系统存储的元数据)。通常只有硬化系统才需要。
7882 sys-apps ppc64-diag rtas Add support for the Run Time Abstraction Services (RTAS) 添加对运行时抽象服务 (RTAS) 的支持
7883 sys-apps proot care Build dynamic CARE binary (more info - https://proot-me.github.io) 构建动态 CARE 二进制文件(更多信息 - https://proot-me.github.io)
7884 sys-apps qingy opensslcrypt Encrypt communications between qingy and its GUI using dev-libs/openssl 使用 dev-libs/openssl 加密 qingy 与其 GUI 之间的通信
7885 sys-apps razercfg gui Installs GUI configuration utility and status bar applet. Requires dev-python/PyQt5 安装 GUI 配置实用程序和状态栏小程序。需要 dev-python/PyQt5
7886 sys-apps rng-tools jitterentropy Enable Jitter RNG entropy support 启用抖动 RNG 熵支持
7887 sys-apps rng-tools nistbeacon Enable NIST beacon entropy support 启用 NIST 信标熵支持
7888 sys-apps rng-tools pkcs11 Enable PKCS11 entropy support 启用 PKCS11 熵支持
7889 sys-apps rng-tools rtlsdr Enable atmospheric-static entropy support with net-wireless/rtl-sdr 使用 net-wireless/rtl-sdr 启用大气静态熵支持
7890 sys-apps s390-tools cryptsetup build the zkey-cryptsetup utility (requires USE=openssl) 构建 zkey-cryptsetup 实用程序(需要 USE=openssl)
7891 sys-apps s390-tools fuse build cmsfs-fuse to read files stored on a z/VM CMS disk 构建 cmsfs-fuse 以读取存储在 z/VM CMS 磁盘上的文件
7892 sys-apps s390-tools ncurses build hyptop monitoring program 构建hyptop监控程序
7893 sys-apps s390-tools openssl build the zkey utility 构建 zkey 实用程序
7894 sys-apps s390-tools pfm build the cpacfstats tool 构建 cpacfstats 工具
7895 sys-apps s390-tools zlib build the zgetdump and dump2tar utilities 构建 zgetdump 和 dump2tar 实用程序
7896 sys-apps s6 execline enable support for dev-lang/execline 启用对 dev-lang/execline 的支持
7897 sys-apps s6-linux-init sysv-utils Install sysvinit compatibility symlinks for telinit, halt, poweroff, reboot, and shutdown 为 telinit、halt、poweroff、reboot 和 shutdown 安装 sysvinit 兼容性符号链接
7898 sys-apps sandbox nnp Enable NO_NEW_PRIVS which blocks set*id programs from gaining privileges (e.g. sudo) 启用 NO_NEW_PRIVS 阻止 set*id 程序获得特权(例如 sudo)
7899 sys-apps shadow bcrypt build the bcrypt password encryption algorithm 构建 bcrypt 密码加密算法
7900 sys-apps shadow su build the su program 构建su程序
7901 sys-apps smartmontools caps Build against sys-libs/libcap-ng to allow smartd to drop its privileges. 针对 sys-libs/libcap-ng 构建以允许 smartd 放弃其权限。
7902 sys-apps smartmontools daemon Install the monitoring daemon (smartd) and associated scripts. 安装监控守护程序 (smartd) 和相关脚本。
7903 sys-apps smartmontools update-drivedb Install a script to update the drivedb file. 安装脚本以更新 drivedb 文件。
7904 sys-apps smc-sum module Install Supermicro's kernel module. 安装 Supermicro 的内核模块。
7905 sys-apps superdiag iso Install an iso image, which can be used with sys-apps/smc-sum. 安装一个iso镜像,可以和sys-apps/smc-sum一起使用。
7906 sys-apps superdiag usb Install all files, which are needed for an installation on an usb thumb drive. 安装在 USB 拇指驱动器上安装所需的所有文件。
7907 sys-apps superiotool pci Support for PCI-attached "Super I/Os" (e.g. in VIA VT82686A/B). 支持 PCI 附加的“超级 I/O”(例如在威盛 VT82686A/B 中)。
7908 sys-apps systemd apparmor Enable AppArmor support 启用 AppArmor 支持
7909 sys-apps systemd audit Enable support for sys-process/audit 启用对 sys-process/audit 的支持
7910 sys-apps systemd cgroup-hybrid Default to hybrid (legacy) cgroup hierarchy instead of unified (modern). 默认为混合(传统)cgroup 层次结构,而不是统一(现代)。
7911 sys-apps systemd cryptsetup Enable cryptsetup tools (includes unit generator for crypttab) 启用 cryptsetup 工具(包括 crypttab 的单元生成器)
7912 sys-apps systemd curl Enable support for uploading journals 启用对上传期刊的支持
7913 sys-apps systemd dns-over-tls Enable DNS-over-TLS support 启用 DNS-over-TLS 支持
7914 sys-apps systemd elfutils Enable coredump stacktraces in the journal 在日志中启用 coredump 堆栈跟踪
7915 sys-apps systemd fido2 Enable FIDO2 support 启用 FIDO2 支持
7916 sys-apps systemd gcrypt Enable use of dev-libs/libgcrypt for various features 为各种功能启用 dev-libs/libgcrypt
7917 sys-apps systemd gnuefi Enable EFI boot manager and stub loader (built using sys-boot/gnu-efi) 启用 EFI 引导管理器和存根加载程序(使用 sys-boot/gnu-efi 构建)
7918 sys-apps systemd homed Enable portable home directories 启用可移植主目录
7919 sys-apps systemd hostnamed-fallback Enable setting hostname with networkd/hostnamed without polkit (requires running sys-apps/dbus-broker) 启用在没有 polkit 的情况下使用 networkd/hostnamed 设置主机名(需要运行 sys-apps/dbus-broker)
7920 sys-apps systemd http Enable embedded HTTP server in journald 在 journald 中启用嵌入式 HTTP 服务器
7921 sys-apps systemd importd Enable import daemon 启用导入守护程序
7922 sys-apps systemd kmod Enable kernel module loading via sys-apps/kmod 通过 sys-apps/kmod 启用内核模块加载
7923 sys-apps systemd lz4 Enable lz4 compression for the journal 为日志启用 lz4 压缩
7924 sys-apps systemd nat Enable support for network address translation in networkd 在 networkd 中启用对网络地址转换的支持
7925 sys-apps systemd openssl Enable use of dev-libs/openssl for various features 为各种功能启用 dev-libs/openssl
7926 sys-apps systemd pkcs11 Enable PKCS#11 support for cryptsetup and homed 为 cryptsetup 和 homed 启用 PKCS#11 支持
7927 sys-apps systemd pwquality Enable password quality checking in homed 在 homed 中启用密码质量检查
7928 sys-apps systemd qrcode Enable qrcode output support in journal 在日志中启用 qrcode 输出支持
7929 sys-apps systemd resolvconf Install resolvconf symlink for systemd-resolve 为 systemd-resolve 安装 resolvconf 符号链接
7930 sys-apps systemd sysv-utils Install sysvinit compatibility symlinks and manpages for init, telinit, halt, poweroff, reboot, runlevel, and shutdown 为 init、telinit、halt、poweroff、reboot、runlevel 和 shutdown 安装 sysvinit 兼容性符号链接和手册页
7931 sys-apps systemd tpm Enable TPM support 启用 TPM 支持
7932 sys-apps systemd vanilla Disable Gentoo-specific behavior and compatibility quirks 禁用特定于 Gentoo 的行为和兼容性怪癖
7933 sys-apps systemd xkb Depend on x11-libs/libxkbcommon to allow logind to control the X11 keymap 依赖 x11-libs/libxkbcommon 来允许 logind 控制 X11 键盘映射
7934 sys-apps systemd-utils boot Enable systemd-boot (UEFI boot manager) 启用 systemd-boot(UEFI 引导管理器)
7935 sys-apps systemd-utils kmod Enable kernel module loading via sys-apps/kmod 通过 sys-apps/kmod 启用内核模块加载
7936 sys-apps systemd-utils sysusers Enable systemd-sysusers 启用 systemd-sysusers
7937 sys-apps systemd-utils tmpfiles Enable systemd-tmpfiles 启用 systemd-tmpfiles
7938 sys-apps systemd-utils udev Enable systemd-udev (userspace device manager) 启用 systemd-udev(用户空间设备管理器)
7939 sys-apps tcp-wrappers netgroups Support matching NIS (host) netgroup names via the @netgroup syntax (if you don't know what this means, you most likely do not need it) 支持通过 @netgroup 语法匹配 NIS(主机)网络组名称(如果您不知道这意味着什么,您很可能不需要它)
7940 sys-apps texinfo standalone Build standalone version that survives all Portage bugs 构建可以解决所有 Portage 错误的独立版本
7941 sys-apps ucspi-ssl bindist Disable EC/RC5 algorithms in OpenSSL for patent reasons. 出于专利原因,在 OpenSSL 中禁用 EC/RC5 算法。
7942 sys-apps usbguard umockdev Enables support for dev-util/umockdev 启用对 dev-util/umockdev 的支持
7943 sys-apps usermode-utilities fuse Build tools (currently umlmount) needing fuse 需要 fuse 的构建工具(目前是 umlmount)
7944 sys-apps util-linux audit Use sys-process/audit to emit audit messages about system changes 使用 sys-process/audit 发出有关系统更改的审计消息
7945 sys-apps util-linux caps build setpriv helper (run programs with diff capabilities) 构建 setpriv 助手(运行具有差异功能的程序)
7946 sys-apps util-linux cramfs build mkfs/fsck helpers for cramfs filesystems 为 cramfs 文件系统构建 mkfs/fsck 助手
7947 sys-apps util-linux cryptsetup Use sys-fs/cryptsetup to have built-in dm-verity in libmount 使用 sys-fs/cryptsetup 在 libmount 中内置 dm-verity
7948 sys-apps util-linux fdformat build fdformat (floppy disk format) build fdformat(软盘格式)
7949 sys-apps util-linux hardlink build hardlink program 构建硬链接程序
7950 sys-apps util-linux kill build the kill program 构建杀死程序
7951 sys-apps util-linux logger build the logger program 构建记录器程序
7952 sys-apps util-linux pam build runuser helper 构建运行用户助手
7953 sys-apps util-linux rtas Add support for the Run Time Abstraction Services (RTAS) 添加对运行时抽象服务 (RTAS) 的支持
7954 sys-apps util-linux su build the su program 构建su程序
7955 sys-apps util-linux suid Install some programs with suid bit set to provide additional functionality. mount/umount: non-root users may mount/umount devices wall/write: non-root users can notify other users su: non-root users may become root 安装一些设置了 suid 位的程序以提供附加功能。 mount/umount:非root用户可以挂载/umount设备 wall/write:非root用户可以通知其他用户su:非root用户可以成为root
7956 sys-apps util-linux tty-helpers install the mesg/wall/write tools for talking to local users 安装 mesg/wall/write 工具以与本地用户交谈
7957 sys-apps watchdog nfs enable support for checking nfs mounts 启用对检查 nfs 挂载的支持
7958 sys-apps xdg-desktop-portal screencast Enable screencast portal using media-video/pipewire 使用 media-video/pipewire 启用截屏门户
7959 sys-apps xinetd rpc support RPC services 支持RPC服务
7960 sys-auth elogind cgroup-hybrid Use hybrid cgroup hierarchy (OpenRC's default) instead of unified. 使用混合 cgroup 层次结构(OpenRC 的默认)而不是统一的。
7961 sys-auth google-authenticator-libpam-hardened qrcode Display QRcode after setup to accomodate automatic setup of OTP client apps. 设置后显示二维码,以适应 OTP 客户端应用程序的自动设置。
7962 sys-auth munge gcrypt Use libgcrypt instead of openssl 使用 libgcrypt 而不是 openssl
7963 sys-auth nss-pam-ldapd pynslcd Install the python implementation along with the standard implementation 安装 python 实现和标准实现
7964 sys-auth nss-pam-ldapd utils Install the command-line utilities 安装命令行实用程序
7965 sys-auth oath-toolkit pam Build PAM module for pluggable login authentication for OATH 为 OATH 构建用于可插入登录身份验证的 PAM 模块
7966 sys-auth oath-toolkit pskc Build tools & library for the Portable Symmetric Key Container (PSKC) format per RFC6030 根据 RFC6030 为便携式对称密钥容器 (PSKC) 格式构建工具和库
7967 sys-auth pam_mktemp prevent-removal If supported, set EXT2_APPEND_FL on /tmp/.private to prevent temporary directories from being removed 如果支持,请在 /tmp/.private 上设置 EXT2_APPEND_FL 以防止临时目录被删除
7968 sys-auth pam_mysql openssl Use OpenSSL for md5 and sha1 support 使用 OpenSSL 支持 md5 和 sha1
7969 sys-auth pam_u2f debug Enable debug messages using the pam logging macros. 使用 pam 日志记录宏启用调试消息。
7970 sys-auth pambase debug Enable debug information logging on syslog(3) for all the modules supporting this in the system authentication and system login stacks. 为系统身份验证和系统登录堆栈中支持此功能的所有模块启用 syslog(3) 上的调试信息日志记录。
7971 sys-auth pambase elogind Use pam_elogind module to register user sessions with elogind. 使用 pam_elogind 模块向 elogind 注册用户会话。
7972 sys-auth pambase homed Use pam_systemd_home module to manage home directories with the systemd-homed service 使用 pam_systemd_home 模块通过 systemd-homed 服务管理主目录
7973 sys-auth pambase minimal Disables the standard PAM modules that provide extra information to users on login; this includes pam_lastlog, pam_motd, pam_mail and other similar modules. This might not be a good idea on a multi-user system but could reduce slightly the overhead on single-user non-networked systems. 禁用在登录时向用户提供额外信息的标准 PAM 模块;这包括 pam_lastlog、pam_motd、pam_mail 和其他类似的模块。这在多用户系统上可能不是一个好主意,但可以稍微减少单用户非网络系统的开销。
7974 sys-auth pambase mktemp Enable pam_mktemp module on system auth stack for session handling. This module creates a private temporary directory for the user, and sets TMP and TMPDIR accordingly. 在系统身份验证堆栈上启用 pam_mktemp 模块以进行会话处理。该模块为用户创建一个私有临时目录,并相应地设置 TMP 和 TMPDIR。
7975 sys-auth pambase nullok Enable the nullok option with the pam_unix module. This allows people to login with blank passwords. 使用 pam_unix 模块启用 nullok 选项。这允许人们使用空白密码登录。
7976 sys-auth pambase pam_krb5 Enable pam_krb5 module on system auth stack, as an alternative to pam_unix. If Kerberos authentication succeed, only pam_unix will be ignore, and all the other modules will proceed as usual, including Gnome Keyring and other session modules. It requires sys-libs/pam as PAM implementation. 在系统身份验证堆栈上启用 pam_krb5 模块,作为 pam_unix 的替代方案。如果 Kerberos 认证成功,只有 pam_unix 将被忽略,所有其他模块将照常进行,包括 Gnome Keyring 和其他会话模块。它需要 sys-libs/pam 作为 PAM 实现。
7977 sys-auth pambase pam_ssh Enable pam_ssh module on system auth stack for authentication and session handling. This module will accept as password the passphrase of a private SSH key (one of ~/.ssh/id_rsa, ~/.ssh/id_dsa or ~/.ssh/identity), and will spawn an ssh-agent instance to cache the open key. 在系统身份验证堆栈上启用 pam_ssh 模块以进行身份验证和会话处理。此模块将接受 SSH 私钥的密码(~/.ssh/id_rsa、~/.ssh/id_dsa 或 ~/.ssh/identity 之一)作为密码,并将生成一个 ssh-agent 实例来缓存打开的钥匙。
7978 sys-auth pambase passwdqc Enable pam_passwdqc module on system auth stack for password quality validation. This module produces warnings, rejecting or providing example passwords when changing your system password. It is used by default by OpenWall GNU/*/Linux and by FreeBSD. 在系统身份验证堆栈上启用 pam_passwdqc 模块以进行密码质量验证。此模块在更改系统密码时会产生警告、拒绝或提供示例密码。 OpenWall GNU/*/Linux 和 FreeBSD 默认使用它。
7979 sys-auth pambase pwhistory Enable pam_pwhistory module on system auth stack to save the last passwords for each user in order to force password change history and keep the user from alternating between the same password too frequently. 在系统身份验证堆栈上启用 pam_pwhistory 模块以保存每个用户的最后一个密码,以强制密码更改历史记录并防止用户过于频繁地交替使用相同的密码。
7980 sys-auth pambase pwquality Enable pam_pwquality module on system auth stack for passwd quality validation. It is used be dafault by Fedora GNU/*/Linux. 在系统身份验证堆栈上启用 pam_pwquality 模块以进行 passwd 质量验证。 Fedora GNU/*/Linux 默认使用它。
7981 sys-auth pambase securetty Enable pam_securetty module in the login stack. Not generally relevant anymore as the login stack only refers to local logins and local terminals imply secure access in the first place. 在登录堆栈中启用 pam_securetty 模块。通常不再相关,因为登录堆栈仅指本地登录,而本地终端首先意味着安全访问。
7982 sys-auth pambase sha512 Switch Linux-PAM's pam_unix module to use sha512 for passwords hashes rather than MD5. This option requires sys-libs/pam version 1.0.1 built against sys-libs/glibc version 2.7, if it's built against an earlier version, it will silently be ignored, and MD5 hashes will be used. All the passwords changed after this USE flag is enabled will be saved to the shadow file hashed using SHA512 function. The password previously saved will be left untouched. Please note that while SHA512-hashed passwords will still be recognised if the USE flag is removed, the shadow file will not be compatible with systems using an earlier glibc version. 切换 Linux-PAM 的 pam_unix 模块以使用 sha512 而非 MD5 作为密码散列。此选项需要针对 sys-libs/glibc 版本 2.7 构建的 sys-libs/pam 版本 1.0.1,如果它是针对早期版本构建的,它将被忽略,并且将使用 MD5 哈希。启用此 USE 标志后更改的所有密码都将保存到使用 SHA512 函数散列的影子文件中。之前保存的密码将保持不变。请注意,虽然 SHA512 散列密码在删除 USE 标志后仍能被识别,但影子文件将与使用早期 glibc 版本的系统不兼容。
7983 sys-auth pambase systemd Use pam_systemd module to register user sessions in the systemd control group hierarchy. 使用 pam_systemd 模块在 systemd 控制组层次结构中注册用户会话。
7984 sys-auth pambase yescrypt Switch Linux-PAM's pam_unix module to use yescrypt for passwords hashes rather than MD5 切换 Linux-PAM 的 pam_unix 模块以使用 yescrypt 作为密码哈希而不是 MD5
7985 sys-auth polkit duktape Use dev-lang/duktape instead of dev-lang/spidermonkey as JavaScript engine 使用 dev-lang/duktape 代替 dev-lang/spidermonkey 作为 JavaScript 引擎
7986 sys-auth polkit systemd Use sys-apps/systemd for session tracking 使用 sys-apps/systemd 进行会话跟踪
7987 sys-auth seatd builtin Enable embedded server in libseat 在 libseat 中启用嵌入式服务器
7988 sys-auth seatd server Enable standalone seatd server 启用独立的座位服务器
7989 sys-auth ssh-ldap-pubkey schema Install a copy of the LPK schema, only needed on LDAP servers. 安装 LPK 模式的副本,仅在 LDAP 服务器上需要。
7990 sys-auth sssd acl Build and use the cifsidmap plugin 构建和使用 cifsidmap 插件
7991 sys-auth sssd locator Install sssd's Kerberos plugin 安装 sssd 的 Kerberos 插件
7992 sys-auth sssd netlink Add support for netlink protocol via dev-libs/libnl 通过 dev-libs/libnl 添加对 netlink 协议的支持
7993 sys-auth sssd nfsv4 Add support for the nfsv4 idmapd plugin provided by net-fs/nfs-utils 添加对 net-fs/nfs-utils 提供的 nfsv4 idmapd 插件的支持
7994 sys-auth sssd pac Add Privileged Attribute Certificate Support for Kerberos 为 Kerberos 添加特权属性证书支持
7995 sys-auth sssd sudo Build helper to let app-admin/sudo use sssd provided information 构建助手让 app-admin/sudo 使用 sssd 提供的信息
7996 sys-auth sssd systemtap Enable SystemTAP/DTrace tracing 启用 SystemTAP/DTrace 跟踪
7997 sys-auth sssd valgrind Depend on dev-util/valgrind for test suite 依赖于 dev-util/valgrind 的测试套件
7998 sys-block f3 extra Build the additional f3probe, f3brew and f3fix utility (requires sys-block/parted and virtual/udev) 构建额外的 f3probe、f3brew 和 f3fix 实用程序(需要 sys-block/parted 和 virtual/udev)
7999 sys-block fio aio Enable AIO ioengine 启用 AIO ioengine
8000 sys-block fio curl Enable HTTP engine for S3 and WebDav support support via net-misc/curl 通过 net-misc/curl 为 S3 和 WebDav 支持启用 HTTP 引擎
8001 sys-block fio glusterfs Enable GlusterFS gfapi support via sys-cluster/glusterfs 通过 sys-cluster/glusterfs 启用 GlusterFS gfapi 支持
8002 sys-block fio gnuplot Install tools for generating gnuplots 安装用于生成 gnuplot 的工具
8003 sys-block fio io-uring Enable efficient I/O via sys-libs/liburing. 通过 sys-libs/liburing 启用高效的 I/O。
8004 sys-block fio nfs Enable NFS support 启用 NFS 支持
8005 sys-block fio numa Enable numa support 启用 numa 支持
8006 sys-block fio rbd Enable Rados block device support via sys-cluster/ceph 通过 sys-cluster/ceph 启用 Rados 块设备支持
8007 sys-block fio rdma Enable infiniband support via sys-cluster/rdma-core 通过 sys-cluster/rdma-core 启用 infiniband 支持
8008 sys-block fio tcmalloc Link against dev-util/google-perftools by default which will speed up USE=rbd up to 20% 默认情况下链接到 dev-util/google-perftools,这将加速 USE=rbd 高达 20%
8009 sys-block fio zbc Enable ZBC & ZAC disks via sys-block/libzbc. 通过 sys-block/libzbc 启用 ZBC 和 ZAC 磁盘。
8010 sys-block gparted wayland Enable interim workaround to allow running GParted under Wayland by granting permission to the X11 display using x11-apps/xhost. 通过使用 x11-apps/xhost 授予 X11 显示的权限,启用临时解决方法以允许在 Wayland 下运行 GParted。
8011 sys-block libfabric cuda Enable for CUDA provider 为 CUDA 提供程序启用
8012 sys-block libfabric efa Enable Amazon EC2 Elastic Fabric Adapter provider 启用 Amazon EC2 Elastic Fabric Adapter 提供程序
8013 sys-block libfabric rocr Enable Radeon Open Compute provider 启用 Radeon 开放计算提供程序
8014 sys-block libfabric usnic Enable Cisco VIC (virtualized NIC) hardware on Cisco UCS server provider 在 Cisco UCS 服务器提供商上启用 Cisco VIC(虚拟化 NIC)硬件
8015 sys-block libfabric verbs Enable Linux Infiniband verbs provider 启用 Linux Infiniband 动词提供程序
8016 sys-block nbd netlink Add support for netlink protocol via dev-libs/libnl 通过 dev-libs/libnl 添加对 netlink 协议的支持
8017 sys-block open-iscsi rdma Support iSCSI over RDMA 支持 iSCSI over RDMA
8018 sys-block open-iscsi tcp Support iSCSI over TCP 支持 iSCSI over TCP
8019 sys-block parted debug Enable debugging as encouraged by upstream: [The default configuration] includes --enable-debug (by default), which contains many assertions. Obviously, these "waste" space, but in the past, they have caught potentially dangerous bugs before they would have done damage, so we think it's worth it. Also, it means we get more bug reports ;) 启用上游鼓励的调试:[默认配置]包括 --enable-debug (默认情况下),其中包含许多断言。显然,这些“浪费”的空间,但在过去,它们在造成损害之前就已经捕获了潜在的危险漏洞,所以我们认为这是值得的。此外,这意味着我们会收到更多错误报告;)
8020 sys-block parted device-mapper Enable device-mapper support from sys-fs/lvm2 in parted 在 parted 中启用来自 sys-fs/lvm2 的设备映射器支持
8021 sys-block partimage nologin Do not include login support when connecting partimaged 连接 partimaged 时不包括登录支持
8022 sys-block perccli efi Install EFI variant as well 也安装 EFI 变体
8023 sys-block sas2ircu efi Install EFI variant as well 也安装 EFI 变体
8024 sys-block sas3flash efi Install EFI variant as well 也安装 EFI 变体
8025 sys-block sas3ircu efi Install EFI variant as well 也安装 EFI 变体
8026 sys-block tgt fcoe Add support for FCoE protocol 添加对 FCoE 协议的支持
8027 sys-block tgt fcp Add support for new FC protocol 添加对新 FC 协议的支持
8028 sys-block tgt ibmvio Add support for IBM Virtual I/O 添加对 IBM 虚拟 I/O 的支持
8029 sys-block tgt rbd Add support for ceph block devices 添加对 ceph 块设备的支持
8030 sys-boot grub device-mapper Enable support for device-mapper from sys-fs/lvm2 从 sys-fs/lvm2 启用对设备映射器的支持
8031 sys-boot grub efiemu Build and install the efiemu runtimes 构建和安装 efiemu 运行时
8032 sys-boot grub fonts Build and install fonts for the gfxterm module 为 gfxterm 模块构建和安装字体
8033 sys-boot grub libzfs Enable support for sys-fs/zfs 启用对 sys-fs/zfs 的支持
8034 sys-boot grub mount Build and install the grub-mount utility 构建并安装 grub-mount 实用程序
8035 sys-boot grub themes Build and install GRUB themes (starfield) 构建和安装 GRUB 主题(星空)
8036 sys-boot grub truetype Build and install grub-mkfont conversion utility 构建和安装 grub-mkfont 转换实用程序
8037 sys-boot lilo device-mapper Enable support for device-mapper from sys-fs/lvm2 从 sys-fs/lvm2 启用对设备映射器的支持
8038 sys-boot lilo minimal Do not install the dolilo helper script 不要安装 dolilo 帮助脚本
8039 sys-boot lilo pxeserial Avoid character echo on PXE serial console 避免 PXE 串行控制台上的字符回显
8040 sys-boot netboot bootrom Install the bootrom binary for creation of rom files, which can be used for booting via floppy or rom. 安装用于创建 rom 文件的 bootrom 二进制文件,该文件可用于通过软盘或 rom 引导。
8041 sys-boot plymouth drm Provides abstraction to the DRM drivers (intel, nouveau and vmwgfx at this moment) 为 DRM 驱动程序提供抽象(此时为 intel、nouveau 和 vmwgfx)
8042 sys-boot plymouth pango Adds support for printing text on splash screen and text prompts, e.g. for password 添加了对在启动画面和文本提示上打印文本的支持,例如密码
8043 sys-boot plymouth split-usr Enable this if /bin and /usr/bin are separate directories 如果 /bin 和 /usr/bin 是单独的目录,请启用此选项
8044 sys-boot refind btrfs Builds the EFI binary btrfs filesystem driver 构建 EFI 二进制 btrfs 文件系统驱动程序
8045 sys-boot refind ext2 Builds the EFI binary ext2 filesystem driver 构建 EFI 二进制 ext2 文件系统驱动程序
8046 sys-boot refind ext4 Builds the EFI binary ext4 filesystem driver 构建 EFI 二进制 ext4 文件系统驱动程序
8047 sys-boot refind hfs Builds the EFI binary hfs filesystem driver 构建 EFI 二进制 hfs 文件系统驱动程序
8048 sys-boot refind iso9660 Builds the EFI binary iso9660 filesystem driver 构建 EFI 二进制 iso9660 文件系统驱动程序
8049 sys-boot refind ntfs Builds the EFI binary ntfs filesystem driver 构建 EFI 二进制 ntfs 文件系统驱动程序
8050 sys-boot refind reiserfs Builds the EFI binary reiserfs filesystem driver 构建 EFI 二进制 reiserfs 文件系统驱动程序
8051 sys-boot silo tilo-only Install only the tilo netboot tool 只安装 tilo netboot 工具
8052 sys-boot syslinux bios Enable BIOS support 启用 BIOS 支持
8053 sys-boot syslinux efi Enable EFI support 启用 EFI 支持
8054 sys-boot vboot-utils libzip Use dev-libs/libzip. 使用 dev-libs/libzip。
8055 sys-cluster ceph babeltrace Add support for LTTng babeltrace 添加对 LTTng babeltrace 的支持
8056 sys-cluster ceph cephfs Build support for cephfs, a POSIX compatible filesystem built on top of ceph 构建对 cephfs 的支持,这是一个构建在 ceph 之上的 POSIX 兼容文件系统
8057 sys-cluster ceph diskprediction Enable local diskprediction module to predict disk failures 启用本地磁盘预测模块以预测磁盘故障
8058 sys-cluster ceph dpdk Enable DPDK messaging 启用 DPDK 消息传递
8059 sys-cluster ceph fuse Build fuse client 构建熔断器客户端
8060 sys-cluster ceph grafana Install grafana dashboards 安装 grafana 仪表板
8061 sys-cluster ceph jaeger Enable jaegertracing and it's dependent libraries 启用 jaegertracing 及其依赖库
8062 sys-cluster ceph kafka Rados Gateway's pubsub support for Kafka push endpoint Rados Gateway 对 Kafka 推送端点的 pubsub 支持
8063 sys-cluster ceph lttng Add support for LTTng 添加对 LTTng 的支持
8064 sys-cluster ceph mgr Build the ceph-mgr daemon 构建 ceph-mgr 守护进程
8065 sys-cluster ceph numa Use sys-process/numactl for numa support in rocksdb 在 RocksDB 中使用 sys-process/numactl 支持 numa
8066 sys-cluster ceph parquet Support for s3 select on parquet objects 支持对镶木地板对象进行 s3 选择
8067 sys-cluster ceph pmdk Enable PMDK libraries 启用 PMDK 库
8068 sys-cluster ceph rabbitmq Use rabbitmq-c to build rgw amqp push endpoint 使用rabbitmq-c搭建rgw amqp推送端点
8069 sys-cluster ceph radosgw Add radosgw support 添加 radosgw 支持
8070 sys-cluster ceph rbd-rwl Enable librbd persistent write back cache 启用 librbd 持久回写缓存
8071 sys-cluster ceph rbd-ssd Enable librbd persistent write back cache for SSDs 为 SSD 启用 librbd 持久回写缓存
8072 sys-cluster ceph rdma Enable RDMA support via sys-cluster/rdma-core 通过 sys-cluster/rdma-core 启用 RDMA 支持
8073 sys-cluster ceph rgw-lua Rados Gateway's support for dynamically adding lua packagess Rados Gateway 对动态添加 lua 包的支持
8074 sys-cluster ceph spdk Enable SPDK user-mode storage driver toolkit 启用 SPDK 用户模式存储驱动程序工具包
8075 sys-cluster ceph system-boost Use system dev-libs/boost instead of the bundled one 使用系统 dev-libs/boost 而不是捆绑的
8076 sys-cluster ceph uring Build with support for sys-libs/liburing 构建支持 sys-libs/liburing
8077 sys-cluster ceph xfs Add xfs support 添加 xfs 支持
8078 sys-cluster ceph zbd Enable sys-block/libzbd bluestore backend 启用 sys-block/libzbd bluestore 后端
8079 sys-cluster ceph zfs Add zfs support 添加 zfs 支持
8080 sys-cluster charliecloud ch-image Build the internal builder ch-image (previously named ch-grow) 构建内部构建器 ch-image(以前称为 ch-grow)
8081 sys-cluster charm ampi Build implementation of MPI on top of Charm++ 在 Charm++ 之上构建 MPI 的实现
8082 sys-cluster charm charmdebug Enable the charm debugger 启用魅力调试器
8083 sys-cluster charm charmproduction Optimize performance of Charm++ runtime 优化 Charm++ 运行时的性能
8084 sys-cluster charm charmtracing Enable tracing support in Charm++ 在 Charm++ 中启用跟踪支持
8085 sys-cluster charm cmkopt Enable CMK optimisation 启用 CMK 优化
8086 sys-cluster charm mlogft Compile with Charm++ message logging fault tolerance support 使用 Charm++ 消息日志记录容错支持进行编译
8087 sys-cluster charm numa Support memory affinity with NUMA 支持与 NUMA 的内存关联
8088 sys-cluster charm syncft Compile with Charm++ fault tolerance support 使用 Charm++ 容错支持进行编译
8089 sys-cluster charm tcp Use TCP (instead of UPD) for socket communication 使用 TCP(而不是 UPD)进行套接字通信
8090 sys-cluster cluster-glue ipmilan Install the ipmilan plugin (requires sys-libs/openipmi) 安装 ipmilan 插件(需要 sys-libs/openipmi)
8091 sys-cluster cluster-glue libnet Force use of net-libs/libnet 强制使用 net-libs/libnet
8092 sys-cluster corosync augeas Enable augeas support 启用 augeas 支持
8093 sys-cluster corosync watchdog Enable watchdog support 启用看门狗支持
8094 sys-cluster drbd-utils pacemaker Enable Pacemaker integration 启用 Pacemaker 集成
8095 sys-cluster drbd-utils xen Enable Xen integration 启用 Xen 集成
8096 sys-cluster galera garbd Install Galera Arbitrator - a stateless daemon which acts as a lightweight group member 安装 Galera Arbitrator - 一个充当轻量级组成员的无状态守护程序
8097 sys-cluster glusterfs fuse Add FUSE mount helper 添加 FUSE 安装助手
8098 sys-cluster glusterfs georeplication Enable support for georeplication (requires dev-lang/python) 启用对 georeplication 的支持(需要 dev-lang/python)
8099 sys-cluster glusterfs ipv6 Use IPv6 by default, requires libtirpc 默认使用 IPv6,需要 libtirpc
8100 sys-cluster glusterfs libtirpc Build against net-libs/libtirpc for RPC support 针对 net-libs/libtirpc 构建以获得 RPC 支持
8101 sys-cluster glusterfs rsyslog Install configuration snippet for app-admin/rsyslog 为 app-admin/rsyslog 安装配置片段
8102 sys-cluster hpx papi Use dev-libs/papi for NaCl 对 NaCl 使用 dev-libs/papi
8103 sys-cluster hpx perftools Use dev-util/google-perftools for memory allocation 使用 dev-util/google-perftools 进行内存分配
8104 sys-cluster hpx tbb Use dev-cpp/tbb for memory allocation 使用 dev-cpp/tbb 进行内存分配
8105 sys-cluster k3s kubectl-symlink Install a kubectl symlink that points to k3s. 安装指向 k3s 的 kubectl 符号链接。
8106 sys-cluster k3s rootless Enables dependencies for running in rootless mode. 启用在无根模式下运行的依赖项。
8107 sys-cluster keepalived bfd compile with support for Bidirectional Forwarding Detection (BFD). 编译时支持双向转发检测 (BFD)。
8108 sys-cluster keepalived json compile with signal to dump configuration and stats as JSON. 使用信号编译以将配置和统计信息转储为 JSON。
8109 sys-cluster keepalived regex compile with support for regex in health checks 在运行状况检查中支持正则表达式进行编译
8110 sys-cluster kronosnet lzo2 Add support for lzo2 compression 添加对 lzo2 压缩的支持
8111 sys-cluster kronosnet nss Add support for tls via nss 通过 nss 添加对 tls 的支持
8112 sys-cluster kronosnet openssl Add support for tls via openssl 通过 openssl 添加对 tls 的支持
8113 sys-cluster legion gasnet Enable GASNet lib support 启用 GASNet 库支持
8114 sys-cluster legion hwloc Enable HWLoc lib support 启用 HWLoc 库支持
8115 sys-cluster lmod auto-swap enable auto swapping of compiler 启用编译器的自动交换
8116 sys-cluster lmod cache enable caching of modules 启用模块缓存
8117 sys-cluster lmod duplicate-paths allow duplicate entries in path 允许路径中的重复条目
8118 sys-cluster minikube libvirt Build plugin for kvm 为 kvm 构建插件
8119 sys-cluster mpich mpi-threads Enable MPI_THREAD_MULTIPLE 启用 MPI_THREAD_MULTIPLE
8120 sys-cluster mpich romio Build the ROMIO MPI-IO component 构建 ROMIO MPI-IO 组件
8121 sys-cluster nomad ui do not embed the ui in the binary 不要将 ui 嵌入到二进制文件中
8122 sys-cluster openmpi cma Enable the CMA (Cross Memory Attach) MCA 启用 CMA(跨内存连接)MCA
8123 sys-cluster openmpi cuda Add GPU direct support 添加 GPU 直接支持
8124 sys-cluster openmpi libompitrace Enable support for contributed package libompitrace 启用对贡献包 libompitrace 的支持
8125 sys-cluster openmpi peruse Enable PERUSE interface 启用 PERUSE 界面
8126 sys-cluster openmpi romio Build the ROMIO MPI-IO component 构建 ROMIO MPI-IO 组件
8127 sys-cluster pacemaker smtp Enable SMTP support via net-libs/libesmtp 通过 net-libs/libesmtp 启用 SMTP 支持
8128 sys-cluster pmix munge Enable authentication via munge 通过 munge 启用身份验证
8129 sys-cluster pmix pmi Build PMI1 and PMI2 interface 构建PMI1和PMI2接口
8130 sys-cluster rdma-core neigh Enable iwpmd support 启用 iwpmd 支持
8131 sys-cluster rdma-core python Enable pyverbs support 启用 pyverbs 支持
8132 sys-cluster rdma-core valgrind Enable valgrind notations 启用 valgrind 符号
8133 sys-cluster resource-agents libnet Force use of net-libs/libnet 强制使用 net-libs/libnet
8134 sys-cluster resource-agents rgmanager Install resources for rgmanager 为 rgmanager 安装资源
8135 sys-cluster singularity network Install network plug-ins 安装网络插件
8136 sys-cluster singularity suid Install SUID helper binary 安装 SUID 助手二进制文件
8137 sys-cluster slurm html Build html documentation 构建html文档
8138 sys-cluster slurm ipmi Build support for collecting some ipmi stats 为收集一些 ipmi 统计信息构建支持
8139 sys-cluster slurm json Add support for json-persing via json-c 通过 json-c 添加对 json-persing 的支持
8140 sys-cluster slurm multiple-slurmd Allow multiple slurmd to run 允许多个 slurmd 运行
8141 sys-cluster slurm munge Enable authentication via munge 通过 munge 启用身份验证
8142 sys-cluster slurm netloc Add support for netloc (amd64 only) 添加对 netloc 的支持(仅限 amd64)
8143 sys-cluster slurm numa Add NUMA awareness 添加 NUMA 意识
8144 sys-cluster slurm ofed Add Infiniband support via ofed 通过 ofed 添加 Infiniband 支持
8145 sys-cluster slurm slurmdbd Install SQL server for slurmdbd 为 slurmdbd 安装 SQL 服务器
8146 sys-cluster slurm torque Enable perl scripts that emulates pbs (qstat, qsub etc.) 启用模拟 pbs(qstat、qsub 等)的 perl 脚本
8147 sys-cluster slurm ucx Enable Unified Communication X library support 启用统一通信 X 库支持
8148 sys-cluster spark-bin scala211 Install Spark JARs pre-built with Scala 2.11. 安装使用 Scala 2.11 预构建的 Spark JAR。
8149 sys-cluster spark-bin scala212 Install Spark JARs pre-built with Scala 2.12. 安装使用 Scala 2.12 预构建的 Spark JAR。
8150 sys-cluster torque autorun Enable the AUTORUN_JOBS codebase 启用 AUTORUN_JOBS 代码库
8151 sys-cluster torque cgroups Enable pbs_mom to use linux cgroups to isolate jobs 启用 pbs_mom 以使用 linux cgroups 隔离作业
8152 sys-cluster torque cpusets Enable pbs_mom to utilize linux cpusets if available 如果可用,启用 pbs_mom 以利用 linux cpuset
8153 sys-cluster torque munge Enable authentication via munge 通过 munge 启用身份验证
8154 sys-cluster torque nvidia Enable management of Nvidia GPUs 启用对 Nvidia GPU 的管理
8155 sys-cluster torque quickcommit Enable the QUICKCOMMIT codebase 启用 QUICKCOMMIT 代码库
8156 sys-cluster torque server Enable compilation of pbs_server and pbs_sched 启用 pbs_server 和 pbs_sched 的编译
8157 sys-cluster ucx numa Add support for numa memory allocation 添加对 numa 内存分配的支持
8158 sys-cluster vzctl ploop Add support for ploop devices via sys-cluster/ploop 通过 sys-cluster/ploop 添加对 ploop 设备的支持
8159 sys-cluster vzctl vzmigrate Add support for container migration 添加对容器迁移的支持
8160 sys-devel autogen libopts install the libopts tarball (a few packages want this for developing) 安装 libopts tarball(一些软件包需要这个来开发)
8161 sys-devel binutils cet Enable Intel Control-flow Enforcement Technology. 启用英特尔控制流强制技术。
8162 sys-devel binutils default-gold Set ld to point to ld.gold instead of ld.bfd 设置 ld 指向 ld.gold 而不是 ld.bfd
8163 sys-devel binutils gold Build ld.gold linker 构建 ld.gold 链接器
8164 sys-devel binutils multitarget Adds support to binutils for cross compiling (does not work with gas) 添加对 binutils 交叉编译的支持(不适用于 gas)
8165 sys-devel binutils pgo Build binutils with Profile Guided Optimization (PGO) and LTO 使用 Profile Guided Optimization (PGO) 和 LTO 构建 binutils
8166 sys-devel binutils plugins Enable plugin support in tools 在工具中启用插件支持
8167 sys-devel binutils-apple classic Use nm, otool, etc. from this ebuild instead of llvm-based tools 使用此 ebuild 中的 nm、otool 等,而不是基于 llvm 的工具
8168 sys-devel binutils-apple lto Add support for Link-Time Optimization with LLVM 使用 LLVM 添加对链接时间优化的支持
8169 sys-devel binutils-config native-symlinks Install native symlinks like 'as' or 'ar' to /usr/bin. Otherwise keep only ${CTARGET}-as and friends. 将本机符号链接(如“as”或“ar”)安装到 /usr/bin。否则只保留 ${CTARGET}-as 和朋友。
8170 sys-devel binutils-hppa64 cet Enable Intel Control-flow Enforcement Technology. 启用英特尔控制流强制技术。
8171 sys-devel binutils-hppa64 default-gold Set ld to point to ld.gold instead of ld.bfd 设置 ld 指向 ld.gold 而不是 ld.bfd
8172 sys-devel binutils-hppa64 gold Build ld.gold linker 构建 ld.gold 链接器
8173 sys-devel binutils-hppa64 multitarget Adds support to binutils for cross compiling (does not work with gas) 添加对 binutils 交叉编译的支持(不适用于 gas)
8174 sys-devel binutils-hppa64 pgo Build binutils with Profile Guided Optimization (PGO) and LTO 使用 Profile Guided Optimization (PGO) 和 LTO 构建 binutils
8175 sys-devel binutils-hppa64 plugins Enable plugin support in tools 在工具中启用插件支持
8176 sys-devel clang default-compiler-rt Use compiler-rt instead of libgcc as the default rtlib for clang 使用 compiler-rt 而不是 libgcc 作为 clang 的默认 rtlib
8177 sys-devel clang default-libcxx Use libc++ instead of libstdc++ as the default stdlib for clang 使用 libc++ 而不是 libstdc++ 作为 clang 的默认标准库
8178 sys-devel clang default-lld Use lld as the default linker for clang 使用 lld 作为 clang 的默认链接器
8179 sys-devel clang static-analyzer Install the Clang static analyzer 安装 Clang 静态分析器
8180 sys-devel clang-runtime compiler-rt Install sys-libs/compiler-rt for -rtlib=compiler-rt 为 -rtlib=compiler-rt 安装 sys-libs/compiler-rt
8181 sys-devel clang-runtime libcxx Install sys-libs/libcxx for -stdlib=libc++ 为 -stdlib=libc++ 安装 sys-libs/libcxx
8182 sys-devel clang-runtime openmp Install sys-libs/libomp for -fopenmp support 安装 sys-libs/libomp 以获得 -fopenmp 支持
8183 sys-devel clang-runtime sanitize Enable compiler-rt sanitizer (-fsanitize*) support 启用 compiler-rt sanitizer (-fsanitize*) 支持
8184 sys-devel distcc gssapi Enable support for net-libs/libgssglue 启用对 net-libs/libgssglue 的支持
8185 sys-devel gcc ada Build the ADA language (GNAT) frontend 构建 ADA 语言 (GNAT) 前端
8186 sys-devel gcc cet Enable support for Intel Control Flow Enforcement Technology (CET) 启用对英特尔控制流强制技术 (CET) 的支持
8187 sys-devel gcc d Enable support for the D programming language 启用对 D 编程语言的支持
8188 sys-devel gcc fixed-point Enable fixed-point arithmetic support for MIPS targets in gcc (Warning: significantly increases compile time!) 在 gcc 中为 MIPS 目标启用定点算术支持(警告:显着增加编译时间!)
8189 sys-devel gcc go Build the GCC Go language frontend. 构建 GCC Go 语言前端。
8190 sys-devel gcc graphite Add support for the framework for loop optimizations based on a polyhedral intermediate representation 添加对基于多面体中间表示的循环优化框架的支持
8191 sys-devel gcc jit Enable libgccjit so other applications can embed gcc for Just-In-Time compilation. This will slow down the compiler a bit as it forces all of the toolchain to be shared libs. 启用 libgccjit 以便其他应用程序可以嵌入 gcc 以进行即时编译。这会稍微减慢编译器的速度,因为它会强制所有工具链都是共享库。
8192 sys-devel gcc libssp Build SSP support into a dedicated library rather than use the code in the C library (DO NOT ENABLE THIS IF YOU DON'T KNOW WHAT IT DOES) 将 SSP 支持构建到专用库中,而不是使用 C 库中的代码(如果您不知道它的作用,请不要启用它)
8193 sys-devel gcc lto Build using Link Time Optimizations (LTO) 使用链接时间优化 (LTO) 构建
8194 sys-devel gcc mpx Enable support for Intel Memory Protection Extensions (MPX) 启用对英特尔内存保护扩展 (MPX) 的支持
8195 sys-devel gcc nptl Enable support for Native POSIX Threads Library, the new threading module (requires linux-2.6 or better usually) 启用对 Native POSIX 线程库的支持,新的线程模块(通常需要 linux-2.6 或更高版本)
8196 sys-devel gcc objc Build support for the Objective C code language 构建对 Objective C 代码语言的支持
8197 sys-devel gcc objc++ Build support for the Objective C++ language 构建对 Objective C++ 语言的支持
8198 sys-devel gcc objc-gc Build support for the Objective C code language Garbage Collector 构建对 Objective C 代码语言垃圾收集器的支持
8199 sys-devel gcc pgo Build GCC using Profile Guided Optimization (PGO) 使用配置文件引导优化 (PGO) 构建 GCC
8200 sys-devel gcc sanitize Build support for various sanitizer functions (ASAN/TSAN/etc...) 构建对各种消毒剂功能(ASAN/TSAN/etc...)的支持
8201 sys-devel gcc ssp Build packages with stack smashing protector on by default 默认情况下使用堆栈粉碎保护器构建包
8202 sys-devel gcc systemtap enable systemtap static probe points 启用 systemtap 静态探测点
8203 sys-devel gcc valgrind Enable valgrind annotations for gcc internals (useful for gcc debugging). 为 gcc 内部启用 valgrind 注释(对 gcc 调试有用)。
8204 sys-devel gcc vtv Build support for virtual table verification (a C++ hardening feature) 构建对虚拟表验证的支持(C++ 强化功能)
8205 sys-devel gcc-apple bootstrap !DO NOT SET THIS FLAG YOURSELF! avoids need for autoconf during bootstrap stage2 !不要自己设置这个标志!避免在引导阶段 2 期间需要 autoconf
8206 sys-devel gcc-apple objc Build support for the Objective C code language 构建对 Objective C 代码语言的支持
8207 sys-devel gcc-apple objc++ Build support for the Objective C++ language 构建对 Objective C++ 语言的支持
8208 sys-devel gcc-config cc-wrappers Install and manage 'cc' and 'f77' wrappers in /usr/bin. Otherwise ignore them. 在 /usr/bin 中安装和管理 'cc' 和 'f77' 包装器。否则忽略它们。
8209 sys-devel gcc-config native-symlinks Install native symlinks like 'gcc' or 'g++' to /usr/bin. Otherwise keep only ${CTARGET}-gcc and friends. 将本机符号链接(如“gcc”或“g++”)安装到 /usr/bin。否则只保留 ${CTARGET}-gcc 和朋友。
8210 sys-devel gdb cet Enable Intel Control-flow Enforcement Technology. 启用英特尔控制流强制技术。
8211 sys-devel gdb lzma Support lzma compression in ELF debug info 在 ELF 调试信息中支持 lzma 压缩
8212 sys-devel gdb multitarget Support all known targets in one gdb binary 在一个 gdb 二进制文件中支持所有已知目标
8213 sys-devel gdb python Enable support for the new internal scripting language, as well as extended pretty printers 启用对新的内部脚本语言以及扩展漂亮打印机的支持
8214 sys-devel gdb server Install the "gdbserver" program (useful for embedded/remote targets) 安装“gdbserver”程序(对嵌入式/远程目标有用)
8215 sys-devel gdb source-highlight Enable listing highlighting via dev-util/source-highlight 通过 dev-util/source-highlight 启用列表突出显示
8216 sys-devel gdb xml Support parsing XML data files needed (at least) for cpu features, memory maps, and syscall tracing 支持解析(至少)cpu 特性、内存映射和系统调用跟踪所需的 XML 数据文件
8217 sys-devel gdb xxhash Use dev-libs/xxhash to speed up internal hashing. 使用 dev-libs/xxhash 来加速内部散列。
8218 sys-devel gettext cvs When running `autopoint`, use cvs to store the internal development files; this requires cvs at runtime, but will be faster/smaller than raw archives 运行 `autopoint` 时,使用 cvs 存储内部开发文件;这需要在运行时使用 cvs,但会比原始存档更快/更小
8219 sys-devel gettext git When running `autopoint`, use git to store the internal development files; this requires git at runtime, but will be faster/smaller than raw archives 运行`autopoint`时,使用git存储内部开发文件;这需要在运行时使用 git,但会比原始档案更快/更小
8220 sys-devel llvm binutils-plugin Build the binutils plugin 构建 binutils 插件
8221 sys-devel llvm doc Build and install the HTML documentation and regenerate the man pages 构建和安装 HTML 文档并重新生成手册页
8222 sys-devel llvm exegesis Enable performance counter support for llvm-exegesis tool that can be used to measure host machine instruction characteristics 为可用于测量主机指令特征的 llvm-exegesis 工具启用性能计数器支持
8223 sys-devel llvm gold Build the binutils plugin 构建 binutils 插件
8224 sys-devel llvm ncurses Support querying terminal properties using ncurses' terminfo 支持使用 ncurses 的 terminfo 查询终端属性
8225 sys-devel llvm xar Support dumping LLVM bitcode sections in Mach-O files (uses app-arch/xar) 支持在 Mach-O 文件中转储 LLVM 位码部分(使用 app-arch/xar)
8226 sys-devel llvm z3 Enable support for sci-mathematics/z3 constraint solver 启用对 sci-mathematics/z3 约束求解器的支持
8227 sys-devel llvm-roc runtime Builds the compiler runtime libraries. 构建编译器运行时库。
8228 sys-devel parity vc10_0 Enable support for Visual Studio 2010 启用对 Visual Studio 2010 的支持
8229 sys-devel parity vc11_0 Enable support for Visual Studio 2012 启用对 Visual Studio 2012 的支持
8230 sys-devel parity vc12_0 Enable support for Visual Studio 2013 启用对 Visual Studio 2013 的支持
8231 sys-devel parity vc14_0 Enable support for Visual Studio 2015 启用对 Visual Studio 2015 的支持
8232 sys-devel parity vc15 Enable support for Visual Studio 2017 启用对 Visual Studio 2017 的支持
8233 sys-devel parity vc16 Enable support for Visual Studio 2019 启用对 Visual Studio 2019 的支持
8234 sys-devel parity vc8_0 Enable support for Visual Studio 2005 启用对 Visual Studio 2005 的支持
8235 sys-devel parity vc9_0 Enable support for Visual Studio 2008 启用对 Visual Studio 2008 的支持
8236 sys-devel parity vcx64 Enable support for 64bit Visual Studio compilers 启用对 64 位 Visual Studio 编译器的支持
8237 sys-devel parity vcx86 Enable support for 32bit Visual Studio compilers 启用对 32 位 Visual Studio 编译器的支持
8238 sys-devel sparse gtk Build the test-inspect utility (requires x11-libs/gtk+:3) 构建测试检查实用程序(需要 x11-libs/gtk+:3)
8239 sys-devel sparse llvm Build the sparse-llvm utility 构建 sparse-llvm 实用程序
8240 sys-devel sparse xml Build the c2xml utility (requires dev-libs/libxml2) 构建 c2xml 实用程序(需要 dev-libs/libxml2)
8241 sys-fabric mstflint adb-generic-tools Enable compiling the following tools: mstreg and mstlink 启用编译以下工具:mstreg 和 mstlink
8242 sys-fabric mstflint inband Enable firmware updates for Mellanox SwitchX and ConnectIB devices 为 Mellanox SwitchX 和 ConnectIB 设备启用固件更新
8243 sys-fabric opensm tools Install ssld extra tool 安装 ssld 额外工具
8244 sys-firmware edk2-ovmf binary Use pre-built binaries 使用预构建的二进制文件
8245 sys-firmware intel-microcode hostonly only install ucode(s) supported by currently available (=online) processor(s) 仅安装当前可用(=在线)处理器支持的 ucode
8246 sys-firmware intel-microcode initramfs install a small initramfs for use with CONFIG_MICROCODE_EARLY 安装一个小的 initramfs 用于 CONFIG_MICROCODE_EARLY
8247 sys-firmware intel-microcode split-ucode install the split binary ucode files (used by the kernel directly) 安装分割的二进制ucode文件(内核直接使用)
8248 sys-firmware intel-microcode vanilla install only microcode updates from Intel's official microcode tarball 仅安装来自英特尔官方微码压缩包的微码更新
8249 sys-firmware ipxe binary Use pre-built binaries 使用预构建的二进制文件
8250 sys-firmware ipxe efi Build an EFI program for using PXE 构建使用 PXE 的 EFI 程序
8251 sys-firmware ipxe iso Build a bootable ISO for using PXE 为使用 PXE 构建可引导 ISO
8252 sys-firmware ipxe lkrn Build a linux kernel bootable file for using with grub/etc... 构建一个用于 grub/etc 的 linux 内核可引导文件...
8253 sys-firmware ipxe qemu Build the required PXE ROM images for app-emulation/qemu 为 app-emulation/qemu 构建所需的 PXE ROM 映像
8254 sys-firmware ipxe undi Build a Universal Network Device Interface driver chainloading your existing PXE NIC into iPXE 构建通用网络设备接口驱动程序,将现有的 PXE NIC 链式加载到 iPXE
8255 sys-firmware ipxe usb Build a bootable USB image for using PXE 构建用于使用 PXE 的可引导 USB 映像
8256 sys-firmware ipxe vmware Build the PXE ROM images that VMWare uses 构建 VMWare 使用的 PXE ROM 映像
8257 sys-firmware seabios binary Use official upstream pre-built binaries 使用官方上游预建二进制文件
8258 sys-firmware seabios seavgabios Include SeaVGABIOS binaries (replacement for vgabios) 包括 SeaVGABIOS 二进制文件(替代 vgabios)
8259 sys-firmware sgabios binary Use pre-built binaries 使用预构建的二进制文件
8260 sys-firmware sigrok-firmware-fx2lafw binary Use official upstream pre-built binaries 使用官方上游预建二进制文件
8261 sys-firmware vgabios binary Use official upstream pre-built binaries (only default and cirrus images) 使用官方上游预构建二进制文件(仅默认和卷云图像)
8262 sys-fs android-file-transfer-linux fuse Add FUSE mount helper 添加 FUSE 安装助手
8263 sys-fs android-file-transfer-linux zune Enable support for Microsoft Zune 启用对 Microsoft Zune 的支持
8264 sys-fs avfs lzip Enable app-arch/lzip support via app-arch/lzlib 通过 app-arch/lzlib 启用 app-arch/lzip 支持
8265 sys-fs avfs webdav Allow mounting WebDAV shares via net-libs/neon 允许通过 net-libs/neon 挂载 WebDAV 共享
8266 sys-fs bees tools Build extra tools useful for debugging (fiemap, fiewalk) 构建对调试有用的额外工具(fiemap、fiewalk)
8267 sys-fs btrfs-progs convert Build ext2 conversion utility (btrfs-convert) 构建 ext2 转换实用程序 (btrfs-convert)
8268 sys-fs btrfs-progs reiserfs Enable reiserfs support in btrfs-convert tool. 在 btrfs-convert 工具中启用 reiserfs 支持。
8269 sys-fs btrfs-progs static Build static binaries in addition to the dynamic ones 除了动态二进制文件之外,还构建静态二进制文件
8270 sys-fs btrfsmaintenance systemd Enable systemd services and timers instead of cron timers 启用 systemd 服务和计时器而不是 cron 计时器
8271 sys-fs cryptmount argv0switch Default action given by progname. progname 给出的默认操作。
8272 sys-fs cryptmount cswap Enable support for encrypted swap. 启用对加密交换的支持。
8273 sys-fs cryptmount fsck Check filesystems before mounting. 在挂载之前检查文件系统。
8274 sys-fs cryptmount gcrypt Support libgcrypt-encryption of keys. 支持密钥的 libgcrypt 加密。
8275 sys-fs cryptmount largefile Enable support for large files. 启用对大文件的支持。
8276 sys-fs cryptmount luks Enable key management via LUKS 通过 LUKS 启用密钥管理
8277 sys-fs cryptmount mount Use systemd mount/umount for operations. 使用 systemd mount/umount 进行操作。
8278 sys-fs cryptmount openssl Support openssl-encryption of keys. 支持密钥的 openssl 加密。
8279 sys-fs cryptsetup argon2 Enable password hashing algorithm from app-crypt/argon2 从 app-crypt/argon2 启用密码哈希算法
8280 sys-fs cryptsetup fips Enable FIPS mode restrictions 启用 FIPS 模式限制
8281 sys-fs cryptsetup gcrypt Use dev-libs/libgcrypt crypto backend 使用 dev-libs/libgcrypt 加密后端
8282 sys-fs cryptsetup kernel Use kernel crypto backend (mainly for embedded systems) 使用内核加密后端(主要用于嵌入式系统)
8283 sys-fs cryptsetup nettle Use dev-libs/nettle crypto backend 使用 dev-libs/nettle 加密后端
8284 sys-fs cryptsetup openssl Use dev-libs/openssl crypto backend 使用 dev-libs/openssl 加密后端
8285 sys-fs cryptsetup pwquality Use dev-libs/libpwquality for password quality checking 使用 dev-libs/libpwquality 进行密码质量检查
8286 sys-fs cryptsetup reencrypt Build cryptsetup-reencrypt 构建 cryptsetup-reencrypt
8287 sys-fs cryptsetup ssh Build cryptsetup-ssh for experimental support of token via SSH-server 构建 cryptsetup-ssh 以通过 SSH-server 对令牌进行实验性支持
8288 sys-fs cryptsetup urandom Use /dev/urandom instead of /dev/random 使用 /dev/urandom 而不是 /dev/random
8289 sys-fs dmraid intel_led Enable Intel LED support 启用英特尔 LED 支持
8290 sys-fs dmraid led Enable LED support 启用 LED 支持
8291 sys-fs dmraid mini Create a minimal binary suitable for early boot environments 创建适用于早期启动环境的最小二进制文件
8292 sys-fs dosfstools compat Install symlinks for legacy names of the tools 为工具的旧名称安装符号链接
8293 sys-fs e2fsprogs cron Install e2scrub_all cron script 安装 e2scrub_all cron 脚本
8294 sys-fs e2fsprogs fuse Build fuse2fs, a FUSE file system client for ext2/ext3/ext4 file systems 构建 fuse2fs,一个用于 ext2/ext3/ext4 文件系统的 FUSE 文件系统客户端
8295 sys-fs e2fsprogs lto Build with link time optimization (LTO) 使用链接时间优化 (LTO) 构建
8296 sys-fs e2fsprogs tools Build extfs tools (mke2fs, e2fsck, tune2fs, etc.) 构建 extfs 工具(mke2fs、e2fsck、tune2fs 等)
8297 sys-fs ecryptfs-utils gpg Enable app-crypt/gnupg key module 启用 app-crypt/gnupg 密钥模块
8298 sys-fs ecryptfs-utils openssl Enable dev-libs/openssl key module 启用 dev-libs/openssl 关键模块
8299 sys-fs ecryptfs-utils pkcs11 Enable PKCS#11 (Smartcards) key module 启用 PKCS#11(智能卡)密钥模块
8300 sys-fs ecryptfs-utils tpm Enable support for Trusted Platform Module (TPM) using app-crypt/trousers 使用 app-crypt/trousers 启用对可信平台模块 (TPM) 的支持
8301 sys-fs erofs-utils fuse Builds erofsfuse (requires sys-fs/fuse). 构建 erofsfuse(需要 sys-fs/fuse)。
8302 sys-fs erofs-utils uuid Enables UUID support via sys-apps/util-linux. 通过 sys-apps/util-linux 启用 UUID 支持。
8303 sys-fs eudev kmod enable module loading through libkmod 通过 libkmod 启用模块加载
8304 sys-fs eudev rule-generator install legacy rule generator rules and support scripts - note that the functionality within was dropped from sys-fs/udev as it is not stable in all cases; use at your own risk 安装旧版规则生成器规则和支持脚本 - 请注意,其中的功能已从 sys-fs/udev 中删除,因为它在所有情况下都不稳定;使用风险自负
8305 sys-fs ext4magic expert-mode Builds ext4magic with expert mode. Highly useful in recovering data from a corrupted filesystem 使用专家模式构建 ext4magic。从损坏的文件系统中恢复数据非常有用
8306 sys-fs ext4magic file-attr Enable the recovery of file attributes (append, immutable, nodump etc) 启用文件属性的恢复(附加、不可变、nodump 等)
8307 sys-fs lessfs filelog Enable the ability to log to a file instead of syslog 启用记录到文件而不是 syslog 的功能
8308 sys-fs lessfs memtrace Enable leefs to create a report regarding the memory allocation. This feature should be used for debugging purposes to avoid performance degradation 让叶创建关于内存分配的报告。此功能应用于调试目的以避免性能下降
8309 sys-fs loop-aes extra-ciphers Enable extra ciphers 启用额外密码
8310 sys-fs loop-aes keyscrub Protects the encryption key in memory but takes more cpu resources 保护内存中的加密密钥,但占用更多 CPU 资源
8311 sys-fs lvm2 device-mapper-only Build only device-mapper and not the rest of LVM2 (UNSUPPORTED) 仅构建设备映射器,而不构建 LVM2 的其余部分(不支持)
8312 sys-fs lvm2 lvm2create-initrd Install lvm2create_initrd script and pull in sys-apps/makedev for the /sbin/MAKEDEV command 安装 lvm2create_initrd 脚本并为 /sbin/MAKEDEV 命令拉入 sys-apps/makedev
8313 sys-fs lvm2 sanlock Enable lvmlockd with support for sanlock 启用 lvmlockd 并支持 sanlock
8314 sys-fs lvm2 thin Support for thin volumes 支持精简卷
8315 sys-fs mtpfs mad Enable handling of MP3's metadata 启用 MP3 元数据的处理
8316 sys-fs multipath-tools rbd Enable Rados block device support via sys-cluster/ceph 通过 sys-cluster/ceph 启用 Rados 块设备支持
8317 sys-fs ntfs3g fuse Enable ntfs-3g FUSE driver 启用 ntfs-3g FUSE 驱动程序
8318 sys-fs ntfs3g mount-ntfs Install mount.ntfs symlink 安装 mount.ntfs 符号链接
8319 sys-fs ntfs3g ntfsdecrypt Build and install the ntfsdecrypt application. 构建并安装 ntfsdecrypt 应用程序。
8320 sys-fs ntfs3g ntfsprogs Enable ntfsprogs 启用 ntfsprogs
8321 sys-fs quota netlink Compile daemon receiving quota messages via netlink 编译通过netlink接收配额消息的守护进程
8322 sys-fs quota rpc Enable quota interaction via RPC 通过 RPC 启用配额交互
8323 sys-fs squashfs-tools-ng tools Build the gensquashfs, rdsquashfs, sqfs2tar, sqfsdiff, and tar2sqfs tools 构建 gensquashfs、rdsquashfs、sqfs2tar、sqfsdiff 和 tar2sqfs 工具
8324 sys-fs udev kmod Enable kernel module loading/unloading support using sys-apps/kmod 使用 sys-apps/kmod 启用内核模块加载/卸载支持
8325 sys-fs udisks daemon Build the system daemon, not just the client tool 构建系统守护进程,而不仅仅是客户端工具
8326 sys-fs udisks elogind Use sys-auth/elogind for session tracking 使用 sys-auth/elogind 进行会话跟踪
8327 sys-fs udisks lvm Add support for Logical Volume Management via sys-fs/lvm2. 通过 sys-fs/lvm2 添加对逻辑卷管理的支持。
8328 sys-fs udisks systemd Support sys-apps/systemd's logind 支持 sys-apps/systemd 的 logind
8329 sys-fs udisks vdo Enable Virtual Data Optimizer support. 启用虚拟数据优化器支持。
8330 sys-fs udisks zram Enable ZRAM support (requires sys-apps/systemd). 启用 ZRAM 支持(需要 sys-apps/systemd)。
8331 sys-fs zfs kernel-builtin Disable dependency on sys-fs/zfs-kmod under the assumption that ZFS is part of the kernel source tree 假设 ZFS 是内核源代码树的一部分,禁用对 sys-fs/zfs-kmod 的依赖
8332 sys-fs zfs minimal Don't install python scripts (arcstat, dbufstat etc) and avoid dependency on dev-lang/python 不要安装 python 脚本(arcstat、dbufstat 等)并避免依赖 dev-lang/python
8333 sys-fs zfs pam Install zfs_key pam module, for automatically loading zfs encryption keys for home datasets 安装 zfs_key pam 模块,用于自动加载家庭数据集的 zfs 加密密钥
8334 sys-fs zfs rootfs Enable dependencies required for booting off a pool containing a rootfs 启用启动包含 rootfs 的池所需的依赖项
8335 sys-fs zfs test-suite Install regression test suite 安装回归测试套件
8336 sys-fs zfs-auto-snapshot cron Install /etc/cron.* files 安装 /etc/cron.* 文件
8337 sys-fs zfs-auto-snapshot default-exclude Only take snapshots of datasets with com.sun:auto-snapshot=true property set 仅拍摄具有 com.sun:auto-snapshot=true 属性集的数据集的快照
8338 sys-fs zfs-kmod rootfs Pull dependencies and check kernel options required for root-on-zfs 拉取依赖项并检查 root-on-zfs 所需的内核选项
8339 sys-kernel genkernel firmware Prefer system firmware sys-kernel/linux-firmware over local copy. 首选系统固件 sys-kernel/linux-firmware 而非本地副本。
8340 sys-kernel gentoo-kernel hardened Use selection of hardening options recommended by Kernel Self Protection Project 使用内核自我保护项目推荐的强化选项选择
8341 sys-kernel gentoo-kernel initramfs Build initramfs along with the kernel. 与内核一起构建 initramfs。
8342 sys-kernel gentoo-kernel-bin initramfs Build initramfs along with the kernel. 与内核一起构建 initramfs。
8343 sys-kernel gentoo-sources experimental Apply experimental patches; for more information, see "https://wiki.gentoo.org/wiki/Project:Kernel/Experimental". 应用实验补丁;更多信息,请参见“https://wiki.gentoo.org/wiki/Project:Kernel/Experimental”。
8344 sys-kernel installkernel-gentoo grub Re-generate grub.cfg on each kernel installation 在每个内核安装上重新生成 grub.cfg
8345 sys-kernel kpatch contrib Enable contrib kpatch services files. 启用 contrib kpatch 服务文件。
8346 sys-kernel kpatch kmod Enable a kernel module (.ko file) which provides an interface for the patch modules to register new functions for replacement. 启用内核模块(.ko 文件),该模块为补丁模块注册新功能以进行替换提供接口。
8347 sys-kernel kpatch kpatch Enable a command-line tool which allows a user to manage a collection of patch modules. 启用允许用户管理补丁模块集合的命令行工具。
8348 sys-kernel kpatch kpatch-build Enable tools which convert a source diff patch to a patch module. 启用将源差异补丁转换为补丁模块的工具。
8349 sys-kernel linux-firmware initramfs Create and install initramfs for early microcode loading in /boot (only AMD for now) 创建并安装 initramfs 以在 /boot 中进行早期微码加载(目前仅 AMD)
8350 sys-kernel linux-firmware redistributable Install also non-free (but redistributable) firmware files 还安装非免费(但可再分发)固件文件
8351 sys-kernel linux-firmware savedconfig Allows individual selection of firmware files 允许单独选择固件文件
8352 sys-kernel linux-firmware unknown-license Install firmware files whose license is unknown 安装许可证未知的固件文件
8353 sys-kernel linux-headers experimental-loong Add experimental LoongArch patchset 添加实验性 LoongArch 补丁集
8354 sys-kernel mips-sources experimental Apply experimental (80xx) patches. 应用实验性 (80xx) 补丁。
8355 sys-kernel mips-sources ip27 Enables additional support for SGI Origin (IP27) 启用对 SGI Origin (IP27) 的额外支持
8356 sys-kernel mips-sources ip28 Enables additional support for SGI Indigo2 Impact R10000 (IP28) 启用对 SGI Indigo2 Impact R10000 (IP28) 的额外支持
8357 sys-kernel mips-sources ip30 Enables support for SGI Octane (IP30, 'Speedracer') 启用对 SGI Octane 的支持(IP30,“Speedracer”)
8358 sys-kernel rt-sources deblob Remove binary blobs from kernel sources to provide libre license compliance. 从内核源中删除二进制 blob 以提供自由许可证合规性。
8359 sys-kernel vanilla-kernel initramfs Build initramfs along with the kernel. 与内核一起构建 initramfs。
8360 sys-libs binutils-libs 64-bit-bfd Support 64-bit targets even on 32-bit hosts (is ignored on 64-bit hosts) 即使在 32 位主机上也支持 64 位目标(在 64 位主机上被忽略)
8361 sys-libs binutils-libs cet Enable Intel Control-flow Enforcement Technology. 启用英特尔控制流强制技术。
8362 sys-libs binutils-libs multitarget Enable all possible targets in libbfd 在 libbfd 中启用所有可能的目标
8363 sys-libs compiler-rt clang Force building using installed clang (rather than the default CC/CXX). 使用已安装的 clang(而不是默认的 CC/CXX)强制构建。
8364 sys-libs compiler-rt-sanitizers asan Build Address Sanitizer runtime. 构建 Address Sanitizer 运行时。
8365 sys-libs compiler-rt-sanitizers cfi Build Control Flow Integrity runtime. 构建控制流完整性运行时。
8366 sys-libs compiler-rt-sanitizers clang Force building using installed clang (rather than the default CC/CXX). 使用已安装的 clang(而不是默认的 CC/CXX)强制构建。
8367 sys-libs compiler-rt-sanitizers dfsan Build Data Flow Sanitizer runtime. 构建 Data Flow Sanitizer 运行时。
8368 sys-libs compiler-rt-sanitizers gwp-asan Build GWP-ASAN runtime. 构建 GWP-ASAN 运行时。
8369 sys-libs compiler-rt-sanitizers hwasan Build Hardware ASAN runtime. 构建硬件 ASAN 运行时。
8370 sys-libs compiler-rt-sanitizers libfuzzer Build fuzzing runtime. 构建模糊测试运行时。
8371 sys-libs compiler-rt-sanitizers lsan Build Leak Sanitizer runtime. 构建 Leak Sanitizer 运行时。
8372 sys-libs compiler-rt-sanitizers memprof Build memory profiler runtime. 构建内存分析器运行时。
8373 sys-libs compiler-rt-sanitizers msan Build Memory Sanitizer runtime. 构建 Memory Sanitizer 运行时。
8374 sys-libs compiler-rt-sanitizers orc Build ORC runtime. 构建 ORC 运行时。
8375 sys-libs compiler-rt-sanitizers profile Build profiling runtime. 构建分析运行时。
8376 sys-libs compiler-rt-sanitizers safestack Build SafeStack runtime. 构建 SafeStack 运行时。
8377 sys-libs compiler-rt-sanitizers scudo Build Scudo Hardened Allocator. 构建 Scudo 强化分配器。
8378 sys-libs compiler-rt-sanitizers shadowcallstack Build ShadowCallStack. 构建 ShadowCallStack。
8379 sys-libs compiler-rt-sanitizers tsan Build Thread Sanitizer runtime. 构建 Thread Sanitizer 运行时。
8380 sys-libs compiler-rt-sanitizers ubsan Build Undefined Behavior Sanitizer runtime. 构建未定义的行为清理程序运行时。
8381 sys-libs compiler-rt-sanitizers xray Build XRay runtime. 构建 XRay 运行时。
8382 sys-libs freeipmi nagios Install a nagios plugin to check sensors' status. 安装一个 nagios 插件来检查传感器的状态。
8383 sys-libs gdbm berkdb enable compatibility layer for UNIX-like dbm and ndbm interfaces 为类 UNIX 的 dbm 和 ndbm 接口启用兼容层
8384 sys-libs glibc cet Enable Intel Control-flow Enforcement Technology (needs binutils 2.29 and gcc 8) 启用 Intel 控制流强制技术(需要 binutils 2.29 和 gcc 8)
8385 sys-libs glibc clone3 Enable the new clone3 syscall within glibc. Can be disabled to allow compatibility with older Electron applications. 在 glibc 中启用新的 clone3 系统调用。可以禁用以允许与旧版 Electron 应用程序兼容。
8386 sys-libs glibc compile-locales build *all* locales in src_install; this is generally meant for stage building only as it ignores /etc/locale.gen file and can be pretty slow 在 src_install 中构建 *all* 语言环境;这通常仅用于舞台构建,因为它忽略 /etc/locale.gen 文件并且可能非常慢
8387 sys-libs glibc crypt build and install libcrypt and crypt.h 构建和安装 libcrypt 和 crypt.h
8388 sys-libs glibc debug When USE=hardened, allow fortify/stack violations to dump core (SIGABRT) and not kill self (SIGKILL) 当 USE=hardened 时,允许强化/堆栈违规转储核心 (SIGABRT),而不是杀死自己 (SIGKILL)
8389 sys-libs glibc experimental-loong Add experimental LoongArch patchset 添加实验性 LoongArch 补丁集
8390 sys-libs glibc gd build memusage and memusagestat tools 构建 memusage 和 memusagestat 工具
8391 sys-libs glibc multiarch enable optimizations for multiple CPU architectures (detected at runtime) 启用对多个 CPU 架构的优化(在运行时检测到)
8392 sys-libs glibc multilib-bootstrap Provide prebuilt libgcc.a and crt files if missing. Only needed for ABI switch. 如果缺少,请提供预构建的 libgcc.a 和 crt 文件。仅 ABI 开关需要。
8393 sys-libs glibc nscd Build, and enable support for, the Name Service Cache Daemon 构建并启用对名称服务缓存守护进程的支持
8394 sys-libs glibc ssp protect stack of glibc internals 保护 glibc 内部堆栈
8395 sys-libs glibc stack-realign Realign the stack in the 32-bit build for compatibility with older binaries at some performance cost 重新对齐 32 位版本中的堆栈,以与较旧的二进制文件兼容,但会降低一些性能成本
8396 sys-libs glibc static-pie Enable static PIE support (runtime files for -static-pie gcc option). 启用静态 PIE 支持(-static-pie gcc 选项的运行时文件)。
8397 sys-libs glibc suid Make internal pt_chown helper setuid -- not needed if using Linux and have /dev/pts mounted with gid=5 设置内部 pt_chown 帮助程序 setuid -- 如果使用 Linux 并且使用 gid=5 挂载 /dev/pts 则不需要
8398 sys-libs glibc systemtap enable systemtap static probe points 启用 systemtap 静态探测点
8399 sys-libs ldb doc Builds documentation 构建文档
8400 sys-libs ldb ldap Enable LDAP support 启用 LDAP 支持
8401 sys-libs ldb lmdb Enable LMDB backend 启用 LMDB 后端
8402 sys-libs ldb python Enable Python support 启用 Python 支持
8403 sys-libs libblockdev bcache Enable block device cache support. 启用块设备缓存支持。
8404 sys-libs libblockdev cryptsetup Enable sys-fs/cryptsetup support 启用 sys-fs/cryptsetup 支持
8405 sys-libs libblockdev device-mapper Enable support for device-mapper from sys-fs/lvm2 从 sys-fs/lvm2 启用对设备映射器的支持
8406 sys-libs libblockdev dmraid Support for dmraid devices, also known as ATA-RAID, or Fake RAID. 支持 dmraid 设备,也称为 ATA-RAID 或 Fake RAID。
8407 sys-libs libblockdev escrow Support for building crypto plugin with escrow device support 支持构建具有托管设备支持的加密插件
8408 sys-libs libblockdev kbd Enable kernel block device support. 启用内核块设备支持。
8409 sys-libs libblockdev lvm Enable support for Logical Volume Management via sys-fs/lvm2. 通过 sys-fs/lvm2 启用对逻辑卷管理的支持。
8410 sys-libs libblockdev nvme Add nvme support via sys-libs/libnvme 通过 sys-libs/libnvme 添加 nvme 支持
8411 sys-libs libblockdev tools Build tools 构建工具
8412 sys-libs libblockdev vdo Enable Virtual Data Optimizer support. 启用虚拟数据优化器支持。
8413 sys-libs libcap tools Install captree, which requires dev-lang/go 安装 captree,需要 dev-lang/go
8414 sys-libs libcxx libcxxabi Build on top of sys-libs/libcxxabi instead of gcc's libsupc++ (avoids depending on gcc). 构建在 sys-libs/libcxxabi 之上,而不是 gcc 的 libsupc++(避免依赖于 gcc)。
8415 sys-libs libcxx libunwind Use libunwind instead of libgcc_s for stack unwinding, thus avoiding dependence on gcc. 使用 libunwind 而不是 libgcc_s 进行堆栈展开,从而避免对 gcc 的依赖。
8416 sys-libs libcxxabi libunwind Use libunwind instead of libgcc_s for stack unwinding, thus avoiding dependency on gcc 使用 libunwind 而不是 libgcc_s 进行堆栈展开,从而避免对 gcc 的依赖
8417 sys-libs libnvme json Support JSON output via dev-libs/json-c 支持通过 dev-libs/json-c 输出 JSON
8418 sys-libs libnvme uuid UUID support via sys-apps/util-linux 通过 sys-apps/util-linux 支持 UUID
8419 sys-libs libomp cuda Build CUDA offloading plugin (only with USE=offload) 构建 CUDA 卸载插件(仅使用 USE=offload)
8420 sys-libs libomp hwloc Enable CPU affinity support via hwloc 通过 hwloc 启用 CPU 亲和性支持
8421 sys-libs libomp offload Support offloading OpenMP using libomptarget 支持使用 libomptarget 卸载 OpenMP
8422 sys-libs libomp ompt Enable OpenMP Tools Interface support 启用 OpenMP 工具接口支持
8423 sys-libs libseccomp experimental-loong Add experimental LoongArch patchset 添加实验性 LoongArch 补丁集
8424 sys-libs libselinux pcre2 Use dev-libs/libpcre2 for fcontext regexes 将 dev-libs/libpcre2 用于 fcontext 正则表达式
8425 sys-libs libunwind debug-frame Adds support for DWARF .debug_frame section: Use the information from this section if available 添加对 DWARF .debug_frame 部分的支持:如果可用,请使用本部分中的信息
8426 sys-libs libunwind libatomic Use libatomic instead of builtin atomic operations 使用 libatomic 而不是内置的原子操作
8427 sys-libs libxcrypt compat Build with compatibility interfaces for other crypt implementations 为其他 crypt 实现构建兼容接口
8428 sys-libs libxcrypt system Install as system libcrypt.so rather than to an alternate directory (will collide with sys-libs/glibc's version) 安装为系统 libcrypt.so 而不是备用目录(将与 sys-libs/glibc 的版本冲突)
8429 sys-libs musl-nscd minimal Only installs the header files 只安装头文件
8430 sys-libs ncurses ada Add bindings for the ADA programming language 为 ADA 编程语言添加绑定
8431 sys-libs ncurses stack-realign Realign the stack in the 32-bit build for compatibility with older binaries at some performance cost. Avoids crashes in older 32-bit binaries. Only affects x86/32-bit multilib builds on amd64. 重新调整 32 位版本中的堆栈以与旧的二进制文件兼容,但会降低一些性能成本。避免在较旧的 32 位二进制文件中崩溃。仅影响基于 amd64 的 x86/32 位 multilib 构建。
8432 sys-libs ncurses tinfo Build curses library (libncurses) sep from the low-level terminfo library (libtinfo) -- usually needed only for binary packages -- but it is binary compatible in either mode 从低级 terminfo 库 (libtinfo) 构建 curses 库 (libncurses) - 通常只需要二进制包 - 但它在任一模式下都是二进制兼容的
8433 sys-libs ncurses trace Enable test trace() support in ncurses calls 在 ncurses 调用中启用测试 trace() 支持
8434 sys-libs ncurses-compat tinfo Build curses library (libncurses) sep from the low-level terminfo library (libtinfo) -- usually needed only for binary packages -- but it is binary compatible in either mode 从低级 terminfo 库 (libtinfo) 构建 curses 库 (libncurses) - 通常只需要二进制包 - 但它在任一模式下都是二进制兼容的
8435 sys-libs newlib nano Build additional newlib-nano library 构建额外的 newlib-nano 库
8436 sys-libs pam berkdb Build the pam_userdb module, that allows to authenticate users against a Berkeley DB file. Please note that enabling this USE flag will create a PAM module that links to the Berkeley DB (as provided by sys-libs/db) installed in /usr/lib and will thus not work for boot-critical services authentication. 构建 pam_userdb 模块,该模块允许根据 Berkeley DB 文件对用户进行身份验证。请注意,启用此 USE 标志将创建一个 PAM 模块,该模块链接到安装在 /usr/lib 中的 Berkeley DB(由 sys-libs/db 提供),因此不适用于启动关键服务身份验证。
8437 sys-libs readline utils Install rlfe (ReadLine Front-End) helper tool -- a wrapper program for making any stdin use readline 安装 rlfe (ReadLine Front-End) helper tool -- 一个让任何标准输入都使用 readline 的包装程序
8438 sys-libs talloc compat Enable extra compatibility stuff 启用额外的兼容性内容
8439 sys-libs timezone-data leaps-timezone Install the set of "right" timezones; these timezones include leap seconds when counting seconds since the epoch (while POSIX does not) as they are based on the TAI (International Atomic Time) clock 安装一组“正确的”时区;这些时区在计算自纪元以来的秒数时包括闰秒(而 POSIX 没有),因为它们基于 TAI(国际原子时)时钟
8440 sys-libs timezone-data zic-slim Default to 'slim' file format for /usr/share/zoneinfo. Otherwise 'fat' format is used. Not all programs can handle 'slim' format'. 默认为 /usr/share/zoneinfo 的 'slim' 文件格式。否则使用“胖”格式。并非所有程序都可以处理“苗条”格式。
8441 sys-libs zlib minizip include the minizip library for quick and dirty zip extraction 包括用于快速和肮脏的 zip 提取的 minizip 库
8442 sys-libs zlib-ng compat Enable compatibility to sys-libs/zlib 启用与 sys-libs/zlib 的兼容性
8443 sys-power apcupsd modbus Enable MODBUS support over USB 通过 USB 启用 MODBUS 支持
8444 sys-power intel-undervolt elogind Use elogind hook to apply voltage after system sleep 系统休眠后使用 elogind 钩子施加电压
8445 sys-power nut ipmi Support IPMI-based UPSes. 支持基于 IPMI 的 UPS。
8446 sys-power nut ups_drivers_al175 Driver for Eltek UPS models with AL175 alarm module 带有 AL175 报警模块的 Eltek UPS 型号驱动程序
8447 sys-power nut ups_drivers_apcsmart Driver for American Power Conversion Smart Protocol UPS equipment 美国电力转换智能协议UPS设备驱动
8448 sys-power nut ups_drivers_apcsmart-old Driver for American Power Conversion Smart Protocol UPS equipment 美国电力转换智能协议UPS设备驱动
8449 sys-power nut ups_drivers_apcupsd-ups Driver for apcupsd client access 用于 apcupsd 客户端访问的驱动程序
8450 sys-power nut ups_drivers_bcmxcp Driver for UPSes supporting the serial BCM/XCP protocol 支持串行 BCM/XCP 协议的 UPS 驱动程序
8451 sys-power nut ups_drivers_bcmxcp_usb Experimental driver for UPSes supporting the BCM/XCP protocol over USB 通过 USB 支持 BCM/XCP 协议的 UPS 的实验驱动程序
8452 sys-power nut ups_drivers_belkin Driver for Belkin serial UPS equipment 贝尔金系列 UPS 设备驱动程序
8453 sys-power nut ups_drivers_belkinunv Driver for Belkin "Universal UPS" and compatible 用于贝尔金“通用 UPS”的驱动程序并兼容
8454 sys-power nut ups_drivers_bestfcom Driver for Best Power Fortress/Ferrups 最佳电力堡垒/Ferrups 的驱动程序
8455 sys-power nut ups_drivers_bestfortress Driver for old Best Fortress UPS equipment 旧的 Best Fortress UPS 设备的驱动程序
8456 sys-power nut ups_drivers_bestuferrups Driver for Best Power Micro-Ferrups 最佳功率微型铁环驱动器
8457 sys-power nut ups_drivers_bestups Driver for Best Power / SOLA (Phoenixtec protocol) UPS equipment Best Power / SOLA(Phoenixtec 协议)UPS 设备的驱动程序
8458 sys-power nut ups_drivers_blazer_ser Driver for Megatec/Q1 protocol serial based UPS equipment 基于 Megatec/Q1 协议串行 UPS 设备的驱动程序
8459 sys-power nut ups_drivers_blazer_usb Driver for Megatec/Q1 protocol USB based UPS equipment Megatec/Q1 协议基于 USB 的 UPS 设备的驱动程序
8460 sys-power nut ups_drivers_clone Fake driver to clone outlets for device grouping 用于克隆设备分组插座的假驱动程序
8461 sys-power nut ups_drivers_clone-outlet Fake driver to clone outlets for device grouping 用于克隆设备分组插座的假驱动程序
8462 sys-power nut ups_drivers_dummy-ups Driver for multi-purpose UPS emulation 多功能 UPS 仿真驱动程序
8463 sys-power nut ups_drivers_etapro Driver for ETA UPS equipment ETA UPS 设备驱动程序
8464 sys-power nut ups_drivers_everups Driver for Ever UPS models Ever UPS 型号的驱动程序
8465 sys-power nut ups_drivers_gamatronic Driver for Gamatronic UPS equipment Gamatronic UPS 设备驱动程序
8466 sys-power nut ups_drivers_genericups Driver for contact-closure UPS equipment 触点闭合 UPS 设备的驱动程序
8467 sys-power nut ups_drivers_isbmex Driver for ISBMEX UPS equipment ISBMEX UPS设备驱动
8468 sys-power nut ups_drivers_ivtscd driver for the IVT Solar Controller Device IVT 太阳能控制器设备的驱动程序
8469 sys-power nut ups_drivers_liebert Driver for Liebert contact-closure UPS equipment Liebert 触点闭合 UPS 设备的驱动程序
8470 sys-power nut ups_drivers_liebert-esp2 Driver for Liebert UPS, using the ESP-II serial protocol Liebert UPS 驱动程序,使用 ESP-II 串行协议
8471 sys-power nut ups_drivers_masterguard Driver for Masterguard UPS equipment Masterguard UPS 设备的驱动程序
8472 sys-power nut ups_drivers_metasys Driver for Meta System UPS equipment Meta System UPS 设备驱动程序
8473 sys-power nut ups_drivers_mge-shut Driver for SHUT Protocol UPS equipment SHUT 协议 UPS 设备驱动程序
8474 sys-power nut ups_drivers_mge-utalk Driver for MGE UPS SYSTEMS UTalk protocol equipment MGE UPS SYSTEMS UTalk协议设备驱动
8475 sys-power nut ups_drivers_microdowell Driver for Microdowell Enterprise UPS series Microdowell Enterprise UPS系列驱动器
8476 sys-power nut ups_drivers_netxml-ups Driver for Eaton / MGE Network Management Card / Proxy (XML/HTTP Protocol) equipment 伊顿/MGE 网络管理卡/代理(XML/HTTP 协议)设备的驱动程序
8477 sys-power nut ups_drivers_nut-ipmipsu Driver for IPMI Power Supply Units (PSU) IPMI 电源装置 (PSU) 驱动程序
8478 sys-power nut ups_drivers_nutdrv_qx Driver for Q* protocol serial and USB based UPS equipment Q* 协议串行和基于 USB 的 UPS 设备的驱动程序
8479 sys-power nut ups_drivers_oldmge-shut Driver for SHUT Protocol UPS equipment (older implementation) SHUT 协议 UPS 设备的驱动程序(旧实现)
8480 sys-power nut ups_drivers_oneac Driver for Oneac UPS equipment Oneac UPS 设备的驱动程序
8481 sys-power nut ups_drivers_optiups Driver for Opti-UPS (Viewsonic) UPS and Zinto D (ONLINE-USV) equipment Opti-UPS (Viewsonic) UPS 和 Zinto D (ONLINE-USV) 设备的驱动程序
8482 sys-power nut ups_drivers_powercom UPS driver for serial Powercom/Trust/Advice UPS equipment 用于串行 Powercom/Trust/Advice UPS 设备的 UPS 驱动程序
8483 sys-power nut ups_drivers_powerpanel Driver for PowerPanel Plus compatible UPS equipment PowerPanel Plus 兼容 UPS 设备的驱动程序
8484 sys-power nut ups_drivers_rhino Driver for Brazilian Microsol RHINO UPS equipment 巴西 Microsol RHINO UPS 设备驱动程序
8485 sys-power nut ups_drivers_richcomm_usb Driver UPS equipment using Richcomm dry-contact to USB solution 使用 Richcomm 干接点转 USB 解决方案驱动 UPS 设备
8486 sys-power nut ups_drivers_riello_ser Driver for Riello UPS Protocol UPS equipment Riello UPS 协议 UPS 设备驱动程序
8487 sys-power nut ups_drivers_riello_usb Driver for Riello UPS Protocol UPS equipment via USB 通过 USB 驱动 Riello UPS 协议 UPS 设备
8488 sys-power nut ups_drivers_safenet Driver for SafeNet compatible UPS equipment SafeNet 兼容 UPS 设备的驱动程序
8489 sys-power nut ups_drivers_snmp-ups Multi-MIB Driver for SNMP UPS equipment 用于 SNMP UPS 设备的多 MIB 驱动程序
8490 sys-power nut ups_drivers_solis Driver for Brazilian Microsol SOLIS UPS equipment 巴西 Microsol SOLIS UPS 设备驱动程序
8491 sys-power nut ups_drivers_tripplite Driver for Tripp-Lite SmartPro UPS equipment Tripp-Lite SmartPro UPS 设备的驱动程序
8492 sys-power nut ups_drivers_tripplite_usb Driver for older Tripp Lite USB UPSes (not PDC HID) 旧版 Tripp Lite USB UPS 的驱动程序(不是 PDC HID)
8493 sys-power nut ups_drivers_tripplitesu Driver for Tripp-Lite SmartOnline (SU) UPS equipment Tripp-Lite SmartOnline (SU) UPS 设备的驱动程序
8494 sys-power nut ups_drivers_upscode2 Driver for UPScode II compatible UPS equipment UPScode II 兼容 UPS 设备的驱动程序
8495 sys-power nut ups_drivers_usbhid-ups Driver for USB/HID UPS equipment USB/HID UPS 设备驱动程序
8496 sys-power nut ups_drivers_victronups Driver for IMV/Victron UPS unit Match, Match Lite, NetUps IMV/Victron UPS 单元 Match、Match Lite、NetUps 的驱动程序
8497 sys-power nvclock gtk Install the GTK+ based graphical interface 安装基于 GTK+ 的图形界面
8498 sys-power nvclock nvcontrol Add NVCONTROL support for OpenGL options 为 OpenGL 选项添加 NVCONTROL 支持
8499 sys-power suspend crypt Allows suspend and resume from encrypted disk 允许从加密磁盘挂起和恢复
8500 sys-process atop modules Build netatop kernel module and install netatopd daemon. 构建 netatop 内核模块并安装 netatopd 守护进程。
8501 sys-process audit gssapi Enable GSSAPI support 启用 GSSAPI 支持
8502 sys-process bottom battery Include support for laptop battery information. 包括对笔记本电脑电池信息的支持。
8503 sys-process criu bpf Add support for BPF programs via dev-libs/libbpf 通过 dev-libs/libbpf 添加对 BPF 程序的支持
8504 sys-process criu nftables Add support for net-firewall/nftables 添加对网络防火墙/nftables 的支持
8505 sys-process criu setproctitle Use dev-libs/libbsd to make process titles of service workers to be more verbose 使用 dev-libs/libbsd 使 service worker 的进程标题更详细
8506 sys-process cronie anacron Install the periodic anacron command scheduler. 安装周期性 anacron 命令调度程序。
8507 sys-process fcron debug Enable debug code and output. Since version 3.0.5 this will no longer force foreground execution, and fcron will be able to run as a service properly. 启用调试代码和输出。从 3.0.5 版开始,这将不再强制前台执行,并且 fcron 将能够正确地作为服务运行。
8508 sys-process fcron mta Enable mta support for sending emails from fcron 启用 mta 支持以从 fcron 发送电子邮件
8509 sys-process fcron pam Enable PAM support for fcron. This means that fcron will pass through the "fcron" stack before executing the jobs, and fcrontab will use the "fcrontab" stack to authenticate the user before editing its crontab file. 为 fcron 启用 PAM 支持。这意味着 fcron 将在执行作业之前通过“fcron”堆栈,并且 fcrontab 将在编辑其 crontab 文件之前使用“fcrontab”堆栈来验证用户。
8510 sys-process fcron system-crontab Set up fcron to respect /etc/crontab and /etc/cron.d. If this flag is disabled, /etc/cron.d and /etc/crontab will be ignored, but /etc/cron.{hourly,daily,weekly,monthly} will still be respected. 设置 fcron 以尊重 /etc/crontab 和 /etc/cron.d。如果禁用此标志,则 /etc/cron.d 和 /etc/crontab 将被忽略,但 /etc/cron.{hourly,daily,weekly,monthly} 仍将受到尊重。
8511 sys-process htop delayacct Enable Linux delay accounting support via dev-libs/libnl 通过 dev-libs/libnl 启用 Linux 延迟记帐支持
8512 sys-process htop hwloc Use sys-apps/hwloc for CPU affinity support 使用 sys-apps/hwloc 获得 CPU 亲和性支持
8513 sys-process htop openvz Enable openvz support 启用 openvz 支持
8514 sys-process htop vserver Enable vserver support 启用虚拟服务器支持
8515 sys-process lsof rpc support looking up RPC service info 支持查找RPC服务信息
8516 sys-process procps elogind Use sys-auth/elogind for session tracking. 使用 sys-auth/elogind 进行会话跟踪。
8517 sys-process procps kill Build the kill program 构建杀死程序
8518 sys-process procps modern-top Enables new startup defaults of top. Keeps old defaults if disabled 启用 top 的新启动默认值。如果禁用,则保留旧默认值
8519 sys-process procps ncurses Build programs that use ncurses: top, slabtop, watch 构建使用 ncurses 的程序:top、slabtop、watch
8520 sys-process systemd-cron cron-boot Include support for the boot timer. 包括对启动计时器的支持。
8521 sys-process systemd-cron etc-crontab-systemd Use dedicated /etc/crontab-systemd instead of parsing /etc/crontab 使用专用的 /etc/crontab-systemd 而不是解析 /etc/crontab
8522 sys-process systemd-cron minutely Support /etc/cron.minutely 支持 /etc/cron.minutely
8523 sys-process systemd-cron runparts Use traditional run-parts instead of creating jobs for each cron.* entry 使用传统的运行部分而不是为每个 cron.* 条目创建作业
8524 sys-process systemd-cron setgid Compile setgid C helper for crontab. Needs GCC or Clang. 为 crontab 编译 setgid C 助手。需要 GCC 或 Clang。
8525 sys-process systemd-cron yearly Support /etc/cron.yearly 支持 /etc/cron.yearly
8526 sys-process tini args Enable argument parsing. 启用参数解析。
8527 virtual blas eselect-ldso Enable runtime library switching by eselect and ld.so. 通过 eselect 和 ld.so 启用运行时库切换。
8528 virtual cblas eselect-ldso Enable runtime library switching by eselect and ld.so. 通过 eselect 和 ld.so 启用运行时库切换。
8529 virtual jdk headless-awt Don't install the X backend for AWT, needed by some GUIs 不要为 AWT 安装 X 后端,某些 GUI 需要
8530 virtual lapack eselect-ldso Enable runtime library switching by eselect and ld.so. 通过 eselect 和 ld.so 启用运行时库切换。
8531 virtual lapacke eselect-ldso Enable runtime library switching by eselect and ld.so. 通过 eselect 和 ld.so 启用运行时库切换。
8532 virtual linux-sources firmware Install linux kernel firmware 安装linux内核固件
8533 virtual mpi nullmpi Allow sys-cluster/nullmpi a minimal incomplete MPI implementation as a provider 允许 sys-cluster/nullmpi 作为提供者的最小不完整 MPI 实现
8534 virtual mpi romio Enable romio, a high-performance portable MPI-IO 启用 romio,一种高性能的便携式 MPI-IO
8535 virtual mysql embedded Build embedded server (libmysqld) 构建嵌入式服务器(libmysqld)
8536 virtual mysql server Build server (mysqld) 构建服务器(mysqld)
8537 virtual podofo-build boost Add support for boost 添加对提升的支持
8538 virtual podofo-build tools Build and install commandline tools 构建和安装命令行工具
8539 virtual rust rustfmt Install rustfmt, Rust code formatter 安装 rustfmt,Rust 代码格式化程序
8540 virtual ssh minimal Prefer net-misc/dropbear over net-misc/openssh 首选 net-misc/dropbear 而非 net-misc/openssh
8541 virtual wine staging Enable Wine-Staging's Patchset 启用 Wine-Staging 的补丁集
8542 www-apache mod_backtrace unwind Use sys-libs/libunwind to provide better resolution of function names. 使用 sys-libs/libunwind 提供更好的函数名称解析。
8543 www-apache mod_musicindex archive Add archive support 添加存档支持
8544 www-apache mod_musicindex cache Add File cache support 添加文件缓存支持
8545 www-apache mod_musicindex mysql Add MySQL cache support 添加 MySQL 缓存支持
8546 www-apache mod_nss ecc enable Elliptical Curve Cyptography 启用椭圆曲线密码术
8547 www-apache mod_perl ithreads Build for use with thread-capable perl, needs same setting as in dev-lang/perl 构建用于支持线程的 perl,需要与 dev-lang/perl 中相同的设置
8548 www-apache mod_security fuzzyhash Support fuzzy hash computations (to detect malware, for example) using the app-crypt/ssdeep package. 使用 app-crypt/ssdeep 包支持模糊哈希计算(例如检测恶意软件)。
8549 www-apache mod_security geoip Pull in dev-libs/geoip for use by the SecGeoLookupDb directive. 拉入 dev-libs/geoip 以供 SecGeoLookupDb 指令使用。
8550 www-apache mod_security jit Add support for the PCRE Just-in-Time optimisation, as enabled by dev-libs/libpcre with jit USE flag enabled. Might not be available on hardened systems. 添加对 PCRE 即时优化的支持,由启用 jit USE 标志的 dev-libs/libpcre 启用。可能在强化系统上不可用。
8551 www-apache mod_security json Suppose JSON in the request body parser through dev-libs/yajl. 假设请求体解析器中的 JSON 通过 dev-libs/yajl。
8552 www-apache mod_security mlogc Build and install the ModSecurity Audit Log Collector (mlogc). 构建并安装 ModSecurity 审计日志收集器 (mlogc)。
8553 www-apache pwauth domain-aware Ignore leading domain names in username (Windows compat) 忽略用户名中的前导域名(Windows 兼容)
8554 www-apache pwauth faillog Log failed login attempts 记录失败的登录尝试
8555 www-apache pwauth ignore-case Ignore string case in username (mostly Windows compat) 忽略用户名中的字符串大小写(主要是 Windows 兼容)
8556 www-apps blohg git Enable Git support 启用 Git 支持
8557 www-apps blohg mercurial Enable Mercurial support 启用 Mercurial 支持
8558 www-apps cgit highlight Enable source code highlighting 启用源代码突出显示
8559 www-apps cgit lua Enable support for Lua scripting 启用对 Lua 脚本的支持
8560 www-apps drupal uploadprogress Install dev-php/pecl-uploadprogress package 安装 dev-php/pecl-uploadprogress 包
8561 www-apps gitea acct User and group management via acct-*/git packages 通过 acct-*/git 包管理用户和组
8562 www-apps gitit plugins enables optional plugin runtime loader 启用可选的插件运行时加载器
8563 www-apps hugo sass Enable SASS/SCSS support 启用 SASS/SCSS 支持
8564 www-apps icingaweb2 apache2-server Adds support for the apache2-server 添加对 apache2-server 的支持
8565 www-apps icingaweb2 fpm Adds FPM support to php 将 FPM 支持添加到 php
8566 www-apps icingaweb2 nginx Adds support for nginx 添加对 nginx 的支持
8567 www-apps ikiwiki extras Installs additional modules used by ikiwiki plugins 安装 ikiwiki 插件使用的附加模块
8568 www-apps klaus ctags Enable support for Exuberant ctags; makes all source code symbols hyperlinks to their definitions 启用对 Exuberant ctags 的支持;使所有源代码符号超链接到它们的定义
8569 www-apps postfixadmin vacation Install vacation.pl script and dependencies 安装vacation.pl 脚本和依赖项
8570 www-apps redmine markdown Enable support for Markdown 启用对 Markdown 的支持
8571 www-apps redmine minimagick Enable image processing support via dev-ruby/mini_magick 通过 dev-ruby/mini_magick 启用图像处理支持
8572 www-apps redmine passenger Enable support for www-apache/passenger 启用对 www-apache/passenger 的支持
8573 www-apps roundup jinja Enable Jinja2 support 启用 Jinja2 支持
8574 www-apps roundup markdown Enable markdown rendering 启用降价渲染
8575 www-apps roundup pyjwt Enable jwt tokens for login 为登录启用 jwt 令牌
8576 www-apps roundup tz Enable full support of timezone 启用对时区的全面支持
8577 www-apps roundup whoosh Enable Whoosh full-text indexer 启用 Whoosh 全文索引器
8578 www-apps roundup xapian Enable Xapian full-text indexer 启用 Xapian 全文索引器
8579 www-apps rt lighttpd Add www-servers/lighttpd support 添加 www-servers/lighttpd 支持
8580 www-apps tt-rss daemon Install additional init scripts for automated RSS updates 为自动 RSS 更新安装额外的初始化脚本
8581 www-apps webdavcgi rcs Adds support for a revision controlled backend with RCS (dev-vcs/rcs) 添加对带有 RCS 的修订控制后端的支持 (dev-vcs/rcs)
8582 www-apps wordpress akismet Installs Akismet comment spam plug-in 安装 Akismet 垃圾评论插件
8583 www-apps wordpress themes Installs themes (including default theme) 安装主题(包括默认主题)
8584 www-apps xpra-html5 brotli Install assets compressed with brotli 安装用 brotli 压缩的资产
8585 www-apps xpra-html5 gzip Install assets compressed with gzip 安装使用 gzip 压缩的资产
8586 www-apps xpra-html5 minify Minify JavaScript code for smaller transfers 缩小 JavaScript 代码以实现较小的传输
8587 www-client chromium component-build Split build into more shared libraries to speed up linking. Mostly intended for debugging and development, NOT RECOMMENDED for general use. 将构建拆分为更多共享库以加快链接速度。主要用于调试和开发,不推荐用于一般用途。
8588 www-client chromium debug Enable DCHECK feature with severity configurable at runtime. Mostly intended for debugging and development, NOT RECOMMENDED for general use. 启用 DCHECK 功能,其严重性可在运行时配置。主要用于调试和开发,不推荐用于一般用途。
8589 www-client chromium gtk4 Build with GTK4 headers. 使用 GTK4 头文件构建。
8590 www-client chromium hangouts Enable support for Google Hangouts features such as screen sharing 启用对 Google Hangouts 功能的支持,例如屏幕共享
8591 www-client chromium headless Build Ozone only with headless backend, NOT RECOMMENDED for general use. 仅使用无头后端构建 Ozone,不建议用于一般用途。
8592 www-client chromium js-type-check Enable JavaScript type-checking for Chrome's web technology-based UI. Requires Java. 为 Chrome 的基于 Web 技术的 UI 启用 JavaScript 类型检查。需要Java。
8593 www-client chromium libcxx Use bundled libc++ instead of libstdc++ for building. 使用捆绑的 libc++ 而不是 libstdc++ 进行构建。
8594 www-client chromium lto Build with Link Time Optimizations (via clang's ThinLTO) 使用链接时间优化构建(通过 clang 的 ThinLTO)
8595 www-client chromium official Enable Official build instead of Developer build. 启用官方构建而不是开发人员构建。
8596 www-client chromium pgo Build with Profile Guided Optimizations (2-stage compilation) 使用 Profile Guided Optimizations 构建(2 阶段编译)
8597 www-client chromium pic Disable optimized assembly code that is not PIC friendly 禁用对 PIC 不友好的优化汇编代码
8598 www-client chromium proprietary-codecs Enable codecs for patent-encumbered audio and video formats. 为受专利保护的音频和视频格式启用编解码器。
8599 www-client chromium screencast Enable support for remote desktop and screen cast using media-video/pipewire 使用 media-video/pipewire 启用对远程桌面和屏幕投射的支持
8600 www-client chromium suid Build the SUID sandbox, which is only needed on CONFIG_USER_NS=n kernels 构建 SUID 沙箱,仅在 CONFIG_USER_NS=n 内核上需要
8601 www-client chromium system-ffmpeg Use system ffmpeg instead of the bundled one 使用系统 ffmpeg 而不是捆绑的
8602 www-client chromium system-harfbuzz Use system harfbuzz instead of the bundled one. 使用系统 harfbuzz 而不是捆绑的。
8603 www-client chromium system-icu Use system icu instead of the bundled one 使用系统 icu 而不是捆绑的
8604 www-client chromium system-png Use system libpng instead of the bundled one. 使用系统 libpng 而不是捆绑的。
8605 www-client chromium widevine Unsupported closed-source DRM capability (required by Netflix VOD) 不支持的闭源 DRM 功能(Netflix VOD 需要)
8606 www-client chromium-bin suid Install the SUID sandbox, which is only needed on CONFIG_USER_NS=n kernels. 安装 SUID 沙箱,它仅在 CONFIG_USER_NS=n 内核上需要。
8607 www-client chromium-bin widevine Unsupported closed-source DRM capability (required by Netflix VOD). 不支持的闭源 DRM 功能(Netflix VOD 需要)。
8608 www-client dillo xembed Enable X11 XEmbed support 启用 X11 XEmbed 支持
8609 www-client elinks bittorrent Enable support for the BitTorrent protocol 启用对 BitTorrent 协议的支持
8610 www-client elinks brotli Enable support for brotli compression 启用对 brotli 压缩的支持
8611 www-client elinks finger Enable support for the finger protocol 启用对手指协议的支持
8612 www-client elinks gopher Enable support for the gopher protocol 启用对 gopher 协议的支持
8613 www-client elinks mouse Make elinks to grab all mouse events 制作 elinks 来抓取所有鼠标事件
8614 www-client elinks tre Enable support for regex searches via dev-libs/tre 通过 dev-libs/tre 启用对正则表达式搜索的支持
8615 www-client elinks xml Enable support for bookmarks via dev-libs/expat 通过 dev-libs/expat 启用对书签的支持
8616 www-client firefox clang Use Clang compiler instead of GCC 使用 Clang 编译器而不是 GCC
8617 www-client firefox eme-free Disable EME (DRM plugin) capability at build time 在构建时禁用 EME(DRM 插件)功能
8618 www-client firefox geckodriver Enable WebDriver support 启用 WebDriver 支持
8619 www-client firefox gmp-autoupdate Allow Gecko Media Plugins (binary blobs) to be automatically downloaded and kept up-to-date in user profiles 允许 Gecko 媒体插件(二进制 blob)自动下载并在用户配置文件中保持最新
8620 www-client firefox hwaccel Force-enable hardware-accelerated rendering (Mozilla bug 594876) 强制启用硬件加速渲染 (Mozilla bug 594876)
8621 www-client firefox libproxy Enable libproxy support 启用 libproxy 支持
8622 www-client firefox lto Enable Link Time Optimization (LTO) - Uses BFD linker with GCC and LLD linker with Clang 启用链接时间优化 (LTO) - 使用带有 GCC 的 BFD 链接器和带有 Clang 的 LLD 链接器
8623 www-client firefox openh264 Use media-libs/openh264 for H264 support instead of downloading binary blob from Mozilla at runtime 使用 media-libs/openh264 来支持 H264,而不是在运行时从 Mozilla 下载二进制 blob
8624 www-client firefox pgo Add support for profile-guided optimization for faster binaries - this option will double the compile time 添加对配置文件引导优化的支持以更快的二进制文件 - 此选项将使编译时间加倍
8625 www-client firefox screencast Enable support for remote desktop and screen cast using media-video/pipewire 使用 media-video/pipewire 启用对远程桌面和屏幕投射的支持
8626 www-client firefox sndio Enable support for the media-sound/sndio backend 启用对 media-sound/sndio 后端的支持
8627 www-client firefox system-av1 Use the system-wide media-libs/dav1d and media-libs/libaom library instead of bundled 使用系统范围的 media-libs/dav1d 和 media-libs/libaom 库而不是捆绑
8628 www-client firefox system-harfbuzz Use the system-wide media-libs/harfbuzz and media-gfx/graphite2 instead of bundled 使用系统范围的 media-libs/harfbuzz 和 media-gfx/graphite2 而不是捆绑
8629 www-client firefox system-icu Use the system-wide dev-libs/icu instead of bundled 使用系统范围的 dev-libs/icu 而不是捆绑
8630 www-client firefox system-jpeg Use the system-wide media-libs/libjpeg-turbo instead of bundled 使用系统范围的媒体库/libjpeg-turbo 而不是捆绑
8631 www-client firefox system-libevent Use the system-wide dev-libs/libevent instead of bundled 使用系统范围的 dev-libs/libevent 而不是捆绑
8632 www-client firefox system-libvpx Use the system-wide media-libs/libvpx instead of bundled 使用系统范围的媒体库/libvpx 而不是捆绑
8633 www-client firefox system-png Use the system-wide media-libs/libpng instead of bundled (requires APNG patches) 使用系统范围的 media-libs/libpng 而不是捆绑的(需要 APNG 补丁)
8634 www-client firefox system-python-libs Use system's python site instead of bundled python libraries 使用系统的 python 站点而不是捆绑的 python 库
8635 www-client firefox system-webp Use the system-wide media-libs/libwebp instead of bundled 使用系统范围的媒体库/libwebp 而不是捆绑
8636 www-client firefox-bin alsa When pulseaudio isn't set, this prefers apulse 当 pulseaudio 没有设置时,这更喜欢 apulse
8637 www-client firefox-bin gmp-autoupdate Allow Gecko Media Plugins (binary blobs) to be automatically downloaded and kept up-to-date in user profiles 允许 Gecko 媒体插件(二进制 blob)自动下载并在用户配置文件中保持最新
8638 www-client jd migemo Enable migemo support for Japanese 为日语启用 migemo 支持
8639 www-client jd oniguruma Use dev-libs/oniguruma for regular expression 使用 dev-libs/oniguruma 进行正则表达式
8640 www-client links brotli Enable app-arch/brotli support 启用 app-arch/brotli 支持
8641 www-client links freetype Enable media-libs/freetype support 启用媒体库/自由类型支持
8642 www-client links libevent Enable dev-libs/libevent support 启用 dev-libs/libevent 支持
8643 www-client links lzip Enable app-arch/lzip support 启用 app-arch/lzip 支持
8644 www-client lynx gnutls Use gnutls library for HTTPS support (openssl is the default library for HTTPS support). 使用 gnutls 库支持 HTTPS(openssl 是支持 HTTPS 的默认库)。
8645 www-client lynx ssl Enable HTTPS support. 启用 HTTPS 支持。
8646 www-client microsoft-edge mip Install Microsoft Information Protection plugin. 安装 Microsoft 信息保护插件。
8647 www-client microsoft-edge-beta mip Install Microsoft Information Protection plugin. 安装 Microsoft 信息保护插件。
8648 www-client microsoft-edge-dev mip Install Microsoft Information Protection plugin. 安装 Microsoft 信息保护插件。
8649 www-client netsurf bmp BMP bitmap image support (media-libs/libnsbmp) BMP 位图图像支持 (media-libs/libnsbmp)
8650 www-client netsurf gtk Build GTK3 GUI 构建 GTK3 图形用户界面
8651 www-client netsurf gtk2 Build GTK2 GUI 构建 GTK2 图形用户界面
8652 www-client netsurf psl Use public suffix list via media-libs/libnspsl 通过 media-libs/libnspsl 使用公共后缀列表
8653 www-client netsurf rosprite RISC OS Sprite bitmap image support (media-libs/librosprite) RISC OS Sprite 位图图像支持 (media-libs/librosprite)
8654 www-client netsurf svgtiny SVG image support via media-libs/svgatiny instead of gnome-base/librsvg 通过 media-libs/svgatiny 而不是 gnome-base/librsvg 支持 SVG 图像
8655 www-client opera proprietary-codecs Enable codecs for patent-encumbered audio and video formats. 为受专利保护的音频和视频格式启用编解码器。
8656 www-client opera-beta proprietary-codecs Enable codecs for patent-encumbered audio and video formats. 为受专利保护的音频和视频格式启用编解码器。
8657 www-client opera-developer proprietary-codecs Enable codecs for patent-encumbered audio and video formats. 为受专利保护的音频和视频格式启用编解码器。
8658 www-client qutebrowser adblock Enable Brave's ABP-style adblocker library for improved adblocking 启用 Brave 的 ABP 风格的广告拦截器库以改进广告拦截
8659 www-client qutebrowser widevine Unsupported closed-source DRM capability (required by Netflix VOD) 不支持的闭源 DRM 功能(Netflix VOD 需要)
8660 www-client seamonkey chatzilla Build Mozilla's IRC client (default on) 构建 Mozilla 的 IRC 客户端(默认开启)
8661 www-client seamonkey custom-optimization Build with user-specified compiler optimizations (-Os, -O0, -O1, -O2, -O3) from CFLAGS (unsupported) 使用来自 CFLAGS 的用户指定的编译器优化(-Os、-O0、-O1、-O2、-O3)构建(不支持)
8662 www-client seamonkey gmp-autoupdate Allow Gecko Media Plugins (binary blobs) to be automatically downloaded and kept up-to-date in user profiles 允许 Gecko 媒体插件(二进制 blob)自动下载并在用户配置文件中保持最新
8663 www-client seamonkey ipc Use inter-process communication between tabs and plugins. Allows for greater stability in case of plugin crashes 在选项卡和插件之间使用进程间通信。在插件崩溃的情况下允许更大的稳定性
8664 www-client seamonkey lto Enable Link Time Optimization (LTO). Requires Gold linker 启用链接时间优化 (LTO)。需要黄金链接器
8665 www-client seamonkey roaming Build roaming extension support (default on) 构建漫游扩展支持(默认开启)
8666 www-client seamonkey system-av1 Use the system-wide media-libs/dav1d and media-libs/libaom library instead of bundled 使用系统范围的 media-libs/dav1d 和 media-libs/libaom 库而不是捆绑
8667 www-client seamonkey system-harfbuzz Use the system-wide media-libs/harfbuzz instead of bundled 使用系统范围的媒体库/harfbuzz 而不是捆绑
8668 www-client seamonkey system-icu Use the sytem-wide dev-libs/icu instead of bundled 使用系统范围的 dev-libs/icu 而不是捆绑
8669 www-client seamonkey system-jpeg Use the system-wide media-libs/libjpeg-turbo instead of bundled 使用系统范围的媒体库/libjpeg-turbo 而不是捆绑
8670 www-client seamonkey system-libevent Use the system-wide dev-libs/libevent instead of bundled 使用系统范围的 dev-libs/libevent 而不是捆绑
8671 www-client seamonkey system-libvpx Use the system-wide media-libs/libvpx instead of bundled 使用系统范围的媒体库/libvpx 而不是捆绑
8672 www-client seamonkey system-png Use the system-wide media-libs/libpng instead of bundled (requires APNG patches) 使用系统范围的 media-libs/libpng 而不是捆绑的(需要 APNG 补丁)
8673 www-client seamonkey system-sqlite Use the system-wide dev-db/sqlite installation with secure-delete enabled 在启用安全删除的情况下使用系统范围的 dev-db/sqlite 安装
8674 www-client seamonkey webrtc Enable WebRTC support. Disabled by default due to privacy concerns. 启用 WebRTC 支持。出于隐私考虑,默认禁用。
8675 www-client surf savedconfig Without a saved config.h, this package depends on net-misc/curl and x11-terms/st for a default download mechanism 没有保存的 config.h,这个包依赖于 net-misc/curl 和 x11-terms/st 作为默认下载机制
8676 www-client surf tabbed Install surf-open.sh script for running surf in x11-misc/tabbed 安装 surf-open.sh 脚本以在 x11-misc/tabbed 中运行 surf
8677 www-client uget aria2 Enable support for net-misc/aria2 through xmlrpc. You'll find the plugin in the app's settings. 通过 xmlrpc 启用对 net-misc/aria2 的支持。您将在应用程序的设置中找到该插件。
8678 www-client uget control-socket Enable JSON-RPC over unix domain socket 通过 unix 域套接字启用 JSON-RPC
8679 www-client uget openssl Use dev-libs/openssl instead of net-libs/gnutls 使用 dev-libs/openssl 而不是 net-libs/gnutls
8680 www-client uget rss Enable uGet feed messages 启用 uGet 提要消息
8681 www-client vivaldi proprietary-codecs Use system media-video/ffmpeg to support patent-encumbered media codecs 使用系统 media-video/ffmpeg 支持受专利保护的媒体编解码器
8682 www-client vivaldi widevine Unsupported closed-source DRM capability (required by Netflix VOD) 不支持的闭源 DRM 功能(Netflix VOD 需要)
8683 www-client vivaldi-snapshot proprietary-codecs Use system media-video/ffmpeg to support patent-encumbered media codecs 使用系统 media-video/ffmpeg 支持受专利保护的媒体编解码器
8684 www-client vivaldi-snapshot widevine Unsupported closed-source DRM capability (required by Netflix VOD) 不支持的闭源 DRM 功能(Netflix VOD 需要)
8685 www-client w3m gdk-pixbuf Enable support for x11-libs/gdk-pixbuf 启用对 x11-libs/gdk-pixbuf 的支持
8686 www-client w3m lynxkeymap If you prefer Lynx-like key binding 如果您更喜欢类似 Lynx 的键绑定
8687 www-misc litmus libproxy Support for automatic proxy configuratino management through net-libs/libproxy. 通过 net-libs/libproxy 支持自动代理配置管理。
8688 www-misc litmus libxml2 Use dev-libs/libxml2 to parse XML 使用 dev-libs/libxml2 解析 XML
8689 www-misc litmus pkcs11 Support for PKCS #11 through PaKChoiS (dev-libs/pakchois). 通过 PaKChoiS (dev-libs/pakchois) 支持 PKCS #11。
8690 www-plugins lightspark ppapi Install the PPAPI plugin (for Chromium) 安装 PPAPI 插件(适用于 Chromium)
8691 www-plugins lightspark rtmp Enable Real Time Messaging Protocol using librtmp 使用 librtmp 启用实时消息传递协议
8692 www-plugins passff-host chrome Install plugin for chrome (which also includes opera) 安装 chrome 插件(也包括 opera)
8693 www-plugins passff-host chromium Install plugin for chromium 安装铬插件
8694 www-plugins passff-host firefox Install plugin for firefox 安装火狐插件
8695 www-plugins passff-host vivaldi Install plugin for vivaldi 为vivaldi安装插件
8696 www-servers apache static Link in apache2 modules statically rather then plugins 静态链接 apache2 模块而不是插件
8697 www-servers apache suexec Install suexec with apache 用 apache 安装 suexec
8698 www-servers apache suexec-caps Install suexec with capabilities instead of SUID 使用功能而不是 SUID 安装 suexec
8699 www-servers apache suexec-syslog Log suexec to syslog instead of to a separate file 将 suexec 记录到 syslog 而不是单独的文件
8700 www-servers civetweb server Build standalone server 搭建独立服务器
8701 www-servers fnord auth Enable HTTP authentication support 启用 HTTP 身份验证支持
8702 www-servers gatling diet Compile against dev-libs/dietlibc 针对 dev-libs/dietlibc 编译
8703 www-servers h2o libh2o Build and install libh2o 构建并安装 libh2o
8704 www-servers h2o mruby Enable support for mruby 启用对 mruby 的支持
8705 www-servers lighttpd brotli Enable output compression via app-arch/brotli (recommended) 通过 app-arch/brotli 启用输出压缩(推荐)
8706 www-servers lighttpd bzip2 Enable output compression via bzip2 通过 bzip2 启用输出压缩
8707 www-servers lighttpd gnutls Build module for TLS via net-libs/gnutls 通过 net-libs/gnutls 构建 TLS 模块
8708 www-servers lighttpd libev Enable fdevent handler 启用 fdevent 处理程序
8709 www-servers lighttpd maxminddb Add support for geolocation using dev-libs/libmaxminddb 使用 dev-libs/libmaxminddb 添加对地理定位的支持
8710 www-servers lighttpd mbedtls Build module for TLS via net-libs/mbedtls 通过 net-libs/mbedtls 构建 TLS 模块
8711 www-servers lighttpd mmap Use mmap when sendfile is not available 当 sendfile 不可用时使用 mmap
8712 www-servers lighttpd nettle Use dev-libs/nettle as crypto backend 使用 dev-libs/nettle 作为加密后端
8713 www-servers lighttpd nss Build module for TLS via Mozilla's Network Security Services 通过 Mozilla 的网络安全服务构建 TLS 模块
8714 www-servers lighttpd rrdtool Enable rrdtool support via mod_rrdtool 通过 mod_rrdtool 启用 rrdtool 支持
8715 www-servers lighttpd system-xxhash Use system provided dev-libs/xxhash 使用系统提供的 dev-libs/xxhash
8716 www-servers lighttpd webdav Enable webdav properties 启用 webdav 属性
8717 www-servers lighttpd zlib Enable output compression via gzip or deflate algorithms from sys-libs/zlib 通过 gzip 或 sys-libs/zlib 中的 deflate 算法启用输出压缩
8718 www-servers lighttpd zstd Enable output compression via Zstandard (app-arch/zstd) algorithm 通过 Zstandard (app-arch/zstd) 算法启用输出压缩
8719 www-servers monkeyd debug Enable lots of debugging info 启用大量调试信息
8720 www-servers monkeyd static-plugins Build statically linked plugins 构建静态链接的插件
8721 www-servers nginx aio Enables file AIO support 启用文件 AIO 支持
8722 www-servers nginx http Enable HTTP core support 启用 HTTP 核心支持
8723 www-servers nginx http-cache Enable HTTP cache support 启用 HTTP 缓存支持
8724 www-servers nginx http2 Enable HTTP2 module support 启用 HTTP2 模块支持
8725 www-servers nginx libatomic Use libatomic instead of builtin atomic operations 使用 libatomic 而不是内置的原子操作
8726 www-servers nginx pcre-jit Enable JIT for pcre 为 pcre 启用 JIT
8727 www-servers nginx rtmp NGINX-based Media Streaming Server 基于 NGINX 的流媒体服务器
8728 www-servers nginx ssl Enable HTTPS module for http. Enable SSL/TLS support for POP3/IMAP/SMTP for mail. 为 http 启用 HTTPS 模块。为邮件的 POP3/IMAP/SMTP 启用 SSL/TLS 支持。
8729 www-servers nginx-unit php7-3 Support for PHP 7.3 支持 PHP 7.3
8730 www-servers nginx-unit php7-4 Support for PHP 7.4 支持 PHP 7.4
8731 www-servers pshs magic Enable automatic detection of Content-Type using libmagic (sys-apps/file) 使用 libmagic (sys-apps/file) 启用 Content-Type 的自动检测
8732 www-servers pshs qrcode Enable generating QRCodes for server URL 启用为服务器 URL 生成二维码
8733 www-servers sniproxy dns Enable DNS resolver via net-libs/udns 通过 net-libs/udns 启用 DNS 解析器
8734 www-servers sniproxy largefile Enable large file support (so we can log more than 2GB) 启用大文件支持(这样我们可以记录超过 2GB)
8735 www-servers sniproxy rfc3339 Use RFC3339 timestamp format in log. 在日志中使用 RFC3339 时间戳格式。
8736 www-servers tomcat extra-webapps Build also the docs and examples webapp 还构建文档和示例 webapp
8737 www-servers tomcat websockets Builds websockets api and implementation (requires java 7) 构建 websockets api 和实现(需要 java 7)
8738 www-servers uwsgi embedded Embed plugins instead of building them as real plugins. When disabling this USE flag make sure you specify all used plugins in your uWSGI configuration. Note: Language plugins will always be built as real plugins. 嵌入插件而不是将它们构建为真正的插件。禁用此 USE 标志时,请确保在 uWSGI 配置中指定所有使用的插件。注意:语言插件将始终构建为真正的插件。
8739 www-servers uwsgi go Build the gccgo plugin to run Go applications. 构建 gccgo 插件以运行 Go 应用程序。
8740 www-servers uwsgi json Support json as a configuration file format. 支持 json 作为配置文件格式。
8741 www-servers uwsgi python-asyncio Use the EXPERIMENTAL asyncio (tulip) for python3.4 async request dispatching and as LoopEngine (see http://uwsgi-docs.readthedocs.org/en/latest/asyncio.html). 将 EXPERIMENTAL asyncio (tulip) 用于 python3.4 异步请求调度和 LoopEngine(参见 http://uwsgi-docs.readthedocs.org/en/latest/asyncio.html)。
8742 www-servers uwsgi python-gevent Use dev-python/gevent for async request dispatching and as LoopEngine (see http://projects.unbit.it/uwsgi/wiki/Gevent). 使用 dev-python/gevent 进行异步请求分派和作为 LoopEngine(参见 http://projects.unbit.it/uwsgi/wiki/Gevent)。
8743 www-servers uwsgi routing Enable routing support 启用路由支持
8744 www-servers uwsgi yajl Use dev-libs/yajl instead of dev-libs/jansson for parsing JSON configuration files (if USe=json is set) 使用 dev-libs/yajl 而不是 dev-libs/jansson 来解析 JSON 配置文件(如果设置了 USe=json)
8745 www-servers uwsgi yaml Support yaml as a configuration file format. 支持 yaml 作为配置文件格式。
8746 www-servers uwsgi zeromq Enable logging and deployment via ZeroMQ. 通过 ZeroMQ 启用日志记录和部署。
8747 www-servers xsp developer creates .mdb files for either Release and Debug 为 Release 和 Debug 创建 .mdb 文件
8748 www-servers xsp net35 use .NET 3.5 Framework 使用 .NET 3.5 框架
8749 www-servers xsp net40 use .NET 4.0 Framework 使用 .NET 4.0 框架
8750 www-servers xsp net45 use .NET 4.5 Framework 使用 .NET 4.5 框架
8751 x11-apps igt-gpu-tools X Enable intel-gpu-overlay xlib/cairo backend 启用 intel-gpu-overlay xlib/cairo 后端
8752 x11-apps igt-gpu-tools chamelium Enables support for building Chamelium tests 支持构建 Chamelium 测试
8753 x11-apps igt-gpu-tools overlay Build the intel-gpu-overlay utility 构建 intel-gpu-overlay 实用程序
8754 x11-apps igt-gpu-tools runner Build the test runner 构建测试运行器
8755 x11-apps igt-gpu-tools tests Build and install tests 构建和安装测试
8756 x11-apps igt-gpu-tools valgrind Support valgrind annotations 支持 valgrind 注释
8757 x11-apps igt-gpu-tools xv Enable intel-gpu-overlay xv backend 启用 intel-gpu-overlay xv 后端
8758 x11-apps mesa-progs egl Build EGL utilities 构建 EGL 实用程序
8759 x11-apps mesa-progs gles2 Build OpenGL ES 2 utilities 构建 OpenGL ES 2 实用程序
8760 x11-apps xdpyinfo dmx Builds support for Distributed Multiheaded X x11-base/xorg-server 构建对分布式多头 X x11-base/xorg-server 的支持
8761 x11-apps xinit twm Control dependencies on legacy apps (xterm, twm, ...). Safe to disable if you use a modern desktop environment. 控制对遗留应用程序(xterm、twm、...)的依赖。如果您使用现代桌面环境,可以安全禁用。
8762 x11-base xorg-server dmx Build the Distributed Multiheaded X server 构建分布式多头 X 服务器
8763 x11-base xorg-server elogind Use elogind to get control over framebuffer when running as regular user 以普通用户身份运行时,使用 elogind 控制帧缓冲区
8764 x11-base xorg-server kdrive Build the kdrive X servers 构建 kdrive X 服务器
8765 x11-base xorg-server unwind Enable libunwind usage for backtraces 为回溯启用 libunwind
8766 x11-base xorg-server xcsecurity Build Security extension 构建安全扩展
8767 x11-base xorg-server xephyr Build the Xephyr server 构建 Xephyr 服务器
8768 x11-base xorg-server xnest Build the Xnest server 构建 Xnest 服务器
8769 x11-base xorg-server xorg Build the Xorg X server (HIGHLY RECOMMENDED) 构建 Xorg X 服务器(强烈推荐)
8770 x11-base xorg-server xvfb Build the Xvfb server 构建 Xvfb 服务器
8771 x11-base xorg-x11 fonts Install fonts from X.Org 从 X.Org 安装字体
8772 x11-base xwayland unwind Enable libunwind usage for backtraces 为回溯启用 libunwind
8773 x11-base xwayland xcsecurity Build Security extension 构建安全扩展
8774 x11-drivers nvidia-drivers driver Install kernel driver modules 安装内核驱动模块
8775 x11-drivers nvidia-drivers kernel-open Use the open source variant of drivers (Turing/Ampere+ GPUs only, aka GTX 1650+, very experimental) 使用驱动程序的开源变体(仅限 Turing/Ampere+ GPU,又名 GTX 1650+,非常实验性)
8776 x11-drivers nvidia-drivers persistenced Install the persistence daemon for keeping devices state when unused 安装持久性守护程序以在未使用时保持设备状态
8777 x11-drivers nvidia-drivers static-libs Install the XNVCtrl static library for accessing sensors and other features 安装 XNVCtrl 静态库以访问传感器和其他功能
8778 x11-drivers nvidia-drivers tools Install additional tools such as nvidia-settings 安装其他工具,例如 nvidia-settings
8779 x11-drivers xf86-video-geode ztv Enable building the V4L2 ZTV driver 启用构建 V4L2 ZTV 驱动程序
8780 x11-drivers xf86-video-intel sna Enable SandyBridge's New Acceleration (useful on all chipsets, not just SandyBridge) 启用 SandyBridge 的新加速(适用于所有芯片组,而不仅仅是 SandyBridge)
8781 x11-drivers xf86-video-intel tools Build the intel-virtual-output tool 构建英特尔虚拟输出工具
8782 x11-drivers xf86-video-intel uxa Enable UMA Acceleration Architecture 启用 UMA 加速架构
8783 x11-drivers xf86-video-intel xvmc Enables X-Video Motion Compensation support 启用 X-Video 运动补偿支持
8784 x11-drivers xf86-video-openchrome viaregtool Install registers dumper tool 安装寄存器转储工具
8785 x11-drivers xf86-video-qxl xspice Include Xspice, a standard X server that is also a Spice server 包括 Xspice,一个标准的 X 服务器,也是一个 Spice 服务器
8786 x11-libs agg gpc Enable gpc polygon clipper library 启用 gpc 多边形裁剪器库
8787 x11-libs cairo gles2-only Build the OpenGL ES 2 backend 构建 OpenGL ES 2 后端
8788 x11-libs cairo glib Compile with GLib Object System support 使用 GLib 对象系统支持编译
8789 x11-libs cairo opengl Build the OpenGL backend 构建 OpenGL 后端
8790 x11-libs cairo utils Build support for Cairo script and trace utilities 构建对 Cairo 脚本和跟踪实用程序的支持
8791 x11-libs cairo valgrind Built-in support to mark memory regions 内置支持标记内存区域
8792 x11-libs fltk games Builds and installs some extra games 构建和安装一些额外的游戏
8793 x11-libs fox tools Install adie, calculator, shutterbug, and pathfinder apps. 安装 adie、calculator、shutterbug 和 pathfinder 应用程序。
8794 x11-libs gtk+ broadway Enable the GDK Broadway backend. 启用 GDK Broadway 后端。
8795 x11-libs gtk+ colord Use x11-misc/colord for color management in printing 在打印中使用 x11-misc/colord 进行色彩管理
8796 x11-libs gtk+ sysprof Enable profiling data capture support using dev-util/sysprof-capture 使用 dev-util/sysprof-capture 启用分析数据捕获支持
8797 x11-libs gtkdatabox glade Build with libglade and glade-3 supports, which includes a glade's module for GtkDataBox widget 使用 libglade 和 glade-3 支持构建,其中包括 GtkDataBox 小部件的 glade 模块
8798 x11-libs gtkmathview mathml Install additional fonts for proper mathml support. 安装额外的字体以获得正确的 mathml 支持。
8799 x11-libs gtkmathview t1lib Enable media-libs/t1lib support 启用媒体库/t1lib 支持
8800 x11-libs gtksourceview glade Install a glade catalog file 安装林间空地目录文件
8801 x11-libs libQGLViewer designer Installs dev-qt/designer plugin. 安装 dev-qt/designer 插件。
8802 x11-libs libSM uuid Use UUID for session identification instead of IP address and system time. 使用 UUID 进行会话标识,而不是 IP 地址和系统时间。
8803 x11-libs libXaw deprecated Install deprecated Xaw6 library. 安装已弃用的 Xaw6 库。
8804 x11-libs libXfont2 bzip2 Support bzip2 compressed PCF fonts. 支持 bzip2 压缩的 PCF 字体。
8805 x11-libs libXfont2 truetype Use media-libs/freetype for font rasterization. 使用 media-libs/freetype 进行字体光栅化。
8806 x11-libs libdlo test-program Build the program for testing Displaylink devices. 构建用于测试 Displaylink 设备的程序。
8807 x11-libs libdrm valgrind Compile in valgrind memory hints 在 valgrind 内存提示中编译
8808 x11-libs libfm automount Use gnome-base/gvfs for automounting 使用 gnome-base/gvfs 进行自动挂载
8809 x11-libs libfm udisks Use libfm's udisks-based volume monitor implementation instead of using the one from gvfs 使用 libfm 的基于 udisks 的卷监视器实现,而不是使用来自 gvfs 的实现
8810 x11-libs libfm vala Support custom actions in menus 支持菜单中的自定义操作
8811 x11-libs libva drm Enables VA/DRM API support. 启用 VA/DRM API 支持。
8812 x11-libs libva utils Install VA-API utility programs. 安装 VA-API 实用程序。
8813 x11-libs libva-compat drm Enables VA/DRM API support. 启用 VA/DRM API 支持。
8814 x11-libs libva-compat egl Enables EGL support. 启用 EGL 支持。
8815 x11-libs libva-intel-driver hybrid Enable support for hybrid vaapi hardware acceleration on Intel Haswell and newer architectures 在 Intel Haswell 和更新的架构上启用对混合 vaapi 硬件加速的支持
8816 x11-libs libva-intel-media-driver redistributable Install redistributable media kernel binaries (no source code) files (primarily needed for video encoding support) 安装可再发行媒体内核二进制文件(无源代码)文件(主要用于视频编码支持)
8817 x11-libs libwnck tools Install wnckprop-3 and wnck-urgency-monitor-3 command-line tools 安装 wnckprop-3 和 wnck-urgency-monitor-3 命令行工具
8818 x11-libs libxcb xkb Enable the XCB keyboard extension 启用 XCB 键盘扩展
8819 x11-libs libxkbcommon tools Build the xkbcli tools 构建 xkbcli 工具
8820 x11-libs motif motif22-compatibility Compatibility with Open Motif 2.2 与 Open Motif 2.2 的兼容性
8821 x11-libs pango X Build and install the legacy pangoxft library 构建和安装旧版 pangoxft 库
8822 x11-libs pango sysprof Enable profiling data capture support using dev-util/sysprof-capture 使用 dev-util/sysprof-capture 启用分析数据捕获支持
8823 x11-libs pixman loongson2f Enable Loongson2f MMI optimizations. 启用 Loongson2f MMI 优化。
8824 x11-libs qscintilla designer Build plugin for Qt Designer 为 Qt Designer 构建插件
8825 x11-libs qwt designer Installs dev-qt/designer plugin. 安装 dev-qt/designer 插件。
8826 x11-libs qwt mathml Use the MathML renderer of the Qt solutions package. 使用 Qt 解决方案包的 MathML 渲染器。
8827 x11-libs tslib evdev Build experimental input module 构建实验输入模块
8828 x11-libs tslib uinput Provide alternative ts_uinput evdev device 提供替代 ts_uinput evdev 设备
8829 x11-libs vte icu Enable legacy charset support using dev-libs/icu 使用 dev-libs/icu 启用遗留字符集支持
8830 x11-libs vte systemd Support moving terminal child processes to their own systemd user scopes to avoid terminal getting killed due to child causing OOM 支持将终端子进程移动到自己的systemd用户范围内,以避免终端因子进程导致OOM而被杀死
8831 x11-libs wxGTK gstreamer Enable the wxMediaCtrl class for playing audio and video through gstreamer. 启用 wxMediaCtrl 类以通过 gstreamer 播放音频和视频。
8832 x11-libs wxGTK sdl Use Simple Directmedia Layer (media-libs/libsdl) for audio. 对音频使用简单的 Directmedia 层 (media-libs/libsdl)。
8833 x11-misc albert debug Enable debugging informations 启用调试信息
8834 x11-misc albert python-extensions Install default python extensions system-wide 在系统范围内安装默认的 python 扩展
8835 x11-misc albert statistics Enable local statistics 启用本地统计
8836 x11-misc albert virtualbox Enable app-emulation/virtualbox extension 启用 app-emulation/virtualbox 扩展
8837 x11-misc alock doc Build and install manpage with app-text/asciidoc. 使用 app-text/asciidoc 构建和安装手册页。
8838 x11-misc autorandr launcher Install the launcher, i.e., an alternative to the udev/systemd hooks 安装启动器,即 udev/systemd 挂钩的替代方案
8839 x11-misc bumblebee bbswitch Add dependency on sys-power/bbswitch for PM feature 为 PM 功能添加对 sys-power/bbswitch 的依赖
8840 x11-misc clipmenu dmenu Use dmenu as default launcher 使用 dmenu 作为默认启动器
8841 x11-misc clipmenu fzf Use fzf as default launcher 使用 fzf 作为默认启动器
8842 x11-misc clipmenu rofi Use rofi as default launcher 使用 rofi 作为默认启动器
8843 x11-misc colord argyllcms Enable ArgyllCMS sensor 启用 ArgyllCMS 传感器
8844 x11-misc colord extra-print-profiles Generate extra print profiles. Warning: significant build time and memory requirements. 生成额外的打印配置文件。警告:重要的构建时间和内存要求。
8845 x11-misc fbpager xrender Enable transparency support via x11-libs/libXrender 通过 x11-libs/libXrender 启用透明度支持
8846 x11-misc gpaste gnome Enable proper gnome support and enable gnome shell extension. 启用适当的 gnome 支持并启用 gnome shell 扩展。
8847 x11-misc grsync gtk3 Link against x11-libs/gtk+:3 instead of x11-libs/gtk+:2 链接到 x11-libs/gtk+:3 而不是 x11-libs/gtk+:2
8848 x11-misc gtkdialog gtk2 Build with GTK+2 instead of GTK+3 使用 GTK+2 而不是 GTK+3 构建
8849 x11-misc i3blocks contrib Install contrib modules 安装贡献模块
8850 x11-misc i3status filecaps Linux capabilities library is required for i3status to be able to read net bandwith i3status 需要 Linux 功能库才能读取网络带宽
8851 x11-misc j4-dmenu-desktop dmenu Use x11-misc/dmenu as default. Disable to use a different implementation. 默认使用 x11-misc/dmenu。禁用以使用不同的实现。
8852 x11-misc ktsuss sudo Use the sudo backend instead the su one 使用 sudo 后端而不是 su 后端
8853 x11-misc light-locker dpms Turn on the display on screensaver deactivation. 打开屏幕保护程序停用时的显示。
8854 x11-misc light-locker screensaver Lock the screen on screensaver activation. 在屏幕保护程序激活时锁定屏幕。
8855 x11-misc lightdm gtk Pull in the gtk+ greeter 拉入 gtk+ 问候语
8856 x11-misc lightdm non-root Use non-root user by default 默认使用非root用户
8857 x11-misc mugshot gnome Add support for gnome-base/gnome-control-center 添加对 gnome-base/gnome-control-center 的支持
8858 x11-misc mugshot libreoffice Add support for app-office/libreoffice and app-office/libreoffice-bin 添加对 app-office/libreoffice 和 app-office/libreoffice-bin 的支持
8859 x11-misc mugshot webcam Add support for setting a profile photo in media-video/cheese 添加对在 media-video/cheese 中设置个人资料照片的支持
8860 x11-misc openbox-menu icons Enable support for icons in menus 启用对菜单中图标的支持
8861 x11-misc openbox-menu svg Support SVG icons 支持 SVG 图标
8862 x11-misc picom config-file Enable config file support 启用配置文件支持
8863 x11-misc picom doc Build documentation and man pages (requires app-text/asciidoc) 构建文档和手册页(需要 app-text/asciidoc)
8864 x11-misc picom drm Enable support for using drm for vsync 启用对使用 drm 进行 vsync 的支持
8865 x11-misc picom opengl Enable features that require opengl (opengl backend, and opengl vsync methods) 启用需要 opengl 的功能(opengl 后端和 opengl vsync 方法)
8866 x11-misc polybar i3wm Add support for i3 window manager 添加对 i3 窗口管理器的支持
8867 x11-misc polybar ipc Add support for Inter-Process Messaging 添加对进程间消息传递的支持
8868 x11-misc polybar mpd Add support for Music Player Daemon 添加对音乐播放器守护程序的支持
8869 x11-misc polybar network Enable network support 启用网络支持
8870 x11-misc primus libglvnd Use media-libs/libglvnd for dispatch 使用 media-libs/libglvnd 进行调度
8871 x11-misc py3status gevent Install extra requirement dev-python/gevent to enable green threads. 安装额外要求 dev-python/gevent 以启用绿色线程。
8872 x11-misc py3status minimal Don't depend on x11-misc/i3status if you don't plan to use any of its built-in modules. 如果您不打算使用任何内置模块,请不要依赖 x11-misc/i3status。
8873 x11-misc py3status udev Install extra requirement dev-python/pyudev to enable udev events monitoring on modules. 安装额外要求 dev-python/pyudev 以启用模块上的 udev 事件监控。
8874 x11-misc qtfm dbus Install the qtfm-tray removable device manager 安装 qtfm-tray 可移动设备管理器
8875 x11-misc qtfm shared Install the libQtFM shared library and headers 安装 libQtFM 共享库和头文件
8876 x11-misc read-edid vbe-mode Build get-edid with support for legacy, VBE-based interface. Requires dev-libs/libx86. 构建 get-edid 以支持旧的、基于 VBE 的界面。需要开发库/libx86。
8877 x11-misc redshift geoclue Control dependency on app-misc/geoclue 控制对 app-misc/geoclue 的依赖
8878 x11-misc rofi drun Enable desktop file run dialog 启用桌面文件运行对话框
8879 x11-misc rofi windowmode Enable normal window mode 启用普通窗口模式
8880 x11-misc rss-glx quesoglc Enable support for OpenGL Character Renderer 启用对 OpenGL 字符渲染器的支持
8881 x11-misc sent savedconfig Without a saved config.h, this package depends on media-gfx/farbfeld for image conversions 没有保存的 config.h,这个包依赖于 media-gfx/farbfeld 进行图像转换
8882 x11-misc spacefm video-thumbnails Support video thumbnails with media-video/ffmpegthumbnailer 使用 media-video/ffmpegthumbnailer 支持视频缩略图
8883 x11-misc stalonetray graceful-exit use non-portable hack to exit gracefully on signal 使用非便携式黑客在信号上优雅退出
8884 x11-misc tint2 battery Enable battery status plugin 启用电池状态插件
8885 x11-misc tint2 tint2conf Build/Install tint2conf as well 构建/安装 tint2conf 以及
8886 x11-misc urxvt-perls deprecated Install scripts which have been marked as deprecated by upstream 安装上游标记为已弃用的脚本
8887 x11-misc vnc2swf x11vnc Install script that depends on x11vnc 安装依赖 x11vnc 的脚本
8888 x11-misc wbar gtk Enables the gtk-based wbar-config GUI 启用基于 gtk 的 wbar-config GUI
8889 x11-misc x11vnc xdamage Enable support for the Xdamage library 启用对 Xdamage 库的支持
8890 x11-misc x11vnc xfixes Enable support for the Xfixes library 启用对 Xfixes 库的支持
8891 x11-misc x11vnc xrandr Enable support for the X xrandr extension 启用对 X xrandr 扩展的支持
8892 x11-misc xkbd evdev Enable dev-libs/libevdev support for xtg 为 xtg 启用 dev-libs/libevdev 支持
8893 x11-misc xkbd xi Enable XInput2 support through x11-libs/libXi 通过 x11-libs/libXi 启用 XInput2 支持
8894 x11-misc xkbd xrandr Enable XRandR support through x11-libs/libXrandr 通过 x11-libs/libXrandr 启用 XRandR 支持
8895 x11-misc xkbset tk Install the dev-perl/Tk based xkbset-gui utility 安装基于 dev-perl/Tk 的 xkbset-gui 实用程序
8896 x11-misc xlockmore vtlock Enables support for virtual terminal locking 启用对虚拟终端锁定的支持
8897 x11-misc xlockmore xlockrc Enables xlockrc for people without PAM 为没有 PAM 的人启用 xlockrc
8898 x11-misc xmobar alsa Use alsa-mixer to get the volume from soundcards 使用 alsa-mixer 从声卡获取音量
8899 x11-misc xmobar dbus Publish a service on the session bus for controlling xmobar 在会话总线上发布用于控制 xmobar 的服务
8900 x11-misc xmobar inotify inotify support (modern Linux only). Required for the Mail and MBox plugins inotify 支持(仅限现代 Linux)。 Mail 和 MBox 插件需要
8901 x11-misc xmobar iwlib Wireless info support via Wext ioctls (deprecated) 通过 Wext ioctls 提供无线信息支持(已弃用)
8902 x11-misc xmobar mpd Support mpd plugin 支持mpd插件
8903 x11-misc xmobar mpris Enables MPRIS v1, v2 support 启用 MPRIS v1、v2 支持
8904 x11-misc xmobar rtsopts Reduce process wakekups frequency to decrease CPU usage 降低进程唤醒频率以降低 CPU 使用率
8905 x11-misc xmobar timezone Enables localized date support 启用本地化日期支持
8906 x11-misc xmobar uvmeter Plugin to show UV data for Australia 显示澳大利亚紫外线数据的插件
8907 x11-misc xmobar weather Enable weather plugin 启用天气插件
8908 x11-misc xmobar wifi Wireless info support via nl80211. Required for the Wireless plugin on systems running Linux 通过 nl80211 提供无线信息支持。运行 Linux 的系统上的无线插件需要
8909 x11-misc xmobar xft Use Xft to render text. UTF-8 support included 使用 Xft 渲染文本。包括 UTF-8 支持
8910 x11-misc xmobar xpm Enable usage of xpm for icons 为图标启用 xpm
8911 x11-misc xscreensaver fonts Install the fonts shipped with XScreenSaver that have clear licensing 安装 XScreenSaver 附带的具有明确许可的字体
8912 x11-misc xscreensaver gdk-pixbuf Include support for the x11-libs/gdk-pixbuf library in some demos, which will make it possible for them to read GIF, JPEG, and PNG files as well 在一些演示中包括对 x11-libs/gdk-pixbuf 库的支持,这将使它们也可以读取 GIF、JPEG 和 PNG 文件
8913 x11-misc xscreensaver gdm Use gdmflexiserver from gnome-base/gdm instead of x11-misc/lightdm 使用 gnome-base/gdm 中的 gdmflexiserver 而不是 x11-misc/lightdm
8914 x11-misc xscreensaver gles Emulate OpenGL 1.3 in terms of OpenGL ES 1.x 根据 OpenGL ES 1.x 模拟 OpenGL 1.3
8915 x11-misc xscreensaver glx Use GLX to interface OpenGL and X11 instead of EGL 使用 GLX 来接口 OpenGL 和 X11 而不是 EGL
8916 x11-misc xscreensaver locking Compile in support for locking the display 编译以支持锁定显示
8917 x11-misc xscreensaver new-login Enable user switching support using gdmflexiserver (x11-misc/lightdm) 使用 gdmflexiserver (x11-misc/lightdm) 启用用户切换支持
8918 x11-misc xsr cursor Capture mouse cursor using x11-misc/xdotool, and place them on the screenshots using media-gfx/imagemagick 使用 x11-misc/xdotool 捕获鼠标光标,并使用 media-gfx/imagemagick 将它们放在屏幕截图上
8919 x11-misc yabar playerctl Uses media-sound/playerctl to retrieve the name of the currently played song 使用 media-sound/playerctl 检索当前播放歌曲的名称
8920 x11-plugins bfm gkrellm Enable building of app-admin/gkrellm module 启用 app-admin/gkrellm 模块的构建
8921 x11-plugins e16-epplets cdaudio Enable CD Audio support using media-libs/libcdaudio 使用 media-libs/libcdaudio 启用 CD 音频支持
8922 x11-plugins e16-epplets libgtop Use gnome-base/libgtop to obtain system load information 使用 gnome-base/libgtop 获取系统负载信息
8923 x11-plugins pidgin-mbpurple twitgin Enable graphical plugin for Gtk+ interface of Pidgin. 为 Pidgin 的 Gtk+ 界面启用图形插件。
8924 x11-plugins pidgin-sipe ocs2005-message-hack Disable message timeout for OCS2005 clients which causes "false" not delivered error messages 禁用 OCS2005 客户端的消息超时,这会导致“错误”未传递错误消息
8925 x11-plugins pidgin-sipe openssl Enable crypto support via dev-libs/openssl 通过 dev-libs/openssl 启用加密支持
8926 x11-plugins pidgin-sipe telepathy Support use as a telepathy backend 支持用作心灵感应后端
8927 x11-plugins pidgin-sipe voice Enable experimental voice/video support 启用实验性语音/视频支持
8928 x11-plugins vicious contrib Install extra widgets, some for less common hardware, some contributed by Vicious users. 安装额外的小部件,一些用于不太常见的硬件,一些由 Vicious 用户提供。
8929 x11-plugins wmbattery apm Add APM (Advanced Power Management) support 添加 APM(高级电源管理)支持
8930 x11-plugins wmfire session Enable session management 启用会话管理
8931 x11-plugins wmudmount gcr Enable support for secure memory with app-crypt/gcr 使用 app-crypt/gcr 启用对安全内存的支持
8932 x11-plugins wmudmount secret Enable support for secret service with app-crypt/libsecret 使用 app-crypt/libsecret 启用对秘密服务的支持
8933 x11-terms aterm background Enable background image support via media-libs/libafterimage 通过 media-libs/libafterimage 启用背景图像支持
8934 x11-terms aterm xgetdefault Enable resources via X instead of aterm small version 通过 X 而不是 aterm 小版本启用资源
8935 x11-terms gnome-terminal gnome-shell Integrate with gnome-base/gnome-shell search 与 gnome-base/gnome-shell 搜索集成
8936 x11-terms gnome-terminal nautilus Build gnome-base/nautilus extension 构建 gnome-base/nautilus 扩展
8937 x11-terms guake utempter Include utmp management support via sys-libs/libutempter 通过 sys-libs/libuteempter 包含 utmp 管理支持
8938 x11-terms kitty transfer Enable transfer kitten using net-libs/librsync 使用 net-libs/librsync 启用传输小猫
8939 x11-terms mlterm brltty Enable support for app-accessibility/brltty 启用对 app-accessibility/brltty 的支持
8940 x11-terms mlterm fcitx Enable support for app-i18n/fcitx 启用对 app-i18n/fcitx 的支持
8941 x11-terms mlterm harfbuzz Enable support for OpenType Layout (media-libs/harfbuzz) 启用对 OpenType 布局的支持 (media-libs/harfbuzz)
8942 x11-terms mlterm ibus Enable support for app-i18n/ibus 启用对 app-i18n/ibus 的支持
8943 x11-terms mlterm libssh2 Enable support for net-libs/libssh2 启用对 net-libs/libssh2 的支持
8944 x11-terms mlterm regis Enable support for ReGIS 启用对 ReGIS 的支持
8945 x11-terms mlterm scim Enable support for app-i18n/scim 启用对 app-i18n/scim 的支持
8946 x11-terms mlterm skk Enable support for SKK (virtual/skkserv or app-i18n/skk-jisyo) 启用对 SKK 的支持(virtual/skkserv 或 app-i18n/skk-jisyo)
8947 x11-terms mlterm uim Enable support for app-i18n/uim 启用对 app-i18n/uim 的支持
8948 x11-terms mlterm utempter Enable support for sys-libs/libutempter 启用对 sys-libs/libempter 的支持
8949 x11-terms mlterm wayland Enable support for Wayland 启用对 Wayland 的支持
8950 x11-terms mrxvt menubar Enable mrxvt menubar 启用 mrxvt 菜单栏
8951 x11-terms mrxvt utempter REcords user logins. Useful on multi-user systems 记录用户登录。在多用户系统上很有用
8952 x11-terms rxvt-unicode 24-bit-color Enable 24-bit color support. Note that this feature is unofficial, may cause visual glitches due to the fact there is no termcap/terminfo definition for rxvt-unicode-24bit yet so it is necessary to use the one for 256 colours, visibly increases memory usage, and might slow urxvt down dramatically when more than six fonts are in use in a terminal instance. 启用 24 位颜色支持。请注意,此功能是非官方的,由于 rxvt-unicode-24bit 还没有 termcap/terminfo 定义,因此可能会导致视觉故障,因此必须将其用于 256 色,明显增加内存使用量,并可能减慢 urxvt当终端实例中使用超过六种字体时,它会急剧下降。
8953 x11-terms rxvt-unicode 256-color Enable 256 color support 启用 256 色支持
8954 x11-terms rxvt-unicode blink Enable blinking text 启用闪烁文本
8955 x11-terms rxvt-unicode fading-colors Enable colors fading when off focus 离开焦点时启用颜色淡化
8956 x11-terms rxvt-unicode font-styles Enable support for bold and italic fonts 启用对粗体和斜体字体的支持
8957 x11-terms rxvt-unicode gdk-pixbuf Enable transparency support using x11-libs/gdk-pixbuf 使用 x11-libs/gdk-pixbuf 启用透明度支持
8958 x11-terms rxvt-unicode iso14755 Enable ISO-14755 support 启用 ISO-14755 支持
8959 x11-terms rxvt-unicode mousewheel Enable scrolling via mouse wheel or buttons 4 and 5 通过鼠标滚轮或按钮 4 和 5 启用滚动
8960 x11-terms rxvt-unicode perl Enable perl script support. You can still disable this at runtime with -pe "" 启用 perl 脚本支持。您仍然可以在运行时使用 -pe "" 禁用它
8961 x11-terms rxvt-unicode unicode3 Use 21 instead of 16 bits to represent unicode characters 使用 21 而不是 16 位来表示 unicode 字符
8962 x11-terms terminology extras Install additional testing tools 安装额外的测试工具
8963 x11-terms xfce4-terminal utempter Include utmp management support via sys-libs/libutempter 通过 sys-libs/libuteempter 包含 utmp 管理支持
8964 x11-terms xterm openpty Use openpty() in preference to posix_openpt() 使用 openpty() 优先于 posix_openpt()
8965 x11-terms xterm sixel Enable sixel graphics support 启用 Sixel 图形支持
8966 x11-terms xterm toolbar Enable the xterm toolbar to be built 启用要构建的 xterm 工具栏
8967 x11-themes arc-theme cinnamon Install theme for gnome-extra/cinnamon 为 gnome-extra/cinnamon 安装主题
8968 x11-themes arc-theme gnome-shell Install theme for gnome-base/gnome-shell 为 gnome-base/gnome-shell 安装主题
8969 x11-themes arc-theme gtk2 Install GTK+2 theme 安装 GTK+2 主题
8970 x11-themes arc-theme gtk3 Install GTK+3 theme 安装 GTK+3 主题
8971 x11-themes arc-theme gtk4 Install GTK+4 theme 安装 GTK+4 主题
8972 x11-themes arc-theme mate Install Metacity theme for mate-base/mate 为 mate-base/mate 安装 Metacity 主题
8973 x11-themes arc-theme pre-rendered Avoid media-gfx/inkscape and media-gfx/optipng dependencies by using pre-rendered PNGs 通过使用预渲染的 PNG 避免 media-gfx/inkscape 和 media-gfx/optipng 依赖
8974 x11-themes arc-theme transparency Enable transparency 启用透明度
8975 x11-themes arc-theme xfce Install theme for xfce-base/xfwm4 为 xfce-base/xfwm4 安装主题
8976 x11-themes comix-xcursors lefthanded Install lefthanded version of theme in addition to default one. 除了默认主题外,还安装左手版本的主题。
8977 x11-themes comix-xcursors opaque Install non-transparent version of theme in addition to default one. 除默认主题外,还安装非透明版本的主题。
8978 x11-themes fluent-icon-theme black Install the black version of symbolic icons (for white color-scheme panels) 安装黑色版本的符号图标(用于白色方案面板)
8979 x11-themes fluent-icon-theme hardlink Hardlink duplicate icons to greatly reduce installation size 硬链接重复图标,大大减少安装大小
8980 x11-themes fluent-icon-theme round Install the round version of symbolic icons 安装圆形版本的符号图标
8981 x11-themes gentoo-artwork grub Install extra sys-boot/grub themes 安装额外的 sys-boot/grub 主题
8982 x11-themes gentoo-artwork icons Install icons 安装图标
8983 x11-themes gentoo-artwork lilo Install extra sys-boot/lilo themes 安装额外的 sys-boot/lilo 主题
8984 x11-themes gentoo-artwork pixmaps Install pixmaps 安装像素图
8985 x11-themes gtk-engines-murrine animation-rtl Progressbar animation from right to left 从右到左的进度条动画
8986 x11-themes gtk-engines-murrine themes Pull in themes via x11-themes/murrine-themes 通过 x11-themes/murrine-themes 引入主题
8987 x11-themes gtk-engines-nodoka animation-rtl Progressbar animation from right to left 从右到左的进度条动画
8988 x11-themes kfaenza additional Install additional KFaenza icons. See third homepage for details 安装额外的 KFaenza 图标。详情见第三个主页
8989 x11-themes mate-themes-meta gtk2-only Allow dependency-resolution for a system without GTK+3 允许对没有 GTK+3 的系统进行依赖关系解析
8990 x11-themes tela-icon-theme black Install black folder version 安装黑色文件夹版本
8991 x11-themes tela-icon-theme blue Install blue folder version 安装蓝色文件夹版本
8992 x11-themes tela-icon-theme brown Install bworn folder version 安装 bworn 文件夹版本
8993 x11-themes tela-icon-theme green Install green folder version 安装绿色文件夹版本
8994 x11-themes tela-icon-theme grey Install grey folder version 安装灰色文件夹版本
8995 x11-themes tela-icon-theme hardlink Hardlink duplicate icons to greatly reduce installation size 硬链接重复图标,大大减少安装大小
8996 x11-themes tela-icon-theme kde Install colorshceme version for KDE plasma (folder color follow the colorscheme) 为 KDE 等离子安装 colorshceme 版本(文件夹颜色遵循颜色方案)
8997 x11-themes tela-icon-theme manjaro Install manjaro folder version 安装manjaro文件夹版本
8998 x11-themes tela-icon-theme orange Install orange folder version 安装橙色文件夹版本
8999 x11-themes tela-icon-theme pink Install pink folder version 安装粉色文件夹版本
9000 x11-themes tela-icon-theme purple Install purple folder version 安装紫色文件夹版本
9001 x11-themes tela-icon-theme red Install red older version 安装红色旧版本
9002 x11-themes tela-icon-theme standard Install standard folder version 安装标准文件夹版本
9003 x11-themes tela-icon-theme ubuntu Install ubuntu folder version 安装ubuntu文件夹版本
9004 x11-themes tela-icon-theme yellow Install yellow folder version 安装黄色文件夹版本
9005 x11-themes vertex-theme cinnamon Install theme for gnome-extra/cinnamon 为 gnome-extra/cinnamon 安装主题
9006 x11-themes vertex-theme gnome-shell Install theme for gnome-base/gnome-shell 为 gnome-base/gnome-shell 安装主题
9007 x11-themes vertex-theme mate Install Metacity theme for mate-base/mate 为 mate-base/mate 安装 Metacity 主题
9008 x11-themes vertex-theme xfce Install theme for xfce-base/xfwm4 为 xfce-base/xfwm4 安装主题
9009 x11-themes zuki-themes gnome-shell Install theme for gnome-base/gnome-shell 为 gnome-base/gnome-shell 安装主题
9010 x11-themes zuki-themes gtk2 Install GTK+2 theme 安装 GTK+2 主题
9011 x11-themes zuki-themes mate Install Metacity theme for mate-base/mate 为 mate-base/mate 安装 Metacity 主题
9012 x11-themes zuki-themes xfce Install theme for xfce-base/xfwm4 为 xfce-base/xfwm4 安装主题
9013 x11-themes zukitwo gnome-shell Install theme for gnome-base/gnome-shell 为 gnome-base/gnome-shell 安装主题
9014 x11-wm ctwm jpeg Enable jpeg image support with virtual/jpeg 使用 virtual/jpeg 启用 jpeg 图像支持
9015 x11-wm ctwm rplay Enable sound support from media-sound/rplay 从 media-sound/rplay 启用声音支持
9016 x11-wm ctwm test Enable upstream test suite, build required binary 启用上游测试套件,构建所需的二进制文件
9017 x11-wm ctwm xpm Enable xpm icon support with x11-libs/libXpm 使用 x11-libs/libXpm 启用 xpm 图标支持
9018 x11-wm e16 container Use container window (experimental) 使用容器窗口(实验性)
9019 x11-wm e16 debug Build libtrip debugging library 构建 libtrip 调试库
9020 x11-wm e16 dialogs Enable support for configuration dialogs 启用对配置对话框的支持
9021 x11-wm e16 libhack Build libhack window mode helper library 构建 libhack 窗口模式助手库
9022 x11-wm e16 modules Enable support for loadable modules 启用对可加载模块的支持
9023 x11-wm e16 pango Enable pango font rendering using x11-libs/pango 使用 x11-libs/pango 启用 pango 字体渲染
9024 x11-wm e16 player Enable audio using aplay from media-sound/alsa-utils 使用来自 media-sound/alsa-utils 的 aplay 启用音频
9025 x11-wm e16 poll Use poll() event handler API (recommended) 使用 poll() 事件处理 API(推荐)
9026 x11-wm e16 select Use select() event handler API 使用 select() 事件处理程序 API
9027 x11-wm e16 themes Install the official E16 themes using x11-themes/e16-themes 使用 x11-themes/e16-themes 安装官方 E16 主题
9028 x11-wm e16 xi2 Enable the experimental multipointer input XInput2. This incldues the MultiPointer X feature 启用实验性多指针输入 XInput2。这包括 MultiPointer X 功能
9029 x11-wm e16 xpresent Enable support for the X Present extension via x11-libs/libXpresent 通过 x11-libs/libXpresent 启用对 X Present 扩展的支持
9030 x11-wm e16 xrandr Enable support for the X RandR extension via x11-libs/libXrandr 通过 x11-libs/libXrandr 启用对 X RandR 扩展的支持
9031 x11-wm e16 xrender Enable transparency support using the X Render extension via x11-libs/libXrender 通过 x11-libs/libXrender 使用 X Render 扩展启用透明度支持
9032 x11-wm e16 xsm Enable X Session Management support using x11-libs/libSM 使用 x11-libs/libSM 启用 X 会话管理支持
9033 x11-wm e16 xsync Enable X Sync support 启用 X 同步支持
9034 x11-wm e16 zoom Support resolution change of current window (zoom) usingx11-libs/libXxf86vm (xvidtune) 支持使用 x11-libs/libXxf86vm (xvidtune) 改变当前窗口的分辨率(缩放)
9035 x11-wm echinus xrandr Enable support for multihead configuration 启用对多头配置的支持
9036 x11-wm enlightenment xwayland Enable XWayland application support 启用 XWayland 应用程序支持
9037 x11-wm fluxbox slit Enables the Fluxbox slit (or dock) 启用 Fluxbox 狭缝(或停靠)
9038 x11-wm fluxbox systray Enables the system tray in the Fluxbox toolbar 在 Fluxbox 工具栏中启用系统托盘
9039 x11-wm fluxbox toolbar Enables the Fluxbox toolbar 启用 Fluxbox 工具栏
9040 x11-wm fvwm lock Enable screen locking 启用屏幕锁定
9041 x11-wm fvwm netpbm Enable NetPBM support (used by FvwmScript-ScreenDump) 启用 NetPBM 支持(由 FvwmScript-ScreenDump 使用)
9042 x11-wm fvwm rplay Enable rplay support 启用 rplay 支持
9043 x11-wm fvwm stroke Mouse Gesture support 鼠标手势支持
9044 x11-wm fvwm3 go Enable building dev-lang/go code (FvwmPrompt) 启用构建 dev-lang/go 代码 (FvwmPrompt)
9045 x11-wm fvwm3 lock Enable screen locking 启用屏幕锁定
9046 x11-wm fvwm3 netpbm Enable NetPBM support (used by FvwmScript-ScreenDump) 启用 NetPBM 支持(由 FvwmScript-ScreenDump 使用)
9047 x11-wm fvwm3 rplay Enable rplay support 启用 rplay 支持
9048 x11-wm fvwm3 stroke Mouse Gesture support 鼠标手势支持
9049 x11-wm i3 doc Build and install the HTML documentation and regenerate the man pages 构建和安装 HTML 文档并重新生成手册页
9050 x11-wm icewm gdk-pixbuf Enable gdk-pixbuf rendering 启用 gdk-pixbuf 渲染
9051 x11-wm lumina desktop-utils Build and install lumina's desktop-utils 构建和安装 lumina 的 desktop-utils
9052 x11-wm metacity libcanberra Enable sound event support using media-libs/libcanberra 使用 media-libs/libcanberra 启用声音事件支持
9053 x11-wm metacity vulkan Enable Vulkan based compositor support via META_COMPOSITOR=vulkan environment variable 通过 META_COMPOSITOR=vulkan 环境变量启用基于 Vulkan 的合成器支持
9054 x11-wm musca apis Optionally install the experimental `apis' window manager 可选择安装实验性“apis”窗口管理器
9055 x11-wm musca xlisten Optionally install the xlisten utility 可选择安装 xlisten 实用程序
9056 x11-wm mutter elogind Rely on sys-auth/elogind as logind provider for Wayland sessions 依赖 sys-auth/elogind 作为 Wayland 会话的登录提供程序
9057 x11-wm mutter screencast Enable support for remote desktop and screen cast using media-video/pipewire 使用 media-video/pipewire 启用对远程桌面和屏幕投射的支持
9058 x11-wm mutter sysprof Enable profiling data capture support using dev-util/sysprof-capture 使用 dev-util/sysprof-capture 启用分析数据捕获支持
9059 x11-wm notion xrandr Add support for xrandr 添加对 xrandr 的支持
9060 x11-wm openbox session Enables support for session managers 启用对会话管理器的支持
9061 x11-wm openbox xdg Install the python xdg files for xdg autostart 为 xdg 自动启动安装 python xdg 文件
9062 x11-wm pekwm contrib Install optional extras in the documentation directory 在文档目录中安装可选的附加功能
9063 x11-wm pekwm themes Install additional themes 安装其他主题
9064 x11-wm ratpoison history Use sys-libs/readline for history handling 使用 sys-libs/readline 进行历史处理
9065 x11-wm ratpoison sloppy Install sloppy, a focus-follows-mouse implementation for ratpoison 安装 sloppy,鼠毒的焦点跟随鼠标实现
9066 x11-wm ratpoison xrandr Enable support for XRandR 启用对 XRandR 的支持
9067 x11-wm stumpwm contrib Install contrib modules 安装贡献模块
9068 x11-wm stumpwm doc Include documentation 包括文档
9069 x11-wm subtle xrandr Enable support for the X RandR extension 启用对 X RandR 扩展的支持
9070 x11-wm subtle xtest Enable support for the XTest extension 启用对 XTest 扩展的支持
9071 x11-wm vtwm rplay Enable rplay support, needed for sound. 启用声音所需的 rplay 支持。
9072 x11-wm windowmaker modelock Enable XKB language status lock support. README says: "If you don't know what it is you probably don't need it." 启用 XKB 语言状态锁定支持。自述文件说:“如果你不知道它是什么,你可能不需要它。”
9073 x11-wm windowmaker xrandr Enable XRandR window extension support 启用 XRandR 窗口扩展支持
9074 x11-wm wmfs imlib2 Enable image support through media-libs/imlib2 通过 media-libs/imlib2 启用图像支持
9075 x11-wm xmonad no-autorepeat-keys Allow ignoring of keyboard autorepeat. 允许忽略键盘自动重复。
9076 x11-wm xpra brotli Enable brotli compression support 启用 brotli 压缩支持
9077 x11-wm xpra client Build client-side code 构建客户端代码
9078 x11-wm xpra clipboard Enable clipboard support 启用剪贴板支持
9079 x11-wm xpra csc Enable csc softscaler support 启用 csc 软缩放器支持
9080 x11-wm xpra html Install the HTML5 client 安装 HTML5 客户端
9081 x11-wm xpra ibus Use ibus input method via app-i18n/ibus 通过 app-i18n/ibus 使用 ibus 输入法
9082 x11-wm xpra pillow Enable pillow support 启用枕头支撑
9083 x11-wm xpra pinentry Use app-crypt/pinentry for password entry 使用 app-crypt/pinentry 输入密码
9084 x11-wm xpra server Build server-side code 构建服务器端代码
9085 x11-wm xpra vpx Enable vpx image format support 启用 vpx 图像格式支持
9086 x11-wm xpra webcam Enable webcam support via opencv 通过 opencv 启用网络摄像头支持
9087 x11-wm xpra xdg Enable support for XDG-based menus 启用对基于 XDG 的菜单的支持
9088 xfce-base libxfce4ui glade Build support for Glade 3's GtkBuilder implementation 构建对 Glade 3 的 GtkBuilder 实现的支持
9089 xfce-base libxfce4ui system-info Enable system information in xfce4-about. 在 xfce4-about 中启用系统信息。
9090 xfce-base thunar trash-panel-plugin Build the trash status indicator plugin for the XFCE panel 为 XFCE 面板构建垃圾状态指示器插件
9091 xfce-base xfce4-panel dbusmenu Enable dev-libs/libdbusmenu integration (in status notifier plugin) 启用 dev-libs/libdbusmenu 集成(在状态通知插件中)
9092 xfce-base xfce4-settings libcanberra Enable sound event support using media-libs/libcanberra 使用 media-libs/libcanberra 启用声音事件支持
9093 xfce-base xfce4-settings xklavier Enable keyboard layout selection support using x11-libs/libxklavier 使用 x11-libs/libxklavier 启用键盘布局选择支持
9094 xfce-base xfdesktop thunar Build support for desktop icons (for example, launchers and folders) 构建对桌面图标的支持(例如,启动器和文件夹)
9095 xfce-base xfwm4 xpresent Enable the XPresent extension for sync to vblank 启用 XPresent 扩展以同步到 vblank
9096 xfce-extra tumbler epub Enable support for .epub thumbnailer using app-text/libgepub 使用 app-text/libgepub 启用对 .epub 缩略图的支持
9097 xfce-extra tumbler odf Enable support for .odf thumbnailers by using gnome-extra/libgsf 使用 gnome-extra/libgsf 启用对 .odf 缩略图的支持
9098 xfce-extra xfce4-clipman-plugin qrcode Enable support for media-gfx/qrencode 启用对 media-gfx/qrencode 的支持
9099 xfce-extra xfce4-mpc-plugin libmpd Build using media-libs/libmpd backend, instead of native fallback which is preferred 使用 media-libs/libmpd 后端构建,而不是首选的原生回退
9100 xfce-extra xfce4-power-manager panel-plugin Build the power management plugin for the XFCE panel 为 XFCE 面板构建电源管理插件
9101 xfce-extra xfce4-pulseaudio-plugin keybinder Enable support for global hotkeys using dev-libs/keybinder. 使用 dev-libs/keybinder 启用对全局热键的支持。
9102 xfce-extra xfce4-pulseaudio-plugin wnck Enable experimental support for raising media player windows using x11-libs/libwnck. 启用对使用 x11-libs/libwnck 提升媒体播放器窗口的实验性支持。
9103 xfce-extra xfce4-screensaver locking Enable screen locking support 启用屏幕锁定支持

Diode

导航 (返回顶部) 1. Diode 1.1 Diode 概述 1.2 肖克利二极管方程 1.3 缩写 Abbreviations 2. 主要功能 2.1 单向电流 (Unidirectional current flow) 2.2 阈值电压 (Threshold...