pkgsrc/devel/Makefile
adam b555c5d4b1 cmake: updated to 3.16.0
3.16.0:

New Features
============


Languages
---------

* CMake learned to support the Objective C ("OBJC") and Objective
  C++ ("OBJCXX") languages.  They may be enabled via the "project()"
  and "enable_language()" commands.  When "OBJC" or "OBJCXX" is
  enabled, source files with the ".m" or ".mm", respectively, will be
  compiled as Objective C or C++.  Otherwise they will be treated as
  plain C++ sources as they were before.


Compilers
---------

* The "Clang" compiler is now supported on "Solaris".


Platforms
---------

* On AIX, executables using the "ENABLE_EXPORTS" target property now
  produce a linker import file with a ".imp" extension in addition to
  the executable file.  Plugins (created via "add_library()" with the
  "MODULE" option) that use "target_link_libraries()" to link to the
  executable for its symbols are now linked using the import file. The
  "install(TARGETS)" command now installs the import file as an
  "ARCHIVE" artifact.

* On AIX, runtime linking is no longer enabled by default.  CMake
  provides the linker enough information to resolve all symbols up
  front. One may manually enable runtime linking for shared libraries
  and/or loadable modules by adding "-Wl,-G" to their link flags (e.g.
  in the "CMAKE_SHARED_LINKER_FLAGS" or "CMAKE_MODULE_LINKER_FLAGS"
  variable). One may manually enable runtime linking for executables
  by adding "-Wl,-brtl" to their link flags (e.g. in the
  "CMAKE_EXE_LINKER_FLAGS" variable).


Command-Line
------------

* "cmake(1)" "-E" now supports "true" and "false" commands, which do
  nothing while returning exit codes of 0 and 1, respectively.

* "cmake(1)" gained a "--trace-redirect=" command line option
  that can be used to redirect "--trace" output to a file instead of
  "stderr".

* The "cmake(1)" "--loglevel" command line option has been renamed
  to "--log-level" to make it consistent with the naming of other
  command line options.  The "--loglevel" option is still supported to
  preserve backward compatibility.


Commands
--------

* The "add_test()" command learned the option "COMMAND_EXPAND_LISTS"
  which causes lists in the "COMMAND" argument to be expanded,
  including lists created by generator expressions.

* The "file()" command learned a new sub-command,
  "GET_RUNTIME_DEPENDENCIES", which allows you to recursively get the
  list of libraries linked by an executable or library. This sub-
  command is intended as a replacement for "GetPrerequisites".

* The "find_file()", "find_library()", "find_path()",
  "find_package()", and "find_program()" commands have learned to
  check the following variables to control searching

  * "CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH" - Controls the searching
    the cmake-specific environment variables.

  * "CMAKE_FIND_USE_CMAKE_PATH" - Controls the searching the cmake-
    specific cache variables.

  * "CMAKE_FIND_USE_CMAKE_SYSTEM_PATH" - Controls the searching
    cmake platform specific variables.

  * "CMAKE_FIND_USE_PACKAGE_ROOT_PATH" - Controls the searching of
    "_ROOT" variables.

  * "CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH" - Controls the
    searching the standard system environment variables.

* The "find_package()" command has learned to check the following
  variables to control searching

  * "CMAKE_FIND_USE_PACKAGE_REGISTRY" - Controls the searching the
    cmake user registry.

* The "message()" command learned indentation control with the new
  "CMAKE_MESSAGE_INDENT" variable.

* The "target_precompile_headers()" command was added to specify a
  list of headers to precompile for faster compilation times.


Variables
---------

* The "CMAKE_CUDA_RESOLVE_DEVICE_SYMBOLS" variable has been
  introduced to optionally initialize the
  "CUDA_RESOLVE_DEVICE_SYMBOLS" target property.

* The "CMAKE_ECLIPSE_RESOURCE_ENCODING" variable was added to
  specify the resource encoding for the the "Eclipse CDT4" extra
  generator.


Properties
----------

* The "BUILD_RPATH" and "INSTALL_RPATH" target properties now
  support "generator expressions".

* The "INSTALL_REMOVE_ENVIRONMENT_RPATH" target property was added
  to remove compiler-defined "RPATH" entries from a target. This
  property is initialized by the
  "CMAKE_INSTALL_REMOVE_ENVIRONMENT_RPATH" variable.

* The "PRECOMPILE_HEADERS" target property was added to specify a
  list of headers to precompile for faster compilation times. Set it
  using the "target_precompile_headers()" command.

* The "UNITY_BUILD" target property was added to tell generators to
  batch include source files for faster compilation times.

* The "VS_CONFIGURATION_TYPE" target property now supports
  "generator expressions".

* The "VS_DPI_AWARE" target property was added to tell Visual Studio
  Generators to set the "EnableDpiAwareness" property in ".vcxproj"
  files.

* The "XCODE_SCHEME_DEBUG_DOCUMENT_VERSIONING" target property was
  added to tell the "Xcode" generator to set the value of the "Allow
  debugging when using document Versions Browser" schema option.


Modules
-------

* The "FindDoxygen" module "doxygen_add_docs()" command gained a new
  "USE_STAMP_FILE" option.  When this option present, the custom
  target created by the command will only re-run Doxygen if any of the
  source files have changed since the last successful run.

* The "FindGnuTLS" module now provides an imported target.

* The "FindPackageHandleStandardArgs" module
  "find_package_handle_standard_args()" command gained a new
  "REASON_FAILURE_MESSAGE" option to specify a message giving the
  reason for the failure.

* The "FindPkgConfig" module "pkg_search_module()" macro now defines
  a "_MODULE_NAME" result variable containing the first
  matching module name.

* The "FindPython3" and "FindPython" modules gained options to
  control which "ABIs" will be searched.

* The "FindPython3", "FindPython2", and "FindPython" modules now
  support direct specification of artifacts via cache entries.


Autogen
-------

* When using "AUTOMOC", CMake now generates the "-p" path prefix
  option for "moc".  This ensures that "moc" output files are
  identical on different build setups (given, that the headers
  compiled by "moc" are in an "include directory"). Also it ensures
  that "moc" output files will compile correctly when the source
  and/or build directory is a symbolic link.

  The "moc" path prefix generation behavior can be configured by
  setting the new "CMAKE_AUTOMOC_PATH_PREFIX" variable and/or
  "AUTOMOC_PATH_PREFIX" target property.


CTest
-----

* "ctest(1)" now has the ability to serialize tests based on
  resource requirements for each test. See Resource Allocation for
  details.

* A new test property, "SKIP_REGULAR_EXPRESSION", has been added.
  This property is similar to "FAIL_REGULAR_EXPRESSION" and
  "PASS_REGULAR_EXPRESSION", but with the same meaning as
  "SKIP_RETURN_CODE". This is useful, for example, in cases where the
  user has no control over the return code of the test. For example,
  in Catch2, the return value is the number of assertion failed,
  therefore it is impossible to use it for "SKIP_RETURN_CODE".


CPack
-----

* "cpack(1)" learned support for multiple configurations for "-C"
 option.

* The "CPack DEB Generator" is now able to format generic text
  (usually used as the description for multiple CPack generators)
  according to the Debian Policy Manual.  See the
  "CPACK_PACKAGE_DESCRIPTION_FILE" and
  "CPACK_DEBIAN__DESCRIPTION" variables.

* The "CPack Archive Generator" learned to generate ".tar.zst"
  packages with Zstandard compression.


Deprecated and Removed Features
===============================

* An explicit deprecation diagnostic was added for policy "CMP0067"
  ("CMP0066" and below were already deprecated). The "cmake-
  policies(7)" manual explains that the OLD behaviors of all policies
  are deprecated and that projects should port to the NEW behaviors.

* The "CMAKE_FIND_PACKAGE_NO_PACKAGE_REGISTRY" variable has been
  deprecated.  Use the "CMAKE_FIND_USE_PACKAGE_REGISTRY" variable
  instead.

* The "GetPrerequisites" module has been deprecated, as it has been
  superceded by "file(GET_RUNTIME_DEPENDENCIES)".

* The "CPACK_INSTALL_SCRIPT" variable has been deprecated in favor
  of the new, more accurately named "CPACK_INSTALL_SCRIPTS" variable.


Other Changes
=============

* The "cmake(1)" "-C " option now evaluates the
  initial cache script with "CMAKE_SOURCE_DIR" and "CMAKE_BINARY_DIR"
  set to the top-level source and build trees.

* The "cmake(1)" "-E remove_directory" command-line tool, when given
  the path to a symlink to a directory, now removes just the symlink.
  It no longer removes content of the linked directory.

* The "ctest(1)"  "--build-makeprogram" command-line option now
  specifies the make program used when configuring a project with the
  "Ninja" generator or the Makefile Generators.

* The "ExternalProject" module "ExternalProject_Add()" command has
  been updated so that "GIT_SUBMODULES """ initializes no submodules.
  See policy "CMP0097".

* The "FindGTest" module has been updated to recognize MSVC build
  trees generated by GTest 1.8.1.

* The "project()" command no longer strips leading zeros in version
  components.  See policy "CMP0096".

* The Qt Compressed Help file is now named "CMake.qch", which no
  longer contains the release version in the file name.  When CMake is
  upgraded in-place, the name and location of this file will remain
  constant. Tools such as IDEs, help viewers, etc. should now be able
  to refer to this file at a fixed location that remains valid across
  CMake upgrades.

* "RPATH" entries are properly escaped in the generated CMake
  scripts used for installation.  See policy "CMP0095".

* When using "CMAKE_WINDOWS_EXPORT_ALL_SYMBOLS" on Windows the auto-
  generated exports are now updated only when the object files
  providing the symbols are updated.
2019-11-27 22:32:27 +00:00

2883 lines
66 KiB
Makefile

# $NetBSD: Makefile,v 1.2960 2019/11/27 22:32:27 adam Exp $
#
COMMENT= Development utilities
SUBDIR+= ETL
SUBDIR+= ExmanIDE
SUBDIR+= GConf
SUBDIR+= GConf-ui
SUBDIR+= Gorm
SUBDIR+= MoarVM
SUBDIR+= ObjectiveLib
SUBDIR+= ProjectCenter
SUBDIR+= R-BH
SUBDIR+= R-IRdisplay
SUBDIR+= R-IRkernel
SUBDIR+= R-R6
SUBDIR+= R-Rcpp
SUBDIR+= R-assertthat
SUBDIR+= R-bindr
SUBDIR+= R-bit
SUBDIR+= R-bit64
SUBDIR+= R-blob
SUBDIR+= R-callr
SUBDIR+= R-checkmate
SUBDIR+= R-cli
SUBDIR+= R-clipr
SUBDIR+= R-covr
SUBDIR+= R-crayon
SUBDIR+= R-desc
SUBDIR+= R-devtools
SUBDIR+= R-evaluate
SUBDIR+= R-fansi
SUBDIR+= R-fs
SUBDIR+= R-git2r
SUBDIR+= R-glue
SUBDIR+= R-ini
SUBDIR+= R-inline
SUBDIR+= R-iterators
SUBDIR+= R-lazyeval
SUBDIR+= R-magrittr
SUBDIR+= R-memoise
SUBDIR+= R-pkgbuild
SUBDIR+= R-pkgconfig
SUBDIR+= R-pkgload
SUBDIR+= R-plogr
SUBDIR+= R-proto
SUBDIR+= R-purrr
SUBDIR+= R-rcmdcheck
SUBDIR+= R-rematch
SUBDIR+= R-remotes
SUBDIR+= R-repr
SUBDIR+= R-rex
SUBDIR+= R-rio
SUBDIR+= R-rlang
SUBDIR+= R-roxygen2
SUBDIR+= R-rprojroot
SUBDIR+= R-sessioninfo
SUBDIR+= R-tcltk2
SUBDIR+= R-testthat
SUBDIR+= R-tidyselect
SUBDIR+= R-usethis
SUBDIR+= R-uuid
SUBDIR+= R-whisker
SUBDIR+= R-withr
SUBDIR+= R-xfun
SUBDIR+= RBTools
SUBDIR+= Renaissance
SUBDIR+= SDL
SUBDIR+= SDL-intro-en
SUBDIR+= SDL-intro-ko
SUBDIR+= SDL2
SUBDIR+= SDL_Pango
SUBDIR+= SDL_gfx
SUBDIR+= SDL_ttf
SUBDIR+= SDLmm
SUBDIR+= SOPE
SUBDIR+= SOPE4
SUBDIR+= ZenTest
SUBDIR+= accerciser
SUBDIR+= acme
SUBDIR+= acr
SUBDIR+= acunia-jam
SUBDIR+= adacurses
SUBDIR+= adocman
SUBDIR+= aegis
SUBDIR+= afl
SUBDIR+= ald
SUBDIR+= alex
SUBDIR+= allegro
SUBDIR+= anjuta
SUBDIR+= ant-contrib
SUBDIR+= apache-ant
SUBDIR+= apache-ant15
SUBDIR+= apache-ant19
SUBDIR+= apache-ivy
SUBDIR+= apache-maven
SUBDIR+= apel
SUBDIR+= apenwarr-redo
SUBDIR+= appdata-tools
SUBDIR+= apr
SUBDIR+= apr-util
SUBDIR+= arcanist
SUBDIR+= arena
SUBDIR+= argp
SUBDIR+= argtable
SUBDIR+= as31
SUBDIR+= asio
SUBDIR+= aslc86k
SUBDIR+= asm2html
SUBDIR+= astyle
SUBDIR+= at-spi
SUBDIR+= at-spi2-atk
SUBDIR+= at-spi2-core
SUBDIR+= atf
SUBDIR+= atk
SUBDIR+= atkmm
SUBDIR+= autoconf
SUBDIR+= autoconf-archive
SUBDIR+= autoconf213
SUBDIR+= autogen
SUBDIR+= automake
SUBDIR+= automake14
SUBDIR+= automoc4
SUBDIR+= autosetup
SUBDIR+= avl
SUBDIR+= avltree
SUBDIR+= bam
SUBDIR+= bats
SUBDIR+= bcc
SUBDIR+= bfg
SUBDIR+= bglibs
SUBDIR+= bin86
SUBDIR+= binutils
SUBDIR+= bison
SUBDIR+= blame
SUBDIR+= blib
SUBDIR+= blosc
SUBDIR+= bmake
SUBDIR+= bmkdep
SUBDIR+= boa-constructor
SUBDIR+= boehm-gc
SUBDIR+= boost-build
SUBDIR+= boost-docs
SUBDIR+= boost-headers
SUBDIR+= boost-jam
SUBDIR+= boost-libs
SUBDIR+= boost-mpi
SUBDIR+= bpython
SUBDIR+= breezy
SUBDIR+= buddy
SUBDIR+= bugzilla
SUBDIR+= bugzilla3
SUBDIR+= bullet
SUBDIR+= byacc
SUBDIR+= bzr
SUBDIR+= bzr-explorer
SUBDIR+= bzr-gtk
SUBDIR+= bzr-svn
SUBDIR+= bzrtools
SUBDIR+= c++gsl
SUBDIR+= calltree-perl
SUBDIR+= capstone
SUBDIR+= catch
SUBDIR+= cbindgen
SUBDIR+= cbrowser
SUBDIR+= ccache
SUBDIR+= cdecl
SUBDIR+= cdk
SUBDIR+= cervisia
SUBDIR+= cfitsio
SUBDIR+= cflow
SUBDIR+= cflow-mode
SUBDIR+= cfr
SUBDIR+= cgdb
SUBDIR+= cgen
SUBDIR+= check
SUBDIR+= chmlib
SUBDIR+= chrpath
SUBDIR+= clib
SUBDIR+= clion-bin
SUBDIR+= clisp-pcre
SUBDIR+= clisp-syscalls
SUBDIR+= clisp-wildcard
SUBDIR+= clisp-zlib
SUBDIR+= cloc
SUBDIR+= cmake
SUBDIR+= cmake-fedora
SUBDIR+= cmake-gui
SUBDIR+= cmake-mode
SUBDIR+= cmocka
SUBDIR+= cmockery2
SUBDIR+= cmph
SUBDIR+= cobol-mode
SUBDIR+= coccinelle
SUBDIR+= coconut
SUBDIR+= codeville
SUBDIR+= cogito
SUBDIR+= colordiff
SUBDIR+= commit-patch
SUBDIR+= compiz-bcop
SUBDIR+= compizconfig-backend-gconf
SUBDIR+= concurrencykit
SUBDIR+= confuse
SUBDIR+= cook
SUBDIR+= cppcheck
SUBDIR+= cppunit
SUBDIR+= cpputest
SUBDIR+= cproto
SUBDIR+= cpuflags
SUBDIR+= cqual
SUBDIR+= cre2
SUBDIR+= creduce
SUBDIR+= cscope
SUBDIR+= cssc
SUBDIR+= ctemplate
SUBDIR+= cunit
SUBDIR+= cut
SUBDIR+= cutter
SUBDIR+= cvs-fast-export
SUBDIR+= cvs2cl
SUBDIR+= cvs2html
SUBDIR+= cvs2svn
SUBDIR+= cvsclone
SUBDIR+= cvsd
SUBDIR+= cvsdiff2patch
SUBDIR+= cvsgraph
SUBDIR+= cvslock
SUBDIR+= cvsps
SUBDIR+= cvsps3
SUBDIR+= cvsup-bin
SUBDIR+= cvsup-gui-bin
SUBDIR+= cvsutils
SUBDIR+= cvsync
SUBDIR+= cxref
SUBDIR+= darcs
SUBDIR+= darts
SUBDIR+= dconf
SUBDIR+= dconf-editor
SUBDIR+= ddd
SUBDIR+= debugcon_printf
SUBDIR+= deforaos-asm
SUBDIR+= deforaos-coder
SUBDIR+= deforaos-configure
SUBDIR+= deforaos-cpp
SUBDIR+= deforaos-libsystem
SUBDIR+= dejagnu
SUBDIR+= delta
SUBDIR+= dev86
SUBDIR+= devIL
SUBDIR+= devhelp
SUBDIR+= device-driver-doc-de
SUBDIR+= dia2code
SUBDIR+= diffuse
SUBDIR+= diffutils
SUBDIR+= distcc
SUBDIR+= distcc-pump
SUBDIR+= distccmon-gnome
SUBDIR+= distccmon-gtk
SUBDIR+= dlcompat
SUBDIR+= dmake
SUBDIR+= dmalloc
SUBDIR+= doc++
SUBDIR+= dolphin-plugins
SUBDIR+= dotconf
SUBDIR+= doxygen
SUBDIR+= doxymacs
SUBDIR+= dumpet
SUBDIR+= easygit
SUBDIR+= eclipse
SUBDIR+= ecore
SUBDIR+= edcommon
SUBDIR+= editline
SUBDIR+= editorconfig-core
SUBDIR+= eet
SUBDIR+= egypt
SUBDIR+= eina
SUBDIR+= eio
SUBDIR+= electric-fence
SUBDIR+= elf
SUBDIR+= elfcat
SUBDIR+= elfsh
SUBDIR+= elftoolchain
SUBDIR+= elib
SUBDIR+= emacs-ilisp
SUBDIR+= emacs20-elib
SUBDIR+= empty
SUBDIR+= epydoc
SUBDIR+= erlang-base64url
SUBDIR+= erlang-cache_tab
SUBDIR+= erlang-ezlib
SUBDIR+= erlang-fs
SUBDIR+= error
SUBDIR+= ethos
SUBDIR+= etrace
SUBDIR+= exctags
SUBDIR+= exempi
SUBDIR+= extra-cmake-modules
SUBDIR+= fann
SUBDIR+= fastdep
SUBDIR+= fhist
SUBDIR+= fifechan
SUBDIR+= fifengine
SUBDIR+= flatbuffers
SUBDIR+= flatzebra
SUBDIR+= flex
SUBDIR+= flexdock
SUBDIR+= flim
SUBDIR+= florist
SUBDIR+= fortran-utils
SUBDIR+= fossil
SUBDIR+= frama-c
SUBDIR+= frink
SUBDIR+= fromcvs
SUBDIR+= ftnchek
SUBDIR+= g-wrap
SUBDIR+= gccmakedep
SUBDIR+= gconfmm
SUBDIR+= gcvs
SUBDIR+= gdb
SUBDIR+= gdb7
SUBDIR+= gdbus-codegen
SUBDIR+= gdl
SUBDIR+= geany
SUBDIR+= gearmand
SUBDIR+= generate
SUBDIR+= gengetopt
SUBDIR+= gentle
SUBDIR+= gettext
SUBDIR+= gettext-asprintf
SUBDIR+= gettext-lib
SUBDIR+= gettext-m4
SUBDIR+= gettext-tools
SUBDIR+= gflags
SUBDIR+= gflib
SUBDIR+= giblib
SUBDIR+= gindent
SUBDIR+= git
SUBDIR+= git-base
SUBDIR+= git-contrib
SUBDIR+= git-cvs
SUBDIR+= git-docs
SUBDIR+= git-gitk
SUBDIR+= git-lfs
SUBDIR+= git-remote-hg
SUBDIR+= git-svn
SUBDIR+= gitolite
SUBDIR+= glade
SUBDIR+= glib
SUBDIR+= glib2
SUBDIR+= glib2-tools
SUBDIR+= glibmm
SUBDIR+= global
SUBDIR+= gmake
SUBDIR+= gmp
SUBDIR+= gmtk
SUBDIR+= gnatpython
SUBDIR+= gnome-common
SUBDIR+= gnustep-base
SUBDIR+= gnustep-examples
SUBDIR+= gnustep-make
SUBDIR+= gnustep-objc
SUBDIR+= gnustep-objc-lf2
SUBDIR+= go-afero
SUBDIR+= go-amber
SUBDIR+= go-appengine
SUBDIR+= go-argv
SUBDIR+= go-assert
SUBDIR+= go-blackfriday
SUBDIR+= go-buffruneio
SUBDIR+= go-bytebufferpool
SUBDIR+= go-cast
SUBDIR+= go-check
SUBDIR+= go-cli
SUBDIR+= go-cobra
SUBDIR+= go-colorable
SUBDIR+= go-colortext
SUBDIR+= go-colour
SUBDIR+= go-compress
SUBDIR+= go-consul-api
SUBDIR+= go-cpuid
SUBDIR+= go-debounce
SUBDIR+= go-ed25519
SUBDIR+= go-emoji
SUBDIR+= go-errors
SUBDIR+= go-flags-svent
SUBDIR+= go-fnmatch
SUBDIR+= go-fs
SUBDIR+= go-fsnotify
SUBDIR+= go-fsync
SUBDIR+= go-gitmap
SUBDIR+= go-glog
SUBDIR+= go-gls
SUBDIR+= go-gocode
SUBDIR+= go-godef
SUBDIR+= go-godirwalk
SUBDIR+= go-godotenv
SUBDIR+= go-golang-lru
SUBDIR+= go-goorgeous
SUBDIR+= go-gopkgs
SUBDIR+= go-goptlib
SUBDIR+= go-goreturns
SUBDIR+= go-gox
SUBDIR+= go-hashstructure
SUBDIR+= go-homedir
SUBDIR+= go-humanize
SUBDIR+= go-i18n
SUBDIR+= go-immutable-radix
SUBDIR+= go-ini
SUBDIR+= go-iochan
SUBDIR+= go-isatty
SUBDIR+= go-jwalterweatherman
SUBDIR+= go-jwt-go
SUBDIR+= go-kingpin.v3-unstable
SUBDIR+= go-locker
SUBDIR+= go-logrus
SUBDIR+= go-mapstructure
SUBDIR+= go-mapstructure-bep
SUBDIR+= go-mow-cli
SUBDIR+= go-nbreader
SUBDIR+= go-nitro
SUBDIR+= go-osext
SUBDIR+= go-pflag
SUBDIR+= go-properties
SUBDIR+= go-protobuf
SUBDIR+= go-purell
SUBDIR+= go-ratelimit
SUBDIR+= go-repr
SUBDIR+= go-review
SUBDIR+= go-sanitized_anchor_name
SUBDIR+= go-shellwords
SUBDIR+= go-shuffle
SUBDIR+= go-siphash
SUBDIR+= go-spew
SUBDIR+= go-sync
SUBDIR+= go-sys
SUBDIR+= go-termbox
SUBDIR+= go-testify
SUBDIR+= go-thrift
SUBDIR+= go-tools
SUBDIR+= go-try
SUBDIR+= go-viper
SUBDIR+= go-yaml
SUBDIR+= gob2
SUBDIR+= gobject-introspection
SUBDIR+= golint
SUBDIR+= google-api-go-client
SUBDIR+= google-glog
SUBDIR+= googletest
SUBDIR+= gperf
SUBDIR+= gperftools
SUBDIR+= gprbuild-aux
SUBDIR+= gps
SUBDIR+= gputils
SUBDIR+= gradle
SUBDIR+= grantlee
SUBDIR+= grantlee-qt5
SUBDIR+= gsoap
SUBDIR+= gst-plugins0.10-pango
SUBDIR+= gst-plugins1-pango
SUBDIR+= gtexinfo
SUBDIR+= gtl
SUBDIR+= guile-bytestructures
SUBDIR+= guile-gcrypt
SUBDIR+= guile-git
SUBDIR+= guile-gnome
SUBDIR+= guile-lib
SUBDIR+= guile-slib
SUBDIR+= guile-www
SUBDIR+= guile22-slib
SUBDIR+= gyp
SUBDIR+= happy
SUBDIR+= haskell-mode
SUBDIR+= hdevtools
SUBDIR+= hdf
SUBDIR+= hdf5
SUBDIR+= hdf5-c++
SUBDIR+= heirloom-getopt
SUBDIR+= heirloom-libcommon
SUBDIR+= heirloom-what
SUBDIR+= hoe
SUBDIR+= honggfuzz
SUBDIR+= hptools
SUBDIR+= hs-MonadRandom
SUBDIR+= hs-QuickCheck
SUBDIR+= hs-ansi-terminal
SUBDIR+= hs-base-unicode-symbols
SUBDIR+= hs-blaze-builder
SUBDIR+= hs-cmdargs
SUBDIR+= hs-cpphs
SUBDIR+= hs-data-default
SUBDIR+= hs-data-default-class
SUBDIR+= hs-data-default-instances-base
SUBDIR+= hs-data-default-instances-containers
SUBDIR+= hs-data-default-instances-dlist
SUBDIR+= hs-data-default-instances-old-locale
SUBDIR+= hs-deepseq-generics
SUBDIR+= hs-dlist
SUBDIR+= hs-exceptions
SUBDIR+= hs-extensible-exceptions
SUBDIR+= hs-ghc-mtl
SUBDIR+= hs-ghc-paths
SUBDIR+= hs-hashable
SUBDIR+= hs-haskell-src-exts
SUBDIR+= hs-hint
SUBDIR+= hs-lifted-base
SUBDIR+= hs-mmorph
SUBDIR+= hs-monad-control
SUBDIR+= hs-mtl
SUBDIR+= hs-primitive
SUBDIR+= hs-random
SUBDIR+= hs-reflection
SUBDIR+= hs-resourcet
SUBDIR+= hs-safe
SUBDIR+= hs-setlocale
SUBDIR+= hs-split
SUBDIR+= hs-stm
SUBDIR+= hs-syb
SUBDIR+= hs-tagged
SUBDIR+= hs-text
SUBDIR+= hs-tf-random
SUBDIR+= hs-transformers
SUBDIR+= hs-transformers-base
SUBDIR+= hs-transformers-compat
SUBDIR+= hs-uniplate
SUBDIR+= hs-unordered-containers
SUBDIR+= hs-utf8-string
SUBDIR+= hs-vault
SUBDIR+= hs-vector
SUBDIR+= hs-vector-algorithms
SUBDIR+= hs-void
SUBDIR+= ht
SUBDIR+= hugs-HUnit
SUBDIR+= hugs-unix
SUBDIR+= hyperscan
SUBDIR+= idiff
SUBDIR+= idutils
SUBDIR+= imake
SUBDIR+= include-what-you-use
SUBDIR+= iniparser
SUBDIR+= intel2gas
SUBDIR+= intellij-ce-bin
SUBDIR+= intellij-ue-bin
SUBDIR+= isect
SUBDIR+= ivykis
SUBDIR+= jam
SUBDIR+= java-jna
SUBDIR+= java-subversion
SUBDIR+= javacc
SUBDIR+= javadeps
SUBDIR+= jd-gui
SUBDIR+= jdebp-redo
SUBDIR+= jemalloc
SUBDIR+= jenkins
SUBDIR+= jenkins-lts
SUBDIR+= jflex
SUBDIR+= jq
SUBDIR+= js2-mode
SUBDIR+= js_of_ocaml
SUBDIR+= jsonnet
SUBDIR+= kafka
SUBDIR+= kapptemplate
SUBDIR+= kbookmarks
SUBDIR+= kbuild
SUBDIR+= kcachegrind
SUBDIR+= kcmutils
SUBDIR+= kconfig
SUBDIR+= kcoreaddons
SUBDIR+= kcrash
SUBDIR+= kde-dev-scripts
SUBDIR+= kde-dev-utils
SUBDIR+= kdeclarative
SUBDIR+= kdesdk-kioslaves
SUBDIR+= kdesdk-strigi-analyzers
SUBDIR+= kdesdk-thumbnailers
SUBDIR+= kdevelop4
SUBDIR+= kdevplatform
SUBDIR+= kdiff3
SUBDIR+= kdoctools
SUBDIR+= ki18n
SUBDIR+= kidletime
SUBDIR+= kio
SUBDIR+= kitemmodels
SUBDIR+= knotifications
SUBDIR+= knotifyconfig
SUBDIR+= ko-po-check
SUBDIR+= kompare
SUBDIR+= kpackage
SUBDIR+= kparts
SUBDIR+= kpeople
SUBDIR+= kpty
SUBDIR+= kross
SUBDIR+= krunner
SUBDIR+= kservice
SUBDIR+= ktexteditor
SUBDIR+= kwayland
SUBDIR+= kyua
SUBDIR+= lcc
SUBDIR+= lcdis
SUBDIR+= lcov
SUBDIR+= ldapsdk
SUBDIR+= ldpc
SUBDIR+= lemon
SUBDIR+= lettuce
SUBDIR+= libFoundation
SUBDIR+= libFoundation-examples
SUBDIR+= libappindicator
SUBDIR+= libarena
SUBDIR+= libargparse
SUBDIR+= libast
SUBDIR+= libatomic_ops
SUBDIR+= libbegemot
SUBDIR+= libbinio
SUBDIR+= libblkid
SUBDIR+= libbonobo
SUBDIR+= libbonoboui
SUBDIR+= libcbor
SUBDIR+= libcerf
SUBDIR+= libcfg+
SUBDIR+= libcompizconfig
SUBDIR+= libconfig
SUBDIR+= libctl
SUBDIR+= libdaemon
SUBDIR+= libdatrie
SUBDIR+= libdbusmenu-glib
SUBDIR+= libdbusmenu-gtk
SUBDIR+= libdbusmenu-gtk-doc
SUBDIR+= libdbusmenu-gtk3
SUBDIR+= libdbusmenu-jsonloader
SUBDIR+= libdbusmenu-qt
SUBDIR+= libdbusmenu-qt5
SUBDIR+= libdbusmenu-tools
SUBDIR+= libdevq
SUBDIR+= libdnsres
SUBDIR+= libdockapp
SUBDIR+= libdshconfig
SUBDIR+= libdwarf
SUBDIR+= libebml
SUBDIR+= libelf
SUBDIR+= libestr
SUBDIR+= libetm
SUBDIR+= libev
SUBDIR+= libevent
SUBDIR+= libewf
SUBDIR+= libexecinfo
SUBDIR+= libextractor
SUBDIR+= libf2c
SUBDIR+= libffcall
SUBDIR+= libffi
SUBDIR+= libfirm
SUBDIR+= libfreefare
SUBDIR+= libftdi
SUBDIR+= libftdi1
SUBDIR+= libgail-gnome
SUBDIR+= libgcroots
SUBDIR+= libgee
SUBDIR+= libgee0.6
SUBDIR+= libgetopt
SUBDIR+= libgit2
SUBDIR+= libglade
SUBDIR+= libglademm
SUBDIR+= libgnome
SUBDIR+= libgnomemm
SUBDIR+= libgnomeui
SUBDIR+= libgnomeuimm
SUBDIR+= libgphoto2
SUBDIR+= libgsf
SUBDIR+= libgweather
SUBDIR+= libhfs
SUBDIR+= libhid
SUBDIR+= libiberty
SUBDIR+= libidn
SUBDIR+= libidn2
SUBDIR+= libindicator
SUBDIR+= libinotify
SUBDIR+= libite
SUBDIR+= libixp
SUBDIR+= libjit
SUBDIR+= libjudy
SUBDIR+= libkgapi
SUBDIR+= libkomparediff2
SUBDIR+= liblangtag
SUBDIR+= liblnk
SUBDIR+= libltdl
SUBDIR+= libmaa
SUBDIR+= libmatchbox
SUBDIR+= libmcs
SUBDIR+= libmemcache
SUBDIR+= libmemcached
SUBDIR+= libmemmgr
SUBDIR+= libmimedir
SUBDIR+= libmm
SUBDIR+= libmowgli
SUBDIR+= libmtp
SUBDIR+= libnet10
SUBDIR+= libnet11
SUBDIR+= libnfc
SUBDIR+= libnjb
SUBDIR+= libntlm
SUBDIR+= liboil
SUBDIR+= liboop
SUBDIR+= libosip
SUBDIR+= libowfat
SUBDIR+= libpeas
SUBDIR+= libpgm
SUBDIR+= libphutil
SUBDIR+= libportlib
SUBDIR+= libproplist
SUBDIR+= libpthread_dbg
SUBDIR+= librdkafka
SUBDIR+= librelp
SUBDIR+= librfuncs
SUBDIR+= librlog
SUBDIR+= librxspencer
SUBDIR+= libsafec
SUBDIR+= libsexy
SUBDIR+= libsexymm
SUBDIR+= libsigc++
SUBDIR+= libsigc++1
SUBDIR+= libsigc++3
SUBDIR+= libsigsegv
SUBDIR+= libslang
SUBDIR+= libslang2
SUBDIR+= libsmi
SUBDIR+= libstash
SUBDIR+= libstatgrab
SUBDIR+= libstree
SUBDIR+= libstroke
SUBDIR+= libtai
SUBDIR+= libtar
SUBDIR+= libtecla
SUBDIR+= libthai
SUBDIR+= libthrift
SUBDIR+= libthrift_c_glib
SUBDIR+= libtool
SUBDIR+= libtool-base
SUBDIR+= libtool-fortran
SUBDIR+= libtool-info
SUBDIR+= libts
SUBDIR+= libusb
SUBDIR+= libusb-compat
SUBDIR+= libusb1
SUBDIR+= libuuid
SUBDIR+= libuv
SUBDIR+= libuxre
SUBDIR+= libview
SUBDIR+= libvolume_id
SUBDIR+= libwhisker2
SUBDIR+= libwnck
SUBDIR+= libwnck3
SUBDIR+= libxenserver
SUBDIR+= libzen
SUBDIR+= libzookeeper
SUBDIR+= linenoise
SUBDIR+= lld
SUBDIR+= lldb
SUBDIR+= lmdbg
SUBDIR+= locktests
SUBDIR+= log4cplus
SUBDIR+= log4cxx
SUBDIR+= log4shib
SUBDIR+= lokalize
SUBDIR+= ltsa
SUBDIR+= lua-BitOp
SUBDIR+= lua-alt-getopt
SUBDIR+= lua-bitlib
SUBDIR+= lua-coxpcall
SUBDIR+= lua-cqueues
SUBDIR+= lua-filesystem
SUBDIR+= lua-gi
SUBDIR+= lua-ljsyscall
SUBDIR+= lua-lpeg
SUBDIR+= lua-lrexlib
SUBDIR+= lua-lrexlib-onig
SUBDIR+= lua-lrexlib-pcre
SUBDIR+= lua-lrexlib-posix
SUBDIR+= lua-mode
SUBDIR+= lua-penlight
SUBDIR+= lua-posix
SUBDIR+= lua-rocks
SUBDIR+= lua-std-_debug
SUBDIR+= lua-std-normalize
SUBDIR+= lua-stdlib
SUBDIR+= lua-thrift
SUBDIR+= lutok
SUBDIR+= lwp
SUBDIR+= m17n-lib
SUBDIR+= m4
SUBDIR+= mad-flute
SUBDIR+= magit
SUBDIR+= makedepend
SUBDIR+= makedepf90
SUBDIR+= maketool
SUBDIR+= man-pages
SUBDIR+= mantis
SUBDIR+= mate-common
SUBDIR+= matio
SUBDIR+= mcpp
SUBDIR+= mdds
SUBDIR+= mdds1.2
SUBDIR+= meld
SUBDIR+= mell
SUBDIR+= memcached
SUBDIR+= menhir
SUBDIR+= mercurial
SUBDIR+= meson
SUBDIR+= mico
SUBDIR+= mk-configure
SUBDIR+= mkcmd
SUBDIR+= mm-common
SUBDIR+= mono-addins
SUBDIR+= mono-tools
SUBDIR+= monodevelop
SUBDIR+= monodevelop-database
SUBDIR+= monotone
SUBDIR+= monotone-server
SUBDIR+= monotone-viz
SUBDIR+= mph
SUBDIR+= msgpack
SUBDIR+= mustach
SUBDIR+= myrepos
SUBDIR+= nana
SUBDIR+= nant
SUBDIR+= nasm
SUBDIR+= nbpatch
SUBDIR+= ncc
SUBDIR+= ncurses
SUBDIR+= ncursesw
SUBDIR+= netbeans-ide
SUBDIR+= netbsd-iscsi-lib
SUBDIR+= netcdf
SUBDIR+= netcdf-cxx
SUBDIR+= netcdf-fortran
SUBDIR+= newfile
SUBDIR+= ninja-build
SUBDIR+= noweb
SUBDIR+= npapi-sdk
SUBDIR+= npth
SUBDIR+= nqc
SUBDIR+= nsis
SUBDIR+= nspr
SUBDIR+= nspr-reference
SUBDIR+= nss
SUBDIR+= objfw
SUBDIR+= ocaml-angstrom
SUBDIR+= ocaml-astring
SUBDIR+= ocaml-async
SUBDIR+= ocaml-async_extra
SUBDIR+= ocaml-async_kernel
SUBDIR+= ocaml-async_rpc_kernel
SUBDIR+= ocaml-async_unix
SUBDIR+= ocaml-base
SUBDIR+= ocaml-base64
SUBDIR+= ocaml-base_bigstring
SUBDIR+= ocaml-base_quickcheck
SUBDIR+= ocaml-batteries
SUBDIR+= ocaml-bigstringaf
SUBDIR+= ocaml-bin_prot
SUBDIR+= ocaml-biniou
SUBDIR+= ocaml-bos
SUBDIR+= ocaml-checkseum
SUBDIR+= ocaml-cmdliner
SUBDIR+= ocaml-compiler-libs
SUBDIR+= ocaml-configurator
SUBDIR+= ocaml-core
SUBDIR+= ocaml-core_kernel
SUBDIR+= ocaml-cppo
SUBDIR+= ocaml-cstruct
SUBDIR+= ocaml-deriving-ocsigen
SUBDIR+= ocaml-digestif
SUBDIR+= ocaml-duff
SUBDIR+= ocaml-dune
SUBDIR+= ocaml-encore
SUBDIR+= ocaml-eqaf
SUBDIR+= ocaml-extlib
SUBDIR+= ocaml-fieldslib
SUBDIR+= ocaml-findlib
SUBDIR+= ocaml-fmt
SUBDIR+= ocaml-fpath
SUBDIR+= ocaml-git
SUBDIR+= ocaml-hex
SUBDIR+= ocaml-jane-street-headers
SUBDIR+= ocaml-jbuilder
SUBDIR+= ocaml-js-build-tools
SUBDIR+= ocaml-jst-config
SUBDIR+= ocaml-logs
SUBDIR+= ocaml-lru
SUBDIR+= ocaml-lwt
SUBDIR+= ocaml-lwt_camlp4
SUBDIR+= ocaml-lwt_glib
SUBDIR+= ocaml-lwt_log
SUBDIR+= ocaml-lwt_ppx
SUBDIR+= ocaml-lwt_react
SUBDIR+= ocaml-lwt_ssl
SUBDIR+= ocaml-migrate-parsetree
SUBDIR+= ocaml-mmap
SUBDIR+= ocaml-oasis
SUBDIR+= ocaml-ocplib-endian
SUBDIR+= ocaml-optcomp
SUBDIR+= ocaml-optint
SUBDIR+= ocaml-parsexp
SUBDIR+= ocaml-ppx_assert
SUBDIR+= ocaml-ppx_base
SUBDIR+= ocaml-ppx_bench
SUBDIR+= ocaml-ppx_bin_prot
SUBDIR+= ocaml-ppx_compare
SUBDIR+= ocaml-ppx_custom_printf
SUBDIR+= ocaml-ppx_derivers
SUBDIR+= ocaml-ppx_deriving
SUBDIR+= ocaml-ppx_enumerate
SUBDIR+= ocaml-ppx_expect
SUBDIR+= ocaml-ppx_fail
SUBDIR+= ocaml-ppx_fields_conv
SUBDIR+= ocaml-ppx_hash
SUBDIR+= ocaml-ppx_here
SUBDIR+= ocaml-ppx_inline_test
SUBDIR+= ocaml-ppx_jane
SUBDIR+= ocaml-ppx_let
SUBDIR+= ocaml-ppx_module_timer
SUBDIR+= ocaml-ppx_optcomp
SUBDIR+= ocaml-ppx_optional
SUBDIR+= ocaml-ppx_pipebang
SUBDIR+= ocaml-ppx_sexp_conv
SUBDIR+= ocaml-ppx_sexp_message
SUBDIR+= ocaml-ppx_sexp_value
SUBDIR+= ocaml-ppx_stable
SUBDIR+= ocaml-ppx_tools
SUBDIR+= ocaml-ppx_tools_versioned
SUBDIR+= ocaml-ppx_typerep_conv
SUBDIR+= ocaml-ppx_variants_conv
SUBDIR+= ocaml-ppxfind
SUBDIR+= ocaml-ppxlib
SUBDIR+= ocaml-psq
SUBDIR+= ocaml-re
SUBDIR+= ocaml-react
SUBDIR+= ocaml-reactiveData
SUBDIR+= ocaml-resource-pooling
SUBDIR+= ocaml-result
SUBDIR+= ocaml-rresult
SUBDIR+= ocaml-seq
SUBDIR+= ocaml-sexplib
SUBDIR+= ocaml-sexplib0
SUBDIR+= ocaml-spawn
SUBDIR+= ocaml-splittable_random
SUBDIR+= ocaml-stdio
SUBDIR+= ocaml-stringext
SUBDIR+= ocaml-type_conv
SUBDIR+= ocaml-typerep
SUBDIR+= ocaml-variantslib
SUBDIR+= ocaml-yojson
SUBDIR+= ocamlbuild
SUBDIR+= ocamlgraph
SUBDIR+= ocamlify
SUBDIR+= ocamlmod
SUBDIR+= ode
SUBDIR+= ogre
SUBDIR+= okteta
SUBDIR+= omake
SUBDIR+= opal
SUBDIR+= open-vcdiff
SUBDIR+= opencm
SUBDIR+= opengrok
SUBDIR+= openocd
SUBDIR+= openrcs
SUBDIR+= orc
SUBDIR+= ossp-uuid
SUBDIR+= p5-Acme-Damn
SUBDIR+= p5-Acme-PlayCode
SUBDIR+= p5-Algorithm-Annotate
SUBDIR+= p5-Algorithm-C3
SUBDIR+= p5-Algorithm-CheckDigits
SUBDIR+= p5-Algorithm-Dependency
SUBDIR+= p5-Algorithm-Diff
SUBDIR+= p5-Algorithm-HowSimilar
SUBDIR+= p5-Algorithm-Merge
SUBDIR+= p5-Algorithm-Permute
SUBDIR+= p5-Alien-Base-ModuleBuild
SUBDIR+= p5-Alien-Build
SUBDIR+= p5-Alien-Packages
SUBDIR+= p5-Alien-SDL
SUBDIR+= p5-AnnoCPAN-Perldoc
SUBDIR+= p5-Any-Moose
SUBDIR+= p5-AnyEvent
SUBDIR+= p5-AnyEvent-AIO
SUBDIR+= p5-AnyEvent-IRC
SUBDIR+= p5-AnyEvent-RabbitMQ
SUBDIR+= p5-AnyEvent-XMPP
SUBDIR+= p5-App-CLI
SUBDIR+= p5-App-Cache
SUBDIR+= p5-App-Cmd
SUBDIR+= p5-App-FatPacker
SUBDIR+= p5-App-Prove-Plugin-ProgressBar
SUBDIR+= p5-App-Prove-Plugin-ProgressBar-Each
SUBDIR+= p5-App-cpanminus
SUBDIR+= p5-App-cpanoutdated
SUBDIR+= p5-App-perlbrew
SUBDIR+= p5-AppConfig
SUBDIR+= p5-AppConfig-Std
SUBDIR+= p5-Array-Compare
SUBDIR+= p5-Array-Diff
SUBDIR+= p5-Array-RefElem
SUBDIR+= p5-Async-Interrupt
SUBDIR+= p5-AtExit
SUBDIR+= p5-Attribute-Lexical
SUBDIR+= p5-AutoLoader
SUBDIR+= p5-AutoXS-Header
SUBDIR+= p5-Autodia
SUBDIR+= p5-B-Compiling
SUBDIR+= p5-B-Debug
SUBDIR+= p5-B-Hooks-EndOfScope
SUBDIR+= p5-B-Hooks-OP-Annotation
SUBDIR+= p5-B-Hooks-OP-Check
SUBDIR+= p5-B-Hooks-OP-Check-EntersubForCV
SUBDIR+= p5-B-Hooks-OP-Check-StashChange
SUBDIR+= p5-B-Hooks-OP-PPAddr
SUBDIR+= p5-B-Hooks-Parser
SUBDIR+= p5-B-Keywords
SUBDIR+= p5-B-Utils
SUBDIR+= p5-BSD-Resource
SUBDIR+= p5-BackPAN-Index
SUBDIR+= p5-Bit-Vector
SUBDIR+= p5-CHI
SUBDIR+= p5-CLASS
SUBDIR+= p5-CPAN
SUBDIR+= p5-CPAN-Changes
SUBDIR+= p5-CPAN-Checksums
SUBDIR+= p5-CPAN-Common-Index
SUBDIR+= p5-CPAN-DistnameInfo
SUBDIR+= p5-CPAN-FindDependencies
SUBDIR+= p5-CPAN-Inject
SUBDIR+= p5-CPAN-Meta
SUBDIR+= p5-CPAN-Meta-Check
SUBDIR+= p5-CPAN-Meta-Requirements
SUBDIR+= p5-CPAN-Meta-YAML
SUBDIR+= p5-CPAN-Mini
SUBDIR+= p5-CPAN-ParseDistribution
SUBDIR+= p5-CPAN-Perl-Releases
SUBDIR+= p5-CPAN-Reporter
SUBDIR+= p5-CPAN-Uploader
SUBDIR+= p5-CPANPLUS
SUBDIR+= p5-Cache
SUBDIR+= p5-Cache-Cache
SUBDIR+= p5-Cache-FastMmap
SUBDIR+= p5-Cache-LRU
SUBDIR+= p5-Cache-Memcached
SUBDIR+= p5-Cache-Memcached-Fast
SUBDIR+= p5-Cache-Simple-TimedExpiry
SUBDIR+= p5-Canary-Stability
SUBDIR+= p5-Capture-Tiny
SUBDIR+= p5-Carp
SUBDIR+= p5-Carp-Always
SUBDIR+= p5-Carp-Assert
SUBDIR+= p5-Carp-Assert-More
SUBDIR+= p5-Carp-Clan
SUBDIR+= p5-Carp-REPL
SUBDIR+= p5-Carton
SUBDIR+= p5-Check-ISA
SUBDIR+= p5-Class-Accessor
SUBDIR+= p5-Class-Accessor-Chained
SUBDIR+= p5-Class-Accessor-Grouped
SUBDIR+= p5-Class-Accessor-Lite
SUBDIR+= p5-Class-Accessor-Named
SUBDIR+= p5-Class-Adapter
SUBDIR+= p5-Class-Autouse
SUBDIR+= p5-Class-Base
SUBDIR+= p5-Class-C3
SUBDIR+= p5-Class-C3-Adopt-NEXT
SUBDIR+= p5-Class-C3-Componentised
SUBDIR+= p5-Class-C3-XS
SUBDIR+= p5-Class-Container
SUBDIR+= p5-Class-Data-Accessor
SUBDIR+= p5-Class-Data-Inheritable
SUBDIR+= p5-Class-ErrorHandler
SUBDIR+= p5-Class-Factory
SUBDIR+= p5-Class-Factory-Util
SUBDIR+= p5-Class-Field
SUBDIR+= p5-Class-Fields
SUBDIR+= p5-Class-Gomor
SUBDIR+= p5-Class-ISA
SUBDIR+= p5-Class-Inner
SUBDIR+= p5-Class-InsideOut
SUBDIR+= p5-Class-Inspector
SUBDIR+= p5-Class-Load
SUBDIR+= p5-Class-Load-XS
SUBDIR+= p5-Class-Loader
SUBDIR+= p5-Class-MakeMethods
SUBDIR+= p5-Class-Method-Modifiers
SUBDIR+= p5-Class-MethodMaker
SUBDIR+= p5-Class-Mix
SUBDIR+= p5-Class-OOorNO
SUBDIR+= p5-Class-ObjectTemplate
SUBDIR+= p5-Class-ReturnValue
SUBDIR+= p5-Class-Singleton
SUBDIR+= p5-Class-Std
SUBDIR+= p5-Class-Throwable
SUBDIR+= p5-Class-Tiny
SUBDIR+= p5-Class-Trigger
SUBDIR+= p5-Class-Unload
SUBDIR+= p5-Class-Virtual
SUBDIR+= p5-Class-WhiteHole
SUBDIR+= p5-Class-XML
SUBDIR+= p5-Class-XPath
SUBDIR+= p5-Class-XSAccessor
SUBDIR+= p5-Clone
SUBDIR+= p5-Clone-Choose
SUBDIR+= p5-Clone-Fast
SUBDIR+= p5-Clone-PP
SUBDIR+= p5-Compress-PPMd
SUBDIR+= p5-Compress-Raw-Bzip2
SUBDIR+= p5-Compress-Raw-Zlib
SUBDIR+= p5-Config-Any
SUBDIR+= p5-Config-Any-Merge
SUBDIR+= p5-Config-Auto
SUBDIR+= p5-Config-AutoConf
SUBDIR+= p5-Config-File
SUBDIR+= p5-Config-Find
SUBDIR+= p5-Config-General
SUBDIR+= p5-Config-GitLike
SUBDIR+= p5-Config-Grammar
SUBDIR+= p5-Config-INI
SUBDIR+= p5-Config-INI-Reader-Ordered
SUBDIR+= p5-Config-IniFiles
SUBDIR+= p5-Config-MVP
SUBDIR+= p5-Config-MVP-Reader-INI
SUBDIR+= p5-Config-Properties
SUBDIR+= p5-Config-Std
SUBDIR+= p5-Config-Tiny
SUBDIR+= p5-Const-Fast
SUBDIR+= p5-Context-Preserve
SUBDIR+= p5-Contextual-Return
SUBDIR+= p5-Convert-Binary-C
SUBDIR+= p5-Coro
SUBDIR+= p5-Curses
SUBDIR+= p5-Curses-UI
SUBDIR+= p5-Curses-UI-POE
SUBDIR+= p5-Cwd-Guard
SUBDIR+= p5-Data-Alias
SUBDIR+= p5-Data-Binary
SUBDIR+= p5-Data-Buffer
SUBDIR+= p5-Data-Compare
SUBDIR+= p5-Data-Denter
SUBDIR+= p5-Data-Dump
SUBDIR+= p5-Data-Dump-Streamer
SUBDIR+= p5-Data-Dumper
SUBDIR+= p5-Data-Dumper-Concise
SUBDIR+= p5-Data-Dumper-Names
SUBDIR+= p5-Data-GUID
SUBDIR+= p5-Data-Hierarchy
SUBDIR+= p5-Data-IEEE754
SUBDIR+= p5-Data-Integer
SUBDIR+= p5-Data-MessagePack
SUBDIR+= p5-Data-Munge
SUBDIR+= p5-Data-ObjectDriver
SUBDIR+= p5-Data-OptList
SUBDIR+= p5-Data-Page
SUBDIR+= p5-Data-Page-Pageset
SUBDIR+= p5-Data-Pageset
SUBDIR+= p5-Data-Peek
SUBDIR+= p5-Data-Perl
SUBDIR+= p5-Data-Printer
SUBDIR+= p5-Data-Random
SUBDIR+= p5-Data-Record
SUBDIR+= p5-Data-Section
SUBDIR+= p5-Data-Section-Simple
SUBDIR+= p5-Data-Serializer
SUBDIR+= p5-Data-ShowTable
SUBDIR+= p5-Data-Stag
SUBDIR+= p5-Data-Structure-Util
SUBDIR+= p5-Data-Taxi
SUBDIR+= p5-Data-TemporaryBag
SUBDIR+= p5-Data-UUID
SUBDIR+= p5-Data-UUID-Base64URLSafe
SUBDIR+= p5-Data-Uniqid
SUBDIR+= p5-Data-Validate-IP
SUBDIR+= p5-Data-Visitor
SUBDIR+= p5-Date-Business
SUBDIR+= p5-Date-Calc
SUBDIR+= p5-Date-Calc-XS
SUBDIR+= p5-Date-Manip
SUBDIR+= p5-Date-Simple
SUBDIR+= p5-Debug-Client
SUBDIR+= p5-Debug-ShowStuff
SUBDIR+= p5-Declare-Constraints-Simple
SUBDIR+= p5-Devel-Autoflush
SUBDIR+= p5-Devel-BeginLift
SUBDIR+= p5-Devel-Caller
SUBDIR+= p5-Devel-Caller-IgnoreNamespaces
SUBDIR+= p5-Devel-CheckBin
SUBDIR+= p5-Devel-CheckCompiler
SUBDIR+= p5-Devel-CheckLib
SUBDIR+= p5-Devel-CheckOS
SUBDIR+= p5-Devel-Confess
SUBDIR+= p5-Devel-Cover
SUBDIR+= p5-Devel-Cycle
SUBDIR+= p5-Devel-Declare
SUBDIR+= p5-Devel-Dumpvar
SUBDIR+= p5-Devel-EvalContext
SUBDIR+= p5-Devel-Events
SUBDIR+= p5-Devel-Events-Objects
SUBDIR+= p5-Devel-FindPerl
SUBDIR+= p5-Devel-FindRef
SUBDIR+= p5-Devel-Gladiator
SUBDIR+= p5-Devel-GlobalDestruction
SUBDIR+= p5-Devel-Hide
SUBDIR+= p5-Devel-Leak
SUBDIR+= p5-Devel-Leak-Object
SUBDIR+= p5-Devel-LexAlias
SUBDIR+= p5-Devel-NYTProf
SUBDIR+= p5-Devel-OverloadInfo
SUBDIR+= p5-Devel-OverrideGlobalRequire
SUBDIR+= p5-Devel-PPPort
SUBDIR+= p5-Devel-PartialDump
SUBDIR+= p5-Devel-PatchPerl
SUBDIR+= p5-Devel-Pragma
SUBDIR+= p5-Devel-Profile
SUBDIR+= p5-Devel-REPL
SUBDIR+= p5-Devel-Refactor
SUBDIR+= p5-Devel-Refcount
SUBDIR+= p5-Devel-Size
SUBDIR+= p5-Devel-SmallProf
SUBDIR+= p5-Devel-StackTrace
SUBDIR+= p5-Devel-StackTrace-AsHTML
SUBDIR+= p5-Devel-StackTrace-WithLexicals
SUBDIR+= p5-Devel-Symdump
SUBDIR+= p5-Devel-Trace
SUBDIR+= p5-Devel-TraceUse
SUBDIR+= p5-Devel-ebug
SUBDIR+= p5-Dir-Self
SUBDIR+= p5-Dist-CheckConflicts
SUBDIR+= p5-Dist-Zilla
SUBDIR+= p5-Dist-Zooky
SUBDIR+= p5-EV
SUBDIR+= p5-Env-Path
SUBDIR+= p5-Error
SUBDIR+= p5-Eval-Closure
SUBDIR+= p5-Eval-LineNumbers
SUBDIR+= p5-Event
SUBDIR+= p5-Event-ExecFlow
SUBDIR+= p5-Event-RPC
SUBDIR+= p5-Exception-Class
SUBDIR+= p5-Exception-Handler
SUBDIR+= p5-Expect
SUBDIR+= p5-Expect-Simple
SUBDIR+= p5-Exporter-Lite
SUBDIR+= p5-Exporter-Tiny
SUBDIR+= p5-ExtUtils-AutoInstall
SUBDIR+= p5-ExtUtils-CBuilder
SUBDIR+= p5-ExtUtils-CChecker
SUBDIR+= p5-ExtUtils-Command
SUBDIR+= p5-ExtUtils-Config
SUBDIR+= p5-ExtUtils-CppGuess
SUBDIR+= p5-ExtUtils-Depends
SUBDIR+= p5-ExtUtils-F77
SUBDIR+= p5-ExtUtils-Helpers
SUBDIR+= p5-ExtUtils-InstallPaths
SUBDIR+= p5-ExtUtils-LibBuilder
SUBDIR+= p5-ExtUtils-MakeMaker
SUBDIR+= p5-ExtUtils-MakeMaker-CPANfile
SUBDIR+= p5-ExtUtils-MakeMaker-Coverage
SUBDIR+= p5-ExtUtils-Manifest
SUBDIR+= p5-ExtUtils-ModuleMaker
SUBDIR+= p5-ExtUtils-ModuleMaker-TT
SUBDIR+= p5-ExtUtils-ParseXS
SUBDIR+= p5-ExtUtils-PkgConfig
SUBDIR+= p5-ExtUtils-XSBuilder
SUBDIR+= p5-ExtUtils-XSpp
SUBDIR+= p5-FFI-CheckLib
SUBDIR+= p5-File-BOM
SUBDIR+= p5-File-BaseDir
SUBDIR+= p5-File-Binary
SUBDIR+= p5-File-ChangeNotify
SUBDIR+= p5-File-ConfigDir
SUBDIR+= p5-File-DesktopEntry
SUBDIR+= p5-File-DirCompare
SUBDIR+= p5-File-DirSync
SUBDIR+= p5-File-Find-Object
SUBDIR+= p5-File-Find-Rule
SUBDIR+= p5-File-Find-Rule-Age
SUBDIR+= p5-File-Find-Rule-PPI
SUBDIR+= p5-File-Find-Rule-Perl
SUBDIR+= p5-File-Find-Rule-Permissions
SUBDIR+= p5-File-Find-Rule-VCS
SUBDIR+= p5-File-Flat
SUBDIR+= p5-File-Flock
SUBDIR+= p5-File-FlockDir
SUBDIR+= p5-File-HomeDir
SUBDIR+= p5-File-LibMagic
SUBDIR+= p5-File-Listing
SUBDIR+= p5-File-MimeInfo
SUBDIR+= p5-File-Modified
SUBDIR+= p5-File-NFSLock
SUBDIR+= p5-File-Next
SUBDIR+= p5-File-Path
SUBDIR+= p5-File-Path-Expand
SUBDIR+= p5-File-Path-Tiny
SUBDIR+= p5-File-PathConvert
SUBDIR+= p5-File-Policy
SUBDIR+= p5-File-Save-Home
SUBDIR+= p5-File-Share
SUBDIR+= p5-File-ShareDir
SUBDIR+= p5-File-ShareDir-Install
SUBDIR+= p5-File-ShareDir-ProjectDistDir
SUBDIR+= p5-File-Slurp
SUBDIR+= p5-File-Slurp-Tiny
SUBDIR+= p5-File-Slurper
SUBDIR+= p5-File-Temp
SUBDIR+= p5-File-Tempdir
SUBDIR+= p5-File-Touch
SUBDIR+= p5-File-Type
SUBDIR+= p5-File-Util
SUBDIR+= p5-File-Which
SUBDIR+= p5-File-chdir
SUBDIR+= p5-File-pushd
SUBDIR+= p5-FileHandle-Fmode
SUBDIR+= p5-FileHandle-Unget
SUBDIR+= p5-Filesys-Notify-Simple
SUBDIR+= p5-Find-Lib
SUBDIR+= p5-FindBin-libs
SUBDIR+= p5-Format-Human-Bytes
SUBDIR+= p5-FreezeThaw
SUBDIR+= p5-Function-Parameters
SUBDIR+= p5-Future
SUBDIR+= p5-Getopt-ArgvFile
SUBDIR+= p5-Getopt-Euclid
SUBDIR+= p5-Getopt-Long
SUBDIR+= p5-Getopt-Long-Descriptive
SUBDIR+= p5-Getopt-Mixed
SUBDIR+= p5-Getopt-Simple
SUBDIR+= p5-Getopt-Tabular
SUBDIR+= p5-Git-CPAN-Patch
SUBDIR+= p5-Git-Repository
SUBDIR+= p5-Git-Repository-Plugin-AUTOLOAD
SUBDIR+= p5-Git-Version-Compare
SUBDIR+= p5-Git-Wrapper
SUBDIR+= p5-GitLab-API-v3
SUBDIR+= p5-GitLab-API-v4
SUBDIR+= p5-Glib-Object-Introspection
SUBDIR+= p5-Gnome2
SUBDIR+= p5-Gnome2-GConf
SUBDIR+= p5-Graph
SUBDIR+= p5-Graph-ReadWrite
SUBDIR+= p5-Gravatar-URL
SUBDIR+= p5-Gtk2-GladeXML
SUBDIR+= p5-Guard
SUBDIR+= p5-Hash-Case
SUBDIR+= p5-Hash-FieldHash
SUBDIR+= p5-Hash-Flatten
SUBDIR+= p5-Hash-Merge
SUBDIR+= p5-Hash-Merge-Simple
SUBDIR+= p5-Hash-MoreUtils
SUBDIR+= p5-Hash-MultiValue
SUBDIR+= p5-Hash-Util-FieldHash-Compat
SUBDIR+= p5-Heap
SUBDIR+= p5-Hook-LexWrap
SUBDIR+= p5-IMDB-Film
SUBDIR+= p5-IO-AIO
SUBDIR+= p5-IO-All
SUBDIR+= p5-IO-Async
SUBDIR+= p5-IO-Capture
SUBDIR+= p5-IO-CaptureOutput
SUBDIR+= p5-IO-Compress
SUBDIR+= p5-IO-Digest
SUBDIR+= p5-IO-Event
SUBDIR+= p5-IO-HTML
SUBDIR+= p5-IO-Handle-Util
SUBDIR+= p5-IO-InSitu
SUBDIR+= p5-IO-Interactive
SUBDIR+= p5-IO-LockedFile
SUBDIR+= p5-IO-Multiplex
SUBDIR+= p5-IO-Null
SUBDIR+= p5-IO-Pager
SUBDIR+= p5-IO-Pipeline
SUBDIR+= p5-IO-Pipely
SUBDIR+= p5-IO-Prompt
SUBDIR+= p5-IO-Prompter
SUBDIR+= p5-IO-String
SUBDIR+= p5-IO-Stty
SUBDIR+= p5-IO-Tee
SUBDIR+= p5-IO-TieCombine
SUBDIR+= p5-IO-Tty
SUBDIR+= p5-IO-Util
SUBDIR+= p5-IO-Zlib
SUBDIR+= p5-IO-stringy
SUBDIR+= p5-IPC-Cache
SUBDIR+= p5-IPC-Cmd
SUBDIR+= p5-IPC-DirQueue
SUBDIR+= p5-IPC-PubSub
SUBDIR+= p5-IPC-Run
SUBDIR+= p5-IPC-Run3
SUBDIR+= p5-IPC-ShareLite
SUBDIR+= p5-IPC-Shareable
SUBDIR+= p5-IPC-SharedCache
SUBDIR+= p5-IPC-Signal
SUBDIR+= p5-IPC-SysV
SUBDIR+= p5-IPC-System-Simple
SUBDIR+= p5-Import-Into
SUBDIR+= p5-Importer
SUBDIR+= p5-Inline
SUBDIR+= p5-Inline-C
SUBDIR+= p5-InlineX-C2XS
SUBDIR+= p5-Internals
SUBDIR+= p5-LDAP
SUBDIR+= p5-LEOCHARRE-CLI2
SUBDIR+= p5-LEOCHARRE-Debug
SUBDIR+= p5-LEOCHARRE-Dir
SUBDIR+= p5-Lexical-Persistence
SUBDIR+= p5-Lexical-SealRequireHints
SUBDIR+= p5-List-AllUtils
SUBDIR+= p5-List-MoreUtils
SUBDIR+= p5-List-MoreUtils-XS
SUBDIR+= p5-List-Pairwise
SUBDIR+= p5-List-SomeUtils
SUBDIR+= p5-List-SomeUtils-XS
SUBDIR+= p5-List-UtilsBy
SUBDIR+= p5-Locale-Msgfmt
SUBDIR+= p5-Locale-PO
SUBDIR+= p5-Log-Agent
SUBDIR+= p5-Log-Any
SUBDIR+= p5-Log-Any-Adapter-Callback
SUBDIR+= p5-Log-Any-Adapter-Dispatch
SUBDIR+= p5-Log-Any-Adapter-Log4perl
SUBDIR+= p5-Log-Any-Adapter-Screen
SUBDIR+= p5-Log-Any-Adapter-TAP
SUBDIR+= p5-Log-Dispatch
SUBDIR+= p5-Log-Dispatch-Array
SUBDIR+= p5-Log-Dispatch-Config
SUBDIR+= p5-Log-Dispatch-DBI
SUBDIR+= p5-Log-Dispatch-FileRotate
SUBDIR+= p5-Log-Dispatch-Perl
SUBDIR+= p5-Log-Dispatchouli
SUBDIR+= p5-Log-Handler
SUBDIR+= p5-Log-Log4perl
SUBDIR+= p5-Log-LogLite
SUBDIR+= p5-Log-Message
SUBDIR+= p5-Log-Message-Simple
SUBDIR+= p5-Log-Report
SUBDIR+= p5-Log-Report-Optional
SUBDIR+= p5-Log-Trace
SUBDIR+= p5-MRO-Compat
SUBDIR+= p5-Mac-Carbon
SUBDIR+= p5-Mac-SystemDirectory
SUBDIR+= p5-Make
SUBDIR+= p5-Memoize
SUBDIR+= p5-Memoize-ExpireLRU
SUBDIR+= p5-Memoize-Memcached
SUBDIR+= p5-Menlo
SUBDIR+= p5-Menlo-Legacy
SUBDIR+= p5-MetaCPAN-API
SUBDIR+= p5-MetaCPAN-Client
SUBDIR+= p5-Method-Signatures
SUBDIR+= p5-Method-Signatures-Simple
SUBDIR+= p5-Mixin-ExtraFields
SUBDIR+= p5-Mixin-ExtraFields-Param
SUBDIR+= p5-Mixin-Linewise
SUBDIR+= p5-Mo
SUBDIR+= p5-Modern-Perl
SUBDIR+= p5-Module-Build
SUBDIR+= p5-Module-Build-Tiny
SUBDIR+= p5-Module-Build-WithXSpp
SUBDIR+= p5-Module-Build-XSUtil
SUBDIR+= p5-Module-CPANTS-Analyse
SUBDIR+= p5-Module-CPANfile
SUBDIR+= p5-Module-Compile
SUBDIR+= p5-Module-CoreList
SUBDIR+= p5-Module-Dependency
SUBDIR+= p5-Module-ExtractUse
SUBDIR+= p5-Module-Find
SUBDIR+= p5-Module-FromPerlVer
SUBDIR+= p5-Module-Implementation
SUBDIR+= p5-Module-Install
SUBDIR+= p5-Module-Install-AuthorRequires
SUBDIR+= p5-Module-Install-AuthorTests
SUBDIR+= p5-Module-Install-GithubMeta
SUBDIR+= p5-Module-Install-ManifestSkip
SUBDIR+= p5-Module-Install-PadrePlugin
SUBDIR+= p5-Module-Install-RTx
SUBDIR+= p5-Module-Install-ReadmeFromPod
SUBDIR+= p5-Module-Install-Repository
SUBDIR+= p5-Module-Install-Substitute
SUBDIR+= p5-Module-Install-XSUtil
SUBDIR+= p5-Module-Load
SUBDIR+= p5-Module-Manifest
SUBDIR+= p5-Module-Manifest-Skip
SUBDIR+= p5-Module-Metadata
SUBDIR+= p5-Module-Pluggable
SUBDIR+= p5-Module-Refresh
SUBDIR+= p5-Module-Runtime
SUBDIR+= p5-Module-Runtime-Conflicts
SUBDIR+= p5-Module-ScanDeps
SUBDIR+= p5-Module-Starter
SUBDIR+= p5-Module-Starter-PBP
SUBDIR+= p5-Module-Util
SUBDIR+= p5-Module-Versions
SUBDIR+= p5-Module-Versions-Report
SUBDIR+= p5-Mojo-IOLoop-ForkCall
SUBDIR+= p5-Moo
SUBDIR+= p5-MooX-ClassAttribute
SUBDIR+= p5-MooX-Cmd
SUBDIR+= p5-MooX-ConfigFromFile
SUBDIR+= p5-MooX-File-ConfigDir
SUBDIR+= p5-MooX-HandlesVia
SUBDIR+= p5-MooX-Locale-Passthrough
SUBDIR+= p5-MooX-Log-Any
SUBDIR+= p5-MooX-Options
SUBDIR+= p5-MooX-Roles-Pluggable
SUBDIR+= p5-MooX-StrictConstructor
SUBDIR+= p5-MooX-Types-MooseLike
SUBDIR+= p5-MooX-Types-MooseLike-Numeric
SUBDIR+= p5-MooX-late
SUBDIR+= p5-Moos
SUBDIR+= p5-Moose
SUBDIR+= p5-Moose-Autobox
SUBDIR+= p5-Moose-Policy
SUBDIR+= p5-MooseX-Aliases
SUBDIR+= p5-MooseX-App
SUBDIR+= p5-MooseX-App-Cmd
SUBDIR+= p5-MooseX-Attribute-Chained
SUBDIR+= p5-MooseX-AttributeHelpers
SUBDIR+= p5-MooseX-Attributes-Curried
SUBDIR+= p5-MooseX-ClassAttribute
SUBDIR+= p5-MooseX-CompileTime-Traits
SUBDIR+= p5-MooseX-ConfigFromFile
SUBDIR+= p5-MooseX-Daemonize
SUBDIR+= p5-MooseX-Declare
SUBDIR+= p5-MooseX-Emulate-Class-Accessor-Fast
SUBDIR+= p5-MooseX-FollowPBP
SUBDIR+= p5-MooseX-Getopt
SUBDIR+= p5-MooseX-Has-Options
SUBDIR+= p5-MooseX-InsideOut
SUBDIR+= p5-MooseX-LazyRequire
SUBDIR+= p5-MooseX-MarkAsMethods
SUBDIR+= p5-MooseX-Meta-TypeConstraint-ForceCoercion
SUBDIR+= p5-MooseX-Method-Signatures
SUBDIR+= p5-MooseX-MethodAttributes
SUBDIR+= p5-MooseX-MultiInitArg
SUBDIR+= p5-MooseX-NonMoose
SUBDIR+= p5-MooseX-Object-Pluggable
SUBDIR+= p5-MooseX-OneArgNew
SUBDIR+= p5-MooseX-POE
SUBDIR+= p5-MooseX-Param
SUBDIR+= p5-MooseX-Params-Validate
SUBDIR+= p5-MooseX-Role-Parameterized
SUBDIR+= p5-MooseX-Role-Tempdir
SUBDIR+= p5-MooseX-Role-WithOverloading
SUBDIR+= p5-MooseX-SemiAffordanceAccessor
SUBDIR+= p5-MooseX-SetOnce
SUBDIR+= p5-MooseX-SimpleConfig
SUBDIR+= p5-MooseX-Singleton
SUBDIR+= p5-MooseX-StrictConstructor
SUBDIR+= p5-MooseX-Traits
SUBDIR+= p5-MooseX-Traits-Pluggable
SUBDIR+= p5-MooseX-Types
SUBDIR+= p5-MooseX-Types-Common
SUBDIR+= p5-MooseX-Types-JSON
SUBDIR+= p5-MooseX-Types-LoadableClass
SUBDIR+= p5-MooseX-Types-LogAny
SUBDIR+= p5-MooseX-Types-Path-Class
SUBDIR+= p5-MooseX-Types-Perl
SUBDIR+= p5-MooseX-Types-Stringlike
SUBDIR+= p5-MooseX-Types-Structured
SUBDIR+= p5-MooseX-Types-URI
SUBDIR+= p5-Mouse
SUBDIR+= p5-MouseX-Getopt
SUBDIR+= p5-MouseX-NativeTraits
SUBDIR+= p5-MouseX-Types
SUBDIR+= p5-MouseX-Types-Path-Class
SUBDIR+= p5-NEXT
SUBDIR+= p5-Net-CIDR
SUBDIR+= p5-Net-LDAP-Batch
SUBDIR+= p5-Net-LDAP-Class
SUBDIR+= p5-Net-LDAP-SID
SUBDIR+= p5-Net-LDAP-Server-Test
SUBDIR+= p5-Net-Netmask
SUBDIR+= p5-OLE-Storage_Lite
SUBDIR+= p5-OOTools
SUBDIR+= p5-Object-Accessor
SUBDIR+= p5-Object-Declare
SUBDIR+= p5-Object-Event
SUBDIR+= p5-Object-InsideOut
SUBDIR+= p5-Object-Pluggable
SUBDIR+= p5-Object-Realize-Later
SUBDIR+= p5-Object-Signature
SUBDIR+= p5-Ouch
SUBDIR+= p5-PAR
SUBDIR+= p5-PAR-Dist
SUBDIR+= p5-PHP-Serialization
SUBDIR+= p5-POE
SUBDIR+= p5-POE-Component-Cron
SUBDIR+= p5-POE-Component-Pluggable
SUBDIR+= p5-POE-Component-Schedule
SUBDIR+= p5-POE-Component-Syndicator
SUBDIR+= p5-POE-Test-Loops
SUBDIR+= p5-POEx-Types
SUBDIR+= p5-PPI
SUBDIR+= p5-PPI-PowerToys
SUBDIR+= p5-PPI-XS
SUBDIR+= p5-PPIx-Regexp
SUBDIR+= p5-PPIx-Utilities
SUBDIR+= p5-PV
SUBDIR+= p5-Package-Constants
SUBDIR+= p5-Package-DeprecationManager
SUBDIR+= p5-Package-Generator
SUBDIR+= p5-Package-Stash
SUBDIR+= p5-Package-Stash-XS
SUBDIR+= p5-Package-Variant
SUBDIR+= p5-PadWalker
SUBDIR+= p5-Parallel-ForkManager
SUBDIR+= p5-Parallel-Prefork
SUBDIR+= p5-Params-Classify
SUBDIR+= p5-Params-Coerce
SUBDIR+= p5-Params-Util
SUBDIR+= p5-Params-Validate
SUBDIR+= p5-Params-ValidationCompiler
SUBDIR+= p5-Parse-CPAN-Meta
SUBDIR+= p5-Parse-CPAN-Packages
SUBDIR+= p5-Parse-ErrorString-Perl
SUBDIR+= p5-Parse-ExuberantCTags
SUBDIR+= p5-Parse-Method-Signatures
SUBDIR+= p5-Parse-PMFile
SUBDIR+= p5-Parse-RecDescent
SUBDIR+= p5-Parse-Yapp
SUBDIR+= p5-PatchReader
SUBDIR+= p5-Path-Class
SUBDIR+= p5-Path-Class-File-Stat
SUBDIR+= p5-Path-Dispatcher
SUBDIR+= p5-Path-Dispatcher-Declarative
SUBDIR+= p5-Path-FindDev
SUBDIR+= p5-Path-IsDev
SUBDIR+= p5-Path-Iter
SUBDIR+= p5-PathTools
SUBDIR+= p5-Pegex
SUBDIR+= p5-Perl-APIReference
SUBDIR+= p5-Perl-Critic
SUBDIR+= p5-Perl-MinimumVersion
SUBDIR+= p5-Perl-PrereqScanner
SUBDIR+= p5-Perl-PrereqScanner-NotQuiteLite
SUBDIR+= p5-Perl-Tidy
SUBDIR+= p5-Perl-Version
SUBDIR+= p5-Perl4-CoreLibs
SUBDIR+= p5-Perl6-Export
SUBDIR+= p5-Perl6-Export-Attrs
SUBDIR+= p5-Perl6-Junction
SUBDIR+= p5-Perl6-Slurp
SUBDIR+= p5-PerlIO-eol
SUBDIR+= p5-PerlIO-gzip
SUBDIR+= p5-PerlIO-utf8_strict
SUBDIR+= p5-PerlIO-via-Bzip2
SUBDIR+= p5-PerlIO-via-Timeout
SUBDIR+= p5-PerlIO-via-dynamic
SUBDIR+= p5-PerlIO-via-symlink
SUBDIR+= p5-PerlX-Maybe
SUBDIR+= p5-Pod-Usage
SUBDIR+= p5-Probe-Perl
SUBDIR+= p5-Proc-Background
SUBDIR+= p5-Proc-Daemon
SUBDIR+= p5-Proc-InvokeEditor
SUBDIR+= p5-Proc-PID-File
SUBDIR+= p5-Proc-Pidfile
SUBDIR+= p5-Proc-ProcessTable
SUBDIR+= p5-Proc-Queue
SUBDIR+= p5-Proc-Simple
SUBDIR+= p5-Proc-Wait3
SUBDIR+= p5-Proc-WaitStat
SUBDIR+= p5-Python-Serialise-Marshal
SUBDIR+= p5-RT-Authen-ExternalAuth
SUBDIR+= p5-Readonly
SUBDIR+= p5-Readonly-XS
SUBDIR+= p5-Ref-Util
SUBDIR+= p5-Ref-Util-XS
SUBDIR+= p5-Regexp-Assemble
SUBDIR+= p5-Regexp-MatchContext
SUBDIR+= p5-Regexp-Parser
SUBDIR+= p5-Regexp-Shellish
SUBDIR+= p5-Regexp-Trie
SUBDIR+= p5-Reply
SUBDIR+= p5-Return-MultiLevel
SUBDIR+= p5-Return-Value
SUBDIR+= p5-Role-Basic
SUBDIR+= p5-Role-HasMessage
SUBDIR+= p5-Role-Identifiable
SUBDIR+= p5-Role-Tiny
SUBDIR+= p5-Rose-Object
SUBDIR+= p5-SDL
SUBDIR+= p5-SUPER
SUBDIR+= p5-SVN-Class
SUBDIR+= p5-SVN-Dump
SUBDIR+= p5-SVN-Mirror
SUBDIR+= p5-SVN-Notify
SUBDIR+= p5-SVN-Simple
SUBDIR+= p5-Safe-Hole
SUBDIR+= p5-Safe-Isa
SUBDIR+= p5-Scalar-Defer
SUBDIR+= p5-Scalar-List-Utils
SUBDIR+= p5-Scalar-Util-Refcount
SUBDIR+= p5-Schedule-RateLimiter
SUBDIR+= p5-Scope-Guard
SUBDIR+= p5-Scope-Upper
SUBDIR+= p5-Search-Elasticsearch
SUBDIR+= p5-Set-Array
SUBDIR+= p5-Set-IntSpan
SUBDIR+= p5-Set-Object
SUBDIR+= p5-Set-Scalar
SUBDIR+= p5-Shell-Config-Generate
SUBDIR+= p5-Shell-Guess
SUBDIR+= p5-Shell-Perl
SUBDIR+= p5-ShipIt
SUBDIR+= p5-Signal-Mask
SUBDIR+= p5-Smart-Comments
SUBDIR+= p5-Software-License
SUBDIR+= p5-Sort-Key
SUBDIR+= p5-Sort-Maker
SUBDIR+= p5-Sort-Naturally
SUBDIR+= p5-Sort-Versions
SUBDIR+= p5-Specio
SUBDIR+= p5-Spiffy
SUBDIR+= p5-Spoon
SUBDIR+= p5-Storable
SUBDIR+= p5-Stream-Buffered
SUBDIR+= p5-String-Escape
SUBDIR+= p5-String-Format
SUBDIR+= p5-String-PerlIdentifier
SUBDIR+= p5-String-Print
SUBDIR+= p5-String-Util
SUBDIR+= p5-Struct-Dumb
SUBDIR+= p5-Sub-Exporter
SUBDIR+= p5-Sub-Exporter-ForMethods
SUBDIR+= p5-Sub-Exporter-GlobExporter
SUBDIR+= p5-Sub-Exporter-Progressive
SUBDIR+= p5-Sub-Identify
SUBDIR+= p5-Sub-Info
SUBDIR+= p5-Sub-Install
SUBDIR+= p5-Sub-Installer
SUBDIR+= p5-Sub-Name
SUBDIR+= p5-Sub-Override
SUBDIR+= p5-Sub-Quote
SUBDIR+= p5-Sub-Uplevel
SUBDIR+= p5-Symbol-Global-Name
SUBDIR+= p5-Syntax-Keyword-Junction
SUBDIR+= p5-Sys-Syscall
SUBDIR+= p5-System-Command
SUBDIR+= p5-TAP-Formatter-HTML
SUBDIR+= p5-TAP-Harness-Archive
SUBDIR+= p5-Taint-Util
SUBDIR+= p5-Task-Weaken
SUBDIR+= p5-Tee
SUBDIR+= p5-Template-Plugin-Handy
SUBDIR+= p5-Template-Plugin-HashMerge
SUBDIR+= p5-Template-Plugin-ListMoreUtils
SUBDIR+= p5-Template-Plugin-ListUtil
SUBDIR+= p5-Template-Plugin-VMethods
SUBDIR+= p5-Term-ANSIColor
SUBDIR+= p5-Term-Animation
SUBDIR+= p5-Term-Cap
SUBDIR+= p5-Term-Encoding
SUBDIR+= p5-Term-ProgressBar
SUBDIR+= p5-Term-ProgressBar-Quiet
SUBDIR+= p5-Term-ProgressBar-Simple
SUBDIR+= p5-Term-Prompt
SUBDIR+= p5-Term-ReadKey
SUBDIR+= p5-Term-ReadLine
SUBDIR+= p5-Term-ReadLine-Perl
SUBDIR+= p5-Term-ReadLine-TTYtter
SUBDIR+= p5-Term-ReadPassword
SUBDIR+= p5-Term-Screen
SUBDIR+= p5-Term-Shell
SUBDIR+= p5-Term-ShellUI
SUBDIR+= p5-Term-Size
SUBDIR+= p5-Term-Size-Any
SUBDIR+= p5-Term-Size-Perl
SUBDIR+= p5-Term-Table
SUBDIR+= p5-Term-UI
SUBDIR+= p5-Test-API
SUBDIR+= p5-Test-Aggregate
SUBDIR+= p5-Test-Approx
SUBDIR+= p5-Test-Assertions
SUBDIR+= p5-Test-BDD-Cucumber
SUBDIR+= p5-Test-Base
SUBDIR+= p5-Test-Bits
SUBDIR+= p5-Test-CPAN-Meta
SUBDIR+= p5-Test-CPAN-Meta-JSON
SUBDIR+= p5-Test-CPAN-Meta-YAML
SUBDIR+= p5-Test-CheckDeps
SUBDIR+= p5-Test-CheckManifest
SUBDIR+= p5-Test-Class
SUBDIR+= p5-Test-ClassAPI
SUBDIR+= p5-Test-CleanNamespaces
SUBDIR+= p5-Test-Cmd
SUBDIR+= p5-Test-Command-Simple
SUBDIR+= p5-Test-Compile
SUBDIR+= p5-Test-Continuous
SUBDIR+= p5-Test-Deep
SUBDIR+= p5-Test-DependentModules
SUBDIR+= p5-Test-Differences
SUBDIR+= p5-Test-Dir
SUBDIR+= p5-Test-DistManifest
SUBDIR+= p5-Test-Distribution
SUBDIR+= p5-Test-EOL
SUBDIR+= p5-Test-Exception
SUBDIR+= p5-Test-Expect
SUBDIR+= p5-Test-FailWarnings
SUBDIR+= p5-Test-Fatal
SUBDIR+= p5-Test-File
SUBDIR+= p5-Test-File-Contents
SUBDIR+= p5-Test-File-ShareDir
SUBDIR+= p5-Test-Fixture-DBIC-Schema
SUBDIR+= p5-Test-HTTP-LocalServer
SUBDIR+= p5-Test-Harness
SUBDIR+= p5-Test-HexDifferences
SUBDIR+= p5-Test-HexString
SUBDIR+= p5-Test-Identity
SUBDIR+= p5-Test-InDistDir
SUBDIR+= p5-Test-Inline
SUBDIR+= p5-Test-Inter
SUBDIR+= p5-Test-Kwalitee
SUBDIR+= p5-Test-LeakTrace
SUBDIR+= p5-Test-LectroTest
SUBDIR+= p5-Test-LoadAllModules
SUBDIR+= p5-Test-Log4perl
SUBDIR+= p5-Test-LongString
SUBDIR+= p5-Test-Manifest
SUBDIR+= p5-Test-Memory-Cycle
SUBDIR+= p5-Test-MinimumVersion
SUBDIR+= p5-Test-Mock-LWP
SUBDIR+= p5-Test-MockModule
SUBDIR+= p5-Test-MockObject
SUBDIR+= p5-Test-Modern
SUBDIR+= p5-Test-More-Behaviour
SUBDIR+= p5-Test-More-UTF8
SUBDIR+= p5-Test-Most
SUBDIR+= p5-Test-Needs
SUBDIR+= p5-Test-NiceDump
SUBDIR+= p5-Test-NoTabs
SUBDIR+= p5-Test-NoWarnings
SUBDIR+= p5-Test-Object
SUBDIR+= p5-Test-Output
SUBDIR+= p5-Test-POE-Client-TCP
SUBDIR+= p5-Test-POE-Server-TCP
SUBDIR+= p5-Test-Perl-Critic
SUBDIR+= p5-Test-Pod
SUBDIR+= p5-Test-Pod-Coverage
SUBDIR+= p5-Test-Pod-Spelling-CommonMistakes
SUBDIR+= p5-Test-Refcount
SUBDIR+= p5-Test-Reporter
SUBDIR+= p5-Test-Requires
SUBDIR+= p5-Test-Requires-Git
SUBDIR+= p5-Test-Roo
SUBDIR+= p5-Test-Script
SUBDIR+= p5-Test-Script-Run
SUBDIR+= p5-Test-SharedFork
SUBDIR+= p5-Test-Simple
SUBDIR+= p5-Test-Spec
SUBDIR+= p5-Test-Spelling
SUBDIR+= p5-Test-Stream
SUBDIR+= p5-Test-SubCalls
SUBDIR+= p5-Test-Taint
SUBDIR+= p5-Test-TempDir
SUBDIR+= p5-Test-TempDir-Tiny
SUBDIR+= p5-Test-TinyMocker
SUBDIR+= p5-Test-Toolbox
SUBDIR+= p5-Test-Trap
SUBDIR+= p5-Test-Unit
SUBDIR+= p5-Test-UseAllModules
SUBDIR+= p5-Test-Version
SUBDIR+= p5-Test-WWW-Selenium
SUBDIR+= p5-Test-Warn
SUBDIR+= p5-Test-Warnings
SUBDIR+= p5-Test-Weaken
SUBDIR+= p5-Test-Without-Module
SUBDIR+= p5-Test-YAML-Meta
SUBDIR+= p5-Test-YAML-Valid
SUBDIR+= p5-Test-utf8
SUBDIR+= p5-Test2-Plugin-NoWarnings
SUBDIR+= p5-Test2-Suite
SUBDIR+= p5-TheSchwartz
SUBDIR+= p5-Throwable
SUBDIR+= p5-Tie-Array-AsHash
SUBDIR+= p5-Tie-Array-Sorted
SUBDIR+= p5-Tie-Cache
SUBDIR+= p5-Tie-Cache-LRU
SUBDIR+= p5-Tie-Cache-LRU-Expires
SUBDIR+= p5-Tie-Cycle
SUBDIR+= p5-Tie-Function
SUBDIR+= p5-Tie-IxHash
SUBDIR+= p5-Tie-LLHash
SUBDIR+= p5-Tie-RefHash
SUBDIR+= p5-Tie-RefHash-Weak
SUBDIR+= p5-Tie-RegexpHash
SUBDIR+= p5-Tie-Simple
SUBDIR+= p5-Tie-ToObject
SUBDIR+= p5-Tree-DAG_Node
SUBDIR+= p5-Tree-R
SUBDIR+= p5-Tree-Simple
SUBDIR+= p5-Tree-Simple-VisitorFactory
SUBDIR+= p5-Try-Tiny
SUBDIR+= p5-TryCatch
SUBDIR+= p5-Type-Tiny
SUBDIR+= p5-Type-Tiny-XS
SUBDIR+= p5-Types-Serialiser
SUBDIR+= p5-UNIVERSAL-can
SUBDIR+= p5-UNIVERSAL-isa
SUBDIR+= p5-UNIVERSAL-moniker
SUBDIR+= p5-UNIVERSAL-require
SUBDIR+= p5-UUID-Tiny
SUBDIR+= p5-VCP
SUBDIR+= p5-VCP-Dest-svk
SUBDIR+= p5-Variable-Magic
SUBDIR+= p5-Want
SUBDIR+= p5-WeakRef
SUBDIR+= p5-Wx-Perl-DataWalker
SUBDIR+= p5-XSLoader
SUBDIR+= p5-accessors
SUBDIR+= p5-accessors-fast
SUBDIR+= p5-aliased
SUBDIR+= p5-asa
SUBDIR+= p5-autobox
SUBDIR+= p5-autobox-Core
SUBDIR+= p5-autodie
SUBDIR+= p5-autovivification
SUBDIR+= p5-bareword-filehandles
SUBDIR+= p5-boolean
SUBDIR+= p5-capitalization
SUBDIR+= p5-circular-require
SUBDIR+= p5-common-sense
SUBDIR+= p5-constant-def
SUBDIR+= p5-curry
SUBDIR+= p5-enum
SUBDIR+= p5-ex-lib
SUBDIR+= p5-experimental
SUBDIR+= p5-forks
SUBDIR+= p5-gettext
SUBDIR+= p5-glib2
SUBDIR+= p5-inc
SUBDIR+= p5-inc-latest
SUBDIR+= p5-indirect
SUBDIR+= p5-lib-abs
SUBDIR+= p5-local-lib
SUBDIR+= p5-multidimensional
SUBDIR+= p5-namespace-autoclean
SUBDIR+= p5-namespace-clean
SUBDIR+= p5-pango
SUBDIR+= p5-parent
SUBDIR+= p5-perl-headers
SUBDIR+= p5-pip
SUBDIR+= p5-prefork
SUBDIR+= p5-signatures
SUBDIR+= p5-strictures
SUBDIR+= p5-subversion
SUBDIR+= p5-syntax
SUBDIR+= p5-thrift
SUBDIR+= p5-version
SUBDIR+= p8-platform
SUBDIR+= palmpower
SUBDIR+= pango
SUBDIR+= pangomm
SUBDIR+= pangox-compat
SUBDIR+= papaya
SUBDIR+= pardiff
SUBDIR+= patch
SUBDIR+= patchelf
SUBDIR+= patchutils
SUBDIR+= pcc-libs
SUBDIR+= pccts
SUBDIR+= pcl-cvs
SUBDIR+= pcre
SUBDIR+= pcre++
SUBDIR+= pcre-ocaml
SUBDIR+= pcre2
SUBDIR+= pdcurses
SUBDIR+= pear-Console_CommandLine
SUBDIR+= pedisassem
SUBDIR+= phabricator
SUBDIR+= php-gearman
SUBDIR+= php-gettext
SUBDIR+= php-gmp
SUBDIR+= php-igbinary
SUBDIR+= php-libawl
SUBDIR+= php-memcache
SUBDIR+= php-memcached
SUBDIR+= php-mode
SUBDIR+= php-opcache
SUBDIR+= php-pcntl
SUBDIR+= php-posix
SUBDIR+= php-pthreads
SUBDIR+= php-raphf
SUBDIR+= php-raphf2
SUBDIR+= php-shmop
SUBDIR+= php-sysvmsg
SUBDIR+= php-sysvsem
SUBDIR+= php-sysvshm
SUBDIR+= php-xcache
SUBDIR+= php-xdebug
SUBDIR+= phpstorm-bin
SUBDIR+= physfs
SUBDIR+= picasm
SUBDIR+= picopb
SUBDIR+= picotrace
SUBDIR+= picp
SUBDIR+= picprg
SUBDIR+= pilrc
SUBDIR+= pipestatus
SUBDIR+= pkg-config
SUBDIR+= pkgconf
SUBDIR+= ply
SUBDIR+= pmccabe
SUBDIR+= poco
SUBDIR+= polly
SUBDIR+= popt
SUBDIR+= poxml
SUBDIR+= prcs
SUBDIR+= protobuf
SUBDIR+= protobuf-c
SUBDIR+= pstreams
SUBDIR+= pth
SUBDIR+= pthread-sem
SUBDIR+= ptlib
SUBDIR+= pvs
SUBDIR+= pwlib
SUBDIR+= py-InlineEgg
SUBDIR+= py-Optik
SUBDIR+= py-ParamUnittest
SUBDIR+= py-Pympler
SUBDIR+= py-Pyro
SUBDIR+= py-Spans
SUBDIR+= py-ZopeComponent
SUBDIR+= py-ZopeConfiguration
SUBDIR+= py-ZopeEvent
SUBDIR+= py-ZopeI18NMessageid
SUBDIR+= py-ZopeInterface
SUBDIR+= py-ZopeSchema
SUBDIR+= py-ZopeTestrunner
SUBDIR+= py-absl-py
SUBDIR+= py-aiofiles
SUBDIR+= py-angr
SUBDIR+= py-anytree
SUBDIR+= py-apipkg
SUBDIR+= py-appdirs
SUBDIR+= py-archinfo
SUBDIR+= py-argcomplete
SUBDIR+= py-argh
SUBDIR+= py-argparse
SUBDIR+= py-args
SUBDIR+= py-astor
SUBDIR+= py-astroid
SUBDIR+= py-async-timeout
SUBDIR+= py-async_generator
SUBDIR+= py-at-spi
SUBDIR+= py-at-spi2
SUBDIR+= py-atomicwrites
SUBDIR+= py-atpublic
SUBDIR+= py-attrs
SUBDIR+= py-automat
SUBDIR+= py-autopep8
SUBDIR+= py-babel
SUBDIR+= py-backcall
SUBDIR+= py-backports
SUBDIR+= py-backports.functools_lru_cache
SUBDIR+= py-backports.shutil_get_terminal_size
SUBDIR+= py-backports_abc
SUBDIR+= py-bcolz
SUBDIR+= py-behave
SUBDIR+= py-binaryornot
SUBDIR+= py-blessings
SUBDIR+= py-blinker
SUBDIR+= py-boost
SUBDIR+= py-bugzilla
SUBDIR+= py-buildbot
SUBDIR+= py-buildbot-console-view
SUBDIR+= py-buildbot-grid-view
SUBDIR+= py-buildbot-pkg
SUBDIR+= py-buildbot-waterfall-view
SUBDIR+= py-buildbot-worker
SUBDIR+= py-buildbot-www
SUBDIR+= py-cached-property
SUBDIR+= py-cachetools
SUBDIR+= py-capstone
SUBDIR+= py-case
SUBDIR+= py-cffi
SUBDIR+= py-chai
SUBDIR+= py-characteristic
SUBDIR+= py-checker
SUBDIR+= py-cheetah
SUBDIR+= py-cle
SUBDIR+= py-click
SUBDIR+= py-click-log
SUBDIR+= py-click-threading
SUBDIR+= py-clickclick
SUBDIR+= py-clint
SUBDIR+= py-codestyle
SUBDIR+= py-cogapp
SUBDIR+= py-compizconfig
SUBDIR+= py-configargparse
SUBDIR+= py-configobj
SUBDIR+= py-configparser
SUBDIR+= py-constantly
SUBDIR+= py-constants
SUBDIR+= py-construct
SUBDIR+= py-contextlib2
SUBDIR+= py-cookiecutter
SUBDIR+= py-coverage
SUBDIR+= py-cparser
SUBDIR+= py-crayons
SUBDIR+= py-cubes
SUBDIR+= py-curses
SUBDIR+= py-cursespanel
SUBDIR+= py-curtsies
SUBDIR+= py-cyordereddict
SUBDIR+= py-cython
SUBDIR+= py-d2to1
SUBDIR+= py-daemon
SUBDIR+= py-daemonize
SUBDIR+= py-darcsver
SUBDIR+= py-dash
SUBDIR+= py-ddt
SUBDIR+= py-decorator
SUBDIR+= py-deprecation
SUBDIR+= py-dialog
SUBDIR+= py-dialog2
SUBDIR+= py-distorm3
SUBDIR+= py-distro
SUBDIR+= py-doc8
SUBDIR+= py-docopt
SUBDIR+= py-docstyle
SUBDIR+= py-doctor
SUBDIR+= py-dogpile-cache
SUBDIR+= py-dulwich
SUBDIR+= py-editorconfig-core
SUBDIR+= py-entrypoints
SUBDIR+= py-enum34
SUBDIR+= py-exam
SUBDIR+= py-execnet
SUBDIR+= py-expressions
SUBDIR+= py-extras
SUBDIR+= py-extratools
SUBDIR+= py-fakefs
SUBDIR+= py-faker
SUBDIR+= py-falcon
SUBDIR+= py-fann2
SUBDIR+= py-fasteners
SUBDIR+= py-fastimport
SUBDIR+= py-filebytes
SUBDIR+= py-filechunkio
SUBDIR+= py-filelock
SUBDIR+= py-fixtures
SUBDIR+= py-flake8
SUBDIR+= py-flake8-docstrings
SUBDIR+= py-flake8-import-order
SUBDIR+= py-flake8-polyfill
SUBDIR+= py-flakes
SUBDIR+= py-flaky
SUBDIR+= py-flexmock
SUBDIR+= py-flufl.i18n
SUBDIR+= py-flufl.lock
SUBDIR+= py-flufl.testing
SUBDIR+= py-freezegun
SUBDIR+= py-funcparserlib
SUBDIR+= py-funcsigs
SUBDIR+= py-functools32
SUBDIR+= py-future
SUBDIR+= py-futures
SUBDIR+= py-game
SUBDIR+= py-gcovr
SUBDIR+= py-generate
SUBDIR+= py-gflags
SUBDIR+= py-gitinspector
SUBDIR+= py-gitinspector-devel
SUBDIR+= py-gobject
SUBDIR+= py-gobject-shared
SUBDIR+= py-gobject3
SUBDIR+= py-gobject3-common
SUBDIR+= py-google-apputils
SUBDIR+= py-grako
SUBDIR+= py-greenlet
SUBDIR+= py-guppy3
SUBDIR+= py-h5py
SUBDIR+= py-hamcrest
SUBDIR+= py-hash
SUBDIR+= py-hg-evolve
SUBDIR+= py-hg-fastimport
SUBDIR+= py-hg-git
SUBDIR+= py-hglib
SUBDIR+= py-hglist
SUBDIR+= py-hgnested
SUBDIR+= py-hgtools
SUBDIR+= py-hyperscan
SUBDIR+= py-hypothesis
SUBDIR+= py-idle
SUBDIR+= py-importlib-metadata
SUBDIR+= py-incremental
SUBDIR+= py-intervaltree
SUBDIR+= py-iowait
SUBDIR+= py-ipaddr
SUBDIR+= py-ipykernel
SUBDIR+= py-ipython
SUBDIR+= py-ipython5
SUBDIR+= py-ipython_genutils
SUBDIR+= py-iso-639
SUBDIR+= py-iso3166
SUBDIR+= py-isort
SUBDIR+= py-jaraco.classes
SUBDIR+= py-jaraco.functools
SUBDIR+= py-jaraco_util
SUBDIR+= py-jersey
SUBDIR+= py-joblib
SUBDIR+= py-jupyter_client
SUBDIR+= py-jupyter_core
SUBDIR+= py-kafka-python
SUBDIR+= py-kaitaistruct
SUBDIR+= py-kjbuckets
SUBDIR+= py-kqueue
SUBDIR+= py-lama
SUBDIR+= py-lazr.config
SUBDIR+= py-lazr.delegates
SUBDIR+= py-lazy-object-proxy
SUBDIR+= py-libevent-rpcgen
SUBDIR+= py-libmc
SUBDIR+= py-limits
SUBDIR+= py-line_profiler
SUBDIR+= py-linecache2
SUBDIR+= py-llvmlite
SUBDIR+= py-lockfile
SUBDIR+= py-logan
SUBDIR+= py-logbook
SUBDIR+= py-logilab-astng
SUBDIR+= py-logilab-common
SUBDIR+= py-lru-dict
SUBDIR+= py-lupa
SUBDIR+= py-macholib
SUBDIR+= py-mako
SUBDIR+= py-mando
SUBDIR+= py-manticore
SUBDIR+= py-mccabe
SUBDIR+= py-memcached
SUBDIR+= py-memory-profiler
SUBDIR+= py-mercurial
SUBDIR+= py-minimock
SUBDIR+= py-mixbox
SUBDIR+= py-mmh3
SUBDIR+= py-mock
SUBDIR+= py-modulegraph
SUBDIR+= py-more-itertools
SUBDIR+= py-more-itertools2
SUBDIR+= py-mox
SUBDIR+= py-msgpack
SUBDIR+= py-multipledispatch
SUBDIR+= py-newt
SUBDIR+= py-nose
SUBDIR+= py-nose-exclude
SUBDIR+= py-nose2
SUBDIR+= py-nosexcover
SUBDIR+= py-ode
SUBDIR+= py-olefile
SUBDIR+= py-open-vcdiff
SUBDIR+= py-ordered-set
SUBDIR+= py-oset
SUBDIR+= py-packaging
SUBDIR+= py-parameterized
SUBDIR+= py-path.py
SUBDIR+= py-pathlib
SUBDIR+= py-pathlib2
SUBDIR+= py-pathspec
SUBDIR+= py-pbr
SUBDIR+= py-pebble
SUBDIR+= py-pep8
SUBDIR+= py-pexpect
SUBDIR+= py-pip
SUBDIR+= py-pkgconfig
SUBDIR+= py-pkginfo
SUBDIR+= py-pluggy
SUBDIR+= py-ply
SUBDIR+= py-polib
SUBDIR+= py-pqueue
SUBDIR+= py-prefixspan
SUBDIR+= py-pretend
SUBDIR+= py-prompt_toolkit
SUBDIR+= py-prompt_toolkit2
SUBDIR+= py-proteus
SUBDIR+= py-protobuf
SUBDIR+= py-py
SUBDIR+= py-py2app
SUBDIR+= py-pydispatcher
SUBDIR+= py-pyelftools
SUBDIR+= py-pygit2
SUBDIR+= py-pylint
SUBDIR+= py-pylint-plugin-utils
SUBDIR+= py-pyobjc
SUBDIR+= py-pyobjc-core
SUBDIR+= py-pyobjc-framework-AVFoundation
SUBDIR+= py-pyobjc-framework-AVKit
SUBDIR+= py-pyobjc-framework-Accounts
SUBDIR+= py-pyobjc-framework-AddressBook
SUBDIR+= py-pyobjc-framework-AppleScriptKit
SUBDIR+= py-pyobjc-framework-AppleScriptObjC
SUBDIR+= py-pyobjc-framework-ApplicationServices
SUBDIR+= py-pyobjc-framework-Automator
SUBDIR+= py-pyobjc-framework-CFNetwork
SUBDIR+= py-pyobjc-framework-CalendarStore
SUBDIR+= py-pyobjc-framework-CloudKit
SUBDIR+= py-pyobjc-framework-Cocoa
SUBDIR+= py-pyobjc-framework-Collaboration
SUBDIR+= py-pyobjc-framework-ColorSync
SUBDIR+= py-pyobjc-framework-Contacts
SUBDIR+= py-pyobjc-framework-ContactsUI
SUBDIR+= py-pyobjc-framework-CoreBluetooth
SUBDIR+= py-pyobjc-framework-CoreData
SUBDIR+= py-pyobjc-framework-CoreLocation
SUBDIR+= py-pyobjc-framework-CoreML
SUBDIR+= py-pyobjc-framework-CoreServices
SUBDIR+= py-pyobjc-framework-CoreSpotlight
SUBDIR+= py-pyobjc-framework-CoreText
SUBDIR+= py-pyobjc-framework-CoreWLAN
SUBDIR+= py-pyobjc-framework-CryptoTokenKit
SUBDIR+= py-pyobjc-framework-DictionaryServices
SUBDIR+= py-pyobjc-framework-DiskArbitration
SUBDIR+= py-pyobjc-framework-EventKit
SUBDIR+= py-pyobjc-framework-ExceptionHandling
SUBDIR+= py-pyobjc-framework-ExternalAccessory
SUBDIR+= py-pyobjc-framework-FSEvents
SUBDIR+= py-pyobjc-framework-FinderSync
SUBDIR+= py-pyobjc-framework-GameCenter
SUBDIR+= py-pyobjc-framework-GameController
SUBDIR+= py-pyobjc-framework-GameKit
SUBDIR+= py-pyobjc-framework-GameplayKit
SUBDIR+= py-pyobjc-framework-IOSurface
SUBDIR+= py-pyobjc-framework-ImageCaptureCore
SUBDIR+= py-pyobjc-framework-InputMethodKit
SUBDIR+= py-pyobjc-framework-InstallerPlugins
SUBDIR+= py-pyobjc-framework-InstantMessage
SUBDIR+= py-pyobjc-framework-Intents
SUBDIR+= py-pyobjc-framework-LatentSemanticMapping
SUBDIR+= py-pyobjc-framework-LaunchServices
SUBDIR+= py-pyobjc-framework-LocalAuthentication
SUBDIR+= py-pyobjc-framework-MapKit
SUBDIR+= py-pyobjc-framework-MediaAccessibility
SUBDIR+= py-pyobjc-framework-MediaLibrary
SUBDIR+= py-pyobjc-framework-MediaPlayer
SUBDIR+= py-pyobjc-framework-MetalKit
SUBDIR+= py-pyobjc-framework-ModelIO
SUBDIR+= py-pyobjc-framework-MultipeerConnectivity
SUBDIR+= py-pyobjc-framework-NetFS
SUBDIR+= py-pyobjc-framework-NetworkExtension
SUBDIR+= py-pyobjc-framework-NotificationCenter
SUBDIR+= py-pyobjc-framework-OpenDirectory
SUBDIR+= py-pyobjc-framework-Photos
SUBDIR+= py-pyobjc-framework-PhotosUI
SUBDIR+= py-pyobjc-framework-PreferencePanes
SUBDIR+= py-pyobjc-framework-PubSub
SUBDIR+= py-pyobjc-framework-QTKit
SUBDIR+= py-pyobjc-framework-Quartz
SUBDIR+= py-pyobjc-framework-SafariServices
SUBDIR+= py-pyobjc-framework-SceneKit
SUBDIR+= py-pyobjc-framework-ScreenSaver
SUBDIR+= py-pyobjc-framework-ScriptingBridge
SUBDIR+= py-pyobjc-framework-SearchKit
SUBDIR+= py-pyobjc-framework-Security
SUBDIR+= py-pyobjc-framework-SecurityInterface
SUBDIR+= py-pyobjc-framework-ServiceManagement
SUBDIR+= py-pyobjc-framework-Social
SUBDIR+= py-pyobjc-framework-SpriteKit
SUBDIR+= py-pyobjc-framework-StoreKit
SUBDIR+= py-pyobjc-framework-SyncServices
SUBDIR+= py-pyobjc-framework-SystemConfiguration
SUBDIR+= py-pyobjc-framework-Vision
SUBDIR+= py-pyobjc-framework-WebKit
SUBDIR+= py-pyobjc-framework-iTunesLibrary
SUBDIR+= py-pyobjc-framework-libdispatch
SUBDIR+= py-pyparsing
SUBDIR+= py-pyrsistent
SUBDIR+= py-pysha3
SUBDIR+= py-pysvn
SUBDIR+= py-pyte
SUBDIR+= py-pytemplate
SUBDIR+= py-python-dotenv
SUBDIR+= py-python-slugify
SUBDIR+= py-pyutil
SUBDIR+= py-pyvex
SUBDIR+= py-queuelib
SUBDIR+= py-quixote
SUBDIR+= py-radon
SUBDIR+= py-random2
SUBDIR+= py-rauth
SUBDIR+= py-readlike
SUBDIR+= py-readline
SUBDIR+= py-rednose
SUBDIR+= py-reparser
SUBDIR+= py-repoze.lru
SUBDIR+= py-requests
SUBDIR+= py-requests-file
SUBDIR+= py-requests-ftp
SUBDIR+= py-requests-futures
SUBDIR+= py-requests-mock
SUBDIR+= py-requests-toolbelt
SUBDIR+= py-requests-unixsocket
SUBDIR+= py-restructuredtext_lint
SUBDIR+= py-retry_decorator
SUBDIR+= py-rope
SUBDIR+= py-rply
SUBDIR+= py-ruamel-base
SUBDIR+= py-ruamel-ordereddict
SUBDIR+= py-ruamel-yaml
SUBDIR+= py-scandir
SUBDIR+= py-selectors2
SUBDIR+= py-semantic_version
SUBDIR+= py-serpent
SUBDIR+= py-setuptools
SUBDIR+= py-setuptools_scm
SUBDIR+= py-setuptools_scm_git_archive
SUBDIR+= py-setuptools_trial
SUBDIR+= py-simplegeneric
SUBDIR+= py-singledispatch
SUBDIR+= py-sortedcontainers
SUBDIR+= py-speaklater
SUBDIR+= py-stem
SUBDIR+= py-stevedore
SUBDIR+= py-stompclient
SUBDIR+= py-stsci.distutils
SUBDIR+= py-subprocess32
SUBDIR+= py-subversion
SUBDIR+= py-subvertpy
SUBDIR+= py-sure
SUBDIR+= py-sysctl
SUBDIR+= py-termcolor
SUBDIR+= py-test
SUBDIR+= py-test-assume
SUBDIR+= py-test-asyncio
SUBDIR+= py-test-cache
SUBDIR+= py-test-cov
SUBDIR+= py-test-fixture-config
SUBDIR+= py-test-flake8
SUBDIR+= py-test-forked
SUBDIR+= py-test-isort
SUBDIR+= py-test-localserver
SUBDIR+= py-test-mock
SUBDIR+= py-test-pylint
SUBDIR+= py-test-pythonpath
SUBDIR+= py-test-randomly
SUBDIR+= py-test-relaxed
SUBDIR+= py-test-rerunfailures
SUBDIR+= py-test-runner
SUBDIR+= py-test-shutil
SUBDIR+= py-test-sugar
SUBDIR+= py-test-testmon
SUBDIR+= py-test-timeout
SUBDIR+= py-test-utils
SUBDIR+= py-test-virtualenv
SUBDIR+= py-test-watch
SUBDIR+= py-test-xdist
SUBDIR+= py-test-xprocess
SUBDIR+= py-test5
SUBDIR+= py-testpath
SUBDIR+= py-testrepository
SUBDIR+= py-testresources
SUBDIR+= py-testscenarios
SUBDIR+= py-testtools
SUBDIR+= py-thrift
SUBDIR+= py-tlsh
SUBDIR+= py-toolz
SUBDIR+= py-tortoisehg
SUBDIR+= py-tox
SUBDIR+= py-traceback2
SUBDIR+= py-traitlets
SUBDIR+= py-treq
SUBDIR+= py-tryton
SUBDIR+= py-trytond
SUBDIR+= py-txaio
SUBDIR+= py-txgithub
SUBDIR+= py-txrequests
SUBDIR+= py-typed-ast
SUBDIR+= py-typing
SUBDIR+= py-typing-extensions
SUBDIR+= py-unit
SUBDIR+= py-unitgui
SUBDIR+= py-unittest-mixins
SUBDIR+= py-unittest2
SUBDIR+= py-unittest2pytest
SUBDIR+= py-urwid
SUBDIR+= py-usb
SUBDIR+= py-uuid
SUBDIR+= py-uvloop
SUBDIR+= py-vcversioner
SUBDIR+= py-vine
SUBDIR+= py-virtualenv
SUBDIR+= py-visitor
SUBDIR+= py-wcwidth
SUBDIR+= py-wheel
SUBDIR+= py-whichcraft
SUBDIR+= py-windbg
SUBDIR+= py-wrapt
SUBDIR+= py-xdg
SUBDIR+= py-xdis
SUBDIR+= py-xopen
SUBDIR+= py-zanata-python-client
SUBDIR+= py-zc.lockfile
SUBDIR+= py-zconfig
SUBDIR+= py-zope.deferredimport
SUBDIR+= py-zope.deprecation
SUBDIR+= py-zope.exceptions
SUBDIR+= py-zope.hookable
SUBDIR+= py-zope.testing
SUBDIR+= pycharm-bin
SUBDIR+= python-mode
SUBDIR+= pythontidy
SUBDIR+= qbzr
SUBDIR+= qconf
SUBDIR+= qjson
SUBDIR+= qof
SUBDIR+= qore-uuid-module
SUBDIR+= qtscriptgenerator
SUBDIR+= quilt
SUBDIR+= radamsa
SUBDIR+= radare2
SUBDIR+= radare2-cutter
SUBDIR+= ragel
SUBDIR+= rainbow-delimiters-el
SUBDIR+= rapidsvn
SUBDIR+= ratfor
SUBDIR+= rcs
SUBDIR+= rdp
SUBDIR+= re2
SUBDIR+= re2c
SUBDIR+= readline
SUBDIR+= rebar
SUBDIR+= rebar3
SUBDIR+= refinecvs
SUBDIR+= reposurgeon
SUBDIR+= rgbds
SUBDIR+= ropper
SUBDIR+= roundup
SUBDIR+= rox-lib
SUBDIR+= rpc2
SUBDIR+= rscode
SUBDIR+= rsltc
SUBDIR+= rt-mysql
SUBDIR+= rt-pgsql
SUBDIR+= rt4
SUBDIR+= rttr
SUBDIR+= rubigen
SUBDIR+= ruby-SDL
SUBDIR+= ruby-abstract
SUBDIR+= ruby-activejob42
SUBDIR+= ruby-activejob51
SUBDIR+= ruby-activejob52
SUBDIR+= ruby-activemodel42
SUBDIR+= ruby-activemodel51
SUBDIR+= ruby-activemodel52
SUBDIR+= ruby-activestorage52
SUBDIR+= ruby-activesupport42
SUBDIR+= ruby-activesupport51
SUBDIR+= ruby-activesupport52
SUBDIR+= ruby-algorithms
SUBDIR+= ruby-amstd
SUBDIR+= ruby-assistance
SUBDIR+= ruby-atk
SUBDIR+= ruby-backports
SUBDIR+= ruby-bindata
SUBDIR+= ruby-bit-struct
SUBDIR+= ruby-blankslate
SUBDIR+= ruby-bsearch
SUBDIR+= ruby-byaccr
SUBDIR+= ruby-byebug
SUBDIR+= ruby-c21e
SUBDIR+= ruby-celluloid
SUBDIR+= ruby-celluloid-essentials
SUBDIR+= ruby-celluloid-extras
SUBDIR+= ruby-celluloid-fsm
SUBDIR+= ruby-celluloid-pool
SUBDIR+= ruby-celluloid-supervision
SUBDIR+= ruby-classy_hash
SUBDIR+= ruby-cmd
SUBDIR+= ruby-concurrent-ruby
SUBDIR+= ruby-contracts
SUBDIR+= ruby-cucumber-core
SUBDIR+= ruby-cucumber-expressions
SUBDIR+= ruby-cucumber-messages
SUBDIR+= ruby-cucumber-tag_expressions
SUBDIR+= ruby-cucumber-wire
SUBDIR+= ruby-curses
SUBDIR+= ruby-daemon_controller
SUBDIR+= ruby-delayer
SUBDIR+= ruby-delayer-deferred
SUBDIR+= ruby-dep
SUBDIR+= ruby-deprecated
SUBDIR+= ruby-dhaka
SUBDIR+= ruby-diva
SUBDIR+= ruby-docile
SUBDIR+= ruby-eet
SUBDIR+= ruby-equatable
SUBDIR+= ruby-eventmachine
SUBDIR+= ruby-extlib
SUBDIR+= ruby-facade
SUBDIR+= ruby-fast_gettext
SUBDIR+= ruby-ffi
SUBDIR+= ruby-ffi-yajl
SUBDIR+= ruby-fiddle
SUBDIR+= ruby-filesize
SUBDIR+= ruby-flexmock
SUBDIR+= ruby-forwardable-extended
SUBDIR+= ruby-gemcutter
SUBDIR+= ruby-getopt
SUBDIR+= ruby-gettext
SUBDIR+= ruby-gettext-activerecord
SUBDIR+= ruby-gettext-rails
SUBDIR+= ruby-gettext-setup
SUBDIR+= ruby-gettext_i18n_rails
SUBDIR+= ruby-gio2
SUBDIR+= ruby-glib2
SUBDIR+= ruby-globalid
SUBDIR+= ruby-gobject-introspection
SUBDIR+= ruby-google-protobuf
SUBDIR+= ruby-hashery
SUBDIR+= ruby-heckle
SUBDIR+= ruby-highline
SUBDIR+= ruby-highline17
SUBDIR+= ruby-hike
SUBDIR+= ruby-hike1
SUBDIR+= ruby-hocon
SUBDIR+= ruby-i18n
SUBDIR+= ruby-i18n12
SUBDIR+= ruby-idn
SUBDIR+= ruby-iniparse
SUBDIR+= ruby-inline
SUBDIR+= ruby-instance_storage
SUBDIR+= ruby-io-like
SUBDIR+= ruby-kgio
SUBDIR+= ruby-lazy_priority_queue
SUBDIR+= ruby-libyajl2
SUBDIR+= ruby-little-plugger
SUBDIR+= ruby-locale
SUBDIR+= ruby-locale-rails
SUBDIR+= ruby-lockfile
SUBDIR+= ruby-log4r
SUBDIR+= ruby-logging
SUBDIR+= ruby-loquacious
SUBDIR+= ruby-marcel
SUBDIR+= ruby-memcache
SUBDIR+= ruby-memoist
SUBDIR+= ruby-mercenary
SUBDIR+= ruby-metaclass
SUBDIR+= ruby-metaid
SUBDIR+= ruby-metasm
SUBDIR+= ruby-minitest
SUBDIR+= ruby-mixlib-authentication
SUBDIR+= ruby-mixlib-cli
SUBDIR+= ruby-mixlib-config
SUBDIR+= ruby-mixlib-log
SUBDIR+= ruby-mixlib-shellout
SUBDIR+= ruby-mkrf
SUBDIR+= ruby-mocha
SUBDIR+= ruby-mode
SUBDIR+= ruby-msgpack
SUBDIR+= ruby-multi_test
SUBDIR+= ruby-mustache
SUBDIR+= ruby-native-package-installer
SUBDIR+= ruby-ncurses
SUBDIR+= ruby-necromancer
SUBDIR+= ruby-needle
SUBDIR+= ruby-nenv
SUBDIR+= ruby-octokit
SUBDIR+= ruby-ole
SUBDIR+= ruby-open4
SUBDIR+= ruby-pango
SUBDIR+= ruby-parseconfig
SUBDIR+= ruby-parser
SUBDIR+= ruby-parsetree
SUBDIR+= ruby-parslet
SUBDIR+= ruby-pathname2
SUBDIR+= ruby-pathutil
SUBDIR+= ruby-pkg-config
SUBDIR+= ruby-polyglot
SUBDIR+= ruby-posix-spawn
SUBDIR+= ruby-power_assert
SUBDIR+= ruby-priority-queue
SUBDIR+= ruby-racc
SUBDIR+= ruby-railties42
SUBDIR+= ruby-railties51
SUBDIR+= ruby-railties52
SUBDIR+= ruby-randexp
SUBDIR+= ruby-rb-fsevent
SUBDIR+= ruby-rb-inotify
SUBDIR+= ruby-rb-kqueue
SUBDIR+= ruby-rbtree
SUBDIR+= ruby-rcsparse
SUBDIR+= ruby-rd-mode
SUBDIR+= ruby-readline
SUBDIR+= ruby-redmine
SUBDIR+= ruby-redmine-flatly-light-theme
SUBDIR+= ruby-redmine-gitmike-theme
SUBDIR+= ruby-redmine-minimalflat-theme
SUBDIR+= ruby-redmine-red-andy-theme
SUBDIR+= ruby-redmine_bootstrap_kit
SUBDIR+= ruby-redmine_code_review
SUBDIR+= ruby-redmine_jenkins
SUBDIR+= ruby-redmine_lightbox2
SUBDIR+= ruby-redmine_startpage
SUBDIR+= ruby-redmine_theme_changer
SUBDIR+= ruby-redmine_work_time
SUBDIR+= ruby-ref
SUBDIR+= ruby-regexp_parser
SUBDIR+= ruby-rgl
SUBDIR+= ruby-ronn
SUBDIR+= ruby-rspec
SUBDIR+= ruby-rspec-core
SUBDIR+= ruby-rspec-expectations
SUBDIR+= ruby-rspec-its
SUBDIR+= ruby-rspec-logsplit
SUBDIR+= ruby-rspec-mocks
SUBDIR+= ruby-rspec-rails
SUBDIR+= ruby-rspec-support
SUBDIR+= ruby-rspec_junit_formatter
SUBDIR+= ruby-rugged
SUBDIR+= ruby-semantic_puppet
SUBDIR+= ruby-setup
SUBDIR+= ruby-sexp-processor
SUBDIR+= ruby-shoulda-context
SUBDIR+= ruby-shoulda-matchers
SUBDIR+= ruby-simple_uuid
SUBDIR+= ruby-simplecov
SUBDIR+= ruby-simplecov-html
SUBDIR+= ruby-simpleidn
SUBDIR+= ruby-spruz
SUBDIR+= ruby-stomp
SUBDIR+= ruby-stream
SUBDIR+= ruby-subexec
SUBDIR+= ruby-subversion
SUBDIR+= ruby-templater
SUBDIR+= ruby-term-ansicolor
SUBDIR+= ruby-termcolor
SUBDIR+= ruby-test-spec
SUBDIR+= ruby-test-unit
SUBDIR+= ruby-test-unit-notify
SUBDIR+= ruby-thor
SUBDIR+= ruby-thrift
SUBDIR+= ruby-thrift_client
SUBDIR+= ruby-tins
SUBDIR+= ruby-tomlrb
SUBDIR+= ruby-turn
SUBDIR+= ruby-uglifier
SUBDIR+= ruby-uuidtools
SUBDIR+= ruby-validatable
SUBDIR+= ruby-wmi-lite
SUBDIR+= ruby-zookeeper
SUBDIR+= ruby2ruby
SUBDIR+= rubymine-bin
SUBDIR+= rudiments
SUBDIR+= rvm
SUBDIR+= rx
SUBDIR+= sablecc
SUBDIR+= scintilla
SUBDIR+= scmcvs
SUBDIR+= scons
SUBDIR+= sdcc
SUBDIR+= sdcc3
SUBDIR+= semantic
SUBDIR+= semi
SUBDIR+= sfio
SUBDIR+= sfslite
SUBDIR+= sgb
SUBDIR+= shtk
SUBDIR+= shunit2
SUBDIR+= silc-toolkit
SUBDIR+= skalibs
SUBDIR+= slib
SUBDIR+= slibtool
SUBDIR+= sloccount
SUBDIR+= smake
SUBDIR+= sml-mode
SUBDIR+= snappy
SUBDIR+= snappy-java10
SUBDIR+= sofia-sip
SUBDIR+= sparse
SUBDIR+= sparsehash
SUBDIR+= spiff
SUBDIR+= spin
SUBDIR+= splint
SUBDIR+= st
SUBDIR+= startbug1
SUBDIR+= stfl
SUBDIR+= stgit
SUBDIR+= subversion
SUBDIR+= subversion-base
SUBDIR+= sunifdef
SUBDIR+= svk
SUBDIR+= svn-bisect
SUBDIR+= swig
SUBDIR+= swig2
SUBDIR+= swig3
SUBDIR+= syncdir
SUBDIR+= sysexits
SUBDIR+= tailor
SUBDIR+= talloc
SUBDIR+= tavrasm
SUBDIR+= tcl-tclcl
SUBDIR+= tclap
SUBDIR+= tcllib
SUBDIR+= tclreadline
SUBDIR+= teem
SUBDIR+= tet3
SUBDIR+= tevent
SUBDIR+= tex-doclicense
SUBDIR+= tex-doclicense-doc
SUBDIR+= tex-etoolbox
SUBDIR+= tex-etoolbox-doc
SUBDIR+= tex-l3backend
SUBDIR+= tex-l3backend-doc
SUBDIR+= tex-l3experimental
SUBDIR+= tex-l3kernel
SUBDIR+= tex-l3kernel-doc
SUBDIR+= tex-l3packages
SUBDIR+= tex-l3packages-doc
SUBDIR+= tex-latexbug
SUBDIR+= tex-latexbug-doc
SUBDIR+= tex-lualibs
SUBDIR+= tex-lualibs-doc
SUBDIR+= tex-luatexbase
SUBDIR+= tex-luatexbase-doc
SUBDIR+= tex-multido
SUBDIR+= tex-multido-doc
SUBDIR+= tex-pgfopts
SUBDIR+= tex-pgfopts-doc
SUBDIR+= tex-pst-uml
SUBDIR+= tex-pst-uml-doc
SUBDIR+= tex-tlshell
SUBDIR+= tex-tlshell-doc
SUBDIR+= tex-xifthen
SUBDIR+= tex-xifthen-doc
SUBDIR+= threadweaver
SUBDIR+= thrift
SUBDIR+= tig
SUBDIR+= tinycthread
SUBDIR+= tkcon
SUBDIR+= tkcvs
SUBDIR+= tkdiff
SUBDIR+= tla
SUBDIR+= tlsh
SUBDIR+= tmake
SUBDIR+= topgit
SUBDIR+= tpasm
SUBDIR+= tradcpp
SUBDIR+= transifex-client
SUBDIR+= tre
SUBDIR+= treecc
SUBDIR+= trio
SUBDIR+= tvision
SUBDIR+= ucl
SUBDIR+= ucommon
SUBDIR+= ucpp
SUBDIR+= umbrello
SUBDIR+= undebt
SUBDIR+= unidiff
SUBDIR+= unittest-cpp
SUBDIR+= uno
SUBDIR+= userspace-rcu
SUBDIR+= uthash
SUBDIR+= valgrind
SUBDIR+= vanessa_adt
SUBDIR+= vanessa_logger
SUBDIR+= vanessa_socket
SUBDIR+= vera++
SUBDIR+= verifast
SUBDIR+= visualvm
SUBDIR+= vtcl
SUBDIR+= waf
SUBDIR+= wayland
SUBDIR+= wayland-protocols
SUBDIR+= woboq_codebrowser
SUBDIR+= xa65
SUBDIR+= xdelta
SUBDIR+= xdelta3
SUBDIR+= xfce4-conf
SUBDIR+= xfce4-dev-tools
SUBDIR+= xmake
SUBDIR+= xorg-util-macros
SUBDIR+= xsd
SUBDIR+= xxgdb
SUBDIR+= xxhash
SUBDIR+= yajl
SUBDIR+= yarn
SUBDIR+= yasm
SUBDIR+= z80-asm
SUBDIR+= zlib
SUBDIR+= zookeeper
SUBDIR+= zzuf
.include "../mk/misc/category.mk"