├── .hgignore ├── .hgtags ├── Makefile ├── README ├── components ├── Makefile ├── a2ps │ ├── Makefile │ ├── a2ps.fd │ ├── a2ps.license │ ├── a2ps.p5m │ └── patches │ │ └── sheets.map.patch ├── aalib │ ├── Makefile │ ├── aalib-config.1 │ ├── aalib.license │ ├── aalib.p5m │ ├── llib-laa │ └── patches │ │ └── aalib-config.patch ├── acpidump │ ├── Makefile │ ├── acpidump.1 │ ├── acpidump.license │ ├── acpidump.p5m │ ├── acpixtract.1 │ ├── madt.1 │ └── patches │ │ └── pmtools-01.patch ├── ant │ ├── Makefile │ ├── ant.1.sunman │ ├── ant.license │ ├── ant.p5m │ └── patches │ │ ├── ant.patch │ │ └── build_xml.patch ├── apache2-modules │ ├── mod_dtrace │ │ ├── Makefile │ │ ├── apache-dtrace.p5m │ │ ├── apache.license │ │ ├── dtrace.conf │ │ └── src │ │ │ ├── Makefile │ │ │ ├── apache.d │ │ │ ├── mapfile │ │ │ └── mod_dtrace.c │ ├── mod_fcgid │ │ ├── Makefile │ │ ├── apache-fcgid.p5m │ │ ├── apache.license │ │ ├── fcgid.conf │ │ └── patches │ │ │ ├── fcgid.badspawnctl-r1037727.patch │ │ │ └── fcgid.configure.apxs.patch │ ├── mod_jk │ │ ├── Makefile │ │ ├── apache-jk.p5m │ │ ├── apache.license │ │ ├── jk.conf │ │ └── workers.properties │ ├── mod_perl │ │ ├── Makefile │ │ ├── apache-perl.p5m │ │ ├── patches │ │ │ ├── CVE-2009-0796.patch │ │ │ ├── Reload.patch │ │ │ ├── TestConfigParse.patch │ │ │ └── bug38084.patch │ │ └── perl.conf │ ├── mod_proxy_html │ │ ├── Makefile │ │ ├── apache-proxy_html.license │ │ ├── apache-proxy_html.p5m │ │ ├── apache-xml2enc.license │ │ ├── apache-xml2enc.p5m │ │ └── patches │ │ │ ├── conf.patch │ │ │ └── makefile.patch │ └── mod_security2 │ │ ├── Makefile │ │ ├── apache-security.p5m │ │ ├── patches │ │ └── configure.in.patch │ │ ├── security2.conf │ │ └── security2.license ├── apache2 │ ├── Makefile │ ├── Solaris │ │ ├── apache2.1m.sunman │ │ ├── customization.sh │ │ ├── disabled-module.list │ │ ├── favicon.gif │ │ ├── favicon.ico │ │ ├── http-apache22 │ │ ├── http-apache22.xml │ │ ├── loadmodules.sed │ │ ├── modules-32.load │ │ ├── modules-64.load │ │ └── sample-module.tmpl │ ├── apache-22.p5m │ ├── apache-sed.p5m │ ├── documentation.p5m │ ├── mod_auth_gss │ │ ├── README │ │ ├── mod_auth_gss.c │ │ └── mod_auth_gss.html │ ├── mod_sed │ │ ├── libsed.h │ │ ├── mod_sed.c │ │ ├── regexp.c │ │ ├── regexp.h │ │ ├── sed.h │ │ ├── sed0.c │ │ └── sed1.c │ └── patches │ │ ├── Makefile.in.patch │ │ ├── apachectl.patch │ │ ├── apr_common.m4.patch │ │ ├── config.layout.patch │ │ ├── dav.conf.in.patch │ │ ├── extra-modules.patch │ │ ├── httpd.conf.patch │ │ ├── info.conf.in.patch │ │ └── ssl.conf.patch ├── apr-util │ ├── Makefile │ ├── apr-util-13-apr-ldap.p5m │ ├── apr-util-13-dbd-mysql.p5m │ ├── apr-util-13-dbd-sqlite.p5m │ ├── apr-util-13-doc.p5m │ ├── apr-util-13.p5m │ ├── apr-util.license │ └── patches │ │ ├── CVE-2010-1623.patch │ │ ├── apr_common.m4.patch │ │ ├── config.layout.patch │ │ └── makefile-out.patch ├── apr │ ├── Makefile │ ├── apr-13-doc.p5m │ ├── apr-13.p5m │ ├── apr.license │ ├── doc-transform │ └── patches │ │ ├── apr_common.m4.patch │ │ ├── apr_hash.patch │ │ ├── config.layout.patch │ │ ├── extended_file.patch │ │ ├── largefile.patch │ │ ├── libtool.m4.patch │ │ ├── makefile-out.patch │ │ └── port_getn_rc.patch ├── areca │ ├── Makefile │ ├── areca.copyright │ └── areca.p5m ├── autoconf │ ├── Makefile │ ├── autoconf.license │ └── autoconf.p5m ├── autogen │ ├── Makefile │ ├── autogen.license │ └── autogen.p5m ├── automake │ ├── automake-1.10 │ │ ├── Makefile │ │ ├── automake.license │ │ ├── automake.p5m │ │ ├── dirlist │ │ └── patches │ │ │ └── 00-CVE-2009-4029.patch │ └── automake-1.9.6 │ │ ├── Makefile │ │ ├── automake.license │ │ ├── automake.p5m │ │ └── patches │ │ └── 00-CVE-2009-4029.patch ├── bash │ ├── Makefile │ ├── Solaris │ │ ├── etc.bash.bash_completion │ │ ├── etc.bash.bashrc │ │ ├── etc.bash.inputrc │ │ ├── etc.skel.bashrc │ │ └── rbash.1 │ ├── bash.license │ ├── bash.p5m │ └── patches │ │ ├── bash41-001.patch │ │ ├── bash41-002.patch │ │ ├── bash41-003.patch │ │ ├── bash41-004.patch │ │ ├── bash41-005.patch │ │ ├── bash41-006.patch │ │ ├── bash41-007.patch │ │ ├── bash41-008.patch │ │ ├── bash41-009.patch │ │ ├── solaris-000.config.h.in.patch │ │ ├── solaris-001.config-top.h.patch │ │ ├── solaris-002.Makefile.in.3.patch │ │ ├── solaris-003.glob.c.patch │ │ ├── solaris-004.snprintf.c.patch │ │ ├── solaris-005.variables.c.patch │ │ ├── solaris-006.signames.c.patch │ │ ├── solaris-007.rlprivate.h.patch │ │ ├── solaris-008.xmbsrtowcs.c.patch │ │ ├── solaris-009.configure.patch │ │ ├── solaris-010.input.c.patch │ │ ├── solaris-011.input_avail.c.patch │ │ ├── solaris-012.rlconf.h.patch │ │ ├── solaris-013.bashref.info.patch │ │ ├── solaris-014.bash.man.patch │ │ └── solaris-015.rbash.man.patch ├── bcc │ ├── Makefile │ ├── bcc.license │ └── bcc.p5m ├── beanshell │ ├── Makefile │ ├── beansh.1 │ ├── beanshell.1 │ ├── beanshell.license │ ├── beanshell.p5m │ ├── patches │ │ └── bsh.patch │ └── solaris-transform ├── bind │ ├── Makefile │ ├── Solaris │ │ ├── dns-server.sh │ │ ├── migration.txt │ │ └── server.xml │ ├── bind.license │ ├── bind.p5m │ └── bindc.p5m ├── binutils │ ├── Makefile │ ├── binutils.license │ └── binutils.p5m ├── bison │ ├── Makefile │ ├── bison-runtime.p5m │ ├── bison.license │ ├── bison.p5m │ └── patches │ │ └── shared-ly.patch ├── bzip2 │ ├── Makefile │ ├── bzip2.license │ ├── bzip2.p5m │ ├── llib-lbz2 │ ├── manpages │ │ ├── bunzip2.1 │ │ ├── bzcat.1 │ │ ├── bzdiff.1 │ │ ├── bzgrep.1 │ │ ├── bzip2.1 │ │ ├── bzip2recover.1 │ │ ├── bzmore.1 │ │ └── libbz2.3 │ ├── mapfile │ ├── oldapi.c │ └── patches │ │ ├── Makefile.patch │ │ └── bzip2.patch ├── cdrtools │ ├── Makefile │ ├── Solaris │ │ ├── cdda2wav │ │ ├── cdrecord │ │ ├── cdrtools │ │ └── readcd │ ├── cdrtools.license │ ├── cdrtools.p5m │ └── patches │ │ ├── eltorito.c.patch │ │ ├── iso9660.h.patch │ │ ├── mkisofs.8.patch │ │ ├── mkisofs.c.patch │ │ ├── mkisofs.h.patch │ │ └── write.c.patch ├── clisp │ ├── Makefile │ ├── clisp.copyright │ ├── clisp.p5m │ └── patches │ │ ├── arilev0.d.patch │ │ ├── arisparc.d.patch │ │ ├── arisparc64.d.patch │ │ ├── lispbibl.d.patch │ │ ├── makemake.in.patch │ │ ├── spsparc.d.patch │ │ └── spsparc64.d.patch ├── cmake │ ├── Makefile │ ├── cmake.license │ ├── cmake.p5m │ └── patches │ │ └── cmake-2.8.5.patch ├── common │ ├── Makefile │ ├── gcmn.license │ └── gcmn.p5m ├── conflict │ ├── Makefile │ ├── conflict.copyright │ └── conflict.p5m ├── convmv │ ├── Makefile │ ├── convmv.copyright │ ├── convmv.p5m │ └── patches │ │ └── convmv.patch ├── coreutils │ ├── Makefile │ ├── coreutils.license │ ├── coreutils.p5m │ └── patches │ │ └── coreutils-8_5.patch ├── cups │ ├── Makefile │ ├── Solaris │ │ ├── ManageCUPS.html │ │ ├── auth_attr │ │ ├── desktop-print-management │ │ ├── desktop-print-management-applet │ │ ├── print-service-selector │ │ ├── prof_attr │ │ ├── service-selector.xml │ │ └── smb │ ├── cups-libs.p5m │ ├── cups-license │ ├── cups.p5m │ └── patches │ │ ├── 00-man.patch │ │ ├── 01-cups-config.patch │ │ ├── 02-smf.patch │ │ ├── 03-cups.pc.patch │ │ ├── 04-no_var_run.patch │ │ ├── 07-scf-active.patch │ │ ├── 08-usb-hack.patch │ │ ├── 11-ldap-ssl.patch │ │ ├── 12-base-tx.patch │ │ ├── 14.dbus-glib.patch │ │ └── 15-thread-safety-removal.patch ├── curl │ ├── Makefile │ ├── Solaris │ │ ├── curl-config │ │ └── curl-config-64 │ ├── curl.license │ ├── curl.p5m │ ├── llib-lcurl │ └── patches │ │ ├── 000-configure.patch │ │ ├── 001-Makefile.in.patch │ │ ├── 002-curlbuild.h.patch │ │ ├── 003-Makefile.in.patch │ │ ├── 004-Makefile.in.patch │ │ ├── 005-libcurl.pc.in.patch │ │ └── 006-curl-gssapi-delegation.patch ├── cvs │ ├── Makefile │ ├── cvs.license │ └── cvs.p5m ├── dcmtk │ ├── Makefile │ ├── dcmtk.licence │ ├── dcmtk.p5m │ └── patches │ │ └── dcmtk.patch ├── diffutils │ ├── Makefile │ ├── diffutils.license │ └── diffutils.p5m ├── doxygen │ ├── Makefile │ ├── doxygen.license │ ├── doxygen.p5m │ ├── doxygen_manual-1.5.7.1.pdf │ └── patches │ │ └── doxygen1.patch ├── ejabberd │ ├── Makefile │ ├── auth_attr │ ├── ejabberd.p5m │ ├── ejabberdctl.1m │ ├── exec_attr │ ├── patches │ │ └── ejabberd-install.patch │ ├── prof_attr │ ├── xmpp-ejabberd │ └── xmpp-ejabberd.xml ├── elinks │ ├── Makefile │ ├── elinks.license │ ├── elinks.p5m │ └── patches │ │ └── Makefile.lib.patch ├── emacs │ ├── Makefile │ ├── README │ ├── augment │ │ ├── emacs │ │ └── man │ │ │ └── man1 │ │ │ ├── emacs-gtk.1 │ │ │ ├── emacs-nox.1 │ │ │ └── emacs-x.1 │ ├── emacs.license │ ├── gnu-emacs-gtk.p5m │ ├── gnu-emacs-lisp.p5m │ ├── gnu-emacs-no-x11.p5m │ ├── gnu-emacs-x11.p5m │ ├── gnu-emacs.p5m │ └── patches │ │ ├── buffer_menu.patch │ │ ├── dldump.patch │ │ ├── etags.patch │ │ ├── sysmalloc.patch │ │ └── xft.patch ├── erlang │ ├── Makefile │ ├── erlang-doc.p5m │ ├── erlang.p5m │ └── patches │ │ ├── inet_drv.c.patch │ │ └── ssh.patch ├── fastcgi │ ├── Makefile │ ├── fcgi-doc.p5m │ ├── fcgi.license │ ├── fcgi.p5m │ └── llib-lfcgi ├── fetchmail │ ├── Makefile │ ├── fetchmail.license │ └── fetchmail.p5m ├── flex │ ├── Makefile │ ├── flex.license │ ├── flex.p5m │ ├── flexruntime.p5m │ └── patches │ │ └── 000-flex-2.5.35.Makefile.in.patch ├── foomatic │ ├── db-engine │ │ ├── Makefile │ │ ├── foomatic-db-engine.license │ │ ├── foomatic-db-engine.p5m │ │ └── patches │ │ │ ├── 00-foomatic-kitload.in.patch │ │ │ └── 01-DB.pm.patch │ ├── db │ │ ├── Makefile │ │ ├── foomatic-db.license │ │ ├── foomatic-db.p5m │ │ └── patches │ │ │ └── 00-makefile.in.patch │ ├── filters │ │ ├── Makefile │ │ ├── Solaris │ │ │ ├── foomatic.fd │ │ │ ├── netstandard_foomatic │ │ │ ├── standard_foomatic │ │ │ └── wecho.sh │ │ ├── foomatic-filters.license │ │ └── foomatic-rip.p5m │ └── fppd │ │ ├── Makefile │ │ ├── foomatic-ppds.license │ │ ├── foomatic-ppds.p5m │ │ ├── nolicense │ │ └── supportedonly.sh ├── fping │ ├── Makefile │ ├── exec_attr │ ├── fping.1m │ ├── fping.license │ ├── fping.p5m │ └── patches │ │ └── fping.patch ├── gawk │ ├── Makefile │ ├── gawk.license │ ├── gawk.p5m │ └── patches │ │ └── lc_messages.patch ├── gcc3 │ ├── Makefile │ ├── cpp.1 │ ├── fsf-funding.7 │ ├── g++.1 │ ├── g77.1 │ ├── gcc-3-runtime.p5m │ ├── gcc-3.p5m │ ├── gcc.1 │ ├── gcc.license │ ├── gcov.1 │ ├── gfdl.7 │ ├── gpl.7 │ └── patches │ │ ├── c-parse.in.patch │ │ ├── g++spec.c.patch │ │ ├── gcc.configure.patch │ │ ├── gcc.makefile.in.patch │ │ ├── i386.sol2-10.h.patch │ │ ├── intl.configure.patch │ │ ├── sol2.h.patch │ │ ├── sparc.sol2-bi.h.patch │ │ └── version.patch ├── gcc44-gmp │ ├── Makefile │ ├── gmp.license │ └── gmp.p5m ├── gcc44-mpc │ ├── Makefile │ ├── mpc.license │ └── mpc.p5m ├── gcc44-mpft │ ├── Makefile │ ├── mpfr.license │ └── mpft.p5m ├── gcc44 │ ├── Makefile │ ├── gcc44-runtime.p5m │ ├── gcc44.license │ ├── gcc44.p5m │ ├── patches │ │ └── gcc-fixinc-errexit.patch │ └── specs.i386 ├── gd2 │ ├── Makefile │ ├── Solaris │ │ ├── libgd2.1 │ │ ├── libgd2.1-extra │ │ └── libgd2.3 │ ├── gd2.license │ ├── gd2.p5m │ ├── llib-lgd │ └── patches │ │ ├── 000-add-extra.patch │ │ ├── 001-configure.patch │ │ ├── 003-default_fontpath.patch │ │ └── 004-gd2-2.0.35-CVE-2009-3546.patch ├── gdb │ ├── Makefile │ ├── README │ ├── gdb.license │ ├── gdb.p5m │ └── patches │ │ ├── gdb.auxv.c.patch │ │ ├── gdb.fork-child.c.patch │ │ └── gdb.solib-svr4.patch ├── gdbm │ ├── Makefile │ ├── gdbm.license │ ├── gdbm.p5m │ └── patches │ │ └── Makefile.in.patch ├── gettext │ ├── Makefile │ ├── README │ ├── gettext.license │ ├── gettext.p5m │ └── patches │ │ ├── fr.patch │ │ ├── recode.patch │ │ └── xgettext-java-2.patch ├── ggrep │ ├── Makefile │ ├── gnu-grep.license │ ├── gnu-grep.p5m │ └── patches │ │ └── ggrep.patch ├── ghostscript │ ├── Makefile │ ├── Solaris │ │ ├── GSinterface │ │ ├── GSinterface.1 │ │ ├── bdftops.1 │ │ ├── fixmswrd.pl.1 │ │ ├── ps2ps2.1 │ │ └── pv.sh.1 │ ├── ghostscript.license │ ├── ghostscript.p5m │ └── patches │ │ ├── 02-4776996.patch │ │ ├── 03-4795491.patch │ │ ├── 05-5045800.patch │ │ ├── 07-unixinst.mak.patch │ │ ├── 09-ijs.automake.patch │ │ ├── 10-fixmswrd.pl.patch │ │ ├── 11-7041017.patch │ │ ├── 4732635,5033581.patch │ │ └── 7003267.patch ├── git │ ├── Makefile │ ├── git.license │ ├── git.p5m │ └── patches │ │ └── perl_Makefile.patch ├── gnu-gs-fonts-other │ ├── Makefile │ ├── gnu-gs-fonts-other.license │ └── gnu-gs-fonts-other.p5m ├── gnu-gs-fonts-std │ ├── Makefile │ ├── gnu-gs-fonts-std.license │ └── gnu-gs-fonts-std.p5m ├── gnump │ ├── Makefile │ ├── Solaris │ │ ├── index.html │ │ ├── libgmp-64.pc │ │ ├── libgmp.3 │ │ ├── libgmp.pc │ │ ├── libgmpxx-64.pc │ │ └── libgmpxx.pc │ ├── gmp.license │ ├── gmp.p5m │ ├── llib-lgmp │ └── patches │ │ ├── 000-Makefile.in.patch │ │ ├── 001-t-istream.cc.patch │ │ ├── 002-t-ostream.cc.patch │ │ ├── 003-Makefile.in.patch │ │ ├── 004-t-modlinv.c.patch │ │ ├── 005-gmp-h.in.patch │ │ ├── 006-configure.patch │ │ ├── 007-Makefile.in.patch │ │ ├── 008-ismpz.cc.patch │ │ ├── 009-ismpf.cc.patch │ │ ├── 010-osmpf.cc.patch │ │ ├── 011-assert.c.patch │ │ └── 012-gen-fib.c.patch ├── gnupg │ ├── Makefile │ ├── depend.mk │ ├── gnupg.license │ └── gnupg.p5m ├── gnuplot │ ├── Makefile │ ├── README │ ├── gnuplot.license │ ├── gnuplot.p5m │ ├── patches │ │ ├── arial.patch │ │ ├── libpng12.patch │ │ └── syscfg.h.patch │ ├── rundemo │ └── runtcldemo ├── gnupth │ ├── Makefile │ ├── gnupth.license │ ├── gnupth.p5m │ └── patches │ │ ├── 000-Makefile.in.patch │ │ └── 001-pth.h.in.patch ├── gocr │ ├── Makefile │ ├── gocr.license │ └── gocr.p5m ├── gperf │ ├── Makefile │ ├── gperf.license │ └── gperf.p5m ├── gpgme │ ├── Makefile │ ├── gpgme.license │ ├── gpgme.p5m │ └── patches │ │ ├── 000-gpgconf.c.patch │ │ └── 001-mkstatus.patch ├── grails │ ├── Makefile │ ├── files │ │ ├── grails │ │ ├── grails-debug │ │ ├── grails-debug.1 │ │ └── grails.1 │ ├── grails.copyright │ ├── grails.p5m │ └── patches │ │ ├── javadoc.xml.patch │ │ ├── runant.py.patch │ │ └── skip-tests.patch ├── gtar │ ├── Makefile │ ├── gtar.1.sunman │ ├── gtar.license │ ├── gtar.p5m │ └── patches │ │ └── xgetcwd.patch ├── guile │ ├── Makefile │ ├── guile-config.1 │ ├── guile-snarf.1 │ ├── guile-tools.1 │ ├── guile.1 │ ├── guile.license │ ├── guile.p5m │ └── patches │ │ └── time.test.patch ├── guilt │ ├── Makefile │ ├── guilt.license │ ├── guilt.p5m │ └── patches │ │ ├── fix-doc-makefile.patch │ │ └── remove-column-dep.patch ├── gutenprint │ ├── Makefile │ ├── gutenprint.license │ └── gutenprint.p5m ├── gzip │ ├── Makefile │ ├── gzip.license │ ├── gzip.p5m │ ├── patches │ │ ├── 6294656-6283819.patch │ │ ├── 6470484.patch │ │ └── version.patch │ └── renaming.sed ├── hal-cups-utils │ ├── Makefile │ ├── hal-cups-utils.5 │ ├── hal-cups-utils.copyright │ ├── hal-cups-utils.p5m │ └── patches │ │ ├── 00-hal_lpadmin.patch │ │ └── makefile.patch ├── hexedit │ ├── Makefile │ ├── hexedit.license │ ├── hexedit.p5m │ └── patches │ │ └── destdir.patch ├── hplip │ ├── Makefile │ ├── cache.ksh │ ├── hplip.license │ ├── hplip.p5m │ └── patches │ │ ├── 01-build.patch │ │ ├── 02_HPCupsFilter.cpp.patch │ │ ├── 03_ErnieFilter.cpp.patch │ │ └── 04_pstotiff.patch ├── httping │ ├── Makefile │ ├── httping.license │ ├── httping.p5m │ └── patches │ │ ├── Makefile.patch │ │ └── httping.1.patch ├── hwdata │ ├── Makefile │ ├── hwdata.p5m │ ├── ids.license.tmpl │ ├── pci.ids │ └── usb.ids ├── iftop │ ├── Makefile │ ├── iftop.license │ ├── iftop.p5m │ └── patches │ │ ├── 01.configure.patch │ │ ├── 02.iftop.8.patch │ │ ├── 03.ui.c.patch │ │ ├── 04.Makefile.am.patch │ │ ├── 05.Makefile.in.patch │ │ └── 06.addrs_dlpi.c.patch ├── ilmbase │ ├── Makefile │ ├── Solaris │ │ └── libilmbase.3lib │ ├── ilmbase.license │ ├── ilmbase.p5m │ └── patches │ │ ├── 000-ltmain.patch │ │ └── 001-configure.patch ├── imagemagick │ ├── Makefile │ ├── imagemagick.license │ ├── imagemagick.p5m │ └── patches │ │ ├── la.patch │ │ └── png.patch ├── iperf │ ├── Makefile │ ├── iperf.license │ └── iperf.p5m ├── ipmitool │ ├── Makefile │ ├── README │ ├── ipmievd.8 │ ├── ipmievd.xml │ ├── ipmitool.1m │ ├── ipmitool.license │ ├── ipmitool.p5m │ ├── patches │ │ ├── ipmievd.local4.patch │ │ └── ipmitool.scanning.patch │ ├── svc-ipmievd │ ├── test_ipmievd │ └── test_ipmitool ├── ircii │ ├── Makefile │ ├── ircii.license │ ├── ircii.p5m │ └── patches │ │ └── cast_sbox_h.patch ├── irssi │ ├── Makefile │ ├── irssi.license │ └── irssi.p5m ├── isc-dhcp │ ├── Makefile │ ├── SmfDHCPStates.html │ ├── SmfValueDHCP.html │ ├── dhcp.p5m │ ├── dhcp_auths │ ├── isc-dhcp │ ├── isc-dhcp-relay.xml │ ├── isc-dhcp-server.xml │ ├── isc-dhcp.5 │ └── patches │ │ ├── nopidfile.patch │ │ └── sockets.patch ├── junit │ ├── Makefile │ ├── junit.3 │ ├── junit.license │ ├── junit.p5m │ └── patches │ │ └── build.xml.patch ├── lcms │ ├── Makefile │ ├── lcms.license │ ├── lcms.p5m │ ├── llib-llcms │ └── patches │ │ ├── 000-configure.patch │ │ ├── 001-Makefile.in.patch │ │ ├── 002-Makefile.in.patch │ │ ├── 003-icc34.h.in.patch │ │ └── 004-ltmain.sh.patch ├── less │ ├── Makefile │ ├── less.license │ └── less.p5m ├── lftp │ ├── Makefile │ ├── lftp.license │ ├── lftp.p5m │ └── patches │ │ ├── lftp.1.patch │ │ ├── lftp.conf.5.patch │ │ ├── lftp_ssl.patch │ │ ├── no_charset_alias.patch │ │ └── sun_collision.patch ├── libassuan │ ├── Makefile │ ├── libassuan.license │ └── libassuan.p5m ├── libconfuse │ ├── Makefile │ ├── libconfuse.copyright │ ├── libconfuse.p5m │ └── patches │ │ ├── confuse.h.patch │ │ ├── test-Makefile.am.patch │ │ └── test-Makefile.in.patch ├── libevent │ ├── Makefile │ ├── libevent.3 │ ├── libevent.license │ ├── libevent.p5m │ ├── llib-levent │ └── patches │ │ ├── Makefile.in.patch │ │ ├── config.patch │ │ ├── event.3.patch │ │ ├── evport.patch │ │ └── http.patch ├── libexpat │ ├── Makefile │ ├── expat.p5m │ └── patches │ │ ├── CVE-2009-3560.patch │ │ └── CVE-2009-3720.patch ├── libidn │ ├── Makefile │ ├── libidn.license │ ├── libidn.p5m │ ├── llib-lidn │ └── patches │ │ ├── 000-Makefile.in.patch │ │ └── 001-Makefile.in.patch ├── libksba │ ├── Makefile │ ├── libksba.license │ └── libksba.p5m ├── libmcrypt │ ├── Makefile │ ├── libmcrypt.license │ └── libmcrypt.p5m ├── libmemcached │ ├── Makefile │ ├── libmemcached.license │ ├── libmemcached.p5m │ └── patches │ │ ├── docs.patch │ │ └── tests.patch ├── libmng │ ├── Makefile │ ├── Solaris │ │ ├── libmng-64.pc │ │ └── libmng.pc │ ├── libmng.license │ ├── libmng.p5m │ └── llib-lmng ├── libneon │ ├── Makefile │ ├── libneon.license │ ├── libneon.p5m │ └── patches │ │ ├── 000-configure.patch │ │ └── 001-neon-config.in.patch ├── libnet │ ├── Makefile │ ├── libnet.license │ ├── libnet.p5m │ └── patches │ │ ├── libnet_link_dlpi.c.patch │ │ └── makefile.in.patch ├── librsync │ ├── Makefile │ ├── librsync.copyright │ ├── librsync.p5m │ └── patches │ │ └── librsync.3.patch ├── libsigsegv │ ├── Makefile │ ├── libsigsegv.license │ ├── libsigsegv.p5m │ └── man3 │ │ ├── sigsegv.3 │ │ ├── sigsegv_deinstall_handler.3 │ │ ├── sigsegv_dispatch.3 │ │ ├── sigsegv_init.3 │ │ ├── sigsegv_install_handler.3 │ │ ├── sigsegv_register.3 │ │ ├── sigsegv_unregister.3 │ │ ├── stackoverflow_deinstall_handler.3 │ │ └── stackoverflow_install_handler.3 ├── libsndfile │ ├── Makefile │ ├── libsndfile.license │ ├── libsndfile.p5m │ └── patches │ │ └── test_strncpy_crlf.c.patch ├── libtool │ ├── Makefile │ ├── libltdl.p5m │ ├── libtool.1 │ ├── libtool.license │ ├── libtool.p5m │ └── libtoolize.1 ├── libtorrent │ ├── Makefile │ ├── libtorrent.3 │ ├── libtorrent.license │ ├── libtorrent.p5m │ └── patches │ │ ├── rlibtorrent-01-madvise.patch │ │ ├── rlibtorrent-02-event-ports.patch │ │ ├── rlibtorrent-03-dh-generate.patch │ │ ├── rlibtorrent-04-sunpro.patch │ │ └── rlibtorrent-05-tracker-usable.patch ├── libusb │ ├── ugen │ │ ├── Makefile │ │ ├── libusbugen.license │ │ ├── libusbugen.p5m │ │ └── src │ │ │ ├── Makefile │ │ │ ├── libusbugen.c │ │ │ ├── libusbugen.mapfile │ │ │ └── libusbugen_impl.h │ └── wrapper │ │ ├── Makefile │ │ ├── libusb.license │ │ ├── libusb.p5m │ │ └── src │ │ ├── Makefile │ │ ├── README │ │ ├── libusb-config │ │ ├── libusb.mapfile │ │ ├── libusb.txt │ │ ├── testlibusb.c │ │ ├── usb.h │ │ ├── wr_libusb.c │ │ └── wr_libusb.h ├── libxml2 │ ├── Makefile │ ├── libxml.3 │ ├── libxml2-26.p5m │ ├── libxml2.3 │ ├── libxml2.license │ ├── libxml2.p5m │ ├── llib-lxml2 │ ├── mapfile │ ├── patches │ │ ├── 01.configure.in.patch │ │ ├── 02.globals-fix.patch │ │ ├── 03.globals.patch │ │ ├── 04.libxml2-01-remove-static.patch │ │ ├── 05.mem-leak-fix.patch │ │ ├── 06.no-docs-examples.patch │ │ ├── 07.proto-mismatch.patch │ │ └── 08.CVE-2010-4494.patch │ ├── xml2-config.1 │ ├── xmlcatalog.1 │ └── xmllint.1 ├── libxslt │ ├── Makefile │ ├── libxsl-26.p5m │ ├── libxslt.3 │ ├── libxslt.p5m │ ├── llib-lexslt │ ├── llib-lxslt │ ├── mapfile.exslt │ ├── mapfile.xslt │ ├── patches │ │ ├── configure.in.patch │ │ └── libxslt.patch │ ├── xsl.license │ ├── xslt-config.1 │ └── xsltproc.1 ├── lighttpd │ ├── Makefile │ ├── Solaris │ │ ├── auth_attr │ │ ├── fcgi-php.conf │ │ ├── http-lighttpd14 │ │ ├── http-lighttpd14.xml │ │ ├── lighttpd.1m.sunman │ │ ├── prof_attr │ │ └── ssl.conf │ ├── lighttpd.p5m │ └── patches │ │ ├── lighttpd-conf_file.patch │ │ ├── lighttpd-manpage.patch │ │ ├── lighttpd-nodelay.patch │ │ └── lighttpd_fix_slow_request_dos.patch ├── links │ ├── Makefile │ ├── links.license │ └── links.p5m ├── logilab-astng │ ├── Makefile │ ├── logilab-astng.3 │ ├── logilab-astng.license │ └── logilab-astng.p5m ├── logilab-common │ ├── Makefile │ ├── logilab-common.3 │ ├── logilab-common.license │ └── logilab-common.p5m ├── lua │ ├── Makefile │ ├── lua.license │ ├── lua.p5m │ └── patches │ │ ├── 1.Makefile.patch │ │ ├── 2.lua.pc.patch │ │ └── 3.headers.patch ├── m4 │ ├── Makefile │ ├── m4.license │ └── m4.p5m ├── make │ ├── Makefile │ ├── make.license │ └── make.p5m ├── mc │ ├── Makefile │ ├── mc.license │ ├── mc.p5m │ └── patches │ │ ├── Makefile.in.patch │ │ ├── python-magic.patch │ │ └── read_debs.patch ├── meld │ ├── Makefile │ ├── meld.1 │ ├── meld.license │ ├── meld.p5m │ └── patches │ │ ├── INSTALL.patch │ │ ├── Makefile.patch │ │ ├── help-C-Makefile.patch │ │ ├── help-Makefile.patch │ │ ├── help-es-Makefile.patch │ │ ├── help-fr-Makefile.patch │ │ ├── meld.es.xml.patch │ │ ├── meld.fr.xml.patch │ │ ├── meld.patch │ │ ├── meld.xml.patch │ │ └── po-Makefile.patch ├── memcached-java │ ├── Makefile │ ├── Solaris │ │ └── build.xml │ ├── memcached-java.license │ └── memcached-java.p5m ├── memcached │ ├── Makefile │ ├── Solaris │ │ ├── auth_attr │ │ ├── memcached │ │ ├── memcached.1m │ │ ├── memcached.xml │ │ └── prof_attr │ ├── memcached.license │ ├── memcached.p5m │ └── patches │ │ └── tests.patch ├── mercurial │ ├── Makefile │ ├── mercurial.copyright │ ├── mercurial.p5m │ └── patches │ │ ├── https_proxy.patch │ │ ├── magic.patch │ │ └── manpages.patch ├── meta-packages │ └── history │ │ ├── Makefile │ │ ├── SUNWPython26.p5m │ │ ├── SUNWSblimCimClient.p5m │ │ ├── SUNWTcl.p5m │ │ ├── SUNWTk.p5m │ │ ├── SUNWa2ps.p5m │ │ ├── SUNWaalib.p5m │ │ ├── SUNWaconf.p5m │ │ ├── SUNWacpidump.p5m.i386 │ │ ├── SUNWant.p5m │ │ ├── SUNWapch22.p5m │ │ ├── SUNWapch22d.p5m │ │ ├── SUNWapch22m-dtrace.p5m │ │ ├── SUNWapch22m-fcgid.p5m │ │ ├── SUNWapch22m-jk.p5m │ │ ├── SUNWapch22m-proxy-html.p5m │ │ ├── SUNWapch22m-security.p5m │ │ ├── SUNWapch22m-sed.p5m │ │ ├── SUNWapch22m-xml2enc.p5m │ │ ├── SUNWapr13.p5m │ │ ├── SUNWapr13doc.p5m │ │ ├── SUNWapu13-ldap.p5m │ │ ├── SUNWapu13.p5m │ │ ├── SUNWapu13dbd-mysql.p5m │ │ ├── SUNWapu13dbd-sqlite.p5m │ │ ├── SUNWapu13doc.p5m │ │ ├── SUNWareca.p5m │ │ ├── SUNWautogen.p5m │ │ ├── SUNWbash.p5m │ │ ├── SUNWbcc.p5m │ │ ├── SUNWbeanshell.p5m │ │ ├── SUNWbind.p5m │ │ ├── SUNWbindc.p5m │ │ ├── SUNWbinutils.p5m │ │ ├── SUNWbison.p5m │ │ ├── SUNWbzip.p5m │ │ ├── SUNWclisp.p5m │ │ ├── SUNWcmake.p5m │ │ ├── SUNWconflict.p5m │ │ ├── SUNWconvmv.p5m │ │ ├── SUNWcups-libs.p5m │ │ ├── SUNWcups.p5m │ │ ├── SUNWcurl.p5m │ │ ├── SUNWcvs.p5m │ │ ├── SUNWdoxygen.p5m │ │ ├── SUNWejabberd.p5m │ │ ├── SUNWelinks.p5m │ │ ├── SUNWerlang-doc.p5m │ │ ├── SUNWerlang.p5m │ │ ├── SUNWexpect.p5m │ │ ├── SUNWfcgi-doc.p5m │ │ ├── SUNWfcgi.p5m │ │ ├── SUNWfetchmail.p5m │ │ ├── SUNWffilters.p5m │ │ ├── SUNWflexlex.p5m │ │ ├── SUNWflexruntime.p5m │ │ ├── SUNWfoomatic-db-engine.p5m │ │ ├── SUNWfoomatic-db.p5m │ │ ├── SUNWfping.p5m │ │ ├── SUNWfppd.p5m │ │ ├── SUNWftp.p5m │ │ ├── SUNWgawk.p5m │ │ ├── SUNWgcc.p5m │ │ ├── SUNWgccruntime.p5m │ │ ├── SUNWgcmn.p5m │ │ ├── SUNWgd2.p5m │ │ ├── SUNWgdb.p5m │ │ ├── SUNWggrp.p5m │ │ ├── SUNWghostscript.p5m │ │ ├── SUNWgit.p5m │ │ ├── SUNWgm4.p5m │ │ ├── SUNWgmake.p5m │ │ ├── SUNWgnu-automake-110.p5m │ │ ├── SUNWgnu-automake-19.p5m │ │ ├── SUNWgnu-coreutils.p5m │ │ ├── SUNWgnu-dbm.p5m │ │ ├── SUNWgnu-diffutils.p5m │ │ ├── SUNWgnu-emacs-el.p5m │ │ ├── SUNWgnu-emacs-gtk.p5m │ │ ├── SUNWgnu-emacs-nox.p5m │ │ ├── SUNWgnu-emacs-x.p5m │ │ ├── SUNWgnu-emacs.p5m │ │ ├── SUNWgnu-gettext.p5m │ │ ├── SUNWgnu-gperf.p5m │ │ ├── SUNWgnu-idn.p5m │ │ ├── SUNWgnu-mc.p5m │ │ ├── SUNWgnu-mp.p5m │ │ ├── SUNWgnu-mpfr.p5m │ │ ├── SUNWgnu-readline.p5m │ │ ├── SUNWgnu-which.p5m │ │ ├── SUNWgnupg.p5m │ │ ├── SUNWgnuplot.p5m │ │ ├── SUNWgocr.p5m │ │ ├── SUNWgpch.p5m │ │ ├── SUNWgrails.p5m │ │ ├── SUNWgscr.p5m │ │ ├── SUNWgsed.p5m │ │ ├── SUNWgsfot.p5m │ │ ├── SUNWgsfst.p5m │ │ ├── SUNWgtar.p5m │ │ ├── SUNWguile.p5m │ │ ├── SUNWgutenprint.p5m │ │ ├── SUNWgvim.p5m │ │ ├── SUNWgzip.p5m │ │ ├── SUNWhal-cups-utils.p5m │ │ ├── SUNWhexedit.p5m │ │ ├── SUNWhpijs.p5m │ │ ├── SUNWhttping.p5m │ │ ├── SUNWhwdata.p5m │ │ ├── SUNWiftop.p5m │ │ ├── SUNWilmbase.p5m │ │ ├── SUNWimagick.p5m │ │ ├── SUNWiperf.p5m │ │ ├── SUNWipmi.p5m │ │ ├── SUNWircii.p5m │ │ ├── SUNWjunit.p5m │ │ ├── SUNWlablgtk.p5m │ │ ├── SUNWlcms.p5m │ │ ├── SUNWldtp.p5m │ │ ├── SUNWless.p5m │ │ ├── SUNWlexpt.p5m │ │ ├── SUNWlftp.p5m │ │ ├── SUNWlibconfuse.p5m │ │ ├── SUNWlibevent.p5m │ │ ├── SUNWlibmcrypt.p5m │ │ ├── SUNWlibmemcached.p5m │ │ ├── SUNWlibmng.p5m │ │ ├── SUNWlibnet.p5m │ │ ├── SUNWlibopenusb.p5m │ │ ├── SUNWlibrsync.p5m │ │ ├── SUNWlibsigsegv.p5m │ │ ├── SUNWlibsmbclient.p5m │ │ ├── SUNWlibsndfile.p5m │ │ ├── SUNWlibstdcxx4.p5m │ │ ├── SUNWlibtool.p5m │ │ ├── SUNWlibtorrent.p5m │ │ ├── SUNWlibusb.p5m │ │ ├── SUNWlibusbugen.p5m │ │ ├── SUNWlighttpd14.p5m │ │ ├── SUNWlinks.p5m │ │ ├── SUNWlogilab-astng.p5m │ │ ├── SUNWlogilab-common.p5m │ │ ├── SUNWltdl.p5m │ │ ├── SUNWlua.p5m │ │ ├── SUNWlxml-python26.p5m │ │ ├── SUNWlxml.p5m │ │ ├── SUNWlxsl-python26.p5m │ │ ├── SUNWlxsl.p5m │ │ ├── SUNWmeld.p5m │ │ ├── SUNWmemcached-java.p5m │ │ ├── SUNWmemcached.p5m │ │ ├── SUNWmercurial.p5m │ │ ├── SUNWmkcd.p5m │ │ ├── SUNWmutt.p5m │ │ ├── SUNWncft.p5m │ │ ├── SUNWneon.p5m │ │ ├── SUNWnet-snmp-addons.p5m │ │ ├── SUNWnet-snmp-core.p5m │ │ ├── SUNWnet-snmp-doc.p5m │ │ ├── SUNWnet-snmp-utils.p5m │ │ ├── SUNWnethack.p5m │ │ ├── SUNWnmap.p5m │ │ ├── SUNWntp.p5m │ │ ├── SUNWopenexr.p5m │ │ ├── SUNWopenssl-fips-140.p5m │ │ ├── SUNWopenssl.p5m │ │ ├── SUNWp7zip.p5m │ │ ├── SUNWpampkcs11.p5m │ │ ├── SUNWpconsole.p5m │ │ ├── SUNWpcre.p5m │ │ ├── SUNWperl-net-ssleay.p5m │ │ ├── SUNWperl-pmtools.p5m │ │ ├── SUNWperl-xml-parser.p5m │ │ ├── SUNWpipe-viewer.p5m │ │ ├── SUNWpmdbi.p5m │ │ ├── SUNWprivoxy.p5m │ │ ├── SUNWpsutils.p5m │ │ ├── SUNWpth.p5m │ │ ├── SUNWpwgen.p5m │ │ ├── SUNWpycups.p5m │ │ ├── SUNWpylint.p5m │ │ ├── SUNWpython-cherrypy.p5m │ │ ├── SUNWpython-mako.p5m │ │ ├── SUNWpython-ply.p5m │ │ ├── SUNWpython-pycurl.p5m │ │ ├── SUNWpython26-lxml.p5m │ │ ├── SUNWpython26-pyopenssl.p5m │ │ ├── SUNWquagga.p5m │ │ ├── SUNWquilt.p5m │ │ ├── SUNWrdiff-backup.p5m │ │ ├── SUNWrpm.p5m │ │ ├── SUNWrsync.p5m │ │ ├── SUNWrtorrent.p5m │ │ ├── SUNWruby18.p5m │ │ ├── SUNWsane-backend.p5m │ │ ├── SUNWsane-frontend.p5m │ │ ├── SUNWscreen.p5m │ │ ├── SUNWslang.p5m │ │ ├── SUNWslib.p5m │ │ ├── SUNWslrn.p5m │ │ ├── SUNWsmba.p5m │ │ ├── SUNWsnort.p5m │ │ ├── SUNWsound-exchange.p5m │ │ ├── SUNWspawn-fcgi.p5m │ │ ├── SUNWsquid.p5m │ │ ├── SUNWsudo.p5m │ │ ├── SUNWsvn-java.p5m │ │ ├── SUNWsvn-perl.p5m │ │ ├── SUNWsvn-python.p5m │ │ ├── SUNWsvn.p5m │ │ ├── SUNWswig.p5m │ │ ├── SUNWtcat-examples.p5m │ │ ├── SUNWtcat.p5m │ │ ├── SUNWtcltls.p5m │ │ ├── SUNWtcpdump.p5m │ │ ├── SUNWtcsh.p5m │ │ ├── SUNWtexi.p5m │ │ ├── SUNWtidy.p5m │ │ ├── SUNWtop.p5m │ │ ├── SUNWtrousers.p5m │ │ ├── SUNWunison.p5m │ │ ├── SUNWunixodbc.p5m │ │ ├── SUNWunrar.p5m │ │ ├── SUNWunzip.p5m │ │ ├── SUNWvim.p5m │ │ ├── SUNWwget.p5m │ │ ├── SUNWwireshark.p5m │ │ ├── SUNWwxwidgets.p5m │ │ ├── SUNWzip.p5m │ │ ├── SUNWzlib.p5m │ │ ├── SUNWzsh.p5m │ │ ├── network%2Funison.p5m │ │ ├── runtime%2Focaml%2Flablgtk.p5m │ │ └── system%2Fipmi%2Fipmitool.p5m ├── mpfr │ ├── Makefile │ ├── Solaris │ │ ├── index.html │ │ ├── libmpfr-64.pc │ │ ├── libmpfr.3 │ │ └── libmpfr.pc │ ├── llib-lmpfr │ ├── mpfr.license │ ├── mpfr.p5m │ └── patches │ │ ├── 000-mpfr-gmp.h.patch │ │ └── 001-configure.patch ├── mutt │ ├── Makefile │ ├── mutt.license │ ├── mutt.p5m │ ├── patches │ │ ├── 6796795-extra-spaces-fix.patch │ │ ├── 6982855-imap-segfault-fix.patch │ │ └── PATCHES.patch │ ├── pgpewrap.1 │ └── pgpring.1 ├── ncftp │ ├── Makefile │ ├── ncftp.license │ └── ncftp.p5m ├── net-snmp │ ├── Makefile │ ├── net-snmp-addons.p5m │ ├── net-snmp-base.p5m │ ├── net-snmp-documentation.p5m │ ├── net-snmp.xml │ ├── patches │ │ ├── 001.scapi.patch │ │ ├── 002.pkcs.patch │ │ ├── 003.solaris-ip-mib.patch │ │ ├── 004.16436.patch │ │ ├── 005.16736.patch │ │ ├── 006.16742.patch │ │ ├── 007.16863.patch │ │ ├── 008.ip-mib.patch │ │ ├── 009.ltmain.sh.patch │ │ ├── 010.if-mib-zone.patch │ │ ├── 011.Makefile.in.patch │ │ ├── 012.Makefile.PL.patch │ │ ├── 013.6852099.proxy.patch │ │ ├── 014.6801093.vmstat_solaris2.patch │ │ ├── 015.6956251.vmstat_solaris2.patch │ │ ├── 016.6934478.vmstat_solaris2.patch │ │ ├── 017.6984919.kernel_sunos5.patch │ │ ├── 018.6932608.systemstats_common.patch │ │ ├── 019.6998845.container.patch │ │ └── 020.7018550.kernel_sunos5.patch │ ├── run-tests │ ├── sun │ │ ├── Makefile │ │ ├── README │ │ ├── agent │ │ │ ├── Makefile │ │ │ ├── mibs │ │ │ │ ├── ENTITY-MIB.txt │ │ │ │ ├── Makefile │ │ │ │ ├── SUN-MIB.txt │ │ │ │ ├── SUN-SEA-EXTENSIONS-MIB.txt │ │ │ │ ├── SUN-SEA-PROXY-MIB.txt │ │ │ │ ├── health-monitor-mib.mib │ │ │ │ └── smatrap.mib │ │ │ └── modules │ │ │ │ ├── Makefile │ │ │ │ ├── entityMib │ │ │ │ ├── Makefile │ │ │ │ ├── entAliasMappingTable.c │ │ │ │ ├── entAliasMappingTable.h │ │ │ │ ├── entLPMappingTable.c │ │ │ │ ├── entLPMappingTable.h │ │ │ │ ├── entLastChangeTime.c │ │ │ │ ├── entLastChangeTime.h │ │ │ │ ├── entLogicalTable.c │ │ │ │ ├── entLogicalTable.h │ │ │ │ ├── entPhysicalContainsTable.c │ │ │ │ ├── entPhysicalContainsTable.h │ │ │ │ ├── entPhysicalTable.c │ │ │ │ ├── entPhysicalTable.h │ │ │ │ ├── entity.c │ │ │ │ ├── entity_apidoc.txt │ │ │ │ └── stdhdr.h │ │ │ │ ├── healthMonitor │ │ │ │ ├── Makefile │ │ │ │ ├── dsr.c │ │ │ │ ├── healthMonitor.c │ │ │ │ ├── healthMonitor.h │ │ │ │ ├── health_monitor.conf │ │ │ │ ├── kr_iostat.c │ │ │ │ ├── kr_memory.c │ │ │ │ ├── kr_nfsstat.c │ │ │ │ └── kr_vmstat.c │ │ │ │ └── seaExtensions │ │ │ │ ├── Makefile │ │ │ │ ├── agent.h │ │ │ │ ├── asn1.h │ │ │ │ ├── seaExtensions.c │ │ │ │ ├── seaExtensions.h │ │ │ │ ├── snmpvars.h │ │ │ │ ├── sunHostPerf.c │ │ │ │ ├── sunHostPerf.h │ │ │ │ ├── sunProcesses.c │ │ │ │ ├── sunProcesses.h │ │ │ │ ├── sunSystem.c │ │ │ │ └── sunSystem.h │ │ ├── masfcnv │ │ ├── masfd │ │ ├── sdk │ │ │ └── demo │ │ │ │ ├── demo_module_1 │ │ │ │ ├── Makefile │ │ │ │ ├── README_demo_module_1 │ │ │ │ ├── SDK-DEMO1-MIB.txt │ │ │ │ ├── demo_module_1.c │ │ │ │ └── demo_module_1.h │ │ │ │ ├── demo_module_10 │ │ │ │ ├── Makefile │ │ │ │ ├── README_demo_module_10 │ │ │ │ ├── SDK-DEMO10-MIB.txt │ │ │ │ ├── demo_module_10.c │ │ │ │ ├── demo_module_10.h │ │ │ │ ├── get_data │ │ │ │ ├── get_refreshtime │ │ │ │ ├── get_status │ │ │ │ ├── set_status │ │ │ │ └── walk_demo_module_10 │ │ │ │ ├── demo_module_11 │ │ │ │ ├── Makefile │ │ │ │ ├── MyTable.c │ │ │ │ ├── MyTable.h │ │ │ │ └── README_demo_module_11 │ │ │ │ ├── demo_module_12 │ │ │ │ ├── EXAMPLE-MIB.txt │ │ │ │ ├── README_demo_module_12 │ │ │ │ ├── runmib2c │ │ │ │ └── runmibcodegen │ │ │ │ ├── demo_module_2 │ │ │ │ ├── Makefile │ │ │ │ ├── README_demo_module_2 │ │ │ │ ├── SDK-DEMO1-MIB.txt │ │ │ │ ├── demo_module_2.c │ │ │ │ └── demo_module_2.h │ │ │ │ ├── demo_module_3 │ │ │ │ ├── Makefile │ │ │ │ ├── README_demo_module_3 │ │ │ │ ├── SDK-DEMO1-MIB.txt │ │ │ │ ├── demo_module_3.c │ │ │ │ └── demo_module_3.h │ │ │ │ ├── demo_module_4 │ │ │ │ ├── Makefile │ │ │ │ ├── README_demo_module_4 │ │ │ │ ├── SDK-DEMO4-MIB.txt │ │ │ │ ├── demo_module_4.conf │ │ │ │ ├── me4LoadGroup.c │ │ │ │ └── me4LoadGroup.h │ │ │ │ ├── demo_module_5 │ │ │ │ ├── Makefile │ │ │ │ ├── README_demo_module_5 │ │ │ │ ├── SDK-DEMO5-MIB.txt │ │ │ │ ├── demo_module_5.c │ │ │ │ └── demo_module_5.h │ │ │ │ ├── demo_module_6 │ │ │ │ ├── Makefile │ │ │ │ ├── README_demo_module_6 │ │ │ │ ├── SDK-DEMO6-MIB.txt │ │ │ │ ├── demo_module_6.c │ │ │ │ ├── demo_module_6.h │ │ │ │ └── get_demo_module_6 │ │ │ │ ├── demo_module_7 │ │ │ │ ├── Makefile │ │ │ │ ├── README_demo_module_7 │ │ │ │ ├── SDK-DEMO6-MIB.txt │ │ │ │ ├── demo_module_7.c │ │ │ │ ├── demo_module_7.h │ │ │ │ ├── get_filesize │ │ │ │ ├── register_file │ │ │ │ └── unregister_file │ │ │ │ ├── demo_module_8 │ │ │ │ ├── Makefile │ │ │ │ ├── README_demo_module_8 │ │ │ │ ├── SDK-DEMO1-MIB.txt │ │ │ │ ├── demo_module_8.c │ │ │ │ ├── getme1LoadGroup │ │ │ │ ├── me1LoadGroup.c │ │ │ │ └── me1LoadGroup.h │ │ │ │ └── demo_module_9 │ │ │ │ ├── Makefile │ │ │ │ ├── README_demo_module_9 │ │ │ │ ├── SDK-DEMO9-MIB.txt │ │ │ │ ├── demo_module_9.c │ │ │ │ ├── demo_module_9.h │ │ │ │ ├── get_demo_module_9 │ │ │ │ ├── set_demo_module_9 │ │ │ │ └── walk_demo_module_9 │ │ ├── sma_buildrev.c │ │ └── snmpd.conf │ └── svc-net-snmp ├── nethack │ ├── Makefile │ ├── nethack.copyright │ ├── nethack.p5m │ └── patches │ │ └── nethack.patch ├── nmap │ ├── Makefile │ ├── nmap.license │ ├── nmap.p5m │ ├── nmapfe.desktop │ ├── nmapfe.png │ └── patches │ │ ├── 1.configure.patch │ │ ├── 2.Makefile.patch │ │ ├── 3.Makefile.patch │ │ ├── 4.Makefile.patch │ │ ├── 5.configure.patch │ │ ├── 6.configure.patch │ │ ├── 7.configure.patch │ │ ├── 8.configure.patch │ │ ├── 9.Makefile.patch │ │ ├── 91.tcpip.cc.patch │ │ ├── 92.intf.c.patch │ │ └── 93.setup.py.patch ├── ntp │ ├── Makefile │ ├── Solaris │ │ ├── RtNTPMngmnt.html │ │ ├── SmfNTPStates.html │ │ ├── SmfValueNTP.html │ │ ├── auth_attr │ │ ├── ntp.client │ │ ├── ntp.server │ │ ├── ntp.sh │ │ ├── ntp.xml │ │ └── prof_attr │ ├── manpages │ │ ├── ntp-keygen.1m │ │ ├── ntp.conf.4 │ │ ├── ntpd.1m │ │ ├── ntpdate.1m │ │ ├── ntpdc.1m │ │ ├── ntpq.1m │ │ ├── ntprc.4 │ │ ├── ntptime.1m │ │ └── ntptrace.1m │ ├── ntp.license │ ├── ntp.p5m │ └── patches │ │ ├── etcfix.patch │ │ ├── ins-ntp-wait.patch │ │ ├── ins-ntpd.patch │ │ ├── mc.patch │ │ ├── mdns.patch │ │ ├── noextra.patch │ │ ├── ntpwait.patch │ │ └── timing.patch ├── open-fabrics │ ├── Makefile │ ├── ibutils │ │ ├── Makefile │ │ └── patches │ │ │ └── base.patch │ ├── infiniband-diags │ │ ├── Makefile │ │ ├── manpages │ │ │ └── set_nodedesc.sh.1m │ │ ├── patches │ │ │ └── base.patch │ │ └── solaris_set_nodedesc.c │ ├── libibmad │ │ ├── Makefile │ │ └── patches │ │ │ └── base.patch │ ├── libibumad │ │ ├── Makefile │ │ └── patches │ │ │ └── base.patch │ ├── libibverbs │ │ ├── Makefile │ │ ├── ofa_solaris.h │ │ ├── patches │ │ │ └── base.patch │ │ └── solaris_compatibility.c │ ├── libmlx4 │ │ ├── Makefile │ │ └── patches │ │ │ └── base.patch │ ├── libmthca │ │ ├── Makefile │ │ └── patches │ │ │ └── base.patch │ ├── librdmacm │ │ ├── Makefile │ │ └── patches │ │ │ └── base.patch │ ├── libsdp │ │ ├── Makefile │ │ ├── manpages │ │ │ ├── libsdp.3lib │ │ │ └── libsdp.conf.4 │ │ └── patches │ │ │ └── base.patch │ ├── ofed.mk │ ├── open-fabrics.license │ ├── open-fabrics.p5m │ ├── opensm │ │ ├── Makefile │ │ └── patches │ │ │ └── base.patch │ ├── perftest │ │ ├── Makefile │ │ ├── manpages │ │ │ └── ib_clock_test.1 │ │ └── patches │ │ │ └── base.patch │ ├── qperf │ │ ├── Makefile │ │ └── patches │ │ │ └── base.patch │ └── rds-tools │ │ ├── Makefile │ │ └── patches │ │ └── base.patch ├── openexr │ ├── Makefile │ ├── Solaris │ │ ├── exrenvmap.1 │ │ ├── exrheader.1 │ │ ├── exrmakepreview.1 │ │ ├── exrmaketiled.1 │ │ ├── exrstdattr.1 │ │ └── libopenexr.3lib │ ├── openexr.license │ ├── openexr.p5m │ └── patches │ │ ├── 000-ltmain.patch │ │ ├── 001-makePreview.patch │ │ ├── 002-configure.patch │ │ ├── 003-openexr-1.6.1-CVE-2009-1720.patch │ │ ├── 004-openexr-1.6.1-CVE-2009-1721.patch │ │ └── 005-OpenEXR.pc.in.patch ├── openssl │ ├── README │ ├── openssl-0.9.8-fips-140 │ │ ├── Makefile │ │ ├── ccwrap.sh │ │ ├── engines │ │ │ └── pkcs11 │ │ │ │ ├── hw_pk11.c │ │ │ │ ├── hw_pk11.h │ │ │ │ ├── hw_pk11_err.c │ │ │ │ ├── hw_pk11_err.h │ │ │ │ ├── hw_pk11_pub.c │ │ │ │ ├── hw_pk11_uri.c │ │ │ │ └── hw_pk11_uri.h │ │ ├── llib-lcrypto │ │ ├── llib-lssl │ │ ├── openssl-0.9.8-fips-140.license │ │ ├── openssl-0.9.8-fips-140.p5m │ │ ├── patches-post-config │ │ │ └── opensslconf.patch │ │ └── patches │ │ │ ├── 01-7009105.patch │ │ │ ├── 08-6193522.patch │ │ │ ├── 11-6546806.patch │ │ │ ├── 15-pkcs11_engine-0.9.8a.patch │ │ │ ├── 18-compiler_opts.patch │ │ │ ├── 20-remove_rpath.patch │ │ │ ├── 23-noexstack.patch │ │ │ ├── 25-fips_rand.patch │ │ │ ├── 26-openssl_fips.patch │ │ │ ├── 27-6978791.patch │ │ │ ├── 28-enginesdir.patch │ │ │ └── sparc-01-ccwrap.patch │ ├── openssl-1.0.0 │ │ ├── Makefile │ │ ├── engines │ │ │ ├── aesni │ │ │ │ ├── aesni-x86.pl │ │ │ │ ├── aesni-x86_64.pl │ │ │ │ └── eng_aesni.c │ │ │ ├── devcrypto │ │ │ │ ├── e_devcrypto.c │ │ │ │ ├── e_devcrypto_err.c │ │ │ │ └── e_devcrypto_err.h │ │ │ └── pkcs11 │ │ │ │ ├── hw_pk11.c │ │ │ │ ├── hw_pk11.h │ │ │ │ ├── hw_pk11_err.c │ │ │ │ ├── hw_pk11_err.h │ │ │ │ ├── hw_pk11_pub.c │ │ │ │ ├── hw_pk11_uri.c │ │ │ │ └── hw_pk11_uri.h │ │ ├── llib-lcrypto │ │ ├── llib-lssl │ │ ├── openssl-1.0.0.license │ │ ├── openssl-1.0.0.p5m │ │ ├── patches-post-config │ │ │ └── opensslconf.patch │ │ └── patches │ │ │ ├── 08-6193522.patch │ │ │ ├── 11-6546806.patch │ │ │ ├── 14-manpage_openssl.patch │ │ │ ├── 15-pkcs11_engine-0.9.8a.patch │ │ │ ├── 18-compiler_opts.patch │ │ │ ├── 20-remove_rpath.patch │ │ │ ├── 23-noexstack.patch │ │ │ ├── 27-6978791.patch │ │ │ ├── 28-enginesdir.patch │ │ │ ├── 29-devcrypto_engine.patch │ │ │ └── openssl-1.0.0d-aesni-v4.i386-patch │ └── openssl-fips │ │ ├── 32 │ │ └── isalist.sh │ │ ├── Makefile │ │ ├── cc.sh │ │ └── gmake.sh ├── openusb │ ├── Makefile │ ├── files │ │ └── libopenusb.3lib │ ├── openusb.copyright │ ├── openusb.p5m │ └── patches │ │ ├── Makefile.in.patch │ │ └── testopenusb.patch ├── p7zip │ ├── Makefile │ ├── gpl_disclaimer │ ├── makefile.solaris │ ├── p7zip.p5m │ └── patches │ │ ├── compile.patch │ │ ├── manpages.patch │ │ ├── plugindir.patch │ │ └── pragmapack.patch ├── pam_pkcs11 │ ├── Makefile │ ├── pam_pkcs11.conf │ ├── pam_pkcs11.license │ ├── pam_pkcs11.p5m │ └── patches │ │ └── pam_pkcs11.patch ├── patch │ ├── Makefile │ ├── patch.license │ ├── patch.p5m │ └── patches │ │ └── DESTDIR.patch ├── pconsole │ ├── Makefile │ ├── files │ │ ├── exec_attr │ │ ├── pconsole.1 │ │ ├── pconsole.html │ │ └── prof_attr │ ├── patches │ │ ├── pconsole.c.patch │ │ └── pconsole.sh.in.patch │ ├── pconsole.copyright │ └── pconsole.p5m ├── pcre │ ├── Makefile │ ├── llib-lpcre │ ├── patches │ │ └── Makefile.in.patch │ ├── pcre.license │ └── pcre.p5m ├── perl512 │ ├── Makefile │ ├── perl-512.p5m │ └── perl.license ├── perl_modules │ ├── DBI │ │ ├── DBI.license │ │ ├── DBI.p5m │ │ ├── DBI_512.p5m │ │ ├── DBI_584.p5m │ │ └── Makefile │ ├── net-ssleay │ │ ├── Makefile │ │ ├── net-ssleay-512.p5m │ │ ├── net-ssleay-584.p5m │ │ ├── net-ssleay.copyright │ │ └── net-ssleay.p5m │ ├── pmtools │ │ ├── Makefile │ │ ├── pmtools.license │ │ ├── pmtools.p5m │ │ ├── pmtools_512.p5m │ │ └── pmtools_584.p5m │ ├── xml-parser │ │ ├── Makefile │ │ ├── xml-parser-512.p5m │ │ ├── xml-parser-584.p5m │ │ ├── xml-parser.license │ │ └── xml-parser.p5m │ └── xml-simple │ │ ├── Makefile │ │ ├── depend.mk │ │ ├── xml-simple-512.p5m │ │ ├── xml-simple-584.p5m │ │ ├── xml-simple.license │ │ └── xml-simple.p5m ├── pinentry │ ├── Makefile │ ├── patches │ │ ├── 000-pinentry-curses.c.patch │ │ └── 001-util.c.patch │ ├── pinentry.license │ └── pinentry.p5m ├── privoxy │ ├── Makefile │ ├── files │ │ ├── http-privoxy │ │ └── http-privoxy.xml │ ├── patches │ │ └── solaris.patch │ ├── privoxy.copyright │ └── privoxy.p5m ├── proftpd │ ├── Makefile │ ├── ManageFTP.html │ ├── auth_service-network-ftpd │ ├── ftp.xml │ ├── ftprestart.sh │ ├── mod_solaris_audit.c │ ├── mod_solaris_priv.c │ ├── patches │ │ ├── proftpd-configuration-html.patch │ │ ├── proftpd-error_code.patch │ │ └── proftpd-pam.patch │ ├── prof_service-network-ftpd │ ├── proftpd.conf │ ├── proftpd.license │ ├── proftpd.p5m │ ├── proftpd_migration.txt │ └── svc-ftp ├── psutils │ ├── Makefile │ ├── psutils.license │ └── psutils.p5m ├── pv │ ├── Makefile │ ├── pv.license │ └── pv.p5m ├── pwgen │ ├── Makefile │ ├── pwgen.license │ └── pwgen.p5m ├── pylint │ ├── Makefile │ ├── manpages │ │ ├── epylint.1 │ │ ├── pylint-gui.1 │ │ └── symilar.1 │ ├── patches │ │ └── pylint.1.patch │ ├── pylint.license │ └── pylint.p5m ├── python │ ├── babel │ │ ├── Makefile │ │ └── babel-26.p5m │ ├── cheetah │ │ ├── Makefile │ │ └── cheetah-26.p5m │ ├── cherrypy │ │ ├── Makefile │ │ ├── cherrypy-26.p5m │ │ ├── cherrypy.copyright │ │ ├── cherrypy.p5m │ │ └── patches │ │ │ ├── cp-ticket-847.patch │ │ │ └── setup.cfg.patch │ ├── configobj │ │ ├── Makefile │ │ └── configobj.p5m │ ├── coverage │ │ ├── Makefile │ │ ├── coverage-26.p5m │ │ ├── coverage.copyright │ │ ├── coverage.p5m │ │ └── jquery.copyright │ ├── kid │ │ └── Makefile │ ├── ldtp │ │ ├── Makefile │ │ ├── ldtp-26.p5m │ │ ├── ldtp.copyright │ │ └── ldtp.p5m │ ├── m2crypto │ │ ├── Makefile │ │ ├── m2crypto-26.p5m │ │ ├── m2crypto.copyright │ │ ├── m2crypto.p5m │ │ └── patches │ │ │ └── crl.patch │ ├── mako │ │ ├── Makefile │ │ ├── mako-26.p5m │ │ ├── mako.copyright │ │ └── mako.p5m │ ├── markdown │ │ ├── Makefile │ │ └── markdown.p5m │ ├── ply │ │ ├── Makefile │ │ ├── ply-26.p5m │ │ ├── ply.copyright │ │ └── ply.p5m │ ├── pybonjour │ │ ├── Makefile │ │ ├── pybonjour-26.p5m │ │ ├── pybonjour.copyright │ │ └── pybonjour.p5m │ ├── pycups │ │ ├── Makefile │ │ ├── pycups.copyright │ │ └── pycups.p5m │ ├── pycurl │ │ ├── Makefile │ │ ├── patches │ │ │ └── pycurl-mondo.patch │ │ ├── pycurl-26.p5m │ │ ├── pycurl.copyright │ │ └── pycurl.p5m │ ├── pylxml │ │ ├── Makefile │ │ ├── pylxml.copyright │ │ └── pylxml.p5m │ ├── pyopenssl │ │ ├── Makefile │ │ ├── patches │ │ │ └── no-zip_safe.patch │ │ ├── pyOpenSSL.txt │ │ ├── pyopenssl-26.p5m │ │ └── pyopenssl.copyright │ ├── python26 │ │ ├── Makefile │ │ ├── Makefile.config │ │ ├── patches │ │ │ ├── Python26-00-filemagic.patch │ │ │ ├── Python26-01-solaris-lib-dirs.patch │ │ │ ├── Python26-02-pycc.patch │ │ │ ├── Python26-03-distutils-pycc.patch │ │ │ ├── Python26-04-distutils-log.patch │ │ │ ├── Python26-05-isalibs.patch │ │ │ ├── Python26-06-write_compiled_module-atomic.patch │ │ │ ├── Python26-07-dtrace.patch │ │ │ ├── Python26-08-ctypes.patch │ │ │ ├── Python26-09-ucred.patch │ │ │ ├── Python26-10-gethostname.patch │ │ │ ├── Python26-11-dlpi.patch │ │ │ ├── Python26-12-encoding-alias.patch │ │ │ ├── Python26-13-cflags.patch │ │ │ ├── Python26-14-ctypes-util-find-library.patch │ │ │ ├── Python26-15-getcwd.patch │ │ │ ├── Python26-16-privrbac.patch │ │ │ ├── Python26-17-netpacket-packet-h.patch │ │ │ ├── Python26-18-readline.patch │ │ │ ├── Python26-19-ext-stdio.patch │ │ │ ├── Python26-20-py_db.patch │ │ │ ├── Python26-21-getpass.patch │ │ │ └── Python26-22-bindir.patch │ │ ├── python-26-tests.p5m │ │ ├── python-26.p5m │ │ ├── python26.license │ │ └── tkinter-26.p5m │ └── turbokid │ │ ├── Makefile │ │ └── turbokid.p5m ├── quagga │ ├── Makefile │ ├── Solaris │ │ ├── README.Solaris │ │ ├── exec_attr │ │ ├── ospfd.HA.conf.sample │ │ ├── quagga.1m │ │ ├── quaggaadm │ │ └── quaggaadm.1m │ ├── patches │ │ ├── 10-sunw-smf.patch │ │ ├── 15-privs-ipinst.patch │ │ ├── 20-privs-bgpd.patch │ │ ├── 25-isisd-dlpi.patch │ │ ├── 30-ospfd-nssa-asbr.patch │ │ ├── 35-ospfd-spf-sort.patch │ │ ├── 40-bgp-capab-cleanup.patch │ │ ├── 45-bgpd-capab-typo.patch │ │ ├── 50-bgpd-nosub.patch │ │ ├── 55-bgpd-rm-assert.patch │ │ ├── 60-bgp-comm-crash.patch │ │ ├── 65-isisd-iso-checksum.patch │ │ ├── 70-isisd-trill.patch │ │ ├── 75-privs-basicprivset.patch │ │ ├── 80-ripngd-getopt.patch │ │ ├── 85-remove-fwding-dependency.patch │ │ ├── 87-ospfd-apiserver.patch │ │ └── 90-fix-manpages │ ├── quagga.license │ └── quagga.p5m ├── quilt │ ├── Makefile │ ├── patches │ │ ├── 01-import-mkdir.patch │ │ ├── 02-makefile-install.patch │ │ ├── 03-find-path.patch │ │ ├── 04-import2-zcat.patch │ │ ├── 05-with-xgettext.patch │ │ ├── 06-refresh-z.patch │ │ ├── 07-refresh-z-test.patch │ │ ├── 08-with-gtar.patch │ │ └── 09-no-patch-wrapper-test.patch │ ├── quilt.license │ └── quilt.p5m ├── rdesktop │ ├── Makefile │ ├── patches │ │ ├── g11n-i18n-title.patch │ │ ├── makefile-in.patch │ │ └── sun-keymap.patch │ └── rdesktop.p5m ├── rdiff-backup │ ├── Makefile │ ├── depend.mk │ ├── patches │ │ └── deprecation.patch │ ├── rdiff-backup.copyright │ └── rdiff-backup.p5m ├── readline │ ├── Makefile │ ├── patches │ │ ├── history.3.patch │ │ ├── readline_Makefile_in.patch │ │ └── readline_doc_Makefile_in.patch │ ├── readline.license │ └── readline.p5m ├── rpm2cpio │ ├── Makefile │ ├── rpm2cpio.license │ ├── rpm2cpio.p5m │ └── src │ │ └── rpm2cpio.pl ├── rsync │ ├── Makefile │ ├── patches │ │ ├── rsync.1.patch │ │ └── rsyncd.conf.5.patch │ ├── rsync.license │ └── rsync.p5m ├── rtorrent │ ├── Makefile │ ├── patches │ │ ├── rtorrent-01-solaris.patch │ │ ├── rtorrent-02-event-ports.patch │ │ ├── rtorrent-03-curl-event.patch │ │ ├── rtorrent-04-sunpro.patch │ │ └── rtorrent-05-sunpro-crash.patch │ ├── rtorrent.license │ └── rtorrent.p5m ├── ruby │ ├── Makefile │ ├── Solaris │ │ ├── gem.1 │ │ ├── gem_mirror.1 │ │ ├── gem_server.1 │ │ ├── gemlock.1 │ │ ├── gemri.1 │ │ ├── gemwhich.1 │ │ ├── index_gem_repository.rb.1 │ │ ├── rbconfig.sedscript │ │ ├── ruby.1.sedscript │ │ ├── scripts │ │ │ ├── gem_mirror │ │ │ ├── gem_server │ │ │ ├── gemlock │ │ │ ├── gemri │ │ │ ├── gemwhich │ │ │ ├── index_gem_repository.rb │ │ │ └── update_rubygems │ │ └── update_rubygems.1 │ ├── patches │ │ ├── 01-ruby_Makefile.in.patch │ │ ├── 02-mkconfig.rb.patch │ │ ├── 03-rdoc_rb.patch │ │ ├── 04-ruby_1.patch │ │ ├── 05-ruby_ext_Setup.patch │ │ ├── 06-ruby_nogdbm.patch │ │ ├── 07-ruby-usrlocal.patch │ │ └── 08-ruby-dtrace-1.8.7.patch │ ├── ruby-18.license │ └── ruby-18.p5m ├── samba │ ├── mozldap │ │ ├── Makefile │ │ └── patches │ │ │ └── 64bit_build_options.patch │ ├── samba │ │ ├── Makefile │ │ ├── Solaris │ │ │ ├── libsam.c │ │ │ ├── pam.conf-winbind │ │ │ ├── samba.xml │ │ │ ├── smbconf.sed │ │ │ ├── swat.xml │ │ │ ├── winbind.xml │ │ │ └── wins.xml │ │ ├── depend.mk │ │ ├── patches │ │ │ ├── Makefile.in.patch │ │ │ ├── ace4-synchronize.patch │ │ │ ├── conf.in-nsldap.patch │ │ │ ├── configure.in.patch │ │ │ ├── docs-xml_build_catalog.xml.in.patch │ │ │ ├── docs-xml_configure.ac.patch │ │ │ ├── generate-file-list.patch │ │ │ ├── libsmb_clikrb5.c.patch │ │ │ ├── swat.c.patch │ │ │ ├── vfs_samfs.c.patch │ │ │ └── vfs_shadow_copy2.c.patch │ │ ├── samba-license │ │ └── samba.p5m │ └── samba30 │ │ ├── Makefile │ │ ├── depend.mk │ │ ├── libsmbclient.p5m │ │ ├── mozldap.license │ │ └── patches │ │ ├── configure.in.patch │ │ ├── login_cache.patch │ │ └── samba-3.0.37-CVE-2010-2063.patch ├── sane-backends │ ├── Makefile │ ├── patches │ │ └── backends.patch │ ├── sane-backends.license │ └── sane-backends.p5m ├── sane-frontends │ ├── Makefile │ ├── patches │ │ └── frontend.patch │ ├── sane-frontend.license │ └── sane-frontends.p5m ├── sblim │ ├── Makefile │ ├── files │ │ └── SblimCimClient.3 │ ├── patches │ │ └── build.xml.patch │ ├── sblim.copyright │ └── sblim.p5m ├── screen │ ├── Makefile │ ├── patches │ │ ├── misc.c.patch │ │ └── terminfo.patch │ ├── screen.license │ └── screen.p5m ├── sed │ ├── Makefile │ ├── patches │ │ └── utf8.patch │ ├── sed.license │ └── sed.p5m ├── slang │ ├── Makefile │ ├── slang.license │ └── slang.p5m ├── slib │ ├── Makefile │ ├── patches │ │ ├── Makefile.patch │ │ ├── slib.1.patch │ │ └── slib.sh.patch │ ├── slib.license │ └── slib.p5m ├── slrn │ ├── Makefile │ ├── slrn.license │ └── slrn.p5m ├── snort │ ├── Makefile │ ├── Solaris │ │ ├── auth_attr │ │ ├── exec_attr │ │ ├── snort.xml │ │ └── snortd │ ├── patches │ │ ├── snort.8.patch │ │ └── snort.conf.patch │ ├── snort.license │ └── snort.p5m ├── sox │ ├── Makefile │ ├── patches │ │ ├── 1.sox.1.patch │ │ ├── 2.soxi.1.patch │ │ ├── 3.libsox.3.patch │ │ ├── 4.soxformat.7.patch │ │ ├── 5.oss.c.patch │ │ ├── 6.formats.c.patch │ │ └── 7.sunaudio.c.patch │ ├── sox.license │ └── sox.p5m ├── spawn-fcgi │ ├── Makefile │ ├── spawn-fcgi.license │ └── spawn-fcgi.p5m ├── squid │ ├── Makefile │ ├── http-squid │ ├── http-squid.xml │ ├── patches │ │ └── Makefile.in.patch │ ├── squid.conf.default │ ├── squid.license │ └── squid.p5m ├── stdcxx │ ├── Makefile │ ├── README │ ├── Solaris │ │ ├── atomic-cxx.d │ │ ├── configure │ │ ├── fix_nls_symlinks.sh │ │ ├── install.sh │ │ ├── libstdcxx4.3lib │ │ ├── libstdcxx4.pc │ │ ├── make_regress_tests.sh │ │ ├── prep_build_area.sh │ │ ├── readlink.sh │ │ ├── run_examples.sh │ │ ├── run_regress_tests.sh │ │ ├── run_tests.sh │ │ └── rwconfig_std.h │ ├── isa_patches │ │ ├── amd64 │ │ │ ├── 1034-sunpro.config.amd64.patch │ │ │ ├── 1035-GNUmakefile.tst.amd64.patch │ │ │ ├── 1036-GNUmakefile.rwt.amd64.patch │ │ │ ├── 1037-GNUmakefile.lib.amd64.patch │ │ │ ├── 1038-GNUmakefile.ph.amd64.patch │ │ │ ├── 1039-GNUmakefile.exm.amd64.patch │ │ │ ├── 1040-GNUmakefile.cfg.amd64.patch │ │ │ └── 1041-GNUmakefile.bin.amd64.patch │ │ ├── i386 │ │ │ ├── 1034-sunpro.config.i386.patch │ │ │ ├── 1035-GNUmakefile.tst.i386.patch │ │ │ ├── 1036-GNUmakefile.rwt.i386.patch │ │ │ ├── 1037-GNUmakefile.lib.i386.patch │ │ │ ├── 1038-GNUmakefile.ph.i386.patch │ │ │ ├── 1039-GNUmakefile.exm.i386.patch │ │ │ ├── 1040-GNUmakefile.cfg.i386.patch │ │ │ └── 1041-GNUmakefile.bin.i386.patch │ │ ├── sparc │ │ │ ├── 1034-sunpro.config.sparc.patch │ │ │ ├── 1035-GNUmakefile.tst.sparc.patch │ │ │ ├── 1036-GNUmakefile.rwt.sparc.patch │ │ │ ├── 1037-GNUmakefile.lib.sparc.patch │ │ │ ├── 1038-GNUmakefile.ph.sparc.patch │ │ │ ├── 1039-GNUmakefile.exm.sparc.patch │ │ │ ├── 1040-GNUmakefile.cfg.sparc.patch │ │ │ └── 1041-GNUmakefile.bin.sparc.patch │ │ └── sparcv9 │ │ │ ├── 1034-sunpro.config.sparcv9.patch │ │ │ ├── 1035-GNUmakefile.tst.sparcv9.patch │ │ │ ├── 1036-GNUmakefile.rwt.sparcv9.patch │ │ │ ├── 1037-GNUmakefile.lib.sparcv9.patch │ │ │ ├── 1038-GNUmakefile.ph.sparcv9.patch │ │ │ ├── 1039-GNUmakefile.exm.sparcv9.patch │ │ │ ├── 1040-GNUmakefile.cfg.sparcv9.patch │ │ │ └── 1041-GNUmakefile.bin.sparcv9.patch │ ├── patches │ │ ├── 000-driver.cpp.patch │ │ ├── 001-22.locale.messages.cpp.patch │ │ ├── 002-cstdint.patch │ │ ├── 003-_config.h.patch │ │ ├── 004-cassert.patch │ │ ├── 005-cctype.patch │ │ ├── 006-cerrno.patch │ │ ├── 007-cfloat.patch │ │ ├── 008-ciso646.patch │ │ ├── 009-climits.patch │ │ ├── 010-clocale.patch │ │ ├── 011-cmath.patch │ │ ├── 012-csetjmp.patch │ │ ├── 013-csignal.patch │ │ ├── 014-cstdarg.patch │ │ ├── 015-cstddef.patch │ │ ├── 016-cstdio.patch │ │ ├── 017-cstdlib.patch │ │ ├── 018-cstring.patch │ │ ├── 019-ctime.patch │ │ ├── 020-cwchar.patch │ │ ├── 021-cwctype.patch │ │ ├── 022-new.patch │ │ ├── 023-typeinfo.patch │ │ ├── 024-exception.patch │ │ ├── 025-new.h.patch │ │ ├── 026-typeinfo.h.patch │ │ ├── 027-exception.h.patch │ │ ├── 028-libc_decl.sh.patch │ │ ├── 029-FUNC.cpp.patch │ │ ├── 030-STD_BAD_EXCEPTION.cpp.patch │ │ ├── 031-NO_SIGNALING_NAN.cpp.patch │ │ ├── 032-NO_DBL_TRAPS.cpp.patch │ │ ├── 033-INFINITY.cpp.patch │ │ ├── 034-_mutex.h.34.patch │ │ ├── 035-iostream.patch │ │ ├── 036-iostream.cpp.patch │ │ ├── 037-locale_body.cpp.patch │ │ ├── 038-ctype.cpp.patch │ │ ├── 039-exception.cpp.patch │ │ ├── 040-locale_classic.cpp.patch │ │ ├── 041-messages.cpp.patch │ │ ├── 042-GNUmakefile.patch │ │ ├── 043-22.locale.numpunct.cpp.patch │ │ ├── 044-use_facet.h.patch │ │ ├── 045-ios.cpp.patch │ │ ├── 046-time_put.cpp.patch │ │ ├── 047-collate.cpp.patch │ │ ├── 048-_config-sunpro.h.patch │ │ ├── 049-EXTERN_INLINE.cpp.patch │ │ ├── 050-COLLAPSE_STATIC_LOCALS.cpp.patch │ │ ├── 051-COLLAPSE_TEMPLATE_LOCALS.cpp.patch │ │ ├── 052-COLLAPSE_TEMPLATE_STATICS.cpp.patch │ │ ├── 053-LIB_EXCEPTIONS.cpp.patch │ │ ├── 054-_config-gcc.h.patch │ │ ├── 055-ctype.cpp.patch │ │ ├── 056-6891101.patch │ │ ├── 057-string.cc.patch │ │ ├── 058-NO_INT_TRAPS.cpp.patch │ │ ├── 059-6891667.patch │ │ ├── 060-26.gslice.array.cassign.cpp.patch │ │ ├── 061-6891729-iostore.cpp.patch │ │ ├── 062-stdcxx-866-22.locale.num.get.cpp.patch │ │ ├── 063-6891240-vector.patch │ │ ├── 064-6889771-string.patch │ │ ├── 065-6889785-string.patch │ │ ├── 066-6920783-locale.patch │ │ ├── 067-6927455-fmtflags.patch │ │ ├── 068-config-sizes.patch │ │ ├── 069-examples.patch │ │ ├── 070-6891278-valarray.patch │ │ ├── 071-num_put.cpp.patch │ │ ├── 072-21.string.replace.stdcxx-170.cpp.patch │ │ ├── 073-25.libc.cpp.patch │ │ ├── 074-21.string.exceptions.cpp.patch │ │ ├── 075-21.string.append.stdcxx-438.cpp.patch │ │ ├── 076-7017236-wcodecvt.cpp.patch │ │ ├── 077-7020671-18.numeric.special.patch │ │ ├── 078-tests.localization.patch │ │ ├── 079-18.limits.traps.cpp.patch │ │ ├── 080-21.lib.tests.80.patch │ │ ├── 081-strref.h.patch │ │ ├── 082-22.locale.stdcxx-554.cpp.patch │ │ ├── 083-22.locale.time.get.cpp.patch │ │ ├── 084-podarray.h.patch │ │ ├── 085-memory.cpp.patch │ │ ├── 086-tmpbuf.cpp.patch │ │ ├── 087-21.string.stdcxx-162.cpp.patch │ │ ├── 088-7034003-thread-safety.patch │ │ └── 089-BAD_EXCEPTIONS.cpp.patch │ ├── stdcxx.license │ └── stdcxx.p5m ├── subversion │ ├── Makefile │ ├── patches │ │ └── 000-Makefile.in.patch │ ├── subversion-java.p5m │ ├── subversion-perl.p5m │ ├── subversion-python.p5m │ ├── subversion.license │ └── subversion.p5m ├── sudo │ ├── Makefile │ ├── patches │ │ ├── Makefile.in.patch │ │ ├── solaris.patch │ │ ├── sudo_man_in.patch │ │ ├── sudoers_man_in.patch │ │ └── visudo_man_in.patch │ ├── sudo.license │ └── sudo.p5m ├── swig │ ├── Makefile │ ├── swig.1 │ ├── swig.license │ └── swig.p5m ├── tcl │ ├── expect │ │ ├── Makefile │ │ ├── depend.mk │ │ ├── expect.license │ │ ├── expect.p5m │ │ └── patches │ │ │ └── Makefile.in.patch │ ├── tcl │ │ ├── Makefile │ │ ├── files │ │ │ ├── libtcl.3 │ │ │ └── tclsed │ │ ├── patches │ │ │ ├── 1.man.patch │ │ │ ├── 2.makefile.patch │ │ │ └── 3.goto-label.patch │ │ ├── tcl.license │ │ └── tcl.p5m │ └── tk │ │ ├── Makefile │ │ ├── depend.mk │ │ ├── files │ │ ├── libtk.3 │ │ └── tksed │ │ ├── patches │ │ ├── 1.man.patch │ │ └── 2.makefile.patch │ │ ├── tk.license │ │ └── tk.p5m ├── tcltls │ ├── Makefile │ ├── patches │ │ └── tls.tcl.patch │ ├── tcltls.license │ ├── tcltls.p5m │ └── tls.1t.sunman ├── tcpdump │ ├── Makefile │ ├── tcpdump.license │ └── tcpdump.p5m ├── tcsh │ ├── Makefile │ ├── manpages │ │ └── tcsh.1 │ ├── patches │ │ ├── 001.config_f.h.patch │ │ ├── 002.sol-8bit.patch │ │ ├── 003.locale.patch │ │ └── 004.tcsh-6.14.00-avoid_null_for_cwd.patch │ ├── tcsh.license │ └── tcsh.p5m ├── texinfo │ ├── Makefile │ ├── svc-texinfo-update │ ├── texi2html.pl │ ├── texinfo-update.xml │ ├── texinfo.copyright │ └── texinfo.p5m ├── tidy │ ├── Makefile │ ├── files │ │ ├── libtidy.3 │ │ ├── tab2space.1 │ │ ├── tidy.1 │ │ ├── tidyenum_8h.html │ │ ├── tree.js │ │ └── treeview.js │ ├── llib-ltidy │ ├── patches │ │ └── doxygen.cfg.patch │ ├── tidy.license │ └── tidy.p5m ├── tomcat │ ├── Makefile │ ├── Solaris │ │ ├── http-tomcat6 │ │ ├── http-tomcat6.xml │ │ ├── index.htm │ │ ├── index.jsp │ │ └── tomcat.1m │ ├── patches │ │ ├── build.properties.patch │ │ ├── build.xml.patch │ │ ├── env.patch │ │ └── tomcat_strict_servlet.patch │ ├── tomcat-examples.p5m │ ├── tomcat.license │ └── tomcat.p5m ├── top │ ├── Makefile │ ├── patches │ │ ├── 01.cmds.patch │ │ ├── 02.hash-c.patch │ │ └── 03.sunos5.patch │ ├── top.license │ └── top.p5m ├── trousers │ ├── Makefile │ ├── auth_attr │ ├── llib-ltspi │ ├── patches │ │ ├── Makefile.in.patch │ │ ├── configure.in.patch │ │ ├── dist_Makefile.in.patch │ │ ├── hash.c.patch │ │ ├── hosttable.c.patch │ │ ├── rpc_ps.c.patch │ │ ├── svrside.c.patch │ │ ├── tcs_caps.c.patch │ │ ├── tcsd.8.in.patch │ │ ├── tcsd.conf.in.patch │ │ ├── tcsd.h.patch │ │ ├── tcstp_rpc.c.patch │ │ ├── tddl.c.patch │ │ ├── tspi_Makefile.am.patch │ │ ├── tspi_context.c.patch │ │ ├── tspps.c.patch │ │ ├── tspps.h.patch │ │ └── tss_defines.h.patch │ ├── prof_attr │ ├── tcsd.sh │ ├── tcsd.xml │ ├── trousers.license │ └── trousers.p5m ├── unixodbc │ ├── Makefile │ ├── Solaris │ │ └── unixODBC.pc │ ├── patches │ │ ├── 000-configure.patch │ │ ├── 001-Makefile.in.patch │ │ └── 002-odbc-config.c.patch │ ├── unixodbc.license │ └── unixodbc.p5m ├── unrar │ ├── Makefile │ ├── patches │ │ ├── 01.x86.patch │ │ └── 02.getpass.patch │ ├── unrar.1 │ ├── unrar.license │ └── unrar.p5m ├── unzip │ ├── Makefile │ ├── info-zip.license │ ├── patches │ │ └── 6719511-i18.patch │ └── unzip.p5m ├── vim │ ├── Makefile │ ├── gvim.p5m │ ├── help_minimized.txt │ ├── patches │ │ └── vim-help.patch │ ├── vim-core.p5m │ └── vim.p5m ├── wget │ ├── Makefile │ ├── patches │ │ ├── CVE-2010-2252.patch │ │ ├── sysdep.h.patch │ │ └── wgetrc.patch │ ├── wget.license │ └── wget.p5m ├── which │ ├── Makefile │ ├── which.license │ └── which.p5m ├── wireshark │ ├── Makefile │ ├── exec_attr │ ├── patches │ │ └── DesktopEntry.patch │ ├── wireshark.license │ └── wireshark.p5m ├── wxwidgets │ ├── Makefile │ ├── man │ │ ├── wx-config.1 │ │ └── wxrc.1 │ ├── wxwidgets.license │ └── wxwidgets.p5m ├── xcowsay │ ├── Makefile │ ├── patches │ │ └── kill-wall.patch │ ├── xcowsay.license │ └── xcowsay.p5m ├── xmessage │ ├── Makefile │ ├── xmessage.license │ └── xmessage.p5m ├── xorriso │ ├── Makefile │ ├── xorriso.license │ └── xorriso.p5m ├── zip │ ├── Makefile │ ├── info-zip.license │ └── zip.p5m ├── zlib │ ├── Makefile │ ├── llib-lz │ ├── mapfile │ ├── patches │ │ ├── destdir.patch │ │ └── manpage.patch │ ├── zlib.3.sunman │ ├── zlib.license │ └── zlib.p5m └── zsh │ ├── Completion │ ├── Solaris │ │ └── Command │ │ │ ├── _dladm │ │ │ ├── _flowadm │ │ │ ├── _netstat │ │ │ ├── _pkg5 │ │ │ ├── _prstat │ │ │ ├── _ps │ │ │ ├── _snoop │ │ │ └── _svcadm │ └── Unix │ │ └── Command │ │ ├── _zfs │ │ └── _zpool │ ├── Makefile │ ├── zsh.p5m │ └── zshrc ├── doc ├── gate-mechanics.txt └── packaging.txt ├── make-rules ├── ant.mk ├── build-zone.mk ├── configure.mk ├── deb.mk ├── depend.mk ├── ips.mk ├── justmake.mk ├── lint-libraries.mk ├── makemaker.mk ├── prep.mk ├── setup.py.mk ├── shared-macros.mk └── shared-targets.mk ├── tools ├── Makefile ├── bass-o-matic ├── build-watch ├── build-watch.d ├── check-environment.sh ├── cloney ├── cpan2ips ├── debmaker ├── pkglintrc ├── py2ips ├── python │ └── pkglint │ │ ├── __init__.py │ │ └── userland.py ├── sunw-history-package ├── time.c ├── userland-fetch ├── userland-mangler └── userland-unpack └── transforms ├── actuators ├── archive-libraries-drop ├── autopyc ├── comparison-cleanup ├── copyright-template ├── defaults ├── devel ├── docs ├── generate-cleanup ├── libtool-drop ├── locale ├── manifest-metadata-template ├── print-paths ├── print-pkgs ├── publish-cleanup ├── remove_dependency_versions └── variant-cleanup /.hgignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/.hgignore -------------------------------------------------------------------------------- /.hgtags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/.hgtags -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/Makefile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/README -------------------------------------------------------------------------------- /components/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/Makefile -------------------------------------------------------------------------------- /components/a2ps/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/a2ps/Makefile -------------------------------------------------------------------------------- /components/a2ps/a2ps.fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/a2ps/a2ps.fd -------------------------------------------------------------------------------- /components/a2ps/a2ps.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/a2ps/a2ps.license -------------------------------------------------------------------------------- /components/a2ps/a2ps.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/a2ps/a2ps.p5m -------------------------------------------------------------------------------- /components/aalib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/aalib/Makefile -------------------------------------------------------------------------------- /components/aalib/aalib-config.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/aalib/aalib-config.1 -------------------------------------------------------------------------------- /components/aalib/aalib.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/aalib/aalib.license -------------------------------------------------------------------------------- /components/aalib/aalib.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/aalib/aalib.p5m -------------------------------------------------------------------------------- /components/aalib/llib-laa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/aalib/llib-laa -------------------------------------------------------------------------------- /components/acpidump/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/acpidump/Makefile -------------------------------------------------------------------------------- /components/acpidump/acpidump.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/acpidump/acpidump.1 -------------------------------------------------------------------------------- /components/acpidump/acpidump.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/acpidump/acpidump.license -------------------------------------------------------------------------------- /components/acpidump/acpidump.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/acpidump/acpidump.p5m -------------------------------------------------------------------------------- /components/acpidump/acpixtract.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/acpidump/acpixtract.1 -------------------------------------------------------------------------------- /components/acpidump/madt.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/acpidump/madt.1 -------------------------------------------------------------------------------- /components/ant/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/ant/Makefile -------------------------------------------------------------------------------- /components/ant/ant.1.sunman: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/ant/ant.1.sunman -------------------------------------------------------------------------------- /components/ant/ant.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/ant/ant.license -------------------------------------------------------------------------------- /components/ant/ant.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/ant/ant.p5m -------------------------------------------------------------------------------- /components/ant/patches/ant.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/ant/patches/ant.patch -------------------------------------------------------------------------------- /components/apache2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/apache2/Makefile -------------------------------------------------------------------------------- /components/apache2/apache-22.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/apache2/apache-22.p5m -------------------------------------------------------------------------------- /components/apache2/apache-sed.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/apache2/apache-sed.p5m -------------------------------------------------------------------------------- /components/apache2/documentation.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/apache2/documentation.p5m -------------------------------------------------------------------------------- /components/apache2/mod_sed/libsed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/apache2/mod_sed/libsed.h -------------------------------------------------------------------------------- /components/apache2/mod_sed/mod_sed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/apache2/mod_sed/mod_sed.c -------------------------------------------------------------------------------- /components/apache2/mod_sed/regexp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/apache2/mod_sed/regexp.c -------------------------------------------------------------------------------- /components/apache2/mod_sed/regexp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/apache2/mod_sed/regexp.h -------------------------------------------------------------------------------- /components/apache2/mod_sed/sed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/apache2/mod_sed/sed.h -------------------------------------------------------------------------------- /components/apache2/mod_sed/sed0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/apache2/mod_sed/sed0.c -------------------------------------------------------------------------------- /components/apache2/mod_sed/sed1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/apache2/mod_sed/sed1.c -------------------------------------------------------------------------------- /components/apr-util/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/apr-util/Makefile -------------------------------------------------------------------------------- /components/apr-util/apr-util-13.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/apr-util/apr-util-13.p5m -------------------------------------------------------------------------------- /components/apr-util/apr-util.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/apr-util/apr-util.license -------------------------------------------------------------------------------- /components/apr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/apr/Makefile -------------------------------------------------------------------------------- /components/apr/apr-13-doc.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/apr/apr-13-doc.p5m -------------------------------------------------------------------------------- /components/apr/apr-13.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/apr/apr-13.p5m -------------------------------------------------------------------------------- /components/apr/apr.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/apr/apr.license -------------------------------------------------------------------------------- /components/apr/doc-transform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/apr/doc-transform -------------------------------------------------------------------------------- /components/areca/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/areca/Makefile -------------------------------------------------------------------------------- /components/areca/areca.copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/areca/areca.copyright -------------------------------------------------------------------------------- /components/areca/areca.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/areca/areca.p5m -------------------------------------------------------------------------------- /components/autoconf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/autoconf/Makefile -------------------------------------------------------------------------------- /components/autoconf/autoconf.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/autoconf/autoconf.license -------------------------------------------------------------------------------- /components/autoconf/autoconf.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/autoconf/autoconf.p5m -------------------------------------------------------------------------------- /components/autogen/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/autogen/Makefile -------------------------------------------------------------------------------- /components/autogen/autogen.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/autogen/autogen.license -------------------------------------------------------------------------------- /components/autogen/autogen.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/autogen/autogen.p5m -------------------------------------------------------------------------------- /components/automake/automake-1.10/dirlist: -------------------------------------------------------------------------------- 1 | /usr/sfw/share/aclocal 2 | -------------------------------------------------------------------------------- /components/bash/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/bash/Makefile -------------------------------------------------------------------------------- /components/bash/Solaris/rbash.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/bash/Solaris/rbash.1 -------------------------------------------------------------------------------- /components/bash/bash.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/bash/bash.license -------------------------------------------------------------------------------- /components/bash/bash.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/bash/bash.p5m -------------------------------------------------------------------------------- /components/bcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/bcc/Makefile -------------------------------------------------------------------------------- /components/bcc/bcc.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/bcc/bcc.license -------------------------------------------------------------------------------- /components/bcc/bcc.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/bcc/bcc.p5m -------------------------------------------------------------------------------- /components/beanshell/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/beanshell/Makefile -------------------------------------------------------------------------------- /components/beanshell/beansh.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/beanshell/beansh.1 -------------------------------------------------------------------------------- /components/beanshell/beanshell.1: -------------------------------------------------------------------------------- 1 | .so man1/beansh.1 2 | -------------------------------------------------------------------------------- /components/beanshell/beanshell.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/beanshell/beanshell.p5m -------------------------------------------------------------------------------- /components/bind/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/bind/Makefile -------------------------------------------------------------------------------- /components/bind/Solaris/server.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/bind/Solaris/server.xml -------------------------------------------------------------------------------- /components/bind/bind.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/bind/bind.license -------------------------------------------------------------------------------- /components/bind/bind.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/bind/bind.p5m -------------------------------------------------------------------------------- /components/bind/bindc.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/bind/bindc.p5m -------------------------------------------------------------------------------- /components/binutils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/binutils/Makefile -------------------------------------------------------------------------------- /components/binutils/binutils.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/binutils/binutils.license -------------------------------------------------------------------------------- /components/binutils/binutils.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/binutils/binutils.p5m -------------------------------------------------------------------------------- /components/bison/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/bison/Makefile -------------------------------------------------------------------------------- /components/bison/bison-runtime.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/bison/bison-runtime.p5m -------------------------------------------------------------------------------- /components/bison/bison.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/bison/bison.license -------------------------------------------------------------------------------- /components/bison/bison.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/bison/bison.p5m -------------------------------------------------------------------------------- /components/bzip2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/bzip2/Makefile -------------------------------------------------------------------------------- /components/bzip2/bzip2.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/bzip2/bzip2.license -------------------------------------------------------------------------------- /components/bzip2/bzip2.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/bzip2/bzip2.p5m -------------------------------------------------------------------------------- /components/bzip2/llib-lbz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/bzip2/llib-lbz2 -------------------------------------------------------------------------------- /components/bzip2/manpages/bunzip2.1: -------------------------------------------------------------------------------- 1 | .so man1/bzip2.1 2 | -------------------------------------------------------------------------------- /components/bzip2/manpages/bzcat.1: -------------------------------------------------------------------------------- 1 | .so man1/bzip2.1 2 | -------------------------------------------------------------------------------- /components/bzip2/manpages/bzdiff.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/bzip2/manpages/bzdiff.1 -------------------------------------------------------------------------------- /components/bzip2/manpages/bzgrep.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/bzip2/manpages/bzgrep.1 -------------------------------------------------------------------------------- /components/bzip2/manpages/bzip2.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/bzip2/manpages/bzip2.1 -------------------------------------------------------------------------------- /components/bzip2/manpages/bzip2recover.1: -------------------------------------------------------------------------------- 1 | .so man1/bzip2.1 2 | -------------------------------------------------------------------------------- /components/bzip2/manpages/bzmore.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/bzip2/manpages/bzmore.1 -------------------------------------------------------------------------------- /components/bzip2/manpages/libbz2.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/bzip2/manpages/libbz2.3 -------------------------------------------------------------------------------- /components/bzip2/mapfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/bzip2/mapfile -------------------------------------------------------------------------------- /components/bzip2/oldapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/bzip2/oldapi.c -------------------------------------------------------------------------------- /components/bzip2/patches/bzip2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/bzip2/patches/bzip2.patch -------------------------------------------------------------------------------- /components/cdrtools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/cdrtools/Makefile -------------------------------------------------------------------------------- /components/cdrtools/Solaris/cdda2wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/cdrtools/Solaris/cdda2wav -------------------------------------------------------------------------------- /components/cdrtools/Solaris/cdrecord: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/cdrtools/Solaris/cdrecord -------------------------------------------------------------------------------- /components/cdrtools/Solaris/cdrtools: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/cdrtools/Solaris/cdrtools -------------------------------------------------------------------------------- /components/cdrtools/Solaris/readcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/cdrtools/Solaris/readcd -------------------------------------------------------------------------------- /components/cdrtools/cdrtools.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/cdrtools/cdrtools.license -------------------------------------------------------------------------------- /components/cdrtools/cdrtools.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/cdrtools/cdrtools.p5m -------------------------------------------------------------------------------- /components/clisp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/clisp/Makefile -------------------------------------------------------------------------------- /components/clisp/clisp.copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/clisp/clisp.copyright -------------------------------------------------------------------------------- /components/clisp/clisp.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/clisp/clisp.p5m -------------------------------------------------------------------------------- /components/cmake/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/cmake/Makefile -------------------------------------------------------------------------------- /components/cmake/cmake.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/cmake/cmake.license -------------------------------------------------------------------------------- /components/cmake/cmake.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/cmake/cmake.p5m -------------------------------------------------------------------------------- /components/common/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/common/Makefile -------------------------------------------------------------------------------- /components/common/gcmn.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/common/gcmn.license -------------------------------------------------------------------------------- /components/common/gcmn.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/common/gcmn.p5m -------------------------------------------------------------------------------- /components/conflict/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/conflict/Makefile -------------------------------------------------------------------------------- /components/conflict/conflict.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/conflict/conflict.p5m -------------------------------------------------------------------------------- /components/convmv/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/convmv/Makefile -------------------------------------------------------------------------------- /components/convmv/convmv.copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/convmv/convmv.copyright -------------------------------------------------------------------------------- /components/convmv/convmv.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/convmv/convmv.p5m -------------------------------------------------------------------------------- /components/coreutils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/coreutils/Makefile -------------------------------------------------------------------------------- /components/coreutils/coreutils.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/coreutils/coreutils.p5m -------------------------------------------------------------------------------- /components/cups/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/cups/Makefile -------------------------------------------------------------------------------- /components/cups/Solaris/auth_attr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/cups/Solaris/auth_attr -------------------------------------------------------------------------------- /components/cups/Solaris/prof_attr: -------------------------------------------------------------------------------- 1 | CUPS Administration:RO:::auths=solaris.smf.manage.cups 2 | -------------------------------------------------------------------------------- /components/cups/Solaris/smb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/cups/Solaris/smb -------------------------------------------------------------------------------- /components/cups/cups-libs.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/cups/cups-libs.p5m -------------------------------------------------------------------------------- /components/cups/cups-license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/cups/cups-license -------------------------------------------------------------------------------- /components/cups/cups.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/cups/cups.p5m -------------------------------------------------------------------------------- /components/cups/patches/00-man.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/cups/patches/00-man.patch -------------------------------------------------------------------------------- /components/cups/patches/02-smf.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/cups/patches/02-smf.patch -------------------------------------------------------------------------------- /components/curl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/curl/Makefile -------------------------------------------------------------------------------- /components/curl/Solaris/curl-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/curl/Solaris/curl-config -------------------------------------------------------------------------------- /components/curl/curl.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/curl/curl.license -------------------------------------------------------------------------------- /components/curl/curl.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/curl/curl.p5m -------------------------------------------------------------------------------- /components/curl/llib-lcurl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/curl/llib-lcurl -------------------------------------------------------------------------------- /components/cvs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/cvs/Makefile -------------------------------------------------------------------------------- /components/cvs/cvs.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/cvs/cvs.license -------------------------------------------------------------------------------- /components/cvs/cvs.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/cvs/cvs.p5m -------------------------------------------------------------------------------- /components/dcmtk/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/dcmtk/Makefile -------------------------------------------------------------------------------- /components/dcmtk/dcmtk.licence: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/dcmtk/dcmtk.licence -------------------------------------------------------------------------------- /components/dcmtk/dcmtk.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/dcmtk/dcmtk.p5m -------------------------------------------------------------------------------- /components/dcmtk/patches/dcmtk.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/dcmtk/patches/dcmtk.patch -------------------------------------------------------------------------------- /components/diffutils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/diffutils/Makefile -------------------------------------------------------------------------------- /components/diffutils/diffutils.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/diffutils/diffutils.p5m -------------------------------------------------------------------------------- /components/doxygen/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/doxygen/Makefile -------------------------------------------------------------------------------- /components/doxygen/doxygen.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/doxygen/doxygen.license -------------------------------------------------------------------------------- /components/doxygen/doxygen.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/doxygen/doxygen.p5m -------------------------------------------------------------------------------- /components/ejabberd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/ejabberd/Makefile -------------------------------------------------------------------------------- /components/ejabberd/auth_attr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/ejabberd/auth_attr -------------------------------------------------------------------------------- /components/ejabberd/ejabberd.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/ejabberd/ejabberd.p5m -------------------------------------------------------------------------------- /components/ejabberd/ejabberdctl.1m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/ejabberd/ejabberdctl.1m -------------------------------------------------------------------------------- /components/ejabberd/exec_attr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/ejabberd/exec_attr -------------------------------------------------------------------------------- /components/ejabberd/prof_attr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/ejabberd/prof_attr -------------------------------------------------------------------------------- /components/ejabberd/xmpp-ejabberd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/ejabberd/xmpp-ejabberd -------------------------------------------------------------------------------- /components/elinks/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/elinks/Makefile -------------------------------------------------------------------------------- /components/elinks/elinks.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/elinks/elinks.license -------------------------------------------------------------------------------- /components/elinks/elinks.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/elinks/elinks.p5m -------------------------------------------------------------------------------- /components/emacs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/emacs/Makefile -------------------------------------------------------------------------------- /components/emacs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/emacs/README -------------------------------------------------------------------------------- /components/emacs/augment/emacs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/emacs/augment/emacs -------------------------------------------------------------------------------- /components/emacs/emacs.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/emacs/emacs.license -------------------------------------------------------------------------------- /components/emacs/gnu-emacs-gtk.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/emacs/gnu-emacs-gtk.p5m -------------------------------------------------------------------------------- /components/emacs/gnu-emacs-lisp.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/emacs/gnu-emacs-lisp.p5m -------------------------------------------------------------------------------- /components/emacs/gnu-emacs-x11.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/emacs/gnu-emacs-x11.p5m -------------------------------------------------------------------------------- /components/emacs/gnu-emacs.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/emacs/gnu-emacs.p5m -------------------------------------------------------------------------------- /components/emacs/patches/etags.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/emacs/patches/etags.patch -------------------------------------------------------------------------------- /components/emacs/patches/xft.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/emacs/patches/xft.patch -------------------------------------------------------------------------------- /components/erlang/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/erlang/Makefile -------------------------------------------------------------------------------- /components/erlang/erlang-doc.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/erlang/erlang-doc.p5m -------------------------------------------------------------------------------- /components/erlang/erlang.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/erlang/erlang.p5m -------------------------------------------------------------------------------- /components/erlang/patches/ssh.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/erlang/patches/ssh.patch -------------------------------------------------------------------------------- /components/fastcgi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/fastcgi/Makefile -------------------------------------------------------------------------------- /components/fastcgi/fcgi-doc.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/fastcgi/fcgi-doc.p5m -------------------------------------------------------------------------------- /components/fastcgi/fcgi.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/fastcgi/fcgi.license -------------------------------------------------------------------------------- /components/fastcgi/fcgi.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/fastcgi/fcgi.p5m -------------------------------------------------------------------------------- /components/fastcgi/llib-lfcgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/fastcgi/llib-lfcgi -------------------------------------------------------------------------------- /components/fetchmail/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/fetchmail/Makefile -------------------------------------------------------------------------------- /components/fetchmail/fetchmail.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/fetchmail/fetchmail.p5m -------------------------------------------------------------------------------- /components/flex/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/flex/Makefile -------------------------------------------------------------------------------- /components/flex/flex.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/flex/flex.license -------------------------------------------------------------------------------- /components/flex/flex.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/flex/flex.p5m -------------------------------------------------------------------------------- /components/flex/flexruntime.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/flex/flexruntime.p5m -------------------------------------------------------------------------------- /components/foomatic/db/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/foomatic/db/Makefile -------------------------------------------------------------------------------- /components/foomatic/filters/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/foomatic/filters/Makefile -------------------------------------------------------------------------------- /components/foomatic/fppd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/foomatic/fppd/Makefile -------------------------------------------------------------------------------- /components/foomatic/fppd/nolicense: -------------------------------------------------------------------------------- 1 | Oce-cm2520-Postscript.ppd 2 | -------------------------------------------------------------------------------- /components/fping/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/fping/Makefile -------------------------------------------------------------------------------- /components/fping/exec_attr: -------------------------------------------------------------------------------- 1 | Network Management:solaris:cmd:RO::/usr/bin/fping:privs=net_icmpaccess 2 | -------------------------------------------------------------------------------- /components/fping/fping.1m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/fping/fping.1m -------------------------------------------------------------------------------- /components/fping/fping.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/fping/fping.license -------------------------------------------------------------------------------- /components/fping/fping.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/fping/fping.p5m -------------------------------------------------------------------------------- /components/fping/patches/fping.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/fping/patches/fping.patch -------------------------------------------------------------------------------- /components/gawk/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/gawk/Makefile -------------------------------------------------------------------------------- /components/gawk/gawk.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/gawk/gawk.license -------------------------------------------------------------------------------- /components/gawk/gawk.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/gawk/gawk.p5m -------------------------------------------------------------------------------- /components/gcc3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/gcc3/Makefile -------------------------------------------------------------------------------- /components/gcc3/cpp.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/gcc3/cpp.1 -------------------------------------------------------------------------------- /components/gcc3/fsf-funding.7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/gcc3/fsf-funding.7 -------------------------------------------------------------------------------- /components/gcc3/g++.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/gcc3/g++.1 -------------------------------------------------------------------------------- /components/gcc3/g77.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/gcc3/g77.1 -------------------------------------------------------------------------------- /components/gcc3/gcc-3-runtime.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/gcc3/gcc-3-runtime.p5m -------------------------------------------------------------------------------- /components/gcc3/gcc-3.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/gcc3/gcc-3.p5m -------------------------------------------------------------------------------- /components/gcc3/gcc.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/gcc3/gcc.1 -------------------------------------------------------------------------------- /components/gcc3/gcc.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/gcc3/gcc.license -------------------------------------------------------------------------------- /components/gcc3/gcov.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/gcc3/gcov.1 -------------------------------------------------------------------------------- /components/gcc3/gfdl.7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/gcc3/gfdl.7 -------------------------------------------------------------------------------- /components/gcc3/gpl.7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/gcc3/gpl.7 -------------------------------------------------------------------------------- /components/gcc3/patches/sol2.h.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/gcc3/patches/sol2.h.patch -------------------------------------------------------------------------------- /components/gcc44-gmp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/gcc44-gmp/Makefile -------------------------------------------------------------------------------- /components/gcc44-gmp/gmp.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/gcc44-gmp/gmp.license -------------------------------------------------------------------------------- /components/gcc44-gmp/gmp.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/gcc44-gmp/gmp.p5m -------------------------------------------------------------------------------- /components/gcc44-mpc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/gcc44-mpc/Makefile -------------------------------------------------------------------------------- /components/gcc44-mpc/mpc.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/gcc44-mpc/mpc.license -------------------------------------------------------------------------------- /components/gcc44-mpc/mpc.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/gcc44-mpc/mpc.p5m -------------------------------------------------------------------------------- /components/gcc44-mpft/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/gcc44-mpft/Makefile -------------------------------------------------------------------------------- /components/gcc44-mpft/mpfr.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/gcc44-mpft/mpfr.license -------------------------------------------------------------------------------- /components/gcc44-mpft/mpft.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/gcc44-mpft/mpft.p5m -------------------------------------------------------------------------------- /components/gcc44/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/gcc44/Makefile -------------------------------------------------------------------------------- /components/gcc44/gcc44-runtime.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/gcc44/gcc44-runtime.p5m -------------------------------------------------------------------------------- /components/gcc44/gcc44.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/gcc44/gcc44.license -------------------------------------------------------------------------------- /components/gcc44/gcc44.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/gcc44/gcc44.p5m -------------------------------------------------------------------------------- /components/gcc44/specs.i386: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/gcc44/specs.i386 -------------------------------------------------------------------------------- /components/gd2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/gd2/Makefile -------------------------------------------------------------------------------- /components/gd2/Solaris/libgd2.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/gd2/Solaris/libgd2.1 -------------------------------------------------------------------------------- /components/gd2/Solaris/libgd2.1-extra: -------------------------------------------------------------------------------- 1 | .so man1/libgd2.1 2 | -------------------------------------------------------------------------------- /components/gd2/Solaris/libgd2.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/gd2/Solaris/libgd2.3 -------------------------------------------------------------------------------- /components/gd2/gd2.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/gd2/gd2.license -------------------------------------------------------------------------------- /components/gd2/gd2.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/gd2/gd2.p5m -------------------------------------------------------------------------------- /components/gd2/llib-lgd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/gd2/llib-lgd -------------------------------------------------------------------------------- /components/gdb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/gdb/Makefile -------------------------------------------------------------------------------- /components/gdb/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/gdb/README -------------------------------------------------------------------------------- /components/gdb/gdb.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/gdb/gdb.license -------------------------------------------------------------------------------- /components/gdb/gdb.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/gdb/gdb.p5m -------------------------------------------------------------------------------- /components/gdbm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/gdbm/Makefile -------------------------------------------------------------------------------- /components/gdbm/gdbm.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/gdbm/gdbm.license -------------------------------------------------------------------------------- /components/gdbm/gdbm.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/gdbm/gdbm.p5m -------------------------------------------------------------------------------- /components/gettext/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/gettext/Makefile -------------------------------------------------------------------------------- /components/gettext/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/gettext/README -------------------------------------------------------------------------------- /components/gettext/gettext.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/gettext/gettext.license -------------------------------------------------------------------------------- /components/gettext/gettext.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/gettext/gettext.p5m -------------------------------------------------------------------------------- /components/gettext/patches/fr.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/gettext/patches/fr.patch -------------------------------------------------------------------------------- /components/ggrep/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/ggrep/Makefile -------------------------------------------------------------------------------- /components/ggrep/gnu-grep.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/ggrep/gnu-grep.license -------------------------------------------------------------------------------- /components/ggrep/gnu-grep.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/ggrep/gnu-grep.p5m -------------------------------------------------------------------------------- /components/ggrep/patches/ggrep.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/ggrep/patches/ggrep.patch -------------------------------------------------------------------------------- /components/ghostscript/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/ghostscript/Makefile -------------------------------------------------------------------------------- /components/git/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/git/Makefile -------------------------------------------------------------------------------- /components/git/git.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/git/git.license -------------------------------------------------------------------------------- /components/git/git.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/git/git.p5m -------------------------------------------------------------------------------- /components/gnu-gs-fonts-std/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/gnu-gs-fonts-std/Makefile -------------------------------------------------------------------------------- /components/gnump/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/gnump/Makefile -------------------------------------------------------------------------------- /components/gnump/Solaris/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/gnump/Solaris/index.html -------------------------------------------------------------------------------- /components/gnump/Solaris/libgmp.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/gnump/Solaris/libgmp.3 -------------------------------------------------------------------------------- /components/gnump/Solaris/libgmp.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/gnump/Solaris/libgmp.pc -------------------------------------------------------------------------------- /components/gnump/Solaris/libgmpxx.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/gnump/Solaris/libgmpxx.pc -------------------------------------------------------------------------------- /components/gnump/gmp.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/gnump/gmp.license -------------------------------------------------------------------------------- /components/gnump/gmp.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/gnump/gmp.p5m -------------------------------------------------------------------------------- /components/gnump/llib-lgmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/gnump/llib-lgmp -------------------------------------------------------------------------------- /components/gnupg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/gnupg/Makefile -------------------------------------------------------------------------------- /components/gnupg/depend.mk: -------------------------------------------------------------------------------- 1 | gnupg: libksba libassuan gpgme pinentry 2 | -------------------------------------------------------------------------------- /components/gnupg/gnupg.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/gnupg/gnupg.license -------------------------------------------------------------------------------- /components/gnupg/gnupg.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/gnupg/gnupg.p5m -------------------------------------------------------------------------------- /components/gnuplot/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/gnuplot/Makefile -------------------------------------------------------------------------------- /components/gnuplot/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/gnuplot/README -------------------------------------------------------------------------------- /components/gnuplot/gnuplot.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/gnuplot/gnuplot.license -------------------------------------------------------------------------------- /components/gnuplot/gnuplot.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/gnuplot/gnuplot.p5m -------------------------------------------------------------------------------- /components/gnuplot/rundemo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/gnuplot/rundemo -------------------------------------------------------------------------------- /components/gnuplot/runtcldemo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/gnuplot/runtcldemo -------------------------------------------------------------------------------- /components/gnupth/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/gnupth/Makefile -------------------------------------------------------------------------------- /components/gnupth/gnupth.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/gnupth/gnupth.license -------------------------------------------------------------------------------- /components/gnupth/gnupth.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/gnupth/gnupth.p5m -------------------------------------------------------------------------------- /components/gocr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/gocr/Makefile -------------------------------------------------------------------------------- /components/gocr/gocr.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/gocr/gocr.license -------------------------------------------------------------------------------- /components/gocr/gocr.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/gocr/gocr.p5m -------------------------------------------------------------------------------- /components/gperf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/gperf/Makefile -------------------------------------------------------------------------------- /components/gperf/gperf.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/gperf/gperf.license -------------------------------------------------------------------------------- /components/gperf/gperf.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/gperf/gperf.p5m -------------------------------------------------------------------------------- /components/gpgme/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/gpgme/Makefile -------------------------------------------------------------------------------- /components/gpgme/gpgme.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/gpgme/gpgme.license -------------------------------------------------------------------------------- /components/gpgme/gpgme.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/gpgme/gpgme.p5m -------------------------------------------------------------------------------- /components/grails/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/grails/Makefile -------------------------------------------------------------------------------- /components/grails/files/grails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/grails/files/grails -------------------------------------------------------------------------------- /components/grails/files/grails-debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/grails/files/grails-debug -------------------------------------------------------------------------------- /components/grails/files/grails.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/grails/files/grails.1 -------------------------------------------------------------------------------- /components/grails/grails.copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/grails/grails.copyright -------------------------------------------------------------------------------- /components/grails/grails.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/grails/grails.p5m -------------------------------------------------------------------------------- /components/gtar/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/gtar/Makefile -------------------------------------------------------------------------------- /components/gtar/gtar.1.sunman: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/gtar/gtar.1.sunman -------------------------------------------------------------------------------- /components/gtar/gtar.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/gtar/gtar.license -------------------------------------------------------------------------------- /components/gtar/gtar.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/gtar/gtar.p5m -------------------------------------------------------------------------------- /components/guile/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/guile/Makefile -------------------------------------------------------------------------------- /components/guile/guile-config.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/guile/guile-config.1 -------------------------------------------------------------------------------- /components/guile/guile-snarf.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/guile/guile-snarf.1 -------------------------------------------------------------------------------- /components/guile/guile-tools.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/guile/guile-tools.1 -------------------------------------------------------------------------------- /components/guile/guile.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/guile/guile.1 -------------------------------------------------------------------------------- /components/guile/guile.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/guile/guile.license -------------------------------------------------------------------------------- /components/guile/guile.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/guile/guile.p5m -------------------------------------------------------------------------------- /components/guilt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/guilt/Makefile -------------------------------------------------------------------------------- /components/guilt/guilt.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/guilt/guilt.license -------------------------------------------------------------------------------- /components/guilt/guilt.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/guilt/guilt.p5m -------------------------------------------------------------------------------- /components/gutenprint/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/gutenprint/Makefile -------------------------------------------------------------------------------- /components/gutenprint/gutenprint.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/gutenprint/gutenprint.p5m -------------------------------------------------------------------------------- /components/gzip/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/gzip/Makefile -------------------------------------------------------------------------------- /components/gzip/gzip.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/gzip/gzip.license -------------------------------------------------------------------------------- /components/gzip/gzip.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/gzip/gzip.p5m -------------------------------------------------------------------------------- /components/gzip/renaming.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/gzip/renaming.sed -------------------------------------------------------------------------------- /components/hal-cups-utils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/hal-cups-utils/Makefile -------------------------------------------------------------------------------- /components/hexedit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/hexedit/Makefile -------------------------------------------------------------------------------- /components/hexedit/hexedit.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/hexedit/hexedit.license -------------------------------------------------------------------------------- /components/hexedit/hexedit.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/hexedit/hexedit.p5m -------------------------------------------------------------------------------- /components/hplip/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/hplip/Makefile -------------------------------------------------------------------------------- /components/hplip/cache.ksh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/hplip/cache.ksh -------------------------------------------------------------------------------- /components/hplip/hplip.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/hplip/hplip.license -------------------------------------------------------------------------------- /components/hplip/hplip.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/hplip/hplip.p5m -------------------------------------------------------------------------------- /components/httping/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/httping/Makefile -------------------------------------------------------------------------------- /components/httping/httping.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/httping/httping.license -------------------------------------------------------------------------------- /components/httping/httping.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/httping/httping.p5m -------------------------------------------------------------------------------- /components/hwdata/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/hwdata/Makefile -------------------------------------------------------------------------------- /components/hwdata/hwdata.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/hwdata/hwdata.p5m -------------------------------------------------------------------------------- /components/hwdata/ids.license.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/hwdata/ids.license.tmpl -------------------------------------------------------------------------------- /components/hwdata/pci.ids: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/hwdata/pci.ids -------------------------------------------------------------------------------- /components/hwdata/usb.ids: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/hwdata/usb.ids -------------------------------------------------------------------------------- /components/iftop/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/iftop/Makefile -------------------------------------------------------------------------------- /components/iftop/iftop.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/iftop/iftop.license -------------------------------------------------------------------------------- /components/iftop/iftop.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/iftop/iftop.p5m -------------------------------------------------------------------------------- /components/ilmbase/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/ilmbase/Makefile -------------------------------------------------------------------------------- /components/ilmbase/ilmbase.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/ilmbase/ilmbase.license -------------------------------------------------------------------------------- /components/ilmbase/ilmbase.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/ilmbase/ilmbase.p5m -------------------------------------------------------------------------------- /components/imagemagick/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/imagemagick/Makefile -------------------------------------------------------------------------------- /components/iperf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/iperf/Makefile -------------------------------------------------------------------------------- /components/iperf/iperf.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/iperf/iperf.license -------------------------------------------------------------------------------- /components/iperf/iperf.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/iperf/iperf.p5m -------------------------------------------------------------------------------- /components/ipmitool/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/ipmitool/Makefile -------------------------------------------------------------------------------- /components/ipmitool/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/ipmitool/README -------------------------------------------------------------------------------- /components/ipmitool/ipmievd.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/ipmitool/ipmievd.8 -------------------------------------------------------------------------------- /components/ipmitool/ipmievd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/ipmitool/ipmievd.xml -------------------------------------------------------------------------------- /components/ipmitool/ipmitool.1m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/ipmitool/ipmitool.1m -------------------------------------------------------------------------------- /components/ipmitool/ipmitool.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/ipmitool/ipmitool.license -------------------------------------------------------------------------------- /components/ipmitool/ipmitool.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/ipmitool/ipmitool.p5m -------------------------------------------------------------------------------- /components/ipmitool/svc-ipmievd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/ipmitool/svc-ipmievd -------------------------------------------------------------------------------- /components/ipmitool/test_ipmievd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/ipmitool/test_ipmievd -------------------------------------------------------------------------------- /components/ipmitool/test_ipmitool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/ipmitool/test_ipmitool -------------------------------------------------------------------------------- /components/ircii/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/ircii/Makefile -------------------------------------------------------------------------------- /components/ircii/ircii.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/ircii/ircii.license -------------------------------------------------------------------------------- /components/ircii/ircii.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/ircii/ircii.p5m -------------------------------------------------------------------------------- /components/irssi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/irssi/Makefile -------------------------------------------------------------------------------- /components/irssi/irssi.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/irssi/irssi.license -------------------------------------------------------------------------------- /components/irssi/irssi.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/irssi/irssi.p5m -------------------------------------------------------------------------------- /components/isc-dhcp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/isc-dhcp/Makefile -------------------------------------------------------------------------------- /components/isc-dhcp/dhcp.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/isc-dhcp/dhcp.p5m -------------------------------------------------------------------------------- /components/isc-dhcp/dhcp_auths: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/isc-dhcp/dhcp_auths -------------------------------------------------------------------------------- /components/isc-dhcp/isc-dhcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/isc-dhcp/isc-dhcp -------------------------------------------------------------------------------- /components/isc-dhcp/isc-dhcp.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/isc-dhcp/isc-dhcp.5 -------------------------------------------------------------------------------- /components/junit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/junit/Makefile -------------------------------------------------------------------------------- /components/junit/junit.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/junit/junit.3 -------------------------------------------------------------------------------- /components/junit/junit.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/junit/junit.license -------------------------------------------------------------------------------- /components/junit/junit.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/junit/junit.p5m -------------------------------------------------------------------------------- /components/lcms/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/lcms/Makefile -------------------------------------------------------------------------------- /components/lcms/lcms.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/lcms/lcms.license -------------------------------------------------------------------------------- /components/lcms/lcms.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/lcms/lcms.p5m -------------------------------------------------------------------------------- /components/lcms/llib-llcms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/lcms/llib-llcms -------------------------------------------------------------------------------- /components/less/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/less/Makefile -------------------------------------------------------------------------------- /components/less/less.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/less/less.license -------------------------------------------------------------------------------- /components/less/less.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/less/less.p5m -------------------------------------------------------------------------------- /components/lftp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/lftp/Makefile -------------------------------------------------------------------------------- /components/lftp/lftp.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/lftp/lftp.license -------------------------------------------------------------------------------- /components/lftp/lftp.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/lftp/lftp.p5m -------------------------------------------------------------------------------- /components/lftp/patches/lftp.1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/lftp/patches/lftp.1.patch -------------------------------------------------------------------------------- /components/libassuan/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/libassuan/Makefile -------------------------------------------------------------------------------- /components/libassuan/libassuan.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/libassuan/libassuan.p5m -------------------------------------------------------------------------------- /components/libconfuse/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/libconfuse/Makefile -------------------------------------------------------------------------------- /components/libconfuse/libconfuse.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/libconfuse/libconfuse.p5m -------------------------------------------------------------------------------- /components/libevent/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/libevent/Makefile -------------------------------------------------------------------------------- /components/libevent/libevent.3: -------------------------------------------------------------------------------- 1 | .so man3/event.3 2 | -------------------------------------------------------------------------------- /components/libevent/libevent.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/libevent/libevent.license -------------------------------------------------------------------------------- /components/libevent/libevent.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/libevent/libevent.p5m -------------------------------------------------------------------------------- /components/libevent/llib-levent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/libevent/llib-levent -------------------------------------------------------------------------------- /components/libexpat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/libexpat/Makefile -------------------------------------------------------------------------------- /components/libexpat/expat.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/libexpat/expat.p5m -------------------------------------------------------------------------------- /components/libidn/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/libidn/Makefile -------------------------------------------------------------------------------- /components/libidn/libidn.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/libidn/libidn.license -------------------------------------------------------------------------------- /components/libidn/libidn.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/libidn/libidn.p5m -------------------------------------------------------------------------------- /components/libidn/llib-lidn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/libidn/llib-lidn -------------------------------------------------------------------------------- /components/libksba/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/libksba/Makefile -------------------------------------------------------------------------------- /components/libksba/libksba.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/libksba/libksba.license -------------------------------------------------------------------------------- /components/libksba/libksba.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/libksba/libksba.p5m -------------------------------------------------------------------------------- /components/libmcrypt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/libmcrypt/Makefile -------------------------------------------------------------------------------- /components/libmcrypt/libmcrypt.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/libmcrypt/libmcrypt.p5m -------------------------------------------------------------------------------- /components/libmemcached/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/libmemcached/Makefile -------------------------------------------------------------------------------- /components/libmng/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/libmng/Makefile -------------------------------------------------------------------------------- /components/libmng/Solaris/libmng.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/libmng/Solaris/libmng.pc -------------------------------------------------------------------------------- /components/libmng/libmng.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/libmng/libmng.license -------------------------------------------------------------------------------- /components/libmng/libmng.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/libmng/libmng.p5m -------------------------------------------------------------------------------- /components/libmng/llib-lmng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/libmng/llib-lmng -------------------------------------------------------------------------------- /components/libneon/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/libneon/Makefile -------------------------------------------------------------------------------- /components/libneon/libneon.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/libneon/libneon.license -------------------------------------------------------------------------------- /components/libneon/libneon.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/libneon/libneon.p5m -------------------------------------------------------------------------------- /components/libnet/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/libnet/Makefile -------------------------------------------------------------------------------- /components/libnet/libnet.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/libnet/libnet.license -------------------------------------------------------------------------------- /components/libnet/libnet.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/libnet/libnet.p5m -------------------------------------------------------------------------------- /components/librsync/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/librsync/Makefile -------------------------------------------------------------------------------- /components/librsync/librsync.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/librsync/librsync.p5m -------------------------------------------------------------------------------- /components/libsigsegv/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/libsigsegv/Makefile -------------------------------------------------------------------------------- /components/libsigsegv/libsigsegv.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/libsigsegv/libsigsegv.p5m -------------------------------------------------------------------------------- /components/libsigsegv/man3/sigsegv.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/libsigsegv/man3/sigsegv.3 -------------------------------------------------------------------------------- /components/libsigsegv/man3/sigsegv_deinstall_handler.3: -------------------------------------------------------------------------------- 1 | .so man3/sigsegv_install_handler.3 2 | -------------------------------------------------------------------------------- /components/libsigsegv/man3/sigsegv_dispatch.3: -------------------------------------------------------------------------------- 1 | .so man3/sigsegv_register.3 2 | -------------------------------------------------------------------------------- /components/libsigsegv/man3/sigsegv_init.3: -------------------------------------------------------------------------------- 1 | .so man3/sigsegv_register.3 2 | -------------------------------------------------------------------------------- /components/libsigsegv/man3/sigsegv_unregister.3: -------------------------------------------------------------------------------- 1 | .so man3/sigsegv_register.3 2 | -------------------------------------------------------------------------------- /components/libsigsegv/man3/stackoverflow_deinstall_handler.3: -------------------------------------------------------------------------------- 1 | .so man3/stackoverflow_install_handler.3 2 | -------------------------------------------------------------------------------- /components/libsndfile/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/libsndfile/Makefile -------------------------------------------------------------------------------- /components/libsndfile/libsndfile.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/libsndfile/libsndfile.p5m -------------------------------------------------------------------------------- /components/libtool/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/libtool/Makefile -------------------------------------------------------------------------------- /components/libtool/libltdl.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/libtool/libltdl.p5m -------------------------------------------------------------------------------- /components/libtool/libtool.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/libtool/libtool.1 -------------------------------------------------------------------------------- /components/libtool/libtool.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/libtool/libtool.license -------------------------------------------------------------------------------- /components/libtool/libtool.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/libtool/libtool.p5m -------------------------------------------------------------------------------- /components/libtool/libtoolize.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/libtool/libtoolize.1 -------------------------------------------------------------------------------- /components/libtorrent/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/libtorrent/Makefile -------------------------------------------------------------------------------- /components/libtorrent/libtorrent.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/libtorrent/libtorrent.3 -------------------------------------------------------------------------------- /components/libtorrent/libtorrent.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/libtorrent/libtorrent.p5m -------------------------------------------------------------------------------- /components/libusb/ugen/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/libusb/ugen/Makefile -------------------------------------------------------------------------------- /components/libusb/ugen/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/libusb/ugen/src/Makefile -------------------------------------------------------------------------------- /components/libusb/wrapper/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/libusb/wrapper/Makefile -------------------------------------------------------------------------------- /components/libusb/wrapper/libusb.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/libusb/wrapper/libusb.p5m -------------------------------------------------------------------------------- /components/libusb/wrapper/src/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/libusb/wrapper/src/README -------------------------------------------------------------------------------- /components/libusb/wrapper/src/usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/libusb/wrapper/src/usb.h -------------------------------------------------------------------------------- /components/libxml2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/libxml2/Makefile -------------------------------------------------------------------------------- /components/libxml2/libxml.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/libxml2/libxml.3 -------------------------------------------------------------------------------- /components/libxml2/libxml2-26.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/libxml2/libxml2-26.p5m -------------------------------------------------------------------------------- /components/libxml2/libxml2.3: -------------------------------------------------------------------------------- 1 | .so man3/libxml.3 2 | -------------------------------------------------------------------------------- /components/libxml2/libxml2.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/libxml2/libxml2.license -------------------------------------------------------------------------------- /components/libxml2/libxml2.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/libxml2/libxml2.p5m -------------------------------------------------------------------------------- /components/libxml2/llib-lxml2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/libxml2/llib-lxml2 -------------------------------------------------------------------------------- /components/libxml2/mapfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/libxml2/mapfile -------------------------------------------------------------------------------- /components/libxml2/xml2-config.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/libxml2/xml2-config.1 -------------------------------------------------------------------------------- /components/libxml2/xmlcatalog.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/libxml2/xmlcatalog.1 -------------------------------------------------------------------------------- /components/libxml2/xmllint.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/libxml2/xmllint.1 -------------------------------------------------------------------------------- /components/libxslt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/libxslt/Makefile -------------------------------------------------------------------------------- /components/libxslt/libxsl-26.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/libxslt/libxsl-26.p5m -------------------------------------------------------------------------------- /components/libxslt/libxslt.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/libxslt/libxslt.3 -------------------------------------------------------------------------------- /components/libxslt/libxslt.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/libxslt/libxslt.p5m -------------------------------------------------------------------------------- /components/libxslt/llib-lexslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/libxslt/llib-lexslt -------------------------------------------------------------------------------- /components/libxslt/llib-lxslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/libxslt/llib-lxslt -------------------------------------------------------------------------------- /components/libxslt/mapfile.exslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/libxslt/mapfile.exslt -------------------------------------------------------------------------------- /components/libxslt/mapfile.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/libxslt/mapfile.xslt -------------------------------------------------------------------------------- /components/libxslt/xsl.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/libxslt/xsl.license -------------------------------------------------------------------------------- /components/libxslt/xslt-config.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/libxslt/xslt-config.1 -------------------------------------------------------------------------------- /components/libxslt/xsltproc.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/libxslt/xsltproc.1 -------------------------------------------------------------------------------- /components/lighttpd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/lighttpd/Makefile -------------------------------------------------------------------------------- /components/lighttpd/Solaris/ssl.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/lighttpd/Solaris/ssl.conf -------------------------------------------------------------------------------- /components/lighttpd/lighttpd.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/lighttpd/lighttpd.p5m -------------------------------------------------------------------------------- /components/links/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/links/Makefile -------------------------------------------------------------------------------- /components/links/links.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/links/links.license -------------------------------------------------------------------------------- /components/links/links.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/links/links.p5m -------------------------------------------------------------------------------- /components/logilab-astng/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/logilab-astng/Makefile -------------------------------------------------------------------------------- /components/logilab-common/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/logilab-common/Makefile -------------------------------------------------------------------------------- /components/lua/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/lua/Makefile -------------------------------------------------------------------------------- /components/lua/lua.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/lua/lua.license -------------------------------------------------------------------------------- /components/lua/lua.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/lua/lua.p5m -------------------------------------------------------------------------------- /components/m4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/m4/Makefile -------------------------------------------------------------------------------- /components/m4/m4.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/m4/m4.license -------------------------------------------------------------------------------- /components/m4/m4.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/m4/m4.p5m -------------------------------------------------------------------------------- /components/make/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/make/Makefile -------------------------------------------------------------------------------- /components/make/make.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/make/make.license -------------------------------------------------------------------------------- /components/make/make.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/make/make.p5m -------------------------------------------------------------------------------- /components/mc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/mc/Makefile -------------------------------------------------------------------------------- /components/mc/mc.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/mc/mc.license -------------------------------------------------------------------------------- /components/mc/mc.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/mc/mc.p5m -------------------------------------------------------------------------------- /components/meld/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/meld/Makefile -------------------------------------------------------------------------------- /components/meld/meld.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/meld/meld.1 -------------------------------------------------------------------------------- /components/meld/meld.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/meld/meld.license -------------------------------------------------------------------------------- /components/meld/meld.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/meld/meld.p5m -------------------------------------------------------------------------------- /components/meld/patches/meld.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/meld/patches/meld.patch -------------------------------------------------------------------------------- /components/memcached-java/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/memcached-java/Makefile -------------------------------------------------------------------------------- /components/memcached/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/memcached/Makefile -------------------------------------------------------------------------------- /components/memcached/memcached.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/memcached/memcached.p5m -------------------------------------------------------------------------------- /components/mercurial/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/mercurial/Makefile -------------------------------------------------------------------------------- /components/mercurial/mercurial.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/mercurial/mercurial.p5m -------------------------------------------------------------------------------- /components/mpfr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/mpfr/Makefile -------------------------------------------------------------------------------- /components/mpfr/Solaris/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/mpfr/Solaris/index.html -------------------------------------------------------------------------------- /components/mpfr/Solaris/libmpfr.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/mpfr/Solaris/libmpfr.3 -------------------------------------------------------------------------------- /components/mpfr/Solaris/libmpfr.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/mpfr/Solaris/libmpfr.pc -------------------------------------------------------------------------------- /components/mpfr/llib-lmpfr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/mpfr/llib-lmpfr -------------------------------------------------------------------------------- /components/mpfr/mpfr.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/mpfr/mpfr.license -------------------------------------------------------------------------------- /components/mpfr/mpfr.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/mpfr/mpfr.p5m -------------------------------------------------------------------------------- /components/mutt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/mutt/Makefile -------------------------------------------------------------------------------- /components/mutt/mutt.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/mutt/mutt.license -------------------------------------------------------------------------------- /components/mutt/mutt.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/mutt/mutt.p5m -------------------------------------------------------------------------------- /components/mutt/pgpewrap.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/mutt/pgpewrap.1 -------------------------------------------------------------------------------- /components/mutt/pgpring.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/mutt/pgpring.1 -------------------------------------------------------------------------------- /components/ncftp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/ncftp/Makefile -------------------------------------------------------------------------------- /components/ncftp/ncftp.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/ncftp/ncftp.license -------------------------------------------------------------------------------- /components/ncftp/ncftp.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/ncftp/ncftp.p5m -------------------------------------------------------------------------------- /components/net-snmp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/net-snmp/Makefile -------------------------------------------------------------------------------- /components/net-snmp/net-snmp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/net-snmp/net-snmp.xml -------------------------------------------------------------------------------- /components/net-snmp/run-tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/net-snmp/run-tests -------------------------------------------------------------------------------- /components/net-snmp/sun/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/net-snmp/sun/Makefile -------------------------------------------------------------------------------- /components/net-snmp/sun/README: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/net-snmp/sun/masfcnv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/net-snmp/sun/masfcnv -------------------------------------------------------------------------------- /components/net-snmp/sun/masfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/net-snmp/sun/masfd -------------------------------------------------------------------------------- /components/net-snmp/sun/sdk/demo/demo_module_12/runmibcodegen: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/net-snmp/sun/snmpd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/net-snmp/sun/snmpd.conf -------------------------------------------------------------------------------- /components/net-snmp/svc-net-snmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/net-snmp/svc-net-snmp -------------------------------------------------------------------------------- /components/nethack/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/nethack/Makefile -------------------------------------------------------------------------------- /components/nethack/nethack.copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/nethack/nethack.copyright -------------------------------------------------------------------------------- /components/nethack/nethack.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/nethack/nethack.p5m -------------------------------------------------------------------------------- /components/nmap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/nmap/Makefile -------------------------------------------------------------------------------- /components/nmap/nmap.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/nmap/nmap.license -------------------------------------------------------------------------------- /components/nmap/nmap.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/nmap/nmap.p5m -------------------------------------------------------------------------------- /components/nmap/nmapfe.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/nmap/nmapfe.desktop -------------------------------------------------------------------------------- /components/nmap/nmapfe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/nmap/nmapfe.png -------------------------------------------------------------------------------- /components/ntp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/ntp/Makefile -------------------------------------------------------------------------------- /components/ntp/Solaris/auth_attr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/ntp/Solaris/auth_attr -------------------------------------------------------------------------------- /components/ntp/Solaris/ntp.client: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/ntp/Solaris/ntp.client -------------------------------------------------------------------------------- /components/ntp/Solaris/ntp.server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/ntp/Solaris/ntp.server -------------------------------------------------------------------------------- /components/ntp/Solaris/ntp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/ntp/Solaris/ntp.sh -------------------------------------------------------------------------------- /components/ntp/Solaris/ntp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/ntp/Solaris/ntp.xml -------------------------------------------------------------------------------- /components/ntp/Solaris/prof_attr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/ntp/Solaris/prof_attr -------------------------------------------------------------------------------- /components/ntp/manpages/ntp.conf.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/ntp/manpages/ntp.conf.4 -------------------------------------------------------------------------------- /components/ntp/manpages/ntpd.1m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/ntp/manpages/ntpd.1m -------------------------------------------------------------------------------- /components/ntp/manpages/ntpdate.1m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/ntp/manpages/ntpdate.1m -------------------------------------------------------------------------------- /components/ntp/manpages/ntpdc.1m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/ntp/manpages/ntpdc.1m -------------------------------------------------------------------------------- /components/ntp/manpages/ntpq.1m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/ntp/manpages/ntpq.1m -------------------------------------------------------------------------------- /components/ntp/manpages/ntprc.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/ntp/manpages/ntprc.4 -------------------------------------------------------------------------------- /components/ntp/manpages/ntptime.1m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/ntp/manpages/ntptime.1m -------------------------------------------------------------------------------- /components/ntp/manpages/ntptrace.1m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/ntp/manpages/ntptrace.1m -------------------------------------------------------------------------------- /components/ntp/ntp.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/ntp/ntp.license -------------------------------------------------------------------------------- /components/ntp/ntp.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/ntp/ntp.p5m -------------------------------------------------------------------------------- /components/ntp/patches/etcfix.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/ntp/patches/etcfix.patch -------------------------------------------------------------------------------- /components/ntp/patches/mc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/ntp/patches/mc.patch -------------------------------------------------------------------------------- /components/ntp/patches/mdns.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/ntp/patches/mdns.patch -------------------------------------------------------------------------------- /components/ntp/patches/noextra.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/ntp/patches/noextra.patch -------------------------------------------------------------------------------- /components/ntp/patches/ntpwait.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/ntp/patches/ntpwait.patch -------------------------------------------------------------------------------- /components/ntp/patches/timing.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/ntp/patches/timing.patch -------------------------------------------------------------------------------- /components/open-fabrics/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/open-fabrics/Makefile -------------------------------------------------------------------------------- /components/open-fabrics/ofed.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/open-fabrics/ofed.mk -------------------------------------------------------------------------------- /components/openexr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/openexr/Makefile -------------------------------------------------------------------------------- /components/openexr/openexr.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/openexr/openexr.license -------------------------------------------------------------------------------- /components/openexr/openexr.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/openexr/openexr.p5m -------------------------------------------------------------------------------- /components/openssl/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/openssl/README -------------------------------------------------------------------------------- /components/openusb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/openusb/Makefile -------------------------------------------------------------------------------- /components/openusb/openusb.copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/openusb/openusb.copyright -------------------------------------------------------------------------------- /components/openusb/openusb.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/openusb/openusb.p5m -------------------------------------------------------------------------------- /components/p7zip/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/p7zip/Makefile -------------------------------------------------------------------------------- /components/p7zip/gpl_disclaimer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/p7zip/gpl_disclaimer -------------------------------------------------------------------------------- /components/p7zip/makefile.solaris: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/p7zip/makefile.solaris -------------------------------------------------------------------------------- /components/p7zip/p7zip.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/p7zip/p7zip.p5m -------------------------------------------------------------------------------- /components/pam_pkcs11/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/pam_pkcs11/Makefile -------------------------------------------------------------------------------- /components/pam_pkcs11/pam_pkcs11.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/pam_pkcs11/pam_pkcs11.p5m -------------------------------------------------------------------------------- /components/patch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/patch/Makefile -------------------------------------------------------------------------------- /components/patch/patch.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/patch/patch.license -------------------------------------------------------------------------------- /components/patch/patch.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/patch/patch.p5m -------------------------------------------------------------------------------- /components/pconsole/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/pconsole/Makefile -------------------------------------------------------------------------------- /components/pconsole/files/exec_attr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/pconsole/files/exec_attr -------------------------------------------------------------------------------- /components/pconsole/files/pconsole.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/pconsole/files/pconsole.1 -------------------------------------------------------------------------------- /components/pconsole/files/prof_attr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/pconsole/files/prof_attr -------------------------------------------------------------------------------- /components/pconsole/pconsole.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/pconsole/pconsole.p5m -------------------------------------------------------------------------------- /components/pcre/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/pcre/Makefile -------------------------------------------------------------------------------- /components/pcre/llib-lpcre: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/pcre/llib-lpcre -------------------------------------------------------------------------------- /components/pcre/pcre.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/pcre/pcre.license -------------------------------------------------------------------------------- /components/pcre/pcre.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/pcre/pcre.p5m -------------------------------------------------------------------------------- /components/perl512/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/perl512/Makefile -------------------------------------------------------------------------------- /components/perl512/perl-512.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/perl512/perl-512.p5m -------------------------------------------------------------------------------- /components/perl512/perl.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/perl512/perl.license -------------------------------------------------------------------------------- /components/perl_modules/DBI/DBI.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/perl_modules/DBI/DBI.p5m -------------------------------------------------------------------------------- /components/perl_modules/DBI/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/perl_modules/DBI/Makefile -------------------------------------------------------------------------------- /components/pinentry/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/pinentry/Makefile -------------------------------------------------------------------------------- /components/pinentry/pinentry.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/pinentry/pinentry.license -------------------------------------------------------------------------------- /components/pinentry/pinentry.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/pinentry/pinentry.p5m -------------------------------------------------------------------------------- /components/privoxy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/privoxy/Makefile -------------------------------------------------------------------------------- /components/privoxy/privoxy.copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/privoxy/privoxy.copyright -------------------------------------------------------------------------------- /components/privoxy/privoxy.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/privoxy/privoxy.p5m -------------------------------------------------------------------------------- /components/proftpd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/proftpd/Makefile -------------------------------------------------------------------------------- /components/proftpd/ManageFTP.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/proftpd/ManageFTP.html -------------------------------------------------------------------------------- /components/proftpd/ftp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/proftpd/ftp.xml -------------------------------------------------------------------------------- /components/proftpd/ftprestart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/proftpd/ftprestart.sh -------------------------------------------------------------------------------- /components/proftpd/proftpd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/proftpd/proftpd.conf -------------------------------------------------------------------------------- /components/proftpd/proftpd.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/proftpd/proftpd.license -------------------------------------------------------------------------------- /components/proftpd/proftpd.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/proftpd/proftpd.p5m -------------------------------------------------------------------------------- /components/proftpd/svc-ftp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/proftpd/svc-ftp -------------------------------------------------------------------------------- /components/psutils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/psutils/Makefile -------------------------------------------------------------------------------- /components/psutils/psutils.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/psutils/psutils.license -------------------------------------------------------------------------------- /components/psutils/psutils.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/psutils/psutils.p5m -------------------------------------------------------------------------------- /components/pv/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/pv/Makefile -------------------------------------------------------------------------------- /components/pv/pv.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/pv/pv.license -------------------------------------------------------------------------------- /components/pv/pv.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/pv/pv.p5m -------------------------------------------------------------------------------- /components/pwgen/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/pwgen/Makefile -------------------------------------------------------------------------------- /components/pwgen/pwgen.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/pwgen/pwgen.license -------------------------------------------------------------------------------- /components/pwgen/pwgen.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/pwgen/pwgen.p5m -------------------------------------------------------------------------------- /components/pylint/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/pylint/Makefile -------------------------------------------------------------------------------- /components/pylint/manpages/epylint.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/pylint/manpages/epylint.1 -------------------------------------------------------------------------------- /components/pylint/manpages/symilar.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/pylint/manpages/symilar.1 -------------------------------------------------------------------------------- /components/pylint/pylint.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/pylint/pylint.license -------------------------------------------------------------------------------- /components/pylint/pylint.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/pylint/pylint.p5m -------------------------------------------------------------------------------- /components/python/babel/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/python/babel/Makefile -------------------------------------------------------------------------------- /components/python/babel/babel-26.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/python/babel/babel-26.p5m -------------------------------------------------------------------------------- /components/python/cheetah/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/python/cheetah/Makefile -------------------------------------------------------------------------------- /components/python/cherrypy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/python/cherrypy/Makefile -------------------------------------------------------------------------------- /components/python/configobj/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/python/configobj/Makefile -------------------------------------------------------------------------------- /components/python/coverage/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/python/coverage/Makefile -------------------------------------------------------------------------------- /components/python/kid/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/python/kid/Makefile -------------------------------------------------------------------------------- /components/python/ldtp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/python/ldtp/Makefile -------------------------------------------------------------------------------- /components/python/ldtp/ldtp-26.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/python/ldtp/ldtp-26.p5m -------------------------------------------------------------------------------- /components/python/ldtp/ldtp.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/python/ldtp/ldtp.p5m -------------------------------------------------------------------------------- /components/python/m2crypto/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/python/m2crypto/Makefile -------------------------------------------------------------------------------- /components/python/mako/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/python/mako/Makefile -------------------------------------------------------------------------------- /components/python/mako/mako-26.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/python/mako/mako-26.p5m -------------------------------------------------------------------------------- /components/python/mako/mako.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/python/mako/mako.p5m -------------------------------------------------------------------------------- /components/python/markdown/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/python/markdown/Makefile -------------------------------------------------------------------------------- /components/python/ply/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/python/ply/Makefile -------------------------------------------------------------------------------- /components/python/ply/ply-26.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/python/ply/ply-26.p5m -------------------------------------------------------------------------------- /components/python/ply/ply.copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/python/ply/ply.copyright -------------------------------------------------------------------------------- /components/python/ply/ply.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/python/ply/ply.p5m -------------------------------------------------------------------------------- /components/python/pybonjour/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/python/pybonjour/Makefile -------------------------------------------------------------------------------- /components/python/pycups/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/python/pycups/Makefile -------------------------------------------------------------------------------- /components/python/pycups/pycups.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/python/pycups/pycups.p5m -------------------------------------------------------------------------------- /components/python/pycurl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/python/pycurl/Makefile -------------------------------------------------------------------------------- /components/python/pycurl/pycurl.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/python/pycurl/pycurl.p5m -------------------------------------------------------------------------------- /components/python/pylxml/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/python/pylxml/Makefile -------------------------------------------------------------------------------- /components/python/pylxml/pylxml.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/python/pylxml/pylxml.p5m -------------------------------------------------------------------------------- /components/python/pyopenssl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/python/pyopenssl/Makefile -------------------------------------------------------------------------------- /components/python/python26/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/python/python26/Makefile -------------------------------------------------------------------------------- /components/python/turbokid/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/python/turbokid/Makefile -------------------------------------------------------------------------------- /components/quagga/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/quagga/Makefile -------------------------------------------------------------------------------- /components/quagga/Solaris/exec_attr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/quagga/Solaris/exec_attr -------------------------------------------------------------------------------- /components/quagga/Solaris/quagga.1m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/quagga/Solaris/quagga.1m -------------------------------------------------------------------------------- /components/quagga/Solaris/quaggaadm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/quagga/Solaris/quaggaadm -------------------------------------------------------------------------------- /components/quagga/quagga.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/quagga/quagga.license -------------------------------------------------------------------------------- /components/quagga/quagga.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/quagga/quagga.p5m -------------------------------------------------------------------------------- /components/quilt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/quilt/Makefile -------------------------------------------------------------------------------- /components/quilt/quilt.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/quilt/quilt.license -------------------------------------------------------------------------------- /components/quilt/quilt.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/quilt/quilt.p5m -------------------------------------------------------------------------------- /components/rdesktop/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/rdesktop/Makefile -------------------------------------------------------------------------------- /components/rdesktop/rdesktop.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/rdesktop/rdesktop.p5m -------------------------------------------------------------------------------- /components/rdiff-backup/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/rdiff-backup/Makefile -------------------------------------------------------------------------------- /components/rdiff-backup/depend.mk: -------------------------------------------------------------------------------- 1 | rdiff-backup: librsync 2 | -------------------------------------------------------------------------------- /components/readline/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/readline/Makefile -------------------------------------------------------------------------------- /components/readline/readline.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/readline/readline.license -------------------------------------------------------------------------------- /components/readline/readline.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/readline/readline.p5m -------------------------------------------------------------------------------- /components/rpm2cpio/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/rpm2cpio/Makefile -------------------------------------------------------------------------------- /components/rpm2cpio/rpm2cpio.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/rpm2cpio/rpm2cpio.license -------------------------------------------------------------------------------- /components/rpm2cpio/rpm2cpio.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/rpm2cpio/rpm2cpio.p5m -------------------------------------------------------------------------------- /components/rpm2cpio/src/rpm2cpio.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/rpm2cpio/src/rpm2cpio.pl -------------------------------------------------------------------------------- /components/rsync/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/rsync/Makefile -------------------------------------------------------------------------------- /components/rsync/rsync.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/rsync/rsync.license -------------------------------------------------------------------------------- /components/rsync/rsync.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/rsync/rsync.p5m -------------------------------------------------------------------------------- /components/rtorrent/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/rtorrent/Makefile -------------------------------------------------------------------------------- /components/rtorrent/rtorrent.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/rtorrent/rtorrent.license -------------------------------------------------------------------------------- /components/rtorrent/rtorrent.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/rtorrent/rtorrent.p5m -------------------------------------------------------------------------------- /components/ruby/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/ruby/Makefile -------------------------------------------------------------------------------- /components/ruby/Solaris/gem.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/ruby/Solaris/gem.1 -------------------------------------------------------------------------------- /components/ruby/Solaris/gem_mirror.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/ruby/Solaris/gem_mirror.1 -------------------------------------------------------------------------------- /components/ruby/Solaris/gem_server.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/ruby/Solaris/gem_server.1 -------------------------------------------------------------------------------- /components/ruby/Solaris/gemlock.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/ruby/Solaris/gemlock.1 -------------------------------------------------------------------------------- /components/ruby/Solaris/gemri.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/ruby/Solaris/gemri.1 -------------------------------------------------------------------------------- /components/ruby/Solaris/gemwhich.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/ruby/Solaris/gemwhich.1 -------------------------------------------------------------------------------- /components/ruby/ruby-18.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/ruby/ruby-18.license -------------------------------------------------------------------------------- /components/ruby/ruby-18.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/ruby/ruby-18.p5m -------------------------------------------------------------------------------- /components/samba/mozldap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/samba/mozldap/Makefile -------------------------------------------------------------------------------- /components/samba/samba/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/samba/samba/Makefile -------------------------------------------------------------------------------- /components/samba/samba/depend.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/samba/samba/depend.mk -------------------------------------------------------------------------------- /components/samba/samba/samba-license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/samba/samba/samba-license -------------------------------------------------------------------------------- /components/samba/samba/samba.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/samba/samba/samba.p5m -------------------------------------------------------------------------------- /components/samba/samba30/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/samba/samba30/Makefile -------------------------------------------------------------------------------- /components/samba/samba30/depend.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/samba/samba30/depend.mk -------------------------------------------------------------------------------- /components/sane-backends/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/sane-backends/Makefile -------------------------------------------------------------------------------- /components/sane-frontends/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/sane-frontends/Makefile -------------------------------------------------------------------------------- /components/sblim/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/sblim/Makefile -------------------------------------------------------------------------------- /components/sblim/sblim.copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/sblim/sblim.copyright -------------------------------------------------------------------------------- /components/sblim/sblim.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/sblim/sblim.p5m -------------------------------------------------------------------------------- /components/screen/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/screen/Makefile -------------------------------------------------------------------------------- /components/screen/screen.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/screen/screen.license -------------------------------------------------------------------------------- /components/screen/screen.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/screen/screen.p5m -------------------------------------------------------------------------------- /components/sed/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/sed/Makefile -------------------------------------------------------------------------------- /components/sed/patches/utf8.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/sed/patches/utf8.patch -------------------------------------------------------------------------------- /components/sed/sed.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/sed/sed.license -------------------------------------------------------------------------------- /components/sed/sed.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/sed/sed.p5m -------------------------------------------------------------------------------- /components/slang/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/slang/Makefile -------------------------------------------------------------------------------- /components/slang/slang.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/slang/slang.license -------------------------------------------------------------------------------- /components/slang/slang.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/slang/slang.p5m -------------------------------------------------------------------------------- /components/slib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/slib/Makefile -------------------------------------------------------------------------------- /components/slib/patches/slib.1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/slib/patches/slib.1.patch -------------------------------------------------------------------------------- /components/slib/slib.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/slib/slib.license -------------------------------------------------------------------------------- /components/slib/slib.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/slib/slib.p5m -------------------------------------------------------------------------------- /components/slrn/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/slrn/Makefile -------------------------------------------------------------------------------- /components/slrn/slrn.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/slrn/slrn.license -------------------------------------------------------------------------------- /components/slrn/slrn.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/slrn/slrn.p5m -------------------------------------------------------------------------------- /components/snort/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/snort/Makefile -------------------------------------------------------------------------------- /components/snort/Solaris/auth_attr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/snort/Solaris/auth_attr -------------------------------------------------------------------------------- /components/snort/Solaris/exec_attr: -------------------------------------------------------------------------------- 1 | Network Management:solaris:cmd:RO::/usr/bin/snort:privs=net_rawaccess 2 | -------------------------------------------------------------------------------- /components/snort/Solaris/snort.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/snort/Solaris/snort.xml -------------------------------------------------------------------------------- /components/snort/Solaris/snortd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/snort/Solaris/snortd -------------------------------------------------------------------------------- /components/snort/snort.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/snort/snort.license -------------------------------------------------------------------------------- /components/snort/snort.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/snort/snort.p5m -------------------------------------------------------------------------------- /components/sox/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/sox/Makefile -------------------------------------------------------------------------------- /components/sox/patches/1.sox.1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/sox/patches/1.sox.1.patch -------------------------------------------------------------------------------- /components/sox/patches/5.oss.c.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/sox/patches/5.oss.c.patch -------------------------------------------------------------------------------- /components/sox/sox.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/sox/sox.license -------------------------------------------------------------------------------- /components/sox/sox.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/sox/sox.p5m -------------------------------------------------------------------------------- /components/spawn-fcgi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/spawn-fcgi/Makefile -------------------------------------------------------------------------------- /components/spawn-fcgi/spawn-fcgi.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/spawn-fcgi/spawn-fcgi.p5m -------------------------------------------------------------------------------- /components/squid/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/squid/Makefile -------------------------------------------------------------------------------- /components/squid/http-squid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/squid/http-squid -------------------------------------------------------------------------------- /components/squid/http-squid.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/squid/http-squid.xml -------------------------------------------------------------------------------- /components/squid/squid.conf.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/squid/squid.conf.default -------------------------------------------------------------------------------- /components/squid/squid.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/squid/squid.license -------------------------------------------------------------------------------- /components/squid/squid.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/squid/squid.p5m -------------------------------------------------------------------------------- /components/stdcxx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/stdcxx/Makefile -------------------------------------------------------------------------------- /components/stdcxx/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/stdcxx/README -------------------------------------------------------------------------------- /components/stdcxx/Solaris/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/stdcxx/Solaris/configure -------------------------------------------------------------------------------- /components/stdcxx/Solaris/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/stdcxx/Solaris/install.sh -------------------------------------------------------------------------------- /components/stdcxx/stdcxx.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/stdcxx/stdcxx.license -------------------------------------------------------------------------------- /components/stdcxx/stdcxx.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/stdcxx/stdcxx.p5m -------------------------------------------------------------------------------- /components/subversion/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/subversion/Makefile -------------------------------------------------------------------------------- /components/subversion/subversion.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/subversion/subversion.p5m -------------------------------------------------------------------------------- /components/sudo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/sudo/Makefile -------------------------------------------------------------------------------- /components/sudo/sudo.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/sudo/sudo.license -------------------------------------------------------------------------------- /components/sudo/sudo.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/sudo/sudo.p5m -------------------------------------------------------------------------------- /components/swig/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/swig/Makefile -------------------------------------------------------------------------------- /components/swig/swig.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/swig/swig.1 -------------------------------------------------------------------------------- /components/swig/swig.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/swig/swig.license -------------------------------------------------------------------------------- /components/swig/swig.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/swig/swig.p5m -------------------------------------------------------------------------------- /components/tcl/expect/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/tcl/expect/Makefile -------------------------------------------------------------------------------- /components/tcl/expect/depend.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/tcl/expect/depend.mk -------------------------------------------------------------------------------- /components/tcl/expect/expect.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/tcl/expect/expect.license -------------------------------------------------------------------------------- /components/tcl/expect/expect.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/tcl/expect/expect.p5m -------------------------------------------------------------------------------- /components/tcl/tcl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/tcl/tcl/Makefile -------------------------------------------------------------------------------- /components/tcl/tcl/files/libtcl.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/tcl/tcl/files/libtcl.3 -------------------------------------------------------------------------------- /components/tcl/tcl/files/tclsed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/tcl/tcl/files/tclsed -------------------------------------------------------------------------------- /components/tcl/tcl/tcl.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/tcl/tcl/tcl.license -------------------------------------------------------------------------------- /components/tcl/tcl/tcl.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/tcl/tcl/tcl.p5m -------------------------------------------------------------------------------- /components/tcl/tk/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/tcl/tk/Makefile -------------------------------------------------------------------------------- /components/tcl/tk/depend.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/tcl/tk/depend.mk -------------------------------------------------------------------------------- /components/tcl/tk/files/libtk.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/tcl/tk/files/libtk.3 -------------------------------------------------------------------------------- /components/tcl/tk/files/tksed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/tcl/tk/files/tksed -------------------------------------------------------------------------------- /components/tcl/tk/tk.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/tcl/tk/tk.license -------------------------------------------------------------------------------- /components/tcl/tk/tk.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/tcl/tk/tk.p5m -------------------------------------------------------------------------------- /components/tcltls/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/tcltls/Makefile -------------------------------------------------------------------------------- /components/tcltls/tcltls.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/tcltls/tcltls.license -------------------------------------------------------------------------------- /components/tcltls/tcltls.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/tcltls/tcltls.p5m -------------------------------------------------------------------------------- /components/tcltls/tls.1t.sunman: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/tcltls/tls.1t.sunman -------------------------------------------------------------------------------- /components/tcpdump/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/tcpdump/Makefile -------------------------------------------------------------------------------- /components/tcpdump/tcpdump.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/tcpdump/tcpdump.license -------------------------------------------------------------------------------- /components/tcpdump/tcpdump.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/tcpdump/tcpdump.p5m -------------------------------------------------------------------------------- /components/tcsh/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/tcsh/Makefile -------------------------------------------------------------------------------- /components/tcsh/manpages/tcsh.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/tcsh/manpages/tcsh.1 -------------------------------------------------------------------------------- /components/tcsh/tcsh.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/tcsh/tcsh.license -------------------------------------------------------------------------------- /components/tcsh/tcsh.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/tcsh/tcsh.p5m -------------------------------------------------------------------------------- /components/texinfo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/texinfo/Makefile -------------------------------------------------------------------------------- /components/texinfo/texi2html.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/texinfo/texi2html.pl -------------------------------------------------------------------------------- /components/texinfo/texinfo.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/texinfo/texinfo.p5m -------------------------------------------------------------------------------- /components/tidy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/tidy/Makefile -------------------------------------------------------------------------------- /components/tidy/files/libtidy.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/tidy/files/libtidy.3 -------------------------------------------------------------------------------- /components/tidy/files/tab2space.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/tidy/files/tab2space.1 -------------------------------------------------------------------------------- /components/tidy/files/tidy.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/tidy/files/tidy.1 -------------------------------------------------------------------------------- /components/tidy/files/tree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/tidy/files/tree.js -------------------------------------------------------------------------------- /components/tidy/files/treeview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/tidy/files/treeview.js -------------------------------------------------------------------------------- /components/tidy/llib-ltidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/tidy/llib-ltidy -------------------------------------------------------------------------------- /components/tidy/tidy.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/tidy/tidy.license -------------------------------------------------------------------------------- /components/tidy/tidy.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/tidy/tidy.p5m -------------------------------------------------------------------------------- /components/tomcat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/tomcat/Makefile -------------------------------------------------------------------------------- /components/tomcat/Solaris/index.htm: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /components/tomcat/tomcat.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/tomcat/tomcat.license -------------------------------------------------------------------------------- /components/tomcat/tomcat.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/tomcat/tomcat.p5m -------------------------------------------------------------------------------- /components/top/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/top/Makefile -------------------------------------------------------------------------------- /components/top/top.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/top/top.license -------------------------------------------------------------------------------- /components/top/top.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/top/top.p5m -------------------------------------------------------------------------------- /components/trousers/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/trousers/Makefile -------------------------------------------------------------------------------- /components/trousers/auth_attr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/trousers/auth_attr -------------------------------------------------------------------------------- /components/trousers/llib-ltspi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/trousers/llib-ltspi -------------------------------------------------------------------------------- /components/trousers/prof_attr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/trousers/prof_attr -------------------------------------------------------------------------------- /components/trousers/tcsd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/trousers/tcsd.sh -------------------------------------------------------------------------------- /components/trousers/tcsd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/trousers/tcsd.xml -------------------------------------------------------------------------------- /components/trousers/trousers.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/trousers/trousers.p5m -------------------------------------------------------------------------------- /components/unixodbc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/unixodbc/Makefile -------------------------------------------------------------------------------- /components/unixodbc/unixodbc.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/unixodbc/unixodbc.p5m -------------------------------------------------------------------------------- /components/unrar/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/unrar/Makefile -------------------------------------------------------------------------------- /components/unrar/unrar.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/unrar/unrar.1 -------------------------------------------------------------------------------- /components/unrar/unrar.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/unrar/unrar.license -------------------------------------------------------------------------------- /components/unrar/unrar.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/unrar/unrar.p5m -------------------------------------------------------------------------------- /components/unzip/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/unzip/Makefile -------------------------------------------------------------------------------- /components/unzip/info-zip.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/unzip/info-zip.license -------------------------------------------------------------------------------- /components/unzip/unzip.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/unzip/unzip.p5m -------------------------------------------------------------------------------- /components/vim/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/vim/Makefile -------------------------------------------------------------------------------- /components/vim/gvim.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/vim/gvim.p5m -------------------------------------------------------------------------------- /components/vim/help_minimized.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/vim/help_minimized.txt -------------------------------------------------------------------------------- /components/vim/vim-core.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/vim/vim-core.p5m -------------------------------------------------------------------------------- /components/vim/vim.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/vim/vim.p5m -------------------------------------------------------------------------------- /components/wget/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/wget/Makefile -------------------------------------------------------------------------------- /components/wget/wget.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/wget/wget.license -------------------------------------------------------------------------------- /components/wget/wget.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/wget/wget.p5m -------------------------------------------------------------------------------- /components/which/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/which/Makefile -------------------------------------------------------------------------------- /components/which/which.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/which/which.license -------------------------------------------------------------------------------- /components/which/which.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/which/which.p5m -------------------------------------------------------------------------------- /components/wireshark/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/wireshark/Makefile -------------------------------------------------------------------------------- /components/wireshark/exec_attr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/wireshark/exec_attr -------------------------------------------------------------------------------- /components/wireshark/wireshark.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/wireshark/wireshark.p5m -------------------------------------------------------------------------------- /components/wxwidgets/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/wxwidgets/Makefile -------------------------------------------------------------------------------- /components/wxwidgets/man/wxrc.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/wxwidgets/man/wxrc.1 -------------------------------------------------------------------------------- /components/wxwidgets/wxwidgets.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/wxwidgets/wxwidgets.p5m -------------------------------------------------------------------------------- /components/xcowsay/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/xcowsay/Makefile -------------------------------------------------------------------------------- /components/xcowsay/xcowsay.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/xcowsay/xcowsay.license -------------------------------------------------------------------------------- /components/xcowsay/xcowsay.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/xcowsay/xcowsay.p5m -------------------------------------------------------------------------------- /components/xmessage/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/xmessage/Makefile -------------------------------------------------------------------------------- /components/xmessage/xmessage.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/xmessage/xmessage.p5m -------------------------------------------------------------------------------- /components/xorriso/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/xorriso/Makefile -------------------------------------------------------------------------------- /components/xorriso/xorriso.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/xorriso/xorriso.license -------------------------------------------------------------------------------- /components/xorriso/xorriso.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/xorriso/xorriso.p5m -------------------------------------------------------------------------------- /components/zip/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/zip/Makefile -------------------------------------------------------------------------------- /components/zip/info-zip.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/zip/info-zip.license -------------------------------------------------------------------------------- /components/zip/zip.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/zip/zip.p5m -------------------------------------------------------------------------------- /components/zlib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/zlib/Makefile -------------------------------------------------------------------------------- /components/zlib/llib-lz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/zlib/llib-lz -------------------------------------------------------------------------------- /components/zlib/mapfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/zlib/mapfile -------------------------------------------------------------------------------- /components/zlib/zlib.3.sunman: -------------------------------------------------------------------------------- 1 | .so man3/libz.3 2 | -------------------------------------------------------------------------------- /components/zlib/zlib.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/zlib/zlib.license -------------------------------------------------------------------------------- /components/zlib/zlib.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/zlib/zlib.p5m -------------------------------------------------------------------------------- /components/zsh/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/zsh/Makefile -------------------------------------------------------------------------------- /components/zsh/zsh.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/zsh/zsh.p5m -------------------------------------------------------------------------------- /components/zsh/zshrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/components/zsh/zshrc -------------------------------------------------------------------------------- /doc/gate-mechanics.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/doc/gate-mechanics.txt -------------------------------------------------------------------------------- /doc/packaging.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/doc/packaging.txt -------------------------------------------------------------------------------- /make-rules/ant.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/make-rules/ant.mk -------------------------------------------------------------------------------- /make-rules/build-zone.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/make-rules/build-zone.mk -------------------------------------------------------------------------------- /make-rules/configure.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/make-rules/configure.mk -------------------------------------------------------------------------------- /make-rules/deb.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/make-rules/deb.mk -------------------------------------------------------------------------------- /make-rules/depend.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/make-rules/depend.mk -------------------------------------------------------------------------------- /make-rules/ips.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/make-rules/ips.mk -------------------------------------------------------------------------------- /make-rules/justmake.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/make-rules/justmake.mk -------------------------------------------------------------------------------- /make-rules/lint-libraries.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/make-rules/lint-libraries.mk -------------------------------------------------------------------------------- /make-rules/makemaker.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/make-rules/makemaker.mk -------------------------------------------------------------------------------- /make-rules/prep.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/make-rules/prep.mk -------------------------------------------------------------------------------- /make-rules/setup.py.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/make-rules/setup.py.mk -------------------------------------------------------------------------------- /make-rules/shared-macros.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/make-rules/shared-macros.mk -------------------------------------------------------------------------------- /make-rules/shared-targets.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/make-rules/shared-targets.mk -------------------------------------------------------------------------------- /tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/tools/Makefile -------------------------------------------------------------------------------- /tools/bass-o-matic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/tools/bass-o-matic -------------------------------------------------------------------------------- /tools/build-watch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/tools/build-watch -------------------------------------------------------------------------------- /tools/build-watch.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/tools/build-watch.d -------------------------------------------------------------------------------- /tools/check-environment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/tools/check-environment.sh -------------------------------------------------------------------------------- /tools/cloney: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/tools/cloney -------------------------------------------------------------------------------- /tools/cpan2ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/tools/cpan2ips -------------------------------------------------------------------------------- /tools/debmaker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/tools/debmaker -------------------------------------------------------------------------------- /tools/pkglintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/tools/pkglintrc -------------------------------------------------------------------------------- /tools/py2ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/tools/py2ips -------------------------------------------------------------------------------- /tools/python/pkglint/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/tools/python/pkglint/__init__.py -------------------------------------------------------------------------------- /tools/python/pkglint/userland.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/tools/python/pkglint/userland.py -------------------------------------------------------------------------------- /tools/sunw-history-package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/tools/sunw-history-package -------------------------------------------------------------------------------- /tools/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/tools/time.c -------------------------------------------------------------------------------- /tools/userland-fetch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/tools/userland-fetch -------------------------------------------------------------------------------- /tools/userland-mangler: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/tools/userland-mangler -------------------------------------------------------------------------------- /tools/userland-unpack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/tools/userland-unpack -------------------------------------------------------------------------------- /transforms/actuators: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/transforms/actuators -------------------------------------------------------------------------------- /transforms/archive-libraries-drop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/transforms/archive-libraries-drop -------------------------------------------------------------------------------- /transforms/autopyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/transforms/autopyc -------------------------------------------------------------------------------- /transforms/comparison-cleanup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/transforms/comparison-cleanup -------------------------------------------------------------------------------- /transforms/copyright-template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/transforms/copyright-template -------------------------------------------------------------------------------- /transforms/defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/transforms/defaults -------------------------------------------------------------------------------- /transforms/devel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/transforms/devel -------------------------------------------------------------------------------- /transforms/docs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/transforms/docs -------------------------------------------------------------------------------- /transforms/generate-cleanup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/transforms/generate-cleanup -------------------------------------------------------------------------------- /transforms/libtool-drop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/transforms/libtool-drop -------------------------------------------------------------------------------- /transforms/locale: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/transforms/locale -------------------------------------------------------------------------------- /transforms/print-paths: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/transforms/print-paths -------------------------------------------------------------------------------- /transforms/print-pkgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/transforms/print-pkgs -------------------------------------------------------------------------------- /transforms/publish-cleanup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/transforms/publish-cleanup -------------------------------------------------------------------------------- /transforms/variant-cleanup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illumos/illumos-userland/HEAD/transforms/variant-cleanup --------------------------------------------------------------------------------