├── .git-filters └── keywords ├── .git-hooks ├── README ├── commit-msg ├── install.sh ├── post-commit └── pre-commit ├── LICENSE ├── Makefile ├── Mk ├── HELP ├── USAGE ├── clean_directories ├── clean_symlinks ├── die ├── git_import ├── git_tag ├── make_directories ├── make_stage ├── make_symlinks ├── pkgcenter_readconf └── xargs ├── README.md ├── depend ├── .keep ├── bsdconfig │ ├── Makefile │ ├── Makefile.depend │ ├── USAGE │ ├── bsdconfig │ ├── bsdconfig.8 │ ├── console │ │ ├── INDEX │ │ ├── Makefile │ │ ├── Makefile.depend │ │ ├── USAGE │ │ ├── console │ │ ├── font │ │ ├── include │ │ │ ├── Makefile │ │ │ ├── Makefile.depend │ │ │ └── messages.subr │ │ ├── keymap │ │ ├── repeat │ │ ├── saver │ │ ├── screenmap │ │ └── ttys │ ├── diskmgmt │ │ ├── INDEX │ │ ├── Makefile │ │ ├── Makefile.depend │ │ ├── USAGE │ │ ├── diskmgmt │ │ └── include │ │ │ ├── Makefile │ │ │ ├── Makefile.depend │ │ │ └── messages.subr │ ├── docsinstall │ │ ├── INDEX │ │ ├── Makefile │ │ ├── Makefile.depend │ │ ├── USAGE │ │ ├── docsinstall │ │ └── include │ │ │ ├── Makefile │ │ │ ├── Makefile.depend │ │ │ └── messages.subr │ ├── dot │ │ ├── INDEX │ │ ├── Makefile │ │ ├── Makefile.depend │ │ ├── USAGE │ │ ├── dot │ │ └── include │ │ │ ├── Makefile │ │ │ ├── Makefile.depend │ │ │ └── messages.subr │ ├── examples │ │ ├── Makefile │ │ ├── Makefile.depend │ │ ├── add_some_packages.sh │ │ ├── browse_packages_http.sh │ │ └── bsdconfigrc │ ├── include │ │ ├── Makefile │ │ ├── Makefile.depend │ │ ├── bsdconfig.hlp │ │ ├── media.hlp │ │ ├── messages.subr │ │ ├── network_device.hlp │ │ ├── options.hlp │ │ ├── tcp.hlp │ │ └── usage.hlp │ ├── includes │ │ ├── INDEX │ │ ├── Makefile │ │ ├── Makefile.depend │ │ ├── USAGE │ │ ├── include │ │ │ ├── Makefile │ │ │ ├── Makefile.depend │ │ │ └── messages.subr │ │ └── includes.sh │ ├── mouse │ │ ├── INDEX │ │ ├── Makefile │ │ ├── Makefile.depend │ │ ├── USAGE │ │ ├── disable │ │ ├── enable │ │ ├── flags │ │ ├── include │ │ │ ├── Makefile │ │ │ ├── Makefile.depend │ │ │ └── messages.subr │ │ ├── mouse │ │ ├── port │ │ └── type │ ├── networking │ │ ├── INDEX │ │ ├── Makefile │ │ ├── Makefile.depend │ │ ├── USAGE │ │ ├── defaultrouter │ │ ├── devices │ │ ├── hostname │ │ ├── include │ │ │ ├── Makefile │ │ │ ├── Makefile.depend │ │ │ └── messages.subr │ │ ├── nameservers │ │ ├── networking │ │ ├── share │ │ │ ├── Makefile │ │ │ ├── Makefile.depend │ │ │ ├── common.subr │ │ │ ├── device.subr │ │ │ ├── hostname.subr │ │ │ ├── ipaddr.subr │ │ │ ├── media.subr │ │ │ ├── netmask.subr │ │ │ ├── resolv.subr │ │ │ ├── routing.subr │ │ │ └── services.subr │ │ └── wlanconfig │ ├── packages │ │ ├── INDEX │ │ ├── Makefile │ │ ├── Makefile.depend │ │ ├── USAGE │ │ ├── include │ │ │ ├── Makefile │ │ │ ├── Makefile.depend │ │ │ └── messages.subr │ │ └── packages │ ├── password │ │ ├── INDEX │ │ ├── Makefile │ │ ├── Makefile.depend │ │ ├── USAGE │ │ ├── include │ │ │ ├── Makefile │ │ │ ├── Makefile.depend │ │ │ └── messages.subr │ │ ├── password │ │ └── share │ │ │ ├── Makefile │ │ │ ├── Makefile.depend │ │ │ └── password.subr │ ├── security │ │ ├── INDEX │ │ ├── Makefile │ │ ├── Makefile.depend │ │ ├── USAGE │ │ ├── include │ │ │ ├── Makefile │ │ │ ├── Makefile.depend │ │ │ ├── messages.subr │ │ │ └── securelevel.hlp │ │ ├── kern_securelevel │ │ └── security │ ├── share │ │ ├── Makefile │ │ ├── Makefile.depend │ │ ├── common.subr │ │ ├── device.subr │ │ ├── dialog.subr │ │ ├── geom.subr │ │ ├── keymap.subr │ │ ├── media │ │ │ ├── Makefile │ │ │ ├── Makefile.depend │ │ │ ├── any.subr │ │ │ ├── cdrom.subr │ │ │ ├── common.subr │ │ │ ├── directory.subr │ │ │ ├── dos.subr │ │ │ ├── floppy.subr │ │ │ ├── ftp.subr │ │ │ ├── http.subr │ │ │ ├── httpproxy.subr │ │ │ ├── network.subr │ │ │ ├── nfs.subr │ │ │ ├── options.subr │ │ │ ├── tcpip.subr │ │ │ ├── ufs.subr │ │ │ ├── usb.subr │ │ │ └── wlan.subr │ │ ├── mk │ │ ├── mustberoot.subr │ │ ├── packages │ │ │ ├── Makefile │ │ │ ├── Makefile.depend │ │ │ ├── categories.subr │ │ │ ├── index.subr │ │ │ ├── musthavepkg.subr │ │ │ └── packages.subr │ │ ├── script.subr │ │ ├── strings.subr │ │ ├── struct.subr │ │ ├── sysrc.subr │ │ └── variable.subr │ ├── startup │ │ ├── INDEX │ │ ├── Makefile │ │ ├── Makefile.depend │ │ ├── USAGE │ │ ├── include │ │ │ ├── Makefile │ │ │ ├── Makefile.depend │ │ │ └── messages.subr │ │ ├── misc │ │ ├── rcadd │ │ ├── rcconf │ │ ├── rcdelete │ │ ├── rcedit │ │ ├── rcvar │ │ ├── share │ │ │ ├── Makefile │ │ │ ├── Makefile.depend │ │ │ ├── rcconf.subr │ │ │ ├── rcedit.subr │ │ │ └── rcvar.subr │ │ └── startup │ ├── timezone │ │ ├── INDEX │ │ ├── Makefile │ │ ├── Makefile.depend │ │ ├── USAGE │ │ ├── include │ │ │ ├── Makefile │ │ │ ├── Makefile.depend │ │ │ └── messages.subr │ │ ├── share │ │ │ ├── Makefile │ │ │ ├── Makefile.depend │ │ │ ├── continents.subr │ │ │ ├── countries.subr │ │ │ ├── iso3166.subr │ │ │ ├── menus.subr │ │ │ └── zones.subr │ │ └── timezone │ ├── ttys │ │ ├── INDEX │ │ ├── Makefile │ │ ├── Makefile.depend │ │ ├── USAGE │ │ ├── include │ │ │ ├── Makefile │ │ │ ├── Makefile.depend │ │ │ └── messages.subr │ │ └── ttys │ └── usermgmt │ │ ├── INDEX │ │ ├── Makefile │ │ ├── Makefile.depend │ │ ├── USAGE │ │ ├── groupadd │ │ ├── groupdel │ │ ├── groupedit │ │ ├── include │ │ ├── Makefile │ │ ├── Makefile.depend │ │ ├── messages.subr │ │ └── usermgmt.hlp │ │ ├── share │ │ ├── Makefile │ │ ├── Makefile.depend │ │ ├── group.subr │ │ ├── group_input.subr │ │ ├── user.subr │ │ └── user_input.subr │ │ ├── useradd │ │ ├── userdel │ │ ├── useredit │ │ └── usermgmt ├── bsdinstall │ ├── Makefile │ ├── Makefile.depend │ ├── Makefile.inc │ ├── bsdinstall │ ├── bsdinstall.8 │ ├── distextract │ │ ├── Makefile │ │ ├── Makefile.depend │ │ └── distextract.c │ ├── distfetch │ │ ├── Makefile │ │ ├── Makefile.depend │ │ └── distfetch.c │ ├── partedit │ │ ├── Makefile │ │ ├── Makefile.depend │ │ ├── diskeditor.c │ │ ├── diskeditor.h │ │ ├── gpart_ops.c │ │ ├── part_wizard.c │ │ ├── partedit.c │ │ ├── partedit.h │ │ ├── partedit_arm64.c │ │ ├── partedit_generic.c │ │ ├── partedit_powerpc.c │ │ ├── partedit_sparc64.c │ │ ├── partedit_x86.c │ │ ├── sade.8 │ │ └── scripted.c │ └── scripts │ │ ├── Makefile │ │ ├── Makefile.depend │ │ ├── adduser │ │ ├── auto │ │ ├── bootconfig │ │ ├── checksum │ │ ├── config │ │ ├── docsinstall │ │ ├── entropy │ │ ├── hardening │ │ ├── hostname │ │ ├── jail │ │ ├── keymap │ │ ├── mirrorselect │ │ ├── mount │ │ ├── netconfig │ │ ├── netconfig_ipv4 │ │ ├── netconfig_ipv6 │ │ ├── rootpass │ │ ├── script │ │ ├── services │ │ ├── time │ │ ├── umount │ │ ├── wlanconfig │ │ └── zfsboot ├── cmb │ ├── GNUmakefile.in │ ├── LICENSE │ ├── Makefile │ ├── README │ ├── bench │ │ ├── cmb_bench_cpu.sh │ │ ├── cmb_bench_cpu_flops.sh │ │ ├── cmp.sh │ │ ├── run.sh │ │ └── stats.sh │ ├── cfgaux │ │ ├── config.guess │ │ ├── config.sub │ │ └── install-sh │ ├── cmb.1 │ ├── cmb.1.html │ ├── cmb.c │ ├── config.h.in │ ├── configure │ ├── configure.in │ └── release │ │ ├── Makefile │ │ └── README ├── cputools │ ├── GNUmakefile.in │ ├── Makefile │ ├── cfgaux │ │ ├── config.guess │ │ ├── config.sub │ │ └── install-sh │ ├── config.h.in │ ├── configure │ ├── configure.in │ ├── cputools.h │ ├── ept.c │ ├── htt.c │ ├── vtx.c │ └── x86_64.c ├── dpv │ ├── GNUmakefile │ ├── Makefile │ ├── Makefile.depend │ ├── dpv.1 │ ├── dpv.c │ └── dpv_util.h ├── dwatch │ ├── Makefile │ ├── dwatch │ ├── dwatch.1 │ ├── examples │ │ ├── Makefile │ │ └── profile_template │ └── libexec │ │ ├── Makefile │ │ ├── chmod │ │ ├── errno │ │ ├── io │ │ ├── ip │ │ ├── kill │ │ ├── nanosleep │ │ ├── open │ │ ├── proc │ │ ├── rw │ │ ├── sched │ │ ├── tcp │ │ ├── udp │ │ ├── vop_create │ │ ├── vop_readdir │ │ ├── vop_rename │ │ └── vop_symlink ├── import ├── libcmb │ ├── GNUmakefile.in │ ├── LICENSE │ ├── Makefile │ ├── README │ ├── cfgaux │ │ ├── config.guess │ │ ├── config.sub │ │ └── install-sh │ ├── cmb.3 │ ├── cmb.3.html │ ├── cmb.c │ ├── cmb.h │ ├── cmb_private.h │ ├── config.h.in │ ├── configure │ ├── configure.in │ ├── other │ │ ├── README │ │ ├── combn_test.sh │ │ ├── itertools_test.sh │ │ └── numpy_test.sh │ ├── perl │ │ ├── Cmb.xs │ │ ├── Cmb │ │ │ ├── .h2xs_done │ │ │ ├── Changes │ │ │ ├── MANIFEST │ │ │ ├── Makefile.PL │ │ │ ├── README │ │ │ ├── fallback │ │ │ │ ├── const-c.inc │ │ │ │ └── const-xs.inc │ │ │ ├── lib │ │ │ │ └── Cmb.pm │ │ │ ├── ppport.h │ │ │ └── t │ │ │ │ └── Cmb.t │ │ ├── Makefile │ │ └── tests │ │ │ ├── test1.pl │ │ │ ├── test2.pl │ │ │ ├── test3.pl │ │ │ ├── test4.pl │ │ │ └── test5.pl │ ├── python.c │ │ ├── Makefile.in │ │ ├── README │ │ ├── cmb │ │ │ ├── Makefile.in │ │ │ ├── __init__.py │ │ │ └── cmb.c │ │ ├── configure │ │ ├── configure.in │ │ └── tests │ │ │ ├── test1.py │ │ │ ├── test2.py │ │ │ ├── test3.py │ │ │ ├── test4.py │ │ │ └── test5.py │ ├── python.ctypes │ │ ├── Makefile │ │ ├── cmb │ │ │ ├── __init__.py │ │ │ └── cmb.py │ │ └── tests │ │ │ ├── test1.py │ │ │ ├── test2.py │ │ │ ├── test3.py │ │ │ ├── test4.py │ │ │ └── test5.py │ ├── release │ │ ├── Makefile │ │ └── README │ └── tests │ │ ├── Makefile │ │ ├── test1.c │ │ ├── test2.c │ │ ├── test3.c │ │ ├── test4.c │ │ └── test5.c ├── libdpv │ ├── GNUmakefile │ ├── Makefile │ ├── Makefile.depend │ ├── dialog_util.c │ ├── dialog_util.h │ ├── dialogrc.c │ ├── dialogrc.h │ ├── dprompt.c │ ├── dprompt.h │ ├── dpv.3 │ ├── dpv.c │ ├── dpv.h │ ├── dpv_private.h │ ├── status.c │ ├── status.h │ ├── util.c │ └── util.h ├── libfigpar │ ├── GNUmakefile │ ├── Makefile │ ├── Makefile.depend │ ├── figpar.3 │ ├── figpar.c │ ├── figpar.h │ ├── string_m.c │ └── string_m.h ├── libfigput │ ├── LICENSE │ ├── Makefile │ ├── figput.3 │ ├── figput.c │ └── figput.h ├── sysconf │ ├── Makefile │ ├── sysconf.8 │ └── sysconf.c └── tag ├── freebsd ├── Makefile ├── Mk │ ├── HELP_FREEBSD │ ├── HELP_PACKAGE │ ├── USAGE_FREEBSD │ ├── USAGE_PACKAGE │ ├── convert │ ├── manifest.subr │ ├── pkgcc │ ├── pkgname │ ├── pkgorigin │ ├── pkgtag │ └── pkgtagname ├── RELENG_11_0 │ ├── Makefile │ └── fraubsd │ │ ├── cmb │ │ ├── MANIFEST │ │ ├── Makefile │ │ └── pkgcenter.conf │ │ ├── dwatch │ │ ├── MANIFEST │ │ ├── Makefile │ │ └── pkgcenter.conf │ │ └── pkgcenter │ │ ├── MANIFEST │ │ ├── Makefile │ │ └── pkgcenter.conf ├── RELENG_12_0 │ ├── Makefile │ └── fraubsd │ │ └── pkgcenter │ │ ├── MANIFEST │ │ ├── Makefile │ │ └── pkgcenter.conf ├── create.sh ├── skel │ ├── MANIFEST │ ├── Makefile │ ├── Makefile.ng │ ├── Makefile.old │ ├── PLIST │ ├── pkgcenter.conf │ └── stage │ │ ├── +COMMENT │ │ └── +DESC └── unpack.sh └── redhat ├── Makefile ├── Mk ├── GROUPS ├── HELP_REDHAT ├── HELP_RPM ├── USAGE_REDHAT ├── USAGE_RPM ├── rpmconf ├── rpmgroup ├── rpmname ├── rpmsrcfiles ├── rpmstagefiles ├── rpmtag ├── rpmtagname ├── template.conf └── template.spec ├── create.sh ├── rhel6-x86_64 ├── Applications │ └── FrauBSD │ │ ├── dwatch │ │ ├── Makefile │ │ ├── SPECFILE │ │ └── pkgcenter.conf │ │ └── pkgcenter │ │ ├── Makefile │ │ ├── SPECFILE │ │ └── pkgcenter.conf └── Makefile ├── rhel7-x86_64 ├── Applications │ └── FrauBSD │ │ └── pkgcenter │ │ ├── Makefile │ │ ├── SPECFILE │ │ └── pkgcenter.conf └── Makefile ├── skel ├── Makefile └── pkgcenter.conf └── unpack.sh /.git-filters/keywords: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/.git-filters/keywords -------------------------------------------------------------------------------- /.git-hooks/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/.git-hooks/README -------------------------------------------------------------------------------- /.git-hooks/commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/.git-hooks/commit-msg -------------------------------------------------------------------------------- /.git-hooks/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/.git-hooks/install.sh -------------------------------------------------------------------------------- /.git-hooks/post-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/.git-hooks/post-commit -------------------------------------------------------------------------------- /.git-hooks/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/.git-hooks/pre-commit -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/Makefile -------------------------------------------------------------------------------- /Mk/HELP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/Mk/HELP -------------------------------------------------------------------------------- /Mk/USAGE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/Mk/USAGE -------------------------------------------------------------------------------- /Mk/clean_directories: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/Mk/clean_directories -------------------------------------------------------------------------------- /Mk/clean_symlinks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/Mk/clean_symlinks -------------------------------------------------------------------------------- /Mk/die: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/Mk/die -------------------------------------------------------------------------------- /Mk/git_import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/Mk/git_import -------------------------------------------------------------------------------- /Mk/git_tag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/Mk/git_tag -------------------------------------------------------------------------------- /Mk/make_directories: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/Mk/make_directories -------------------------------------------------------------------------------- /Mk/make_stage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/Mk/make_stage -------------------------------------------------------------------------------- /Mk/make_symlinks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/Mk/make_symlinks -------------------------------------------------------------------------------- /Mk/pkgcenter_readconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/Mk/pkgcenter_readconf -------------------------------------------------------------------------------- /Mk/xargs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/Mk/xargs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/README.md -------------------------------------------------------------------------------- /depend/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /depend/bsdconfig/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/Makefile -------------------------------------------------------------------------------- /depend/bsdconfig/Makefile.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/Makefile.depend -------------------------------------------------------------------------------- /depend/bsdconfig/USAGE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/USAGE -------------------------------------------------------------------------------- /depend/bsdconfig/bsdconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/bsdconfig -------------------------------------------------------------------------------- /depend/bsdconfig/bsdconfig.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/bsdconfig.8 -------------------------------------------------------------------------------- /depend/bsdconfig/console/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/console/INDEX -------------------------------------------------------------------------------- /depend/bsdconfig/console/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/console/Makefile -------------------------------------------------------------------------------- /depend/bsdconfig/console/Makefile.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/console/Makefile.depend -------------------------------------------------------------------------------- /depend/bsdconfig/console/USAGE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/console/USAGE -------------------------------------------------------------------------------- /depend/bsdconfig/console/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/console/console -------------------------------------------------------------------------------- /depend/bsdconfig/console/font: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/console/font -------------------------------------------------------------------------------- /depend/bsdconfig/console/include/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/console/include/Makefile -------------------------------------------------------------------------------- /depend/bsdconfig/console/include/Makefile.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/console/include/Makefile.depend -------------------------------------------------------------------------------- /depend/bsdconfig/console/include/messages.subr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/console/include/messages.subr -------------------------------------------------------------------------------- /depend/bsdconfig/console/keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/console/keymap -------------------------------------------------------------------------------- /depend/bsdconfig/console/repeat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/console/repeat -------------------------------------------------------------------------------- /depend/bsdconfig/console/saver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/console/saver -------------------------------------------------------------------------------- /depend/bsdconfig/console/screenmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/console/screenmap -------------------------------------------------------------------------------- /depend/bsdconfig/console/ttys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/console/ttys -------------------------------------------------------------------------------- /depend/bsdconfig/diskmgmt/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/diskmgmt/INDEX -------------------------------------------------------------------------------- /depend/bsdconfig/diskmgmt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/diskmgmt/Makefile -------------------------------------------------------------------------------- /depend/bsdconfig/diskmgmt/Makefile.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/diskmgmt/Makefile.depend -------------------------------------------------------------------------------- /depend/bsdconfig/diskmgmt/USAGE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/diskmgmt/USAGE -------------------------------------------------------------------------------- /depend/bsdconfig/diskmgmt/diskmgmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/diskmgmt/diskmgmt -------------------------------------------------------------------------------- /depend/bsdconfig/diskmgmt/include/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/diskmgmt/include/Makefile -------------------------------------------------------------------------------- /depend/bsdconfig/diskmgmt/include/Makefile.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/diskmgmt/include/Makefile.depend -------------------------------------------------------------------------------- /depend/bsdconfig/diskmgmt/include/messages.subr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/diskmgmt/include/messages.subr -------------------------------------------------------------------------------- /depend/bsdconfig/docsinstall/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/docsinstall/INDEX -------------------------------------------------------------------------------- /depend/bsdconfig/docsinstall/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/docsinstall/Makefile -------------------------------------------------------------------------------- /depend/bsdconfig/docsinstall/Makefile.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/docsinstall/Makefile.depend -------------------------------------------------------------------------------- /depend/bsdconfig/docsinstall/USAGE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/docsinstall/USAGE -------------------------------------------------------------------------------- /depend/bsdconfig/docsinstall/docsinstall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/docsinstall/docsinstall -------------------------------------------------------------------------------- /depend/bsdconfig/docsinstall/include/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/docsinstall/include/Makefile -------------------------------------------------------------------------------- /depend/bsdconfig/docsinstall/include/Makefile.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/docsinstall/include/Makefile.depend -------------------------------------------------------------------------------- /depend/bsdconfig/docsinstall/include/messages.subr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/docsinstall/include/messages.subr -------------------------------------------------------------------------------- /depend/bsdconfig/dot/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/dot/INDEX -------------------------------------------------------------------------------- /depend/bsdconfig/dot/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/dot/Makefile -------------------------------------------------------------------------------- /depend/bsdconfig/dot/Makefile.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/dot/Makefile.depend -------------------------------------------------------------------------------- /depend/bsdconfig/dot/USAGE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/dot/USAGE -------------------------------------------------------------------------------- /depend/bsdconfig/dot/dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/dot/dot -------------------------------------------------------------------------------- /depend/bsdconfig/dot/include/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/dot/include/Makefile -------------------------------------------------------------------------------- /depend/bsdconfig/dot/include/Makefile.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/dot/include/Makefile.depend -------------------------------------------------------------------------------- /depend/bsdconfig/dot/include/messages.subr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/dot/include/messages.subr -------------------------------------------------------------------------------- /depend/bsdconfig/examples/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/examples/Makefile -------------------------------------------------------------------------------- /depend/bsdconfig/examples/Makefile.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/examples/Makefile.depend -------------------------------------------------------------------------------- /depend/bsdconfig/examples/add_some_packages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/examples/add_some_packages.sh -------------------------------------------------------------------------------- /depend/bsdconfig/examples/browse_packages_http.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/examples/browse_packages_http.sh -------------------------------------------------------------------------------- /depend/bsdconfig/examples/bsdconfigrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/examples/bsdconfigrc -------------------------------------------------------------------------------- /depend/bsdconfig/include/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/include/Makefile -------------------------------------------------------------------------------- /depend/bsdconfig/include/Makefile.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/include/Makefile.depend -------------------------------------------------------------------------------- /depend/bsdconfig/include/bsdconfig.hlp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/include/bsdconfig.hlp -------------------------------------------------------------------------------- /depend/bsdconfig/include/media.hlp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/include/media.hlp -------------------------------------------------------------------------------- /depend/bsdconfig/include/messages.subr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/include/messages.subr -------------------------------------------------------------------------------- /depend/bsdconfig/include/network_device.hlp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/include/network_device.hlp -------------------------------------------------------------------------------- /depend/bsdconfig/include/options.hlp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/include/options.hlp -------------------------------------------------------------------------------- /depend/bsdconfig/include/tcp.hlp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/include/tcp.hlp -------------------------------------------------------------------------------- /depend/bsdconfig/include/usage.hlp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/include/usage.hlp -------------------------------------------------------------------------------- /depend/bsdconfig/includes/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/includes/INDEX -------------------------------------------------------------------------------- /depend/bsdconfig/includes/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/includes/Makefile -------------------------------------------------------------------------------- /depend/bsdconfig/includes/Makefile.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/includes/Makefile.depend -------------------------------------------------------------------------------- /depend/bsdconfig/includes/USAGE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/includes/USAGE -------------------------------------------------------------------------------- /depend/bsdconfig/includes/include/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/includes/include/Makefile -------------------------------------------------------------------------------- /depend/bsdconfig/includes/include/Makefile.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/includes/include/Makefile.depend -------------------------------------------------------------------------------- /depend/bsdconfig/includes/include/messages.subr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/includes/include/messages.subr -------------------------------------------------------------------------------- /depend/bsdconfig/includes/includes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/includes/includes.sh -------------------------------------------------------------------------------- /depend/bsdconfig/mouse/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/mouse/INDEX -------------------------------------------------------------------------------- /depend/bsdconfig/mouse/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/mouse/Makefile -------------------------------------------------------------------------------- /depend/bsdconfig/mouse/Makefile.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/mouse/Makefile.depend -------------------------------------------------------------------------------- /depend/bsdconfig/mouse/USAGE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/mouse/USAGE -------------------------------------------------------------------------------- /depend/bsdconfig/mouse/disable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/mouse/disable -------------------------------------------------------------------------------- /depend/bsdconfig/mouse/enable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/mouse/enable -------------------------------------------------------------------------------- /depend/bsdconfig/mouse/flags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/mouse/flags -------------------------------------------------------------------------------- /depend/bsdconfig/mouse/include/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/mouse/include/Makefile -------------------------------------------------------------------------------- /depend/bsdconfig/mouse/include/Makefile.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/mouse/include/Makefile.depend -------------------------------------------------------------------------------- /depend/bsdconfig/mouse/include/messages.subr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/mouse/include/messages.subr -------------------------------------------------------------------------------- /depend/bsdconfig/mouse/mouse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/mouse/mouse -------------------------------------------------------------------------------- /depend/bsdconfig/mouse/port: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/mouse/port -------------------------------------------------------------------------------- /depend/bsdconfig/mouse/type: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/mouse/type -------------------------------------------------------------------------------- /depend/bsdconfig/networking/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/networking/INDEX -------------------------------------------------------------------------------- /depend/bsdconfig/networking/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/networking/Makefile -------------------------------------------------------------------------------- /depend/bsdconfig/networking/Makefile.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/networking/Makefile.depend -------------------------------------------------------------------------------- /depend/bsdconfig/networking/USAGE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/networking/USAGE -------------------------------------------------------------------------------- /depend/bsdconfig/networking/defaultrouter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/networking/defaultrouter -------------------------------------------------------------------------------- /depend/bsdconfig/networking/devices: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/networking/devices -------------------------------------------------------------------------------- /depend/bsdconfig/networking/hostname: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/networking/hostname -------------------------------------------------------------------------------- /depend/bsdconfig/networking/include/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/networking/include/Makefile -------------------------------------------------------------------------------- /depend/bsdconfig/networking/include/Makefile.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/networking/include/Makefile.depend -------------------------------------------------------------------------------- /depend/bsdconfig/networking/include/messages.subr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/networking/include/messages.subr -------------------------------------------------------------------------------- /depend/bsdconfig/networking/nameservers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/networking/nameservers -------------------------------------------------------------------------------- /depend/bsdconfig/networking/networking: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/networking/networking -------------------------------------------------------------------------------- /depend/bsdconfig/networking/share/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/networking/share/Makefile -------------------------------------------------------------------------------- /depend/bsdconfig/networking/share/Makefile.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/networking/share/Makefile.depend -------------------------------------------------------------------------------- /depend/bsdconfig/networking/share/common.subr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/networking/share/common.subr -------------------------------------------------------------------------------- /depend/bsdconfig/networking/share/device.subr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/networking/share/device.subr -------------------------------------------------------------------------------- /depend/bsdconfig/networking/share/hostname.subr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/networking/share/hostname.subr -------------------------------------------------------------------------------- /depend/bsdconfig/networking/share/ipaddr.subr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/networking/share/ipaddr.subr -------------------------------------------------------------------------------- /depend/bsdconfig/networking/share/media.subr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/networking/share/media.subr -------------------------------------------------------------------------------- /depend/bsdconfig/networking/share/netmask.subr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/networking/share/netmask.subr -------------------------------------------------------------------------------- /depend/bsdconfig/networking/share/resolv.subr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/networking/share/resolv.subr -------------------------------------------------------------------------------- /depend/bsdconfig/networking/share/routing.subr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/networking/share/routing.subr -------------------------------------------------------------------------------- /depend/bsdconfig/networking/share/services.subr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/networking/share/services.subr -------------------------------------------------------------------------------- /depend/bsdconfig/networking/wlanconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/networking/wlanconfig -------------------------------------------------------------------------------- /depend/bsdconfig/packages/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/packages/INDEX -------------------------------------------------------------------------------- /depend/bsdconfig/packages/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/packages/Makefile -------------------------------------------------------------------------------- /depend/bsdconfig/packages/Makefile.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/packages/Makefile.depend -------------------------------------------------------------------------------- /depend/bsdconfig/packages/USAGE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/packages/USAGE -------------------------------------------------------------------------------- /depend/bsdconfig/packages/include/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/packages/include/Makefile -------------------------------------------------------------------------------- /depend/bsdconfig/packages/include/Makefile.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/packages/include/Makefile.depend -------------------------------------------------------------------------------- /depend/bsdconfig/packages/include/messages.subr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/packages/include/messages.subr -------------------------------------------------------------------------------- /depend/bsdconfig/packages/packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/packages/packages -------------------------------------------------------------------------------- /depend/bsdconfig/password/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/password/INDEX -------------------------------------------------------------------------------- /depend/bsdconfig/password/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/password/Makefile -------------------------------------------------------------------------------- /depend/bsdconfig/password/Makefile.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/password/Makefile.depend -------------------------------------------------------------------------------- /depend/bsdconfig/password/USAGE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/password/USAGE -------------------------------------------------------------------------------- /depend/bsdconfig/password/include/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/password/include/Makefile -------------------------------------------------------------------------------- /depend/bsdconfig/password/include/Makefile.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/password/include/Makefile.depend -------------------------------------------------------------------------------- /depend/bsdconfig/password/include/messages.subr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/password/include/messages.subr -------------------------------------------------------------------------------- /depend/bsdconfig/password/password: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/password/password -------------------------------------------------------------------------------- /depend/bsdconfig/password/share/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/password/share/Makefile -------------------------------------------------------------------------------- /depend/bsdconfig/password/share/Makefile.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/password/share/Makefile.depend -------------------------------------------------------------------------------- /depend/bsdconfig/password/share/password.subr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/password/share/password.subr -------------------------------------------------------------------------------- /depend/bsdconfig/security/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/security/INDEX -------------------------------------------------------------------------------- /depend/bsdconfig/security/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/security/Makefile -------------------------------------------------------------------------------- /depend/bsdconfig/security/Makefile.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/security/Makefile.depend -------------------------------------------------------------------------------- /depend/bsdconfig/security/USAGE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/security/USAGE -------------------------------------------------------------------------------- /depend/bsdconfig/security/include/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/security/include/Makefile -------------------------------------------------------------------------------- /depend/bsdconfig/security/include/Makefile.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/security/include/Makefile.depend -------------------------------------------------------------------------------- /depend/bsdconfig/security/include/messages.subr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/security/include/messages.subr -------------------------------------------------------------------------------- /depend/bsdconfig/security/include/securelevel.hlp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/security/include/securelevel.hlp -------------------------------------------------------------------------------- /depend/bsdconfig/security/kern_securelevel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/security/kern_securelevel -------------------------------------------------------------------------------- /depend/bsdconfig/security/security: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/security/security -------------------------------------------------------------------------------- /depend/bsdconfig/share/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/share/Makefile -------------------------------------------------------------------------------- /depend/bsdconfig/share/Makefile.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/share/Makefile.depend -------------------------------------------------------------------------------- /depend/bsdconfig/share/common.subr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/share/common.subr -------------------------------------------------------------------------------- /depend/bsdconfig/share/device.subr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/share/device.subr -------------------------------------------------------------------------------- /depend/bsdconfig/share/dialog.subr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/share/dialog.subr -------------------------------------------------------------------------------- /depend/bsdconfig/share/geom.subr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/share/geom.subr -------------------------------------------------------------------------------- /depend/bsdconfig/share/keymap.subr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/share/keymap.subr -------------------------------------------------------------------------------- /depend/bsdconfig/share/media/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/share/media/Makefile -------------------------------------------------------------------------------- /depend/bsdconfig/share/media/Makefile.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/share/media/Makefile.depend -------------------------------------------------------------------------------- /depend/bsdconfig/share/media/any.subr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/share/media/any.subr -------------------------------------------------------------------------------- /depend/bsdconfig/share/media/cdrom.subr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/share/media/cdrom.subr -------------------------------------------------------------------------------- /depend/bsdconfig/share/media/common.subr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/share/media/common.subr -------------------------------------------------------------------------------- /depend/bsdconfig/share/media/directory.subr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/share/media/directory.subr -------------------------------------------------------------------------------- /depend/bsdconfig/share/media/dos.subr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/share/media/dos.subr -------------------------------------------------------------------------------- /depend/bsdconfig/share/media/floppy.subr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/share/media/floppy.subr -------------------------------------------------------------------------------- /depend/bsdconfig/share/media/ftp.subr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/share/media/ftp.subr -------------------------------------------------------------------------------- /depend/bsdconfig/share/media/http.subr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/share/media/http.subr -------------------------------------------------------------------------------- /depend/bsdconfig/share/media/httpproxy.subr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/share/media/httpproxy.subr -------------------------------------------------------------------------------- /depend/bsdconfig/share/media/network.subr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/share/media/network.subr -------------------------------------------------------------------------------- /depend/bsdconfig/share/media/nfs.subr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/share/media/nfs.subr -------------------------------------------------------------------------------- /depend/bsdconfig/share/media/options.subr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/share/media/options.subr -------------------------------------------------------------------------------- /depend/bsdconfig/share/media/tcpip.subr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/share/media/tcpip.subr -------------------------------------------------------------------------------- /depend/bsdconfig/share/media/ufs.subr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/share/media/ufs.subr -------------------------------------------------------------------------------- /depend/bsdconfig/share/media/usb.subr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/share/media/usb.subr -------------------------------------------------------------------------------- /depend/bsdconfig/share/media/wlan.subr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/share/media/wlan.subr -------------------------------------------------------------------------------- /depend/bsdconfig/share/mk: -------------------------------------------------------------------------------- 1 | /usr/src/share/mk -------------------------------------------------------------------------------- /depend/bsdconfig/share/mustberoot.subr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/share/mustberoot.subr -------------------------------------------------------------------------------- /depend/bsdconfig/share/packages/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/share/packages/Makefile -------------------------------------------------------------------------------- /depend/bsdconfig/share/packages/Makefile.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/share/packages/Makefile.depend -------------------------------------------------------------------------------- /depend/bsdconfig/share/packages/categories.subr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/share/packages/categories.subr -------------------------------------------------------------------------------- /depend/bsdconfig/share/packages/index.subr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/share/packages/index.subr -------------------------------------------------------------------------------- /depend/bsdconfig/share/packages/musthavepkg.subr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/share/packages/musthavepkg.subr -------------------------------------------------------------------------------- /depend/bsdconfig/share/packages/packages.subr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/share/packages/packages.subr -------------------------------------------------------------------------------- /depend/bsdconfig/share/script.subr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/share/script.subr -------------------------------------------------------------------------------- /depend/bsdconfig/share/strings.subr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/share/strings.subr -------------------------------------------------------------------------------- /depend/bsdconfig/share/struct.subr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/share/struct.subr -------------------------------------------------------------------------------- /depend/bsdconfig/share/sysrc.subr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/share/sysrc.subr -------------------------------------------------------------------------------- /depend/bsdconfig/share/variable.subr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/share/variable.subr -------------------------------------------------------------------------------- /depend/bsdconfig/startup/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/startup/INDEX -------------------------------------------------------------------------------- /depend/bsdconfig/startup/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/startup/Makefile -------------------------------------------------------------------------------- /depend/bsdconfig/startup/Makefile.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/startup/Makefile.depend -------------------------------------------------------------------------------- /depend/bsdconfig/startup/USAGE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/startup/USAGE -------------------------------------------------------------------------------- /depend/bsdconfig/startup/include/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/startup/include/Makefile -------------------------------------------------------------------------------- /depend/bsdconfig/startup/include/Makefile.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/startup/include/Makefile.depend -------------------------------------------------------------------------------- /depend/bsdconfig/startup/include/messages.subr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/startup/include/messages.subr -------------------------------------------------------------------------------- /depend/bsdconfig/startup/misc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/startup/misc -------------------------------------------------------------------------------- /depend/bsdconfig/startup/rcadd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/startup/rcadd -------------------------------------------------------------------------------- /depend/bsdconfig/startup/rcconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/startup/rcconf -------------------------------------------------------------------------------- /depend/bsdconfig/startup/rcdelete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/startup/rcdelete -------------------------------------------------------------------------------- /depend/bsdconfig/startup/rcedit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/startup/rcedit -------------------------------------------------------------------------------- /depend/bsdconfig/startup/rcvar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/startup/rcvar -------------------------------------------------------------------------------- /depend/bsdconfig/startup/share/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/startup/share/Makefile -------------------------------------------------------------------------------- /depend/bsdconfig/startup/share/Makefile.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/startup/share/Makefile.depend -------------------------------------------------------------------------------- /depend/bsdconfig/startup/share/rcconf.subr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/startup/share/rcconf.subr -------------------------------------------------------------------------------- /depend/bsdconfig/startup/share/rcedit.subr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/startup/share/rcedit.subr -------------------------------------------------------------------------------- /depend/bsdconfig/startup/share/rcvar.subr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/startup/share/rcvar.subr -------------------------------------------------------------------------------- /depend/bsdconfig/startup/startup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/startup/startup -------------------------------------------------------------------------------- /depend/bsdconfig/timezone/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/timezone/INDEX -------------------------------------------------------------------------------- /depend/bsdconfig/timezone/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/timezone/Makefile -------------------------------------------------------------------------------- /depend/bsdconfig/timezone/Makefile.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/timezone/Makefile.depend -------------------------------------------------------------------------------- /depend/bsdconfig/timezone/USAGE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/timezone/USAGE -------------------------------------------------------------------------------- /depend/bsdconfig/timezone/include/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/timezone/include/Makefile -------------------------------------------------------------------------------- /depend/bsdconfig/timezone/include/Makefile.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/timezone/include/Makefile.depend -------------------------------------------------------------------------------- /depend/bsdconfig/timezone/include/messages.subr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/timezone/include/messages.subr -------------------------------------------------------------------------------- /depend/bsdconfig/timezone/share/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/timezone/share/Makefile -------------------------------------------------------------------------------- /depend/bsdconfig/timezone/share/Makefile.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/timezone/share/Makefile.depend -------------------------------------------------------------------------------- /depend/bsdconfig/timezone/share/continents.subr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/timezone/share/continents.subr -------------------------------------------------------------------------------- /depend/bsdconfig/timezone/share/countries.subr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/timezone/share/countries.subr -------------------------------------------------------------------------------- /depend/bsdconfig/timezone/share/iso3166.subr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/timezone/share/iso3166.subr -------------------------------------------------------------------------------- /depend/bsdconfig/timezone/share/menus.subr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/timezone/share/menus.subr -------------------------------------------------------------------------------- /depend/bsdconfig/timezone/share/zones.subr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/timezone/share/zones.subr -------------------------------------------------------------------------------- /depend/bsdconfig/timezone/timezone: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/timezone/timezone -------------------------------------------------------------------------------- /depend/bsdconfig/ttys/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/ttys/INDEX -------------------------------------------------------------------------------- /depend/bsdconfig/ttys/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/ttys/Makefile -------------------------------------------------------------------------------- /depend/bsdconfig/ttys/Makefile.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/ttys/Makefile.depend -------------------------------------------------------------------------------- /depend/bsdconfig/ttys/USAGE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/ttys/USAGE -------------------------------------------------------------------------------- /depend/bsdconfig/ttys/include/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/ttys/include/Makefile -------------------------------------------------------------------------------- /depend/bsdconfig/ttys/include/Makefile.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/ttys/include/Makefile.depend -------------------------------------------------------------------------------- /depend/bsdconfig/ttys/include/messages.subr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/ttys/include/messages.subr -------------------------------------------------------------------------------- /depend/bsdconfig/ttys/ttys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/ttys/ttys -------------------------------------------------------------------------------- /depend/bsdconfig/usermgmt/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/usermgmt/INDEX -------------------------------------------------------------------------------- /depend/bsdconfig/usermgmt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/usermgmt/Makefile -------------------------------------------------------------------------------- /depend/bsdconfig/usermgmt/Makefile.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/usermgmt/Makefile.depend -------------------------------------------------------------------------------- /depend/bsdconfig/usermgmt/USAGE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/usermgmt/USAGE -------------------------------------------------------------------------------- /depend/bsdconfig/usermgmt/groupadd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/usermgmt/groupadd -------------------------------------------------------------------------------- /depend/bsdconfig/usermgmt/groupdel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/usermgmt/groupdel -------------------------------------------------------------------------------- /depend/bsdconfig/usermgmt/groupedit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/usermgmt/groupedit -------------------------------------------------------------------------------- /depend/bsdconfig/usermgmt/include/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/usermgmt/include/Makefile -------------------------------------------------------------------------------- /depend/bsdconfig/usermgmt/include/Makefile.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/usermgmt/include/Makefile.depend -------------------------------------------------------------------------------- /depend/bsdconfig/usermgmt/include/messages.subr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/usermgmt/include/messages.subr -------------------------------------------------------------------------------- /depend/bsdconfig/usermgmt/include/usermgmt.hlp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/usermgmt/include/usermgmt.hlp -------------------------------------------------------------------------------- /depend/bsdconfig/usermgmt/share/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/usermgmt/share/Makefile -------------------------------------------------------------------------------- /depend/bsdconfig/usermgmt/share/Makefile.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/usermgmt/share/Makefile.depend -------------------------------------------------------------------------------- /depend/bsdconfig/usermgmt/share/group.subr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/usermgmt/share/group.subr -------------------------------------------------------------------------------- /depend/bsdconfig/usermgmt/share/group_input.subr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/usermgmt/share/group_input.subr -------------------------------------------------------------------------------- /depend/bsdconfig/usermgmt/share/user.subr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/usermgmt/share/user.subr -------------------------------------------------------------------------------- /depend/bsdconfig/usermgmt/share/user_input.subr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/usermgmt/share/user_input.subr -------------------------------------------------------------------------------- /depend/bsdconfig/usermgmt/useradd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/usermgmt/useradd -------------------------------------------------------------------------------- /depend/bsdconfig/usermgmt/userdel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/usermgmt/userdel -------------------------------------------------------------------------------- /depend/bsdconfig/usermgmt/useredit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/usermgmt/useredit -------------------------------------------------------------------------------- /depend/bsdconfig/usermgmt/usermgmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdconfig/usermgmt/usermgmt -------------------------------------------------------------------------------- /depend/bsdinstall/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdinstall/Makefile -------------------------------------------------------------------------------- /depend/bsdinstall/Makefile.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdinstall/Makefile.depend -------------------------------------------------------------------------------- /depend/bsdinstall/Makefile.inc: -------------------------------------------------------------------------------- 1 | PACKAGE=bsdinstall 2 | -------------------------------------------------------------------------------- /depend/bsdinstall/bsdinstall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdinstall/bsdinstall -------------------------------------------------------------------------------- /depend/bsdinstall/bsdinstall.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdinstall/bsdinstall.8 -------------------------------------------------------------------------------- /depend/bsdinstall/distextract/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdinstall/distextract/Makefile -------------------------------------------------------------------------------- /depend/bsdinstall/distextract/Makefile.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdinstall/distextract/Makefile.depend -------------------------------------------------------------------------------- /depend/bsdinstall/distextract/distextract.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdinstall/distextract/distextract.c -------------------------------------------------------------------------------- /depend/bsdinstall/distfetch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdinstall/distfetch/Makefile -------------------------------------------------------------------------------- /depend/bsdinstall/distfetch/Makefile.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdinstall/distfetch/Makefile.depend -------------------------------------------------------------------------------- /depend/bsdinstall/distfetch/distfetch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdinstall/distfetch/distfetch.c -------------------------------------------------------------------------------- /depend/bsdinstall/partedit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdinstall/partedit/Makefile -------------------------------------------------------------------------------- /depend/bsdinstall/partedit/Makefile.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdinstall/partedit/Makefile.depend -------------------------------------------------------------------------------- /depend/bsdinstall/partedit/diskeditor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdinstall/partedit/diskeditor.c -------------------------------------------------------------------------------- /depend/bsdinstall/partedit/diskeditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdinstall/partedit/diskeditor.h -------------------------------------------------------------------------------- /depend/bsdinstall/partedit/gpart_ops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdinstall/partedit/gpart_ops.c -------------------------------------------------------------------------------- /depend/bsdinstall/partedit/part_wizard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdinstall/partedit/part_wizard.c -------------------------------------------------------------------------------- /depend/bsdinstall/partedit/partedit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdinstall/partedit/partedit.c -------------------------------------------------------------------------------- /depend/bsdinstall/partedit/partedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdinstall/partedit/partedit.h -------------------------------------------------------------------------------- /depend/bsdinstall/partedit/partedit_arm64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdinstall/partedit/partedit_arm64.c -------------------------------------------------------------------------------- /depend/bsdinstall/partedit/partedit_generic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdinstall/partedit/partedit_generic.c -------------------------------------------------------------------------------- /depend/bsdinstall/partedit/partedit_powerpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdinstall/partedit/partedit_powerpc.c -------------------------------------------------------------------------------- /depend/bsdinstall/partedit/partedit_sparc64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdinstall/partedit/partedit_sparc64.c -------------------------------------------------------------------------------- /depend/bsdinstall/partedit/partedit_x86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdinstall/partedit/partedit_x86.c -------------------------------------------------------------------------------- /depend/bsdinstall/partedit/sade.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdinstall/partedit/sade.8 -------------------------------------------------------------------------------- /depend/bsdinstall/partedit/scripted.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdinstall/partedit/scripted.c -------------------------------------------------------------------------------- /depend/bsdinstall/scripts/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdinstall/scripts/Makefile -------------------------------------------------------------------------------- /depend/bsdinstall/scripts/Makefile.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdinstall/scripts/Makefile.depend -------------------------------------------------------------------------------- /depend/bsdinstall/scripts/adduser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdinstall/scripts/adduser -------------------------------------------------------------------------------- /depend/bsdinstall/scripts/auto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdinstall/scripts/auto -------------------------------------------------------------------------------- /depend/bsdinstall/scripts/bootconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdinstall/scripts/bootconfig -------------------------------------------------------------------------------- /depend/bsdinstall/scripts/checksum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdinstall/scripts/checksum -------------------------------------------------------------------------------- /depend/bsdinstall/scripts/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdinstall/scripts/config -------------------------------------------------------------------------------- /depend/bsdinstall/scripts/docsinstall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdinstall/scripts/docsinstall -------------------------------------------------------------------------------- /depend/bsdinstall/scripts/entropy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdinstall/scripts/entropy -------------------------------------------------------------------------------- /depend/bsdinstall/scripts/hardening: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdinstall/scripts/hardening -------------------------------------------------------------------------------- /depend/bsdinstall/scripts/hostname: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdinstall/scripts/hostname -------------------------------------------------------------------------------- /depend/bsdinstall/scripts/jail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdinstall/scripts/jail -------------------------------------------------------------------------------- /depend/bsdinstall/scripts/keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdinstall/scripts/keymap -------------------------------------------------------------------------------- /depend/bsdinstall/scripts/mirrorselect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdinstall/scripts/mirrorselect -------------------------------------------------------------------------------- /depend/bsdinstall/scripts/mount: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdinstall/scripts/mount -------------------------------------------------------------------------------- /depend/bsdinstall/scripts/netconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdinstall/scripts/netconfig -------------------------------------------------------------------------------- /depend/bsdinstall/scripts/netconfig_ipv4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdinstall/scripts/netconfig_ipv4 -------------------------------------------------------------------------------- /depend/bsdinstall/scripts/netconfig_ipv6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdinstall/scripts/netconfig_ipv6 -------------------------------------------------------------------------------- /depend/bsdinstall/scripts/rootpass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdinstall/scripts/rootpass -------------------------------------------------------------------------------- /depend/bsdinstall/scripts/script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdinstall/scripts/script -------------------------------------------------------------------------------- /depend/bsdinstall/scripts/services: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdinstall/scripts/services -------------------------------------------------------------------------------- /depend/bsdinstall/scripts/time: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdinstall/scripts/time -------------------------------------------------------------------------------- /depend/bsdinstall/scripts/umount: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdinstall/scripts/umount -------------------------------------------------------------------------------- /depend/bsdinstall/scripts/wlanconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdinstall/scripts/wlanconfig -------------------------------------------------------------------------------- /depend/bsdinstall/scripts/zfsboot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/bsdinstall/scripts/zfsboot -------------------------------------------------------------------------------- /depend/cmb/GNUmakefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/cmb/GNUmakefile.in -------------------------------------------------------------------------------- /depend/cmb/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/cmb/LICENSE -------------------------------------------------------------------------------- /depend/cmb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/cmb/Makefile -------------------------------------------------------------------------------- /depend/cmb/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/cmb/README -------------------------------------------------------------------------------- /depend/cmb/bench/cmb_bench_cpu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/cmb/bench/cmb_bench_cpu.sh -------------------------------------------------------------------------------- /depend/cmb/bench/cmb_bench_cpu_flops.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/cmb/bench/cmb_bench_cpu_flops.sh -------------------------------------------------------------------------------- /depend/cmb/bench/cmp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/cmb/bench/cmp.sh -------------------------------------------------------------------------------- /depend/cmb/bench/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/cmb/bench/run.sh -------------------------------------------------------------------------------- /depend/cmb/bench/stats.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/cmb/bench/stats.sh -------------------------------------------------------------------------------- /depend/cmb/cfgaux/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/cmb/cfgaux/config.guess -------------------------------------------------------------------------------- /depend/cmb/cfgaux/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/cmb/cfgaux/config.sub -------------------------------------------------------------------------------- /depend/cmb/cfgaux/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/cmb/cfgaux/install-sh -------------------------------------------------------------------------------- /depend/cmb/cmb.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/cmb/cmb.1 -------------------------------------------------------------------------------- /depend/cmb/cmb.1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/cmb/cmb.1.html -------------------------------------------------------------------------------- /depend/cmb/cmb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/cmb/cmb.c -------------------------------------------------------------------------------- /depend/cmb/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/cmb/config.h.in -------------------------------------------------------------------------------- /depend/cmb/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/cmb/configure -------------------------------------------------------------------------------- /depend/cmb/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/cmb/configure.in -------------------------------------------------------------------------------- /depend/cmb/release/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/cmb/release/Makefile -------------------------------------------------------------------------------- /depend/cmb/release/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/cmb/release/README -------------------------------------------------------------------------------- /depend/cputools/GNUmakefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/cputools/GNUmakefile.in -------------------------------------------------------------------------------- /depend/cputools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/cputools/Makefile -------------------------------------------------------------------------------- /depend/cputools/cfgaux/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/cputools/cfgaux/config.guess -------------------------------------------------------------------------------- /depend/cputools/cfgaux/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/cputools/cfgaux/config.sub -------------------------------------------------------------------------------- /depend/cputools/cfgaux/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/cputools/cfgaux/install-sh -------------------------------------------------------------------------------- /depend/cputools/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/cputools/config.h.in -------------------------------------------------------------------------------- /depend/cputools/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/cputools/configure -------------------------------------------------------------------------------- /depend/cputools/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/cputools/configure.in -------------------------------------------------------------------------------- /depend/cputools/cputools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/cputools/cputools.h -------------------------------------------------------------------------------- /depend/cputools/ept.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/cputools/ept.c -------------------------------------------------------------------------------- /depend/cputools/htt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/cputools/htt.c -------------------------------------------------------------------------------- /depend/cputools/vtx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/cputools/vtx.c -------------------------------------------------------------------------------- /depend/cputools/x86_64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/cputools/x86_64.c -------------------------------------------------------------------------------- /depend/dpv/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/dpv/GNUmakefile -------------------------------------------------------------------------------- /depend/dpv/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/dpv/Makefile -------------------------------------------------------------------------------- /depend/dpv/Makefile.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/dpv/Makefile.depend -------------------------------------------------------------------------------- /depend/dpv/dpv.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/dpv/dpv.1 -------------------------------------------------------------------------------- /depend/dpv/dpv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/dpv/dpv.c -------------------------------------------------------------------------------- /depend/dpv/dpv_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/dpv/dpv_util.h -------------------------------------------------------------------------------- /depend/dwatch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/dwatch/Makefile -------------------------------------------------------------------------------- /depend/dwatch/dwatch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/dwatch/dwatch -------------------------------------------------------------------------------- /depend/dwatch/dwatch.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/dwatch/dwatch.1 -------------------------------------------------------------------------------- /depend/dwatch/examples/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/dwatch/examples/Makefile -------------------------------------------------------------------------------- /depend/dwatch/examples/profile_template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/dwatch/examples/profile_template -------------------------------------------------------------------------------- /depend/dwatch/libexec/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/dwatch/libexec/Makefile -------------------------------------------------------------------------------- /depend/dwatch/libexec/chmod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/dwatch/libexec/chmod -------------------------------------------------------------------------------- /depend/dwatch/libexec/errno: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/dwatch/libexec/errno -------------------------------------------------------------------------------- /depend/dwatch/libexec/io: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/dwatch/libexec/io -------------------------------------------------------------------------------- /depend/dwatch/libexec/ip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/dwatch/libexec/ip -------------------------------------------------------------------------------- /depend/dwatch/libexec/kill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/dwatch/libexec/kill -------------------------------------------------------------------------------- /depend/dwatch/libexec/nanosleep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/dwatch/libexec/nanosleep -------------------------------------------------------------------------------- /depend/dwatch/libexec/open: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/dwatch/libexec/open -------------------------------------------------------------------------------- /depend/dwatch/libexec/proc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/dwatch/libexec/proc -------------------------------------------------------------------------------- /depend/dwatch/libexec/rw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/dwatch/libexec/rw -------------------------------------------------------------------------------- /depend/dwatch/libexec/sched: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/dwatch/libexec/sched -------------------------------------------------------------------------------- /depend/dwatch/libexec/tcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/dwatch/libexec/tcp -------------------------------------------------------------------------------- /depend/dwatch/libexec/udp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/dwatch/libexec/udp -------------------------------------------------------------------------------- /depend/dwatch/libexec/vop_create: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/dwatch/libexec/vop_create -------------------------------------------------------------------------------- /depend/dwatch/libexec/vop_readdir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/dwatch/libexec/vop_readdir -------------------------------------------------------------------------------- /depend/dwatch/libexec/vop_rename: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/dwatch/libexec/vop_rename -------------------------------------------------------------------------------- /depend/dwatch/libexec/vop_symlink: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/dwatch/libexec/vop_symlink -------------------------------------------------------------------------------- /depend/import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/import -------------------------------------------------------------------------------- /depend/libcmb/GNUmakefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/libcmb/GNUmakefile.in -------------------------------------------------------------------------------- /depend/libcmb/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/libcmb/LICENSE -------------------------------------------------------------------------------- /depend/libcmb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/libcmb/Makefile -------------------------------------------------------------------------------- /depend/libcmb/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/libcmb/README -------------------------------------------------------------------------------- /depend/libcmb/cfgaux/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/libcmb/cfgaux/config.guess -------------------------------------------------------------------------------- /depend/libcmb/cfgaux/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/libcmb/cfgaux/config.sub -------------------------------------------------------------------------------- /depend/libcmb/cfgaux/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/libcmb/cfgaux/install-sh -------------------------------------------------------------------------------- /depend/libcmb/cmb.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/libcmb/cmb.3 -------------------------------------------------------------------------------- /depend/libcmb/cmb.3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/libcmb/cmb.3.html -------------------------------------------------------------------------------- /depend/libcmb/cmb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/libcmb/cmb.c -------------------------------------------------------------------------------- /depend/libcmb/cmb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/libcmb/cmb.h -------------------------------------------------------------------------------- /depend/libcmb/cmb_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/libcmb/cmb_private.h -------------------------------------------------------------------------------- /depend/libcmb/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/libcmb/config.h.in -------------------------------------------------------------------------------- /depend/libcmb/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/libcmb/configure -------------------------------------------------------------------------------- /depend/libcmb/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/libcmb/configure.in -------------------------------------------------------------------------------- /depend/libcmb/other/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/libcmb/other/README -------------------------------------------------------------------------------- /depend/libcmb/other/combn_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/libcmb/other/combn_test.sh -------------------------------------------------------------------------------- /depend/libcmb/other/itertools_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/libcmb/other/itertools_test.sh -------------------------------------------------------------------------------- /depend/libcmb/other/numpy_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/libcmb/other/numpy_test.sh -------------------------------------------------------------------------------- /depend/libcmb/perl/Cmb.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/libcmb/perl/Cmb.xs -------------------------------------------------------------------------------- /depend/libcmb/perl/Cmb/.h2xs_done: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /depend/libcmb/perl/Cmb/Changes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/libcmb/perl/Cmb/Changes -------------------------------------------------------------------------------- /depend/libcmb/perl/Cmb/MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/libcmb/perl/Cmb/MANIFEST -------------------------------------------------------------------------------- /depend/libcmb/perl/Cmb/Makefile.PL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/libcmb/perl/Cmb/Makefile.PL -------------------------------------------------------------------------------- /depend/libcmb/perl/Cmb/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/libcmb/perl/Cmb/README -------------------------------------------------------------------------------- /depend/libcmb/perl/Cmb/fallback/const-c.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/libcmb/perl/Cmb/fallback/const-c.inc -------------------------------------------------------------------------------- /depend/libcmb/perl/Cmb/fallback/const-xs.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/libcmb/perl/Cmb/fallback/const-xs.inc -------------------------------------------------------------------------------- /depend/libcmb/perl/Cmb/lib/Cmb.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/libcmb/perl/Cmb/lib/Cmb.pm -------------------------------------------------------------------------------- /depend/libcmb/perl/Cmb/ppport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/libcmb/perl/Cmb/ppport.h -------------------------------------------------------------------------------- /depend/libcmb/perl/Cmb/t/Cmb.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/libcmb/perl/Cmb/t/Cmb.t -------------------------------------------------------------------------------- /depend/libcmb/perl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/libcmb/perl/Makefile -------------------------------------------------------------------------------- /depend/libcmb/perl/tests/test1.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/libcmb/perl/tests/test1.pl -------------------------------------------------------------------------------- /depend/libcmb/perl/tests/test2.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/libcmb/perl/tests/test2.pl -------------------------------------------------------------------------------- /depend/libcmb/perl/tests/test3.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/libcmb/perl/tests/test3.pl -------------------------------------------------------------------------------- /depend/libcmb/perl/tests/test4.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/libcmb/perl/tests/test4.pl -------------------------------------------------------------------------------- /depend/libcmb/perl/tests/test5.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/libcmb/perl/tests/test5.pl -------------------------------------------------------------------------------- /depend/libcmb/python.c/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/libcmb/python.c/Makefile.in -------------------------------------------------------------------------------- /depend/libcmb/python.c/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/libcmb/python.c/README -------------------------------------------------------------------------------- /depend/libcmb/python.c/cmb/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/libcmb/python.c/cmb/Makefile.in -------------------------------------------------------------------------------- /depend/libcmb/python.c/cmb/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/libcmb/python.c/cmb/__init__.py -------------------------------------------------------------------------------- /depend/libcmb/python.c/cmb/cmb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/libcmb/python.c/cmb/cmb.c -------------------------------------------------------------------------------- /depend/libcmb/python.c/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/libcmb/python.c/configure -------------------------------------------------------------------------------- /depend/libcmb/python.c/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/libcmb/python.c/configure.in -------------------------------------------------------------------------------- /depend/libcmb/python.c/tests/test1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/libcmb/python.c/tests/test1.py -------------------------------------------------------------------------------- /depend/libcmb/python.c/tests/test2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/libcmb/python.c/tests/test2.py -------------------------------------------------------------------------------- /depend/libcmb/python.c/tests/test3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/libcmb/python.c/tests/test3.py -------------------------------------------------------------------------------- /depend/libcmb/python.c/tests/test4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/libcmb/python.c/tests/test4.py -------------------------------------------------------------------------------- /depend/libcmb/python.c/tests/test5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/libcmb/python.c/tests/test5.py -------------------------------------------------------------------------------- /depend/libcmb/python.ctypes/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/libcmb/python.ctypes/Makefile -------------------------------------------------------------------------------- /depend/libcmb/python.ctypes/cmb/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/libcmb/python.ctypes/cmb/__init__.py -------------------------------------------------------------------------------- /depend/libcmb/python.ctypes/cmb/cmb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/libcmb/python.ctypes/cmb/cmb.py -------------------------------------------------------------------------------- /depend/libcmb/python.ctypes/tests/test1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/libcmb/python.ctypes/tests/test1.py -------------------------------------------------------------------------------- /depend/libcmb/python.ctypes/tests/test2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/libcmb/python.ctypes/tests/test2.py -------------------------------------------------------------------------------- /depend/libcmb/python.ctypes/tests/test3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/libcmb/python.ctypes/tests/test3.py -------------------------------------------------------------------------------- /depend/libcmb/python.ctypes/tests/test4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/libcmb/python.ctypes/tests/test4.py -------------------------------------------------------------------------------- /depend/libcmb/python.ctypes/tests/test5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/libcmb/python.ctypes/tests/test5.py -------------------------------------------------------------------------------- /depend/libcmb/release/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/libcmb/release/Makefile -------------------------------------------------------------------------------- /depend/libcmb/release/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/libcmb/release/README -------------------------------------------------------------------------------- /depend/libcmb/tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/libcmb/tests/Makefile -------------------------------------------------------------------------------- /depend/libcmb/tests/test1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/libcmb/tests/test1.c -------------------------------------------------------------------------------- /depend/libcmb/tests/test2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/libcmb/tests/test2.c -------------------------------------------------------------------------------- /depend/libcmb/tests/test3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/libcmb/tests/test3.c -------------------------------------------------------------------------------- /depend/libcmb/tests/test4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/libcmb/tests/test4.c -------------------------------------------------------------------------------- /depend/libcmb/tests/test5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/libcmb/tests/test5.c -------------------------------------------------------------------------------- /depend/libdpv/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/libdpv/GNUmakefile -------------------------------------------------------------------------------- /depend/libdpv/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/libdpv/Makefile -------------------------------------------------------------------------------- /depend/libdpv/Makefile.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/libdpv/Makefile.depend -------------------------------------------------------------------------------- /depend/libdpv/dialog_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/libdpv/dialog_util.c -------------------------------------------------------------------------------- /depend/libdpv/dialog_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/libdpv/dialog_util.h -------------------------------------------------------------------------------- /depend/libdpv/dialogrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/libdpv/dialogrc.c -------------------------------------------------------------------------------- /depend/libdpv/dialogrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/libdpv/dialogrc.h -------------------------------------------------------------------------------- /depend/libdpv/dprompt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/libdpv/dprompt.c -------------------------------------------------------------------------------- /depend/libdpv/dprompt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/libdpv/dprompt.h -------------------------------------------------------------------------------- /depend/libdpv/dpv.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/libdpv/dpv.3 -------------------------------------------------------------------------------- /depend/libdpv/dpv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/libdpv/dpv.c -------------------------------------------------------------------------------- /depend/libdpv/dpv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/libdpv/dpv.h -------------------------------------------------------------------------------- /depend/libdpv/dpv_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/libdpv/dpv_private.h -------------------------------------------------------------------------------- /depend/libdpv/status.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/libdpv/status.c -------------------------------------------------------------------------------- /depend/libdpv/status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/libdpv/status.h -------------------------------------------------------------------------------- /depend/libdpv/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/libdpv/util.c -------------------------------------------------------------------------------- /depend/libdpv/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/libdpv/util.h -------------------------------------------------------------------------------- /depend/libfigpar/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/libfigpar/GNUmakefile -------------------------------------------------------------------------------- /depend/libfigpar/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/libfigpar/Makefile -------------------------------------------------------------------------------- /depend/libfigpar/Makefile.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/libfigpar/Makefile.depend -------------------------------------------------------------------------------- /depend/libfigpar/figpar.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/libfigpar/figpar.3 -------------------------------------------------------------------------------- /depend/libfigpar/figpar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/libfigpar/figpar.c -------------------------------------------------------------------------------- /depend/libfigpar/figpar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/libfigpar/figpar.h -------------------------------------------------------------------------------- /depend/libfigpar/string_m.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/libfigpar/string_m.c -------------------------------------------------------------------------------- /depend/libfigpar/string_m.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/libfigpar/string_m.h -------------------------------------------------------------------------------- /depend/libfigput/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/libfigput/LICENSE -------------------------------------------------------------------------------- /depend/libfigput/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/libfigput/Makefile -------------------------------------------------------------------------------- /depend/libfigput/figput.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/libfigput/figput.3 -------------------------------------------------------------------------------- /depend/libfigput/figput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/libfigput/figput.c -------------------------------------------------------------------------------- /depend/libfigput/figput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/libfigput/figput.h -------------------------------------------------------------------------------- /depend/sysconf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/sysconf/Makefile -------------------------------------------------------------------------------- /depend/sysconf/sysconf.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/sysconf/sysconf.8 -------------------------------------------------------------------------------- /depend/sysconf/sysconf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/sysconf/sysconf.c -------------------------------------------------------------------------------- /depend/tag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/depend/tag -------------------------------------------------------------------------------- /freebsd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/freebsd/Makefile -------------------------------------------------------------------------------- /freebsd/Mk/HELP_FREEBSD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/freebsd/Mk/HELP_FREEBSD -------------------------------------------------------------------------------- /freebsd/Mk/HELP_PACKAGE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/freebsd/Mk/HELP_PACKAGE -------------------------------------------------------------------------------- /freebsd/Mk/USAGE_FREEBSD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/freebsd/Mk/USAGE_FREEBSD -------------------------------------------------------------------------------- /freebsd/Mk/USAGE_PACKAGE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/freebsd/Mk/USAGE_PACKAGE -------------------------------------------------------------------------------- /freebsd/Mk/convert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/freebsd/Mk/convert -------------------------------------------------------------------------------- /freebsd/Mk/manifest.subr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/freebsd/Mk/manifest.subr -------------------------------------------------------------------------------- /freebsd/Mk/pkgcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/freebsd/Mk/pkgcc -------------------------------------------------------------------------------- /freebsd/Mk/pkgname: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/freebsd/Mk/pkgname -------------------------------------------------------------------------------- /freebsd/Mk/pkgorigin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/freebsd/Mk/pkgorigin -------------------------------------------------------------------------------- /freebsd/Mk/pkgtag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/freebsd/Mk/pkgtag -------------------------------------------------------------------------------- /freebsd/Mk/pkgtagname: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/freebsd/Mk/pkgtagname -------------------------------------------------------------------------------- /freebsd/RELENG_11_0/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/freebsd/RELENG_11_0/Makefile -------------------------------------------------------------------------------- /freebsd/RELENG_11_0/fraubsd/cmb/MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/freebsd/RELENG_11_0/fraubsd/cmb/MANIFEST -------------------------------------------------------------------------------- /freebsd/RELENG_11_0/fraubsd/cmb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/freebsd/RELENG_11_0/fraubsd/cmb/Makefile -------------------------------------------------------------------------------- /freebsd/RELENG_11_0/fraubsd/cmb/pkgcenter.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/freebsd/RELENG_11_0/fraubsd/cmb/pkgcenter.conf -------------------------------------------------------------------------------- /freebsd/RELENG_11_0/fraubsd/dwatch/MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/freebsd/RELENG_11_0/fraubsd/dwatch/MANIFEST -------------------------------------------------------------------------------- /freebsd/RELENG_11_0/fraubsd/dwatch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/freebsd/RELENG_11_0/fraubsd/dwatch/Makefile -------------------------------------------------------------------------------- /freebsd/RELENG_11_0/fraubsd/dwatch/pkgcenter.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/freebsd/RELENG_11_0/fraubsd/dwatch/pkgcenter.conf -------------------------------------------------------------------------------- /freebsd/RELENG_11_0/fraubsd/pkgcenter/MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/freebsd/RELENG_11_0/fraubsd/pkgcenter/MANIFEST -------------------------------------------------------------------------------- /freebsd/RELENG_11_0/fraubsd/pkgcenter/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/freebsd/RELENG_11_0/fraubsd/pkgcenter/Makefile -------------------------------------------------------------------------------- /freebsd/RELENG_11_0/fraubsd/pkgcenter/pkgcenter.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/freebsd/RELENG_11_0/fraubsd/pkgcenter/pkgcenter.conf -------------------------------------------------------------------------------- /freebsd/RELENG_12_0/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/freebsd/RELENG_12_0/Makefile -------------------------------------------------------------------------------- /freebsd/RELENG_12_0/fraubsd/pkgcenter/MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/freebsd/RELENG_12_0/fraubsd/pkgcenter/MANIFEST -------------------------------------------------------------------------------- /freebsd/RELENG_12_0/fraubsd/pkgcenter/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/freebsd/RELENG_12_0/fraubsd/pkgcenter/Makefile -------------------------------------------------------------------------------- /freebsd/RELENG_12_0/fraubsd/pkgcenter/pkgcenter.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/freebsd/RELENG_12_0/fraubsd/pkgcenter/pkgcenter.conf -------------------------------------------------------------------------------- /freebsd/create.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/freebsd/create.sh -------------------------------------------------------------------------------- /freebsd/skel/MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/freebsd/skel/MANIFEST -------------------------------------------------------------------------------- /freebsd/skel/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/freebsd/skel/Makefile -------------------------------------------------------------------------------- /freebsd/skel/Makefile.ng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/freebsd/skel/Makefile.ng -------------------------------------------------------------------------------- /freebsd/skel/Makefile.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/freebsd/skel/Makefile.old -------------------------------------------------------------------------------- /freebsd/skel/PLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/freebsd/skel/PLIST -------------------------------------------------------------------------------- /freebsd/skel/pkgcenter.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/freebsd/skel/pkgcenter.conf -------------------------------------------------------------------------------- /freebsd/skel/stage/+COMMENT: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /freebsd/skel/stage/+DESC: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /freebsd/unpack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/freebsd/unpack.sh -------------------------------------------------------------------------------- /redhat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/redhat/Makefile -------------------------------------------------------------------------------- /redhat/Mk/GROUPS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/redhat/Mk/GROUPS -------------------------------------------------------------------------------- /redhat/Mk/HELP_REDHAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/redhat/Mk/HELP_REDHAT -------------------------------------------------------------------------------- /redhat/Mk/HELP_RPM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/redhat/Mk/HELP_RPM -------------------------------------------------------------------------------- /redhat/Mk/USAGE_REDHAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/redhat/Mk/USAGE_REDHAT -------------------------------------------------------------------------------- /redhat/Mk/USAGE_RPM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/redhat/Mk/USAGE_RPM -------------------------------------------------------------------------------- /redhat/Mk/rpmconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/redhat/Mk/rpmconf -------------------------------------------------------------------------------- /redhat/Mk/rpmgroup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/redhat/Mk/rpmgroup -------------------------------------------------------------------------------- /redhat/Mk/rpmname: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/redhat/Mk/rpmname -------------------------------------------------------------------------------- /redhat/Mk/rpmsrcfiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/redhat/Mk/rpmsrcfiles -------------------------------------------------------------------------------- /redhat/Mk/rpmstagefiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/redhat/Mk/rpmstagefiles -------------------------------------------------------------------------------- /redhat/Mk/rpmtag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/redhat/Mk/rpmtag -------------------------------------------------------------------------------- /redhat/Mk/rpmtagname: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/redhat/Mk/rpmtagname -------------------------------------------------------------------------------- /redhat/Mk/template.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/redhat/Mk/template.conf -------------------------------------------------------------------------------- /redhat/Mk/template.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/redhat/Mk/template.spec -------------------------------------------------------------------------------- /redhat/create.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/redhat/create.sh -------------------------------------------------------------------------------- /redhat/rhel6-x86_64/Applications/FrauBSD/dwatch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/redhat/rhel6-x86_64/Applications/FrauBSD/dwatch/Makefile -------------------------------------------------------------------------------- /redhat/rhel6-x86_64/Applications/FrauBSD/dwatch/SPECFILE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/redhat/rhel6-x86_64/Applications/FrauBSD/dwatch/SPECFILE -------------------------------------------------------------------------------- /redhat/rhel6-x86_64/Applications/FrauBSD/dwatch/pkgcenter.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/redhat/rhel6-x86_64/Applications/FrauBSD/dwatch/pkgcenter.conf -------------------------------------------------------------------------------- /redhat/rhel6-x86_64/Applications/FrauBSD/pkgcenter/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/redhat/rhel6-x86_64/Applications/FrauBSD/pkgcenter/Makefile -------------------------------------------------------------------------------- /redhat/rhel6-x86_64/Applications/FrauBSD/pkgcenter/SPECFILE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/redhat/rhel6-x86_64/Applications/FrauBSD/pkgcenter/SPECFILE -------------------------------------------------------------------------------- /redhat/rhel6-x86_64/Applications/FrauBSD/pkgcenter/pkgcenter.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/redhat/rhel6-x86_64/Applications/FrauBSD/pkgcenter/pkgcenter.conf -------------------------------------------------------------------------------- /redhat/rhel6-x86_64/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/redhat/rhel6-x86_64/Makefile -------------------------------------------------------------------------------- /redhat/rhel7-x86_64/Applications/FrauBSD/pkgcenter/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/redhat/rhel7-x86_64/Applications/FrauBSD/pkgcenter/Makefile -------------------------------------------------------------------------------- /redhat/rhel7-x86_64/Applications/FrauBSD/pkgcenter/SPECFILE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/redhat/rhel7-x86_64/Applications/FrauBSD/pkgcenter/SPECFILE -------------------------------------------------------------------------------- /redhat/rhel7-x86_64/Applications/FrauBSD/pkgcenter/pkgcenter.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/redhat/rhel7-x86_64/Applications/FrauBSD/pkgcenter/pkgcenter.conf -------------------------------------------------------------------------------- /redhat/rhel7-x86_64/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/redhat/rhel7-x86_64/Makefile -------------------------------------------------------------------------------- /redhat/skel/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/redhat/skel/Makefile -------------------------------------------------------------------------------- /redhat/skel/pkgcenter.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/redhat/skel/pkgcenter.conf -------------------------------------------------------------------------------- /redhat/unpack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrauBSD/pkgcenter/HEAD/redhat/unpack.sh --------------------------------------------------------------------------------