├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── admin ├── debootstrap │ ├── Makefile │ ├── files │ │ └── pkgdetails.c │ └── patches │ │ └── 100-busybox_fix.patch ├── htop │ └── Makefile ├── monit │ ├── Makefile │ ├── files │ │ └── monit.init │ └── patches │ │ └── 001-fix-default-piddir.patch ├── muninlite │ ├── Makefile │ ├── files │ │ └── etc │ │ │ └── xinetd.d │ │ │ └── munin │ └── patches │ │ ├── 001-no_disks.patch │ │ ├── 002-hostname.patch │ │ ├── 100-fix-no-ethtool.patch │ │ ├── 110-fix-uptime-days.patch │ │ ├── 200-add-tap-dev.patch │ │ ├── 210-add-bridge-devs.patch │ │ └── 220-modify-ifname-parser.patch ├── sudo │ ├── Makefile │ ├── files │ │ └── sudo.init │ └── patches │ │ ├── 010-cross-compile-fixes.patch │ │ ├── 020-no-owner-change.patch │ │ └── 030-musl-fix-missing-header.patch └── zabbix │ ├── Makefile │ ├── files │ ├── mac80211 │ ├── network │ ├── wifi │ ├── zabbix_agentd.init │ └── zabbix_helper_mac80211.c │ └── patches │ ├── 002-fix-res_send-on-uclibc.patch │ ├── 002-uclibc_loadavg.patch │ ├── 010-change-agentd-config.patch │ ├── 015-daemon-foreground.patch │ └── 100-musl-compat.patch ├── devel ├── diffutils │ └── Makefile ├── gcc │ ├── Makefile │ ├── README │ └── patches │ │ ├── 002-dont-choke-when-building-32bit-on-64bit.patch │ │ ├── 003-mpfr-longlong-mips.patch │ │ ├── 010-documentation.patch │ │ ├── 020-disable-check-for-sys-sdt-h.patch │ │ ├── 100-uclibc-conf.patch │ │ ├── 200-musl.patch │ │ ├── 800-arm_v5te_no_ldrd_strd.patch │ │ ├── 810-arm-softfloat-libgcc.patch │ │ ├── 820-libgcc_pic.patch │ │ ├── 830-arm_unbreak_armv4t.patch │ │ ├── 840-armv4_pass_fix-v4bx_to_ld.patch │ │ ├── 850-use_shared_libgcc.patch │ │ ├── 860-uclibc_use_eh_frame.patch │ │ ├── 870-ppc_no_crtsavres.patch │ │ ├── 880-no_java_section.patch │ │ ├── 900-bad-mips16-crt.patch │ │ ├── 910-mbsd_multi.patch │ │ └── 920-specs_nonfatal_getenv.patch ├── lttng-modules │ ├── Makefile │ └── patches │ │ └── 001-mm_page_alloc_extfrag.patch ├── lttng-tools │ └── Makefile └── patch │ └── Makefile ├── ipv6 ├── aiccu │ ├── Makefile │ ├── files │ │ ├── aiccu.hotplug │ │ └── aiccu.sh │ └── patches │ │ ├── 100-cross_compile.patch │ │ ├── 200-add_dn_skipname.patch │ │ ├── 300-resolver-uclibc.patch │ │ ├── 400-musl-compat.patch │ │ └── 500-gnutls_3.4.patch └── tayga │ ├── Makefile │ ├── files │ ├── tayga-proto.sh │ ├── tayga.hotplug │ └── tayga.sh │ └── patches │ ├── 001-configure_unset_CFLAGS.patch │ └── 002-bigendian_wrong_checksum.patch ├── kernel └── exfat-nofuse │ └── Makefile ├── lang ├── dkjson │ └── Makefile ├── erlang │ ├── Makefile │ └── patches │ │ ├── 101-emulator_includes.patch │ │ ├── 102-musl_compat.patch │ │ └── 103-disable_emacs.patch ├── ghostscript │ ├── Makefile │ └── patches │ │ ├── 0001-subconfig-options.patch │ │ ├── 0002-ghostscript-9.05-configure-endian.patch │ │ ├── 0003-ghostscript-9.05-cross.patch │ │ └── 0004-cross-compile-host-prog-fix.patch ├── jamvm │ └── Makefile ├── jre │ ├── Makefile │ └── files │ │ └── jre-profile ├── json4lua │ └── Makefile ├── lpeg │ └── Makefile ├── lua-bencode │ └── Makefile ├── lua-cjson │ └── Makefile ├── lua-copas │ ├── Makefile │ └── patches │ │ └── makefile.patch ├── lua-coxpcall │ ├── Makefile │ └── patches │ │ └── config.patch ├── lua-lzlib │ ├── Makefile │ └── patches │ │ └── 001-allow_optim_flags.patch ├── lua-md5 │ ├── Makefile │ └── patches │ │ ├── config.patch │ │ └── makefile.patch ├── lua-mobdebug │ └── Makefile ├── lua-mosquitto │ └── Makefile ├── lua-penlight │ └── Makefile ├── lua-rings │ ├── Makefile │ └── patches │ │ ├── config.patch │ │ └── makefile.patch ├── lua-rs232 │ └── Makefile ├── lua-sha2 │ ├── Makefile │ └── patches │ │ └── 001-makefile.patch ├── lua-wsapi │ └── Makefile ├── lua-xavante │ └── Makefile ├── luabitop │ └── Makefile ├── luaexpat │ ├── Makefile │ └── files │ │ └── compat-5.1r5 │ │ ├── compat-5.1.c │ │ ├── compat-5.1.h │ │ └── compat-5.1.lua ├── luafilesystem │ └── Makefile ├── luai2c │ └── Makefile ├── lualanes │ ├── Makefile │ └── patches │ │ └── 100-musl-compat.patch ├── luaposix │ ├── Makefile │ └── patches │ │ ├── 100-eglibc-compat.patch │ │ ├── 101-disable-curses.patch │ │ └── 102-disable-compat-deprecated.diff ├── luarocks │ ├── Makefile │ └── patches │ │ └── 01_dont_modify_bin_shebang.diff ├── luasec │ ├── Makefile │ └── patches │ │ └── 100-luasocket-Makefile.patch ├── luasoap │ └── Makefile ├── luasocket │ ├── Makefile │ └── patches │ │ └── 0001-Add-interface-support.patch ├── luasql │ └── Makefile ├── lzmq │ └── Makefile ├── micropython-lib │ └── Makefile ├── micropython │ └── Makefile ├── node-arduino-firmata │ ├── Makefile │ ├── files │ │ └── usr │ │ │ └── lib │ │ │ └── node │ │ │ └── arduino-firmata │ │ │ └── lib │ │ │ └── arduino-firmata.js │ └── patches │ │ └── 000-new-serialport.patch ├── node-cylon │ ├── Makefile │ └── patches │ │ └── 0001-serialport.patch ├── node-hid │ ├── Makefile │ └── patches │ │ └── 000-compile.patch ├── node-serialport │ ├── Makefile │ └── patches │ │ └── package.json.patch ├── node │ ├── Makefile │ └── patches │ │ ├── 001-mips-no-fpu.patch │ │ ├── 002-addr_info.patch │ │ └── 003-path.patch ├── perl-cgi │ └── Makefile ├── perl-compress-bzip2 │ └── Makefile ├── perl-dbi │ └── Makefile ├── perl-device-serialport │ └── Makefile ├── perl-device-usb │ ├── Makefile │ ├── README.patches │ └── patches │ │ ├── 100-fix_buildsystem.patch │ │ ├── 110-just_assume_libusb_is_there.diff │ │ ├── 120-use_libusb_0_1.patch │ │ ├── 130-provide-proper-library-paths.patch │ │ └── 140-avoid-libusb-name-conflicts.patch ├── perl-encode-locale │ └── Makefile ├── perl-file-listing │ └── Makefile ├── perl-file-sharedir-install │ └── Makefile ├── perl-html-form │ └── Makefile ├── perl-html-parser │ └── Makefile ├── perl-html-tagset │ └── Makefile ├── perl-html-tree │ └── Makefile ├── perl-http-cookies │ └── Makefile ├── perl-http-daemon │ └── Makefile ├── perl-http-date │ └── Makefile ├── perl-http-message │ └── Makefile ├── perl-http-negotiate │ └── Makefile ├── perl-http-server-simple │ └── Makefile ├── perl-inline-c │ ├── Makefile │ └── patches │ │ ├── 100-inline_c-no_compile_hack.patch │ │ └── 110-inline_c-make_system_typemap_overridable.patch ├── perl-inline │ └── Makefile ├── perl-io-html │ └── Makefile ├── perl-lockfile-simple │ └── Makefile ├── perl-lwp-mediatypes │ └── Makefile ├── perl-net-http │ └── Makefile ├── perl-net-telnet │ └── Makefile ├── perl-parse-recdescent │ └── Makefile ├── perl-sub-uplevel │ └── Makefile ├── perl-test-harness │ └── Makefile ├── perl-test-warn │ └── Makefile ├── perl-uri │ └── Makefile ├── perl-www-curl │ ├── Makefile │ └── patches │ │ ├── 100-perl-www-curl_disable_curl-config_hack.patch │ │ └── 200-fix_default_lflags.patch ├── perl-www-mechanize │ └── Makefile ├── perl-www-robotrules │ └── Makefile ├── perl-www │ └── Makefile ├── perl-xml-parser │ ├── Makefile │ └── patches │ │ ├── 010-xml-parser-expat-use-ppport.h │ │ └── 020-xml-parser-expat-lib-inc-path-anchor.patch ├── perl │ ├── Config.in │ ├── Makefile │ ├── README.patches │ ├── files │ │ ├── README.config │ │ ├── architecture.config │ │ ├── arm.config │ │ ├── armeb.config │ │ ├── base.config │ │ ├── i486.config │ │ ├── libc.config │ │ ├── mips.config │ │ ├── mips64.config │ │ ├── mipsel.config │ │ ├── misc.config │ │ ├── perl-run_tests.sh │ │ ├── perlconfig.pl │ │ ├── powerpc.config │ │ ├── signal.config │ │ ├── threads.config │ │ ├── version.config │ │ └── x86_64.config │ ├── patches │ │ ├── 010-musl-compat.patch │ │ ├── 020-host-libc-dir-moved-debian+derivatives.patch │ │ ├── 100-fix-cross-compile-endianness-detection.patch │ │ ├── 110-always_use_miniperl.patch │ │ ├── 300-add-relink-hack.patch │ │ ├── 700-tie_fetch_count_t-handle_missing_crypt.patch │ │ └── 710-threads_join-skip_ps_on_busybox.patch │ ├── perlbase.mk │ └── perlmod.mk ├── php5-pecl-dio │ ├── Makefile │ └── patches │ │ └── 010-additional-baudrates.patch ├── php5-pecl-libevent │ ├── Makefile │ └── patches │ │ └── 010-libevent2.patch ├── php5-pecl-propro │ └── Makefile ├── php5-pecl-raphf │ └── Makefile ├── php5 │ ├── Makefile │ ├── files │ │ ├── php.ini │ │ ├── php5-fastcgi.config │ │ ├── php5-fastcgi.init │ │ ├── php5-fpm-www.conf │ │ ├── php5-fpm.conf │ │ ├── php5-fpm.config │ │ └── php5-fpm.init │ ├── patches │ │ ├── 101-fix_membar_producer_link_error_gcc3x.patch │ │ ├── 102-debian_patches_use_embedded_timezonedb.patch │ │ ├── 103-debian_patches_use_embedded_timezonedb.patch │ │ ├── 200-ext-opcache-fix-detection-of-shm-mmap.patch │ │ ├── 800-gd-iconv.patch │ │ └── 950-Fix-dl-cross-compiling-issue.patch │ └── pecl.mk ├── python-crcmod │ └── Makefile ├── python-crypto │ ├── Makefile │ └── patches │ │ ├── 001-no-host-paths.patch │ │ └── 002-fix-endianness-detect.patch ├── python-dns │ └── Makefile ├── python-egenix-mx-base │ └── Makefile ├── python-gevent │ ├── Makefile │ └── patches │ │ ├── 100-cross-compile-fix.patch │ │ └── 200-dependency-download-issue.patch ├── python-greenlet │ └── Makefile ├── python-imglib │ ├── Makefile │ └── patches │ │ ├── 010-cross-compile.patch │ │ └── 020-freetype-header-include.patch ├── python-ldap │ ├── Makefile │ └── patches │ │ └── 010-setup_cfg.patch ├── python-mysql │ ├── Makefile │ └── patches │ │ └── 010-threadsafe.patch ├── python-pip │ └── Makefile ├── python-psycopg2 │ └── Makefile ├── python-pyserial │ └── Makefile ├── python-setuptools │ ├── Makefile │ └── patches │ │ ├── 0001-remove-windows-support.patch │ │ └── 0002-fix-pyvenv-environment-get.patch ├── python-yaml │ └── Makefile ├── python │ ├── Makefile │ ├── files │ │ ├── config.site │ │ ├── python-package-codecs.mk │ │ ├── python-package-compiler.mk │ │ ├── python-package-ctypes.mk │ │ ├── python-package-db.mk │ │ ├── python-package-decimal.mk │ │ ├── python-package-distutils.mk │ │ ├── python-package-email.mk │ │ ├── python-package-gdbm.mk │ │ ├── python-package-logging.mk │ │ ├── python-package-multiprocessing.mk │ │ ├── python-package-ncurses.mk │ │ ├── python-package-openssl.mk │ │ ├── python-package-pydoc.mk │ │ ├── python-package-sqlite3.mk │ │ ├── python-package-unittest.mk │ │ ├── python-package-xml.mk │ │ └── python-package.mk │ └── patches │ │ ├── 001-enable-zlib.patch │ │ ├── 002-do-not-add-include-dirs-when-cross-compiling.patch │ │ ├── 003-do-not-compile-tests-at-build.patch │ │ ├── 004-do-not-write-bytes-codes.patch │ │ ├── 005-fix-libffi-x86-64-configure.patch │ │ ├── 006-remove-debian-multiarch-support.patch │ │ ├── 007-distutils-do-not-adjust-path.patch │ │ ├── 008-distutils-use-python-sysroot.patch │ │ ├── 009-do-not-use-dblib_dir-when-cross-compiling.patch │ │ ├── 010-do-not-add-rt-lib-dirs-when-cross-compiling.patch │ │ └── 011-do-not-prefer-ncursesw.patch ├── python3-bottle │ └── Makefile ├── python3 │ ├── Makefile │ ├── files │ │ ├── config.site │ │ ├── python3-package-asyncio.mk │ │ ├── python3-package-codecs.mk │ │ ├── python3-package-ctypes.mk │ │ ├── python3-package-dbm.mk │ │ ├── python3-package-decimal.mk │ │ ├── python3-package-distutils.mk │ │ ├── python3-package-email.mk │ │ ├── python3-package-gdbm.mk │ │ ├── python3-package-logging.mk │ │ ├── python3-package-lzma.mk │ │ ├── python3-package-multiprocessing.mk │ │ ├── python3-package-ncurses.mk │ │ ├── python3-package-openssl.mk │ │ ├── python3-package-pydoc.mk │ │ ├── python3-package-sqlite3.mk │ │ ├── python3-package-unittest.mk │ │ ├── python3-package-xml.mk │ │ └── python3-package.mk │ └── patches │ │ ├── 001-enable-zlib.patch │ │ ├── 002-do-not-add-include-dirs-when-cross-compiling.patch │ │ ├── 003-do-not-run-distutils-tests.patch │ │ ├── 004-do-not-write-bytes-codes.patch │ │ ├── 005-fix-libffi-x86-64-configure.patch │ │ ├── 006-remove-debian-multiarch-support.patch │ │ ├── 007-distutils-do-not-adjust-path.patch │ │ ├── 010-do-not-add-rt-lib-dirs-when-cross-compiling.patch │ │ ├── 011-do-not-prefer-ncursesw.patch │ │ ├── 012-disable-wcsftime-detection.patch │ │ ├── 013-make-freeze-import-lib-into-an-override-able-var.patch │ │ ├── 014-remove-platform-so-suffix.patch │ │ └── 015-abort-on-failed-modules.patch ├── ruby │ ├── Makefile │ ├── files │ │ └── ruby │ ├── patches │ │ └── 001-rdoc-remove_gems_dep.patch │ ├── ruby_find_pkgsdeps │ └── ruby_missingfiles ├── simplejson │ └── Makefile ├── uuid │ └── Makefile └── vala │ └── Makefile ├── libs ├── alsa-lib │ ├── Makefile │ └── patches │ │ ├── 001-link_fix.patch │ │ ├── 002-remove_cross_compile_guess.patch │ │ └── 005-fix_include_file_redirect_warnings.patch ├── apr-util │ ├── Makefile │ └── patches │ │ └── 001-automake-compat.patch ├── apr │ ├── Makefile │ └── patches │ │ ├── 001-autoconf-compat.patch │ │ ├── 101-fix_apr_time_now.patch │ │ └── 201-upgrade-and-fix-1.5.1.patch ├── avahi │ ├── Makefile │ ├── files │ │ ├── avahi-daemon.conf │ │ ├── avahi-daemon.init │ │ ├── service-http │ │ └── service-ssh │ └── patches │ │ └── 010-step_back_autotools-no-gettext.patch ├── boost │ └── Makefile ├── c-ares │ └── Makefile ├── check │ └── Makefile ├── classpath │ ├── Makefile │ └── patches │ │ └── 010-double-memleak.patch ├── confuse │ └── Makefile ├── cyrus-sasl │ └── Makefile ├── db47 │ ├── Makefile │ └── patches │ │ ├── 010-patch.4.7.25.1.patch │ │ ├── 020-patch.4.7.25.2.patch │ │ ├── 030-patch.4.7.25.3.patch │ │ ├── 040-patch.4.7.25.4.patch │ │ └── 100-repmgr-format-security.patch ├── dmx_usb_module │ ├── Makefile │ └── patches │ │ └── 001-dmx_usb_Makefile.patch ├── dtndht │ ├── Makefile │ └── patches │ │ └── 001-musl_header.patch ├── engine_pkcs11 │ └── Makefile ├── expat │ └── Makefile ├── faad2 │ ├── Config.in │ └── Makefile ├── fcgi │ ├── Makefile │ └── patches │ │ ├── 100-fcgio-int-type-fix.patch │ │ ├── 110-no_examples.patch │ │ └── 120-stdio.patch ├── fftw3 │ ├── Makefile │ └── patches │ │ └── 001-makefile.patch ├── file │ └── Makefile ├── flac │ ├── Makefile │ └── patches │ │ ├── 001-no-docs-and-examples.patch │ │ ├── 002-no-utility.patch │ │ └── 010-automake-compat.patch ├── freetype │ └── Makefile ├── gdbm │ └── Makefile ├── giflib │ └── Makefile ├── glib2 │ ├── Makefile │ └── patches │ │ ├── 001-automake-compat.patch │ │ └── 100-fix-gio-linking.patch ├── glpk │ └── Makefile ├── gnutls │ ├── Config.in │ └── Makefile ├── gperf │ └── Makefile ├── hidapi │ ├── Makefile │ └── patches │ │ └── 010-add-iconv-linkage.patch ├── hiredis │ └── Makefile ├── ibrcommon │ └── Makefile ├── ibrdtn │ └── Makefile ├── ijs │ └── Makefile ├── intltool │ └── Makefile ├── jansson │ └── Makefile ├── jbigkit │ ├── Makefile │ └── patches │ │ └── makefile-fix.patch ├── lcms2 │ └── Makefile ├── ldns │ └── Makefile ├── libaio │ ├── Makefile │ └── patches │ │ ├── 001_arches.patch │ │ ├── 002_arches_sh.patch │ │ ├── 003_arches_sparc64.patch │ │ ├── 004_arches_x32.patch │ │ ├── 005_arches_mips.patch │ │ └── 006_arches_mips_fix_padding.patch ├── libantlr3c │ └── Makefile ├── libao │ └── Makefile ├── libarchive │ └── Makefile ├── libartnet │ ├── Makefile │ └── patches │ │ └── 001-bswap_16.patch ├── libaudiofile │ └── Makefile ├── libavl │ ├── Makefile │ └── patches │ │ └── 010-update_GNUmakefile.patch ├── libcanfestival │ ├── Makefile │ └── patches │ │ ├── 001-sigval-ref-fix.patch │ │ └── 002-makefile-gcc-linker.patch ├── libcap │ ├── Makefile │ └── patches │ │ └── 100-portability.patch ├── libcoap │ └── Makefile ├── libdaemon │ ├── Makefile │ └── patches │ │ └── 001-daemon_set_verbosity.patch ├── libdaq │ ├── Makefile │ └── patches │ │ ├── 001-compile.patch │ │ └── 100-musl-compat.patch ├── libdbi-drivers │ ├── Makefile │ └── patches │ │ └── 001_libsqlite3_fix.patch ├── libdbi │ └── Makefile ├── libdmapsharing │ ├── Makefile │ └── patches │ │ ├── 001-disable_pixbuf.patch │ │ ├── 002-disable_tests.patch │ │ └── 003-make_unit_test_optional.patch ├── libdnet │ ├── Makefile │ └── patches │ │ ├── 001-compile.patch │ │ └── 002-config.patch ├── libesmtp │ └── Makefile ├── libev │ └── Makefile ├── libevdev │ ├── Makefile │ └── patches │ │ └── 010-no-clock-monotonic-raw-in-uclibc.patch ├── libevent │ └── Makefile ├── libevhtp-1.1 │ ├── Makefile │ └── patches │ │ └── 010-CMakeLists-fixes.patch ├── libevhtp │ ├── Makefile │ └── patches │ │ └── 010-enable-shared-object-building.patch ├── libexif │ ├── Makefile │ └── patches │ │ └── 100-no_doc.patch ├── libextractor │ ├── Makefile │ └── patches │ │ └── 001-backport-support-for-giflib-5-1.patch ├── libffi │ ├── Makefile │ └── patches │ │ └── mips32-o32-soft-float-fixup.patch ├── libftdi │ ├── Makefile │ └── patches │ │ ├── 100-fix-x86_64-build.patch │ │ └── 101-fix-cmake-version-packagekit.patch ├── libftdi1 │ ├── Makefile │ └── patches │ │ └── 100-fix-x86_64-build.patch ├── libgcrypt │ ├── Makefile │ └── patches │ │ └── 001-no_docs_tests.patch ├── libgd │ ├── Makefile │ └── patches │ │ ├── 101-gdlib-config.patch │ │ └── 200-uclibc-ceill.patch ├── libgee │ ├── Makefile │ └── patches │ │ └── libgee-0.18.0-no-introspection.patch ├── libgpg-error │ ├── Makefile │ └── patches │ │ └── 0001-mkerrcodes-cppflags-fix.patch ├── libhttp-parser │ └── Makefile ├── libical │ └── Makefile ├── libid3tag │ └── Makefile ├── libidn │ ├── Makefile │ └── patches │ │ ├── 002-disable-po-docs-examples.patch │ │ └── 010-fix-idn-error-usage.patch ├── libimobiledevice │ └── Makefile ├── libinput │ ├── Makefile │ └── patches │ │ └── 001-no-locale.patch ├── libjpeg │ └── Makefile ├── liblo │ ├── Makefile │ └── patches │ │ └── 001-fix-musl-include.patch ├── liblz4 │ └── Makefile ├── libmad │ ├── Makefile │ └── patches │ │ └── 001-mips_removal_h_constraint.patch ├── libmcrypt │ └── Makefile ├── libmicrohttpd │ ├── Makefile │ └── patches │ │ └── 001-bump-to-r35864.patch ├── libmms │ └── Makefile ├── libmodbus │ └── Makefile ├── libmpdclient │ └── Makefile ├── libmpeg2 │ ├── Makefile │ └── patches │ │ ├── 101-ppc_no_altivec.patch │ │ └── 102-arm_data_preload_check.patch ├── libmraa │ ├── Makefile │ └── patches │ │ ├── 0001-base.patch │ │ ├── 0002-add-mips-support.patch │ │ ├── 0003-uart.patch │ │ └── 0004-fixes.patch ├── libnatpmp │ ├── Makefile │ └── patches │ │ └── 001-install_declspec.patch ├── libnet-1.2.x │ ├── Makefile │ └── patches │ │ └── 100-musl-compat.patch ├── libnetfilter-acct │ └── Makefile ├── libnfc │ └── Makefile ├── libogg │ └── Makefile ├── liboil │ └── Makefile ├── liboping │ ├── Makefile │ └── patches │ │ └── 01-no-werror.patch ├── libowfat │ ├── Makefile │ └── patches │ │ └── 001-fixbuild.patch ├── libp11 │ └── Makefile ├── libpam │ ├── Makefile │ ├── files │ │ ├── pam.conf │ │ └── pam.d │ │ │ ├── common-account │ │ │ ├── common-auth │ │ │ ├── common-password │ │ │ ├── common-session │ │ │ ├── common-session-noninteractive │ │ │ └── other │ └── patches │ │ ├── 0001-build-always-use-lib-instead-of-lib64.patch │ │ ├── 0002-build-ignore-pam_rhosts-if-neither-ruserok-nor-ruser.patch │ │ ├── 0003-build-ignore-pam_lastlog-when-logwtmp-is-not-availab.patch │ │ ├── 0004-build-fix-build-when-crypt-is-not-part-of-crypt_libs.patch │ │ ├── 0005-build-fix-doc-build.patch │ │ ├── 0006-pam_unix-fix-compilation-in-case-rpc-rpc.h-is-missin.patch │ │ └── 0007-Check-if-innetgr-is-available-at-compile-time.patch ├── libplist │ └── Makefile ├── libpng │ ├── Makefile │ └── patches │ │ └── 100-config_fix.patch ├── libradcli │ ├── Config.in │ └── Makefile ├── libsamplerate │ └── Makefile ├── libsearpc │ └── Makefile ├── libseccomp │ ├── Makefile │ └── patches │ │ └── 100-dont-use-linux-prctl.h-with-musl.patch ├── libshout │ ├── Makefile │ └── patches │ │ ├── 120-vorbis-c.patch │ │ └── 140-no_example_doc_win32.patch ├── libsigc++ │ ├── Makefile │ └── patches │ │ └── 001-no_doc_tests_examples.patch ├── libsndfile │ ├── Makefile │ └── patches │ │ └── 001-automake-compat.patch ├── libsodium │ └── Makefile ├── libsoup │ └── Makefile ├── libsoxr │ └── Makefile ├── libssh2 │ └── Makefile ├── libstrophe │ ├── Config.in │ └── Makefile ├── libtasn1 │ └── Makefile ├── libtheora │ ├── Makefile │ └── patches │ │ ├── 001-no_docs_tests.patch │ │ └── 002-no_sdl_check.patch ├── libtorrent │ ├── Makefile │ └── patches │ │ ├── 100-fix_cross_compile.patch │ │ └── 120-fix-ipv6_socket_datagram.patch ├── libudns │ ├── Makefile │ └── patches │ │ └── 100-cross-compile-dirty-fix.patch ├── libuecc │ └── Makefile ├── libugpio │ └── Makefile ├── libunistring │ └── Makefile ├── libupm │ ├── Makefile │ └── patches │ │ ├── 001-version.patch │ │ ├── 002-at42qt1070-id.patch │ │ └── 003-lsm303-args.patch ├── libupnp │ └── Makefile ├── libupnpp │ └── Makefile ├── liburcu │ └── Makefile ├── libusbmuxd │ └── Makefile ├── libuv │ └── Makefile ├── libuvc │ └── Makefile ├── libv4l │ ├── Makefile │ └── patches │ │ ├── 001-no-shm_open-fix.patch │ │ ├── 005-test_for_posix_ioctl.patch │ │ ├── 020-add-missing-includes.patch │ │ └── 030-musl_compatibility.patch ├── libvorbis │ └── Makefile ├── libvorbisidec │ └── Makefile ├── libvpx │ └── Makefile ├── libwebsockets │ └── Makefile ├── libxerces-c │ └── Makefile ├── libxml2 │ ├── Makefile │ └── patches │ │ └── 0001-threads-use-forward-declarations-only-for-glibc-fixe.patch ├── libxslt │ └── Makefile ├── libzdb │ ├── Makefile │ └── patches │ │ ├── 010-cross-compile-fixes.patch │ │ └── 020-filterh-use-host-built-version.patch ├── lttng-ust │ ├── Makefile │ └── patches │ │ ├── 001-no_docs_tests.patch │ │ └── 002-examples.patch ├── mtdev │ └── Makefile ├── mxml │ ├── Makefile │ └── patches │ │ └── 001-targets.patch ├── nacl │ ├── Makefile │ └── do-openwrt ├── neon │ └── Makefile ├── opencv │ ├── Makefile │ └── README.md ├── openldap │ ├── Makefile │ ├── files │ │ └── ldap.init │ └── patches │ │ ├── 001-automake-compat.patch │ │ ├── 020-autofs-schema.patch │ │ └── 750-no-strip.patch ├── opus │ └── Makefile ├── p11-kit │ ├── Makefile │ └── files │ │ └── opensc.module ├── pcre │ ├── Makefile │ └── patches │ │ └── 100-pcre-cve-2015-3210.patch ├── postgresql │ ├── Makefile │ ├── files │ │ ├── postgresql.config │ │ └── postgresql.init │ └── patches │ │ ├── 001-configure_fixes.patch │ │ ├── 200-ranlib.patch │ │ └── 800-busybox-default-pager.patch ├── protobuf-c │ └── Makefile ├── protobuf │ ├── Makefile │ └── patches │ │ ├── 001-mipseb-compile.patch │ │ └── 003-mips2andHigher-compile.patch ├── pthsem │ ├── Makefile │ └── patches │ │ ├── 001-linux3x-fix.patch │ │ └── 002-fix-signal.h ├── qrencode │ ├── Makefile │ └── patches │ │ └── 001-disable-png.patch ├── sbc │ └── Makefile ├── speex │ └── Makefile ├── sqlite3 │ └── Makefile ├── tcp_wrappers │ ├── Makefile │ └── patches │ │ ├── 001-debian_subset.patch │ │ ├── 002-opt_cflags.patch │ │ ├── 003-scaffold_malloc.patch │ │ ├── 004-ipv4_prefix.patch │ │ └── 005-no--lnsl-on-musl.patch ├── tdb │ ├── Makefile │ └── patches │ │ └── 001-printf-fix.patch ├── tiff │ ├── Makefile │ └── patches │ │ ├── 001-autoconf-compat.patch │ │ ├── 010-CVE-2012-4564.patch │ │ ├── 011-CVE-2013-1960.patch │ │ ├── 012-CVE-2013-1961.patch │ │ ├── 013-CVE-2013-4231.patch │ │ ├── 014-CVE-2013-4232.patch │ │ ├── 015-CVE-2013-4244.patch │ │ ├── 016-CVE-2013-4243.patch │ │ └── 017-CVE-2014-9330.patch ├── tinycdb │ ├── Makefile │ └── patches │ │ └── 100-Makefile.patch ├── toxcore │ └── Makefile ├── unixodbc │ ├── Makefile │ └── files │ │ └── unixodbc_conf.h ├── vips │ ├── Makefile │ └── patches │ │ └── 001-no_cpp.patch ├── xmlrpc-c │ ├── Makefile │ └── patches │ │ ├── 001-config.mk.in.patch │ │ └── 002-automake-compat.patch ├── yajl │ ├── Makefile │ └── patches │ │ ├── 100-link-reformatter-uclibc-libm.patch │ │ └── 101-link-perf-uclibc-libm.patch ├── yaml │ └── Makefile └── zmq │ ├── Makefile │ └── patches │ ├── 010-disable_pedantic_on_linux_with_ulibc++.patch │ ├── 020-map_with_const_string_with_ublic++.patch │ ├── 030-streamoff_missing_with_ulibc++.patch │ └── 100-fix-cxx-include-order.patch ├── mail ├── alpine │ ├── Makefile │ └── patches │ │ └── 100-no-openssl-check-cross-compile.patch ├── bogofilter │ ├── Makefile │ └── files │ │ └── postfix-bogofilter ├── dovecot │ ├── Makefile │ ├── files │ │ └── dovecot.init │ └── patches │ │ └── 001-configure_in.patch ├── fdm │ ├── Config.in │ ├── Makefile │ ├── files │ │ └── etc │ │ │ └── fdm.conf │ ├── patches │ │ ├── 001-base64-fix.patch │ │ ├── 002-base64-fix.patch │ │ ├── 010-musl_WAIT_ANY.patch │ │ ├── 020-musl_GLOB_BRACE.patch │ │ └── 030-musl_ACCESSPERMS.patch │ └── src │ │ └── compat │ │ ├── b64_ntop.c │ │ └── b64_pton.c ├── mailman │ ├── Makefile │ ├── files │ │ └── mailman.init │ └── patches │ │ ├── 100-postfix.patch │ │ ├── 200-nohostdnspython.patch │ │ ├── 300-targetpython.patch │ │ └── 400-modules.patch ├── mailsend │ └── Makefile ├── msmtp │ └── Makefile ├── nail │ ├── Makefile │ └── patches │ │ └── 100-handle-openssl-without-sslv2.patch ├── postfix │ ├── Makefile │ ├── files │ │ ├── main.cf.default │ │ └── postfix.init │ └── patches │ │ ├── 100-fsstat.patch │ │ ├── 200-manpages.patch │ │ ├── 300-bdb_hash_segfault.patch │ │ ├── 400-cdb.patch │ │ ├── 500-crosscompile.patch │ │ ├── 600-nopostconf.patch │ │ ├── 700-defaultconfig.patch │ │ └── 800-fmt.patch └── ssmtp │ ├── Makefile │ └── patches │ └── 002-fix_pointer.patch ├── multimedia ├── crtmpserver │ ├── Makefile │ ├── files │ │ └── crtmpserver.init │ └── patches │ │ ├── 010-link-crypt-for-lua.patch │ │ ├── 020-add-rpath.patch │ │ ├── 030-default-config.patch │ │ ├── 040-use-select.patch │ │ ├── 050-add-missing-make-defines.patch │ │ ├── 060-add-missing-includes.patch │ │ ├── 070-missing-include-gcc-47.patch │ │ └── 080-musl-uint32_t.patch ├── ffmpeg │ ├── Config.in │ └── Makefile ├── fswebcam │ └── Makefile ├── grilo-plugins │ └── Makefile ├── grilo │ └── Makefile ├── gst1-libav │ ├── Config.in │ └── Makefile ├── gst1-plugins-bad │ ├── Makefile │ └── patches │ │ └── 000-gettext.patch ├── gst1-plugins-base │ ├── Makefile │ └── patches │ │ ├── 001-no_docs.patch │ │ ├── 002-no_tests.patch │ │ └── 003-no_translations.patch ├── gst1-plugins-good │ ├── Makefile │ └── patches │ │ ├── 001-no_docs.patch │ │ ├── 002-no_tests.patch │ │ └── 003-no_translations.patch ├── gst1-plugins-ugly │ ├── Makefile │ └── patches │ │ ├── 001-no_docs.patch │ │ ├── 002-no_tests.patch │ │ └── 003-no_translations.patch ├── gstreamer1 │ ├── Makefile │ └── patches │ │ ├── 001-no_docs.patch │ │ ├── 002-no_tests.patch │ │ ├── 003-no_translations.patch │ │ └── 010-gstplugin_use_lazy_symbol_binding.patch ├── icecast │ ├── Makefile │ ├── files │ │ └── icecast.init │ ├── libvorbisidec.mk │ └── patches │ │ ├── 001-icecast-2.4.0-tremor.patch │ │ └── 010-fix_libcurl_test_crap.patch ├── ices │ └── Makefile ├── lcdgrilo │ ├── Makefile │ └── files │ │ └── lcdgrilo.init ├── minidlna │ ├── Makefile │ ├── files │ │ ├── minidlna.config │ │ └── minidlna.init │ └── patches │ │ └── 010-libav-fix.patch ├── mjpg-streamer │ ├── Config.in │ ├── Makefile │ ├── files │ │ ├── mjpg-streamer.config │ │ ├── mjpg-streamer.hotplug │ │ └── mjpg-streamer.init │ └── patches │ │ ├── 005-musl_compatibility.patch │ │ ├── 010-enable_additional_plugins.patch │ │ ├── 020-remove_gcc_debug_options.patch │ │ ├── 030-allow_16_char_device_names.patch │ │ ├── 040-Buffer-the-bytesused-variable-from-struct-v4l2_buffe.patch │ │ ├── 041-Stop-leaking-data-via-struct-v4l2_buffer.patch │ │ ├── 050-fix-yuv-capture.patch │ │ └── 060-fix-sigtrap-in-v4l2uvc.patch ├── motion │ ├── Makefile │ └── patches │ │ └── 100-musl-compat.patch ├── oggfwd │ └── Makefile ├── tvheadend │ ├── Config.in │ ├── Makefile │ └── files │ │ ├── tvheadend.config │ │ └── tvheadend.init └── xupnpd │ ├── Makefile │ ├── files │ └── xupnpd.init │ └── patches │ ├── 100-default_config.patch │ └── 101-root_dir_param.patch ├── net ├── adblock │ ├── Makefile │ └── files │ │ ├── etc │ │ └── adblock │ │ │ ├── README.md │ │ │ ├── adblock.blacklist │ │ │ ├── adblock.conf │ │ │ ├── adblock.whitelist │ │ │ └── samples │ │ │ ├── dhcp.config.sample │ │ │ ├── dnsmasq.conf.sample │ │ │ ├── firewall.user.sample │ │ │ ├── rc.local.sample │ │ │ └── root.crontab.sample │ │ ├── usr │ │ └── bin │ │ │ ├── adblock-helper.sh │ │ │ └── adblock-update.sh │ │ └── www │ │ └── adblock │ │ ├── adblock.html │ │ ├── adblock.png │ │ └── index.html ├── aircrack-ng │ └── Makefile ├── announce │ └── Makefile ├── apache │ ├── Makefile │ └── patches │ │ ├── 001-Makefile_in.patch │ │ ├── 002-test_char_h.patch │ │ ├── 003-logdir_fix.patch │ │ ├── 004-pidfile_fix.patch │ │ └── 005-httpd_conf.patch ├── apcupsd │ ├── Makefile │ ├── files │ │ ├── apccontrol │ │ ├── apcupsd.conf │ │ ├── apcupsd.css │ │ ├── apcupsd.init │ │ ├── apcupsd_mail.conf │ │ ├── changeme │ │ ├── commfailure │ │ ├── commok │ │ ├── hosts.conf │ │ ├── multimon.conf │ │ ├── offbattery │ │ └── onbattery │ └── patches │ │ └── 010-fix-usb.patch ├── apinger │ ├── Makefile │ ├── files │ │ └── apinger.init │ └── patches │ │ ├── 001-autoreconf.patch │ │ ├── 002-run_as_user.patch │ │ └── 003-no_docs.patch ├── aria2 │ ├── Config.in │ └── Makefile ├── atftp │ ├── Makefile │ └── patches │ │ └── 01-missing-u_char-type-patch.patch ├── bcp38 │ ├── Makefile │ └── files │ │ ├── bcp38.config │ │ ├── bcp38.defaults │ │ └── run.sh ├── bind │ ├── Makefile │ ├── files │ │ ├── bind │ │ │ ├── db.0 │ │ │ ├── db.127 │ │ │ ├── db.255 │ │ │ ├── db.local │ │ │ ├── db.root │ │ │ └── named.conf.example │ │ └── named.init │ └── patches │ │ ├── 001-no-tests.patch │ │ └── 002-autoconf-ar-fix.patch ├── bmon │ └── Makefile ├── bridge-utils │ ├── Makefile │ └── patches │ │ ├── 001-libbridge_cflags.patch │ │ ├── 010-fix_struct_in6_addr_usage.patch │ │ └── 100-musl-compat.patch ├── bwm-ng │ ├── Config.in │ └── Makefile ├── cgi-io │ ├── Makefile │ └── src │ │ ├── CMakeLists.txt │ │ ├── main.c │ │ ├── multipart_parser.c │ │ └── multipart_parser.h ├── chaosvpn │ ├── Makefile │ └── files │ │ ├── chaosvpn.hotplug │ │ └── chaosvpn.init ├── chrony │ ├── Makefile │ └── files │ │ ├── chrony.conf │ │ ├── chrony.config │ │ ├── chrony.hotplug │ │ └── chronyd.init ├── clamav │ ├── Makefile │ ├── files │ │ ├── bytecode.cvd │ │ ├── clamav.config │ │ ├── clamav.init │ │ ├── freshclam.config │ │ └── freshclam.init │ └── patches │ │ └── 001-compile.patch ├── coova-chilli │ ├── Config.in │ ├── Makefile │ ├── files │ │ ├── chilli.config │ │ ├── chilli.firewall │ │ ├── chilli.hotplug │ │ └── chilli.init │ └── patches │ │ ├── 100-fix-sysinfo-redeclaration.patch │ │ ├── 200-fix_compile_kmod.patch │ │ ├── 201-fix_dereferencing_pointers.patch │ │ └── 300-fix-compile-with-cyassl.patch ├── cshark │ └── Makefile ├── ctorrent-svn │ ├── Makefile │ └── patches │ │ ├── 100-compile-fix.patch │ │ ├── 300-negative.patch │ │ └── 400-musl-compat.patch ├── ctorrent │ ├── Makefile │ └── patches │ │ ├── 100-CVE-2009-1759.patch │ │ ├── 100-negative-ints.patch │ │ └── 200-musl-compat.patch ├── dansguardian │ ├── Makefile │ ├── files │ │ ├── dansguardian.config │ │ ├── dansguardian.init │ │ └── dansguardianf1.conf │ └── patches │ │ └── 001-compile.patch ├── davfs2 │ ├── Makefile │ ├── files │ │ └── davfs2.conf │ └── patches │ │ ├── 010-main_code_fix.patch │ │ └── 100-musl-compat.patch ├── ddns-scripts │ ├── Makefile │ ├── files │ │ ├── ddns.config │ │ ├── ddns.hotplug │ │ ├── ddns.init │ │ ├── dynamic_dns_functions.sh │ │ ├── dynamic_dns_lucihelper.sh │ │ ├── dynamic_dns_updater.sh │ │ ├── services │ │ ├── services_ipv6 │ │ ├── tld_names.dat │ │ ├── update_CloudFlare.sh │ │ ├── update_No-IP.com.sh │ │ └── update_nsupdate.sh │ └── samples │ │ ├── ddns.config_sample │ │ ├── getlocalip_sample.sh │ │ └── update_sample.sh ├── dhcpcd │ ├── Makefile │ ├── files │ │ └── dhcpcd.init │ └── patches │ │ └── 001-fix-musl.patch ├── dmapd │ ├── Makefile │ ├── files │ │ └── dmapd.init │ └── patches │ │ ├── 001-dmapd_conf.patch │ │ └── 002-make_unit_test_optionnal.patch ├── dnscrypt-proxy │ ├── Makefile │ └── files │ │ ├── dnscrypt-proxy.config │ │ └── dnscrypt-proxy.init ├── e2guardian │ ├── Makefile │ └── files │ │ ├── e2guardian.config │ │ ├── e2guardian.init │ │ └── e2guardianf1.conf ├── emailrelay │ ├── Makefile │ └── files │ │ ├── emailrelay.auth │ │ └── emailrelay.init ├── esniper │ └── Makefile ├── etherwake │ ├── Makefile │ ├── files │ │ ├── etherwake.config │ │ └── etherwake.init │ └── patches │ │ ├── 100-no_ether_hostton.patch │ │ ├── 110-format_security_fix.patch │ │ └── 120-musl-compat.patch ├── ethtool │ ├── Config.in │ └── Makefile ├── fakeidentd │ ├── Makefile │ └── files │ │ └── fakeidentd.init ├── fastd │ ├── Config.in │ ├── Makefile │ ├── files │ │ └── fastd.upgrade │ └── patches │ │ └── 100-musl-compat.patch ├── fossil │ ├── Makefile │ ├── files │ │ ├── fossil.config │ │ └── fossil.init │ └── patches │ │ └── no_https.patch ├── freeradius2 │ ├── Config.in │ ├── Makefile │ ├── files │ │ └── radiusd.init │ └── patches │ │ ├── 001-fix-makefile.patch │ │ ├── 002-config.patch │ │ ├── 004-ldap_configure.patch │ │ ├── 008-honor_ccpflags.patch │ │ └── 010-disbale-openssl-check.patch ├── fwknop │ ├── Config.in │ ├── Makefile │ ├── files │ │ ├── fwknopd │ │ └── fwknopd.init │ └── patches │ │ └── 001-add-keygen.patch ├── git │ ├── Makefile │ └── patches │ │ ├── 100-convert_builtin.patch │ │ ├── 200-disable_fasthash.patch │ │ ├── 300-configure_for_crosscompiling │ │ └── 400-imapsend_without_curl.patch ├── gnunet │ ├── Makefile │ └── files │ │ ├── gnunet.defaults │ │ ├── gnunet.init │ │ └── gnunet.upgrade ├── gnurl │ ├── Makefile │ └── patches │ │ ├── 100-check_long_long.patch │ │ └── 200-no_docs_tests.patch ├── haproxy │ ├── Makefile │ ├── files │ │ ├── haproxy.cfg │ │ ├── haproxy.hotplug │ │ └── haproxy.init │ └── patches │ │ ├── 0001-BUG-MINOR-log-missing-some-ARGC_-entries-in-fmt_dire.patch │ │ ├── 0002-DOC-usesrc-root-privileges-requirements.patch │ │ ├── 0003-BUILD-ssl-Allow-building-against-libssl-without-SSLv.patch │ │ ├── 0004-DOC-MINOR-fix-OpenBSD-versions-where-haproxy-works.patch │ │ ├── 0005-BUG-MINOR-http-sample-gmtime-localtime-can-fail.patch │ │ ├── 0006-DOC-typo-in-redirect-302-code-meaning.patch │ │ ├── 0007-DOC-mention-that-ms-is-left-padded-with-zeroes.patch │ │ ├── 0008-CLEANUP-.gitignore-ignore-more-test-files.patch │ │ ├── 0009-CLEANUP-.gitignore-finally-ignore-everything-but-wha.patch │ │ ├── 0010-MEDIUM-config-emit-a-warning-on-a-frontend-without-l.patch │ │ ├── 0011-BUG-MEDIUM-counters-ensure-that-src_-inc-clr-_gpc0-c.patch │ │ ├── 0012-DOC-ssl-missing-LF.patch │ │ ├── 0013-DOC-fix-example-of-http-request-using-ssl_fc_session.patch │ │ ├── 0014-BUG-MINOR-http-remove-stupid-HTTP_METH_NONE-entry.patch │ │ ├── 0015-BUG-MAJOR-http-don-t-call-http_send_name_header-afte.patch │ │ └── 0016-BUG-MINOR-tools-make-str2sa_range-report-unresolvabl.patch ├── horst │ └── Makefile ├── htpdate │ ├── Makefile │ ├── files │ │ ├── htpdate.default │ │ └── htpdate.init │ └── patches │ │ └── 100-adjtimex.patch ├── ibrdtn-tools │ └── Makefile ├── ibrdtnd │ ├── Makefile │ └── files │ │ ├── build-config.sh │ │ ├── ibrdtn.init │ │ ├── ibrdtn.uci │ │ ├── mkcontainer.sh │ │ ├── mountcontainer.sh │ │ ├── safety-wrapper.sh │ │ └── systemcheck.sh ├── iodine │ ├── Makefile │ ├── files │ │ ├── iodined.config │ │ └── iodined.init │ └── patches │ │ ├── 010-cross-compile.patch │ │ └── 100-musl-compatibility.patch ├── iotivity │ ├── Makefile │ └── patches │ │ ├── 001-no_unit_test.patch │ │ ├── 002-do-not-chck-for-boost.patch │ │ ├── 004-use-env.patch │ │ ├── 010-big-endian.patch │ │ ├── 011-musl-use-inttypes.patch │ │ ├── 012-connectivity-fix-getnameinfo-call-for-musl-libc.patch │ │ ├── 020-Do-not-set-architecture-specific-flags.patch │ │ ├── 021-add-some-more-architectures.patch │ │ ├── 030-remove-check-for-curl.patch │ │ ├── 140-remove-glib2.patch │ │ └── 200-examples-OICMiddle-try-to-load-security-configuratio.patch ├── ipsec-tools │ ├── Makefile │ ├── files │ │ ├── functions.sh │ │ ├── p1client-down │ │ ├── p1client-up │ │ ├── racoon │ │ ├── racoon.init │ │ └── vpnctl │ └── patches │ │ ├── 001-ipsec-tools-def-psk.patch │ │ ├── 001-no_libfl.patch │ │ ├── 002-patch8-utmp.patch │ │ ├── 003-microsoft-fqdn-in-main.patch │ │ ├── 005-isakmp-fix.patch │ │ ├── 006-linux-3.7-compat.patch │ │ ├── 007-force_have_policy_fwd.patch │ │ ├── 008-racoon-fix_dereference_crash.patch │ │ └── 009-musl-compat.patch ├── irssi │ └── Makefile ├── keepalived │ ├── Makefile │ ├── files │ │ └── keepalived.init │ └── patches │ │ └── 100-musl-compat.patch ├── kismet │ ├── Makefile │ ├── files │ │ ├── kismet.conf │ │ ├── kismet_drone.conf │ │ ├── kismet_drone.config │ │ ├── kismet_drone.init │ │ ├── kismet_server.config │ │ └── kismet_server.init │ └── patches │ │ ├── 010-dont-add-host-include-paths.patch │ │ └── 020-musl-include-fixes.patch ├── knot │ ├── Makefile │ ├── files │ │ ├── knotd.init │ │ └── runtests.sh │ └── patches │ │ ├── 01_strptime_susv3.patch │ │ ├── 02_knot.conf.patch │ │ └── 03_zscanner_tests.patch ├── knxd │ ├── Makefile │ ├── files │ │ ├── knxd.config │ │ └── knxd.init │ └── patches │ │ └── 0099-openwrt.patch ├── kplex │ ├── Makefile │ └── files │ │ └── kplex.init ├── krb5 │ ├── Makefile │ ├── files │ │ └── krb5kdc │ └── patches │ │ └── 001-fix-build.patch ├── l7-protocols │ ├── Makefile │ └── patches │ │ ├── 100-testing_crosscompile.patch │ │ ├── 101-testing-timeit.patch │ │ └── 102-testing-doallspeeds.patch ├── lftp │ └── Makefile ├── lighttpd │ ├── Makefile │ └── files │ │ ├── lighttpd.conf │ │ └── lighttpd.init ├── linknx │ ├── Makefile │ ├── files │ │ ├── linknx.config │ │ ├── linknx.init │ │ └── linknx.xml.dist │ └── patches │ │ ├── 010-musl-compat │ │ └── 012-fix-linknx.cpp ├── lispmob │ └── Makefile ├── lksctp-tools │ └── Makefile ├── luci-app-bcp38 │ ├── Makefile │ └── files │ │ ├── bcp38-cbi.lua │ │ ├── bcp38-controller.lua │ │ └── uci-defaults-bcp38 ├── luci-app-clamav │ ├── Makefile │ └── files │ │ ├── controller │ │ └── clamav-controller.lua │ │ └── model │ │ └── cbi │ │ └── clamav-cbi.lua ├── luci-app-e2guardian │ ├── Makefile │ └── files │ │ ├── e2guardian-cbi.lua │ │ └── e2guardian-controller.lua ├── luci-app-squid │ ├── Makefile │ └── files │ │ ├── squid-cbi.lua │ │ └── squid-controller.lua ├── mac-telnet │ ├── Makefile │ └── files │ │ ├── mactelnet.config │ │ └── mactelnet.init ├── mdnsresponder │ ├── Makefile │ ├── files │ │ ├── mDNSResponder.conf │ │ ├── mDNSResponder.init │ │ └── mdnsd.init │ └── patches │ │ ├── 001-cross_compile.patch │ │ └── 100-linux_fixes.patch ├── memcached │ ├── Makefile │ ├── files │ │ ├── memcached.config │ │ └── memcached.init │ └── patches │ │ ├── 001-musl-compat.patch │ │ └── 100-fix_iov_max.patch ├── miniupnpc │ ├── Makefile │ └── patches │ │ ├── 100-no_minixml_test.patch │ │ └── 200-miniupnpc_desc.patch ├── mosquitto │ ├── Config.in │ ├── Makefile │ └── files │ │ ├── mosquitto.init │ │ └── mosquitto.uci.convert ├── mtr │ ├── Makefile │ └── patches │ │ └── 100-disabled-ipv6-fix.patch ├── mwan3-luci │ ├── Makefile │ └── files │ │ ├── etc │ │ ├── hotplug.d │ │ │ └── iface │ │ │ │ └── 16-mwancustombak │ │ └── uci-defaults │ │ │ └── mwan-luci │ │ └── usr │ │ └── lib │ │ └── lua │ │ └── luci │ │ ├── controller │ │ └── mwan3.lua │ │ ├── model │ │ └── cbi │ │ │ └── mwan │ │ │ ├── advanced_hotplugscript.lua │ │ │ ├── advanced_mwanconfig.lua │ │ │ ├── advanced_networkconfig.lua │ │ │ ├── interface.lua │ │ │ ├── interfaceconfig.lua │ │ │ ├── member.lua │ │ │ ├── memberconfig.lua │ │ │ ├── policy.lua │ │ │ ├── policyconfig.lua │ │ │ ├── rule.lua │ │ │ └── ruleconfig.lua │ │ └── view │ │ ├── admin_status │ │ └── index │ │ │ └── mwan.htm │ │ └── mwan │ │ ├── advanced_diagnostics.htm │ │ ├── advanced_hotplugscript.htm │ │ ├── advanced_mwanconfig.htm │ │ ├── advanced_networkconfig.htm │ │ ├── advanced_troubleshooting.htm │ │ ├── config_css.htm │ │ ├── openwrt_overview_status.htm │ │ ├── overview_detailed.htm │ │ └── overview_interface.htm ├── mwan3 │ ├── Makefile │ └── files │ │ ├── etc │ │ ├── config │ │ │ └── mwan3 │ │ └── hotplug.d │ │ │ └── iface │ │ │ └── 15-mwan3 │ │ └── usr │ │ └── sbin │ │ ├── mwan3 │ │ └── mwan3track ├── nbd │ ├── Makefile │ └── files │ │ ├── nbd-client.conf │ │ ├── nbd-client.init │ │ ├── nbd-server.conf │ │ └── nbd-server.init ├── net-snmp │ ├── Makefile │ ├── files │ │ ├── snmpd.conf │ │ └── snmpd.init │ └── patches │ │ ├── 100-debian-statistics.patch │ │ ├── 110-debian-makefiles.patch │ │ ├── 120-debian-searchdirs.patch │ │ ├── 130-debian-extramibs.patch │ │ ├── 160-no_ldconfig.patch │ │ ├── 170-ldflags.patch │ │ ├── 750-ieee802dot11.patch │ │ ├── 800-format-security.patch │ │ └── 900-musl-compat.patch ├── netatalk │ ├── Makefile │ ├── files │ │ ├── AppleVolumes.default │ │ ├── afpd.conf │ │ └── afpd.init │ └── patches │ │ ├── 001-automake-compat.patch │ │ └── 002-ld_library_path.patch ├── netcat │ ├── Makefile │ └── patches │ │ └── 001-netcat_flag_count.patch ├── netdiscover │ └── Makefile ├── netperf │ ├── Makefile │ └── files │ │ └── netserver.init ├── nfs-kernel-server │ ├── Makefile │ ├── files │ │ ├── nfsd.exports │ │ └── nfsd.init │ └── patches │ │ └── 100-no_malloc_h.patch ├── nginx │ ├── Config.in │ ├── Makefile │ ├── files │ │ └── nginx.init │ └── patches │ │ ├── 101-feature_test_fix.patch │ │ ├── 102-sizeof_test_fix.patch │ │ ├── 103-sys_nerr.patch │ │ └── 200-config.patch ├── ngircd │ ├── Makefile │ └── files │ │ └── ngircd.init ├── nmap │ └── Makefile ├── nsd │ ├── Makefile │ └── files │ │ └── nsd.init ├── ntpclient │ ├── Makefile │ ├── files │ │ ├── ntpclient.config │ │ └── ntpclient.hotplug │ └── patches │ │ └── 100-daemon.patch ├── ntpd │ ├── Makefile │ └── files │ │ ├── ntp.conf │ │ ├── ntpd.hotplug │ │ ├── ntpd.init │ │ └── ntpdate.init ├── ntripcaster │ └── Makefile ├── ntripclient │ ├── Makefile │ └── patches │ │ └── 100-musl-compat.patch ├── ntripserver │ └── Makefile ├── nut │ ├── Config.in │ ├── Makefile │ └── files │ │ ├── nut-monitor.init │ │ ├── nut-server.init │ │ └── nut.service ├── ocserv │ ├── Config.in │ ├── Makefile │ ├── README │ └── files │ │ ├── config │ │ ├── ocserv.conf.template │ │ ├── ocserv.init │ │ └── ocserv.upgrade ├── ola │ ├── Makefile │ ├── files │ │ └── olad.init │ └── patches │ │ └── 001-include-endian_h.patch ├── openconnect │ ├── Config.in │ ├── Makefile │ ├── README │ ├── files │ │ ├── openconnect-wrapper │ │ ├── openconnect.sh │ │ └── openconnect.upgrade │ └── patches │ │ └── 001-Allow-processing-two-passwords-from-stdin-in-non-int.patch ├── opennhrp │ ├── Makefile │ ├── files │ │ └── opennhrp.init │ └── patches │ │ └── 100-musl-compat.patch ├── openssh │ ├── Makefile │ ├── files │ │ ├── sftp-ssh.service │ │ ├── sshd.init │ │ ├── sshd.pam │ │ └── sshd.pam-access │ └── patches │ │ ├── 100-no_cast_fix.patch │ │ ├── 130-implicit_memset_decl_fix.patch │ │ ├── 140-pam_uclibc_pthreads_fix.patch │ │ └── 200-dscp-qos.patch ├── opentracker │ ├── Makefile │ ├── files │ │ ├── opentracker.init │ │ └── opentracker6.init │ └── patches │ │ └── 100-makefile.patch ├── openvswitch │ ├── Makefile │ ├── files │ │ └── etc │ │ │ └── init.d │ │ │ └── openvswitch.init │ └── patches │ │ ├── 0001-netdev-linux-Use-unsigned-int-for-ifi_flags.patch │ │ ├── 0002-netdev-linux-Let-interface-flag-survive-internal-por.patch │ │ ├── 0003-datapath-do-not-add-vlan_hwaccel_push_inside-for-ker.patch │ │ ├── 0004-musl-compatibility.patch │ │ ├── 0005-datapath-Add-net-ip6_checksum.h-to-stt.c.patch │ │ ├── 0006-force-kernel-4-1.patch │ │ ├── 0007-add-netns-compat.patch │ │ ├── 0008-add-back-old-gfp-this-node-define.patch │ │ ├── 0010-patch-nf_ip_hook-4.1.patch │ │ ├── 0011-fix-vxlan-xmit-skb-4.1.patch │ │ └── 0012-fix-vport-lisp-4.1.patch ├── p910nd │ ├── Makefile │ └── files │ │ ├── p910nd.config │ │ └── p910nd.init ├── pen │ └── Makefile ├── polipo │ ├── Makefile │ └── files │ │ ├── polipo.config │ │ └── polipo.init ├── portmap │ ├── Makefile │ ├── files │ │ └── portmap.init │ └── patches │ │ └── 101-no_pie.patch ├── pppossh │ ├── Makefile │ ├── README.md │ └── files │ │ └── pppossh.sh ├── pptpd │ ├── Makefile │ ├── files │ │ ├── options.pptpd │ │ ├── pptpd.conf │ │ ├── pptpd.config │ │ └── pptpd.init │ └── patches │ │ ├── 001-bad_pqueue_debug.patch │ │ ├── 002-makefile_fix.patch │ │ ├── 003-opt_flags.patch │ │ └── 100-musl-compat.patch ├── privoxy │ ├── Makefile │ └── files │ │ ├── privoxy.config │ │ ├── privoxy.hotplug │ │ └── privoxy.init ├── prosody │ ├── Makefile │ ├── files │ │ ├── prosody.cfg.lua │ │ └── prosody.init │ └── patches │ │ └── 010-fix-randomseed.patch ├── radicale │ ├── Makefile │ ├── files │ │ ├── config.template │ │ ├── logging.template │ │ ├── radicale.config │ │ ├── radicale.hotplug │ │ ├── radicale.init │ │ ├── radicale.rights │ │ └── radicale.users │ └── patches │ │ └── 010-Run-as-user-group-radicale-radicale.patch ├── radsecproxy │ ├── Makefile │ ├── files │ │ └── radsecproxy.init │ └── patches │ │ ├── 100-missing-return.patch │ │ └── 200-logdest-on-foreground.patch ├── reaver │ ├── Makefile │ └── patches │ │ ├── 0001-wpscrack-big-endian-fixes.patch │ │ ├── 0002-Use-the-current-directory-for-storing-and-loading-se.patch │ │ ├── 0003-wash-wpsmon-use-less-useless-spaces-in-output-to-fit.patch │ │ └── 0100-Include-sys-types.h-for-definition-of-u_char.patch ├── redsocks │ ├── Makefile │ ├── files │ │ ├── redsocks.conf │ │ └── redsocks.init │ └── patches │ │ ├── 0001-Fix-bug-in-DNS-resolution-results-were-ignored-since.patch │ │ ├── 0002-inet_ntop-red_inet_ntop.patch │ │ ├── 0003-Initial-support-for-UDP-TPROXY-redirection.-No-more-.patch │ │ ├── 0004-Fix-transposition-of-memset-parameters.patch │ │ ├── 0005-Fix-compilation-on-Ubuntu-10.04-LTS-and-hopefully-De.patch │ │ └── 0006-fix_default_config_location.patch ├── remserial │ └── Makefile ├── rsync │ ├── Config.in │ ├── Makefile │ ├── files │ │ ├── rsyncd.conf │ │ └── rsyncd.init │ └── patches │ │ └── 000-CVE-2014-9512.patch ├── rtorrent │ ├── Makefile │ └── patches │ │ ├── 100-fix-cross_compile.patch │ │ └── 120-fix-ncurses.patch ├── scapy │ └── Makefile ├── seafile-ccnet │ ├── Makefile │ └── patches │ │ └── 010-libevent-include-path.patch ├── seafile-seahub │ ├── Makefile │ └── patches │ │ └── 010-default-config.patch ├── seafile-server │ ├── Makefile │ ├── files │ │ ├── seafile.conf │ │ └── seafile.init │ └── patches │ │ ├── 020-script-patches.patch │ │ ├── 030-pidfiles-in-same-directory.patch │ │ ├── 040-seafile-admin.patch │ │ ├── 050-libevhtp-search-path-fix.patch │ │ └── 060-libevent2-include-path.patch ├── ser2net │ ├── Makefile │ └── patches │ │ ├── 001-fix_TIOCSRS485_undeclared_error.patch │ │ └── 002-LED-trigger.patch ├── shadowsocks-client │ ├── Makefile │ ├── files │ │ ├── sslocal.config │ │ └── sslocal.init │ └── patches │ │ └── 100-fortify-source-compat.patch ├── shadowsocks-libev │ ├── Makefile │ ├── files │ │ ├── firewall.include │ │ ├── shadowsocks-libev.config │ │ ├── shadowsocks-libev.init │ │ ├── shadowsocks-uci-default │ │ └── ss-rules │ └── patches │ │ └── multicall.patch ├── siit │ ├── Makefile │ └── src │ │ ├── Makefile │ │ ├── siit.c │ │ └── siit.h ├── smartsnmpd │ ├── Makefile │ └── files │ │ ├── mibs │ │ ├── dummy.lua │ │ ├── interfaces.lua │ │ └── system.lua │ │ ├── smartsnmpd.conf │ │ └── smartsnmpd.init ├── snort │ ├── Config.in │ ├── Makefile │ ├── files │ │ ├── snort.config │ │ └── snort.init │ └── patches │ │ ├── 001-compile.patch │ │ └── 100-autoconf-fixes.patch ├── socat │ ├── Makefile │ ├── files │ │ ├── socat.config │ │ └── socat.init │ └── patches │ │ └── 100-musl-compat.patch ├── softflowd │ ├── Makefile │ └── files │ │ ├── softflowd.config │ │ └── softflowd.init ├── spawn-fcgi │ └── Makefile ├── sqm-scripts │ └── Makefile ├── squid │ ├── Makefile │ ├── files │ │ ├── squid.conf │ │ ├── squid.config │ │ └── squid.init │ └── patches │ │ ├── 001-cross_compile.patch │ │ └── 100-mime.patch ├── sshfs │ └── Makefile ├── sshtunnel │ ├── Makefile │ └── files │ │ ├── sshtunnel.init │ │ ├── sshtunnel.sh │ │ └── uci_sshtunnel ├── sslh │ ├── Makefile │ ├── files │ │ ├── sslh.config │ │ └── sslh.init │ └── patches │ │ ├── 001-no_sslh_select.patch │ │ └── 002-no_regex_probes.patch ├── sstp-client │ ├── Makefile │ ├── files │ │ └── etc │ │ │ └── ppp │ │ │ ├── chap-secrets │ │ │ └── peers │ │ │ ├── peer-sstp-example-nopty.txt │ │ │ └── peer-sstp-example.txt │ └── patches │ │ └── 100-musl-compat.patch ├── strongswan │ ├── Config.in │ ├── Makefile │ ├── files │ │ ├── ipsec.init │ │ ├── ipsec.secrets │ │ └── ipsec.user │ └── patches │ │ ├── 101-musl-fixes.patch │ │ ├── 201-kmodloader.patch │ │ ├── 203-uci.patch │ │ └── 300-include-ipsec-user-script.patch ├── stunnel │ ├── Makefile │ ├── files │ │ ├── stunnel.conf │ │ └── stunnel.init │ └── patches │ │ ├── 011_disable_ssp_linking.patch │ │ └── 012-cron-without-pthread-fix.patch ├── tcpproxy │ ├── Makefile │ ├── files │ │ ├── tcpproxy.config │ │ └── tcpproxy.init │ └── patches │ │ └── 001-ragel_generated.patch ├── tgt │ ├── Makefile │ ├── files │ │ └── etc │ │ │ ├── config │ │ │ └── tgt │ │ │ └── init.d │ │ │ └── tgt │ └── patches │ │ ├── 010-fallocate.patch │ │ ├── 020-usr_Makefile.patch │ │ ├── 030-Makefile.patch │ │ └── 100-musl-compat.patch ├── tinc │ ├── Makefile │ └── files │ │ ├── tinc.config │ │ ├── tinc.init │ │ └── tinc.upgrade ├── tinyproxy │ ├── Makefile │ ├── files │ │ ├── tinyproxy.config │ │ └── tinyproxy.init │ └── patches │ │ ├── 010-no-docs-and-tests.patch │ │ ├── 020-config_and_pid-path.patch │ │ ├── 030-allow_bind_in_transparent_mode.patch │ │ ├── 120-fix_INET6.patch │ │ ├── CVE-2012-3505-tiniproxy-randomized-hashmaps.patch │ │ └── CVE-2012-3505-tinyproxy-limit-headers.patch ├── tor │ ├── Makefile │ ├── files │ │ └── tor.init │ └── patches │ │ └── 001-torrc.patch ├── transmission │ ├── Makefile │ ├── files │ │ ├── transmission.config │ │ └── transmission.init │ └── patches │ │ ├── 010_libtransmission_fallocate64_eglibc.patch │ │ ├── 020-use-internal-miniupnp.patch │ │ └── 030-fix-musl-build.patch ├── u2pnpd │ ├── Makefile │ └── files │ │ ├── u2pnpd.config │ │ ├── u2pnpd.defaults │ │ └── u2pnpd.init ├── uanytun │ ├── Makefile │ └── files │ │ ├── uanytun-nocrypt.config │ │ ├── uanytun.config │ │ └── uanytun.init ├── udpxy │ ├── Makefile │ ├── files │ │ ├── udpxy.conf │ │ └── udpxy.init │ └── patches │ │ └── 0001-fix-build-on-Mac-OS-X.patch ├── ulogd │ ├── Makefile │ ├── files │ │ └── ulogd.init │ └── patches │ │ └── 100-musl-compat.patch ├── umurmur │ ├── Makefile │ └── patches │ │ └── 10-Add-compile-time-check-for-POLARSSL_VERSION_FEATURES.patch ├── unbound │ ├── Makefile │ ├── files │ │ ├── named.cache │ │ ├── root.key │ │ └── unbound.init │ └── patches │ │ └── 001-conf.patch ├── usbip │ ├── Makefile │ ├── patches-2.0 │ │ └── 100-musl-compat.patch │ └── patches │ │ ├── 001-upstream_svn_r99.diff │ │ └── 002-upstream_svn_r152.patch ├── vlmcsd │ ├── Makefile │ └── files │ │ ├── vlmcsd.init │ │ └── vlmcsd.uci ├── vnstat │ ├── Makefile │ ├── files │ │ ├── vnstat.config │ │ ├── vnstat.defaults │ │ └── vnstat.init │ └── patches │ │ ├── 001-conf.patch │ │ ├── 002-no_install_strip.patch │ │ ├── 003-no_install_uname.patch │ │ └── 100-musl-compat.patch ├── vpnc-scripts │ ├── Makefile │ └── files │ │ └── vpnc-script ├── vpnc │ ├── Config.in │ ├── Makefile │ ├── README │ ├── files │ │ ├── vpnc.sh │ │ └── vpnc.upgrade │ └── patches │ │ ├── 001-cross.patch │ │ └── 100-musl-compat.patch ├── vsftpd │ ├── Makefile │ ├── files │ │ ├── vsftpd-uci.init │ │ ├── vsftpd.conf │ │ ├── vsftpd.init │ │ ├── vsftpd.uci │ │ ├── vsftpd_prepare │ │ └── vsftpd_wrapper │ └── patches │ │ ├── 001-destdir.patch │ │ ├── 002-find_libs.patch │ │ ├── 003-chroot.patch │ │ ├── 004-disable-capabilities.patch │ │ ├── 005-disable-pam.patch │ │ ├── 006-musl-compatibility.patch │ │ ├── 007-CVE-2015-1419.patch │ │ ├── 100-add-uci-auth-support.patch │ │ ├── 101-enable-chroot-on-writable-dir.patch │ │ └── 102-keep-local-user-rights.patch ├── w8021x │ ├── Makefile │ └── src │ │ ├── etc │ │ ├── config │ │ │ └── w8021x │ │ └── init.d │ │ │ └── w8021x │ │ └── usr │ │ └── sbin │ │ ├── w8021x_auth │ │ ├── w8021x_ctrl │ │ ├── w8021x_logoff │ │ └── w8021x_status ├── wavemon │ └── Makefile ├── wget │ └── Makefile ├── wifidog │ ├── Makefile │ └── files │ │ └── wifidog.init ├── wshaper │ ├── Makefile │ └── files │ │ ├── wshaper.config │ │ ├── wshaper.htb │ │ ├── wshaper.iface │ │ └── wshaper.init ├── xinetd │ ├── Makefile │ ├── files │ │ ├── xinetd.conf │ │ └── xinetd.init │ └── patches │ │ ├── 001-ar.patch │ │ ├── 002-destdir.patch │ │ ├── 003-rpc_fix.patch │ │ └── 004-ident-bind.patch ├── xl2tpd │ ├── Makefile │ ├── README │ ├── files │ │ ├── l2tp.sh │ │ ├── options.xl2tpd │ │ ├── xl2tp-secrets │ │ ├── xl2tpd.conf │ │ ├── xl2tpd.conf.sample │ │ └── xl2tpd.init │ └── patches │ │ ├── 100-makefile_opt_flags.patch │ │ ├── 110-makefile_dont_build_pfc.patch │ │ └── 120-no-bsd-signal-in-musl.patch └── znc │ ├── Makefile │ ├── files │ ├── znc.conf │ └── znc.init │ └── patches │ ├── 100-move_rootcheck_after_config.patch │ ├── 101-Reduce_rebuild_time.patch │ └── 102-restore_droproot.patch ├── print ├── brlaser │ ├── Makefile │ └── files │ │ └── brlaser-set-cups-filter-permission ├── c2esp │ ├── Makefile │ └── files │ │ └── c2esp-set-cups-filters-permission ├── carps-cups │ ├── Makefile │ ├── files │ │ └── rastertocarps-set-cups-filter-permission │ └── patches │ │ └── cross-compile-fix.patch ├── cndrvcups-capt-ppds │ └── Makefile ├── cndrvcups-capt │ ├── Makefile │ ├── files │ │ ├── capt-set-cups-backend-permission │ │ └── capt-set-cups-filters-permission │ └── src │ │ ├── Makefile │ │ ├── backend │ │ ├── AUTHORS │ │ ├── ChangeLog │ │ ├── LICENSE.canon.txt │ │ ├── LICENSE.txt │ │ ├── Makefile.am │ │ ├── NEWS │ │ ├── README │ │ ├── acconfig.h │ │ ├── autogen.sh │ │ ├── ccp.c │ │ └── configure.in │ │ ├── configure │ │ ├── pstocapt │ │ ├── AUTHORS │ │ ├── ChangeLog │ │ ├── LICENSE.canon.txt │ │ ├── Makefile.am │ │ ├── NEWS │ │ ├── README │ │ ├── acconfig.h │ │ ├── autogen.sh │ │ ├── configure.in │ │ └── filter │ │ │ ├── Makefile.am │ │ │ ├── paramlist.c │ │ │ ├── paramlist.h │ │ │ └── pstocapt.c │ │ ├── pstocapt2 │ │ ├── AUTHORS │ │ ├── ChangeLog │ │ ├── LICENSE.canon.txt │ │ ├── Makefile.am │ │ ├── NEWS │ │ ├── README │ │ ├── acconfig.h │ │ ├── autogen.sh │ │ ├── configure.in │ │ └── filter │ │ │ ├── Makefile.am │ │ │ ├── paramlist.c │ │ │ ├── paramlist.h │ │ │ └── pstocapt2.c │ │ └── pstocapt3 │ │ ├── AUTHORS │ │ ├── ChangeLog │ │ ├── LICENSE.canon.txt │ │ ├── Makefile.am │ │ ├── NEWS │ │ ├── README │ │ ├── acconfig.h │ │ ├── autogen.sh │ │ ├── configure.in │ │ └── filter │ │ ├── Makefile.am │ │ ├── paramlist.c │ │ ├── paramlist.h │ │ └── pstocapt3.c ├── cndrvcups-common │ ├── Makefile │ ├── files │ │ └── cnusb-set-cups-backend-permission │ └── src │ │ ├── Makefile │ │ ├── backend │ │ ├── AUTHORS │ │ ├── ChangeLog │ │ ├── LICENSE.canon.txt │ │ ├── LICENSE.txt │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── NEWS │ │ ├── README │ │ ├── acconfig.h │ │ ├── autogen.sh │ │ ├── cnusb.c │ │ ├── config.h │ │ ├── config.h.in │ │ ├── configure │ │ └── configure.in │ │ ├── buftool │ │ ├── AUTHORS │ │ ├── ChangeLog │ │ ├── LICENSE.txt │ │ ├── Makefile.am │ │ ├── NEWS │ │ ├── README │ │ ├── acconfig.h │ │ ├── autogen.sh │ │ ├── buflist.c │ │ ├── buflist.h │ │ ├── buftool.c │ │ ├── buftool.h │ │ └── configure.in │ │ └── configure ├── cndrvcups-lb-ppds │ └── Makefile ├── cndrvcups-lb │ ├── Makefile │ ├── files │ │ └── pstoufr2cpca-set-cups-filter-permission │ └── src │ │ ├── Makefile │ │ ├── configure │ │ └── pstoufr2cpca │ │ ├── AUTHORS │ │ ├── ChangeLog │ │ ├── LICENSE.canon.txt │ │ ├── Makefile.am │ │ ├── NEWS │ │ ├── README │ │ ├── acconfig.h │ │ ├── autogen.sh │ │ ├── configure.in │ │ └── filter │ │ ├── Makefile.am │ │ ├── functions.c │ │ ├── functions.h │ │ ├── paramlist.c │ │ ├── paramlist.h │ │ └── pstoufr2cpca.c ├── cups-bjnp │ ├── Makefile │ └── files │ │ └── bjnp-set-cups-backend-permission ├── cups │ ├── Makefile │ ├── files │ │ ├── cupsd.init │ │ └── etc │ │ │ ├── cups │ │ │ ├── classes.conf │ │ │ ├── client.conf │ │ │ ├── cups-files.conf │ │ │ ├── cupsd.conf │ │ │ └── printers.conf │ │ │ └── uci-defaults │ │ │ └── set-cups-backends-permission │ └── patches │ │ ├── 0001-rootbackends-worldreadable.patch │ │ ├── 0002-fixes-for-jobs-with-multiple-files-and-multiple-formats.patch │ │ ├── 0003-drop_unnecessary_dependencies.patch │ │ ├── 0004-cups-deviced-allow-device-ids-with-newline.patch │ │ ├── 0005-no-conffile-timestamp.patch │ │ ├── 0006-pidfile.patch │ │ ├── 0007-ppd-poll-with-client-conf.patch │ │ ├── 0008-removecvstag.patch │ │ ├── 0009-do-not-broadcast-with-hostnames.patch │ │ ├── 0010-reactivate_recommended_driver.patch │ │ ├── 0011-default_log_settings.patch │ │ ├── 0012-confdirperms.patch │ │ ├── 0013-show-compile-command-lines.patch │ │ ├── 0014-ppdc-dynamic-linking.patch │ │ ├── 0015-cupsd-set-default-for-SyncOnClose-to-Yes.patch │ │ ├── 0016-embedded-componets.patch │ │ ├── 0017-uname.patch │ │ ├── 0018-ppdc.patch │ │ ├── 0019-pwg-raster-attributes.patch │ │ ├── 0020-read-embedded-options-from-incoming-postscript-and-add-to-ipp-attrs.patch │ │ ├── 0021-add-ipp-backend-of-cups-1.4.patch │ │ └── 0022-printer-filtering.patch ├── epson-alc1100-filter │ ├── Makefile │ └── files │ │ └── Epson-AL-C1100-fm3.ppd ├── epson-alcx11-filter │ ├── Makefile │ └── files │ │ └── Epson-AL-CX11-fm3.ppd ├── epson-inkjet-printer-escpr │ ├── Makefile │ └── files │ │ └── epson-escpr-set-cups-filters-permission ├── epson-inkjet-printer-filter │ ├── Makefile │ └── files │ │ └── epson-inject-filter-set-cups-filter-permission ├── epson-inkjet-printer-ppds │ └── Makefile ├── foo2zjs │ ├── Makefile │ ├── files │ │ ├── foo2zjs-set-cups-filter-permission │ │ └── printer-driver-foo2zjs-common.ppd-updater │ └── patches │ │ ├── 10-makefile.patch │ │ ├── 12-fix-implicit-declaration.patch │ │ ├── 20-PDF-input-data-in-PPDs.patch │ │ ├── 20-honour-papersize.patch │ │ ├── 91-spelling-fixes.patch │ │ ├── 96-hplj1000-fix-cups-usb-backend-firmware-upload.patch │ │ └── 97-hplj1000-fix-firmware-upload-infite-loop.patch ├── foomatic-db │ └── Makefile ├── foomatic-filters │ ├── Makefile │ ├── files │ │ └── foomatic-filters-set-cups-filter-permission │ └── patches │ │ ├── 0001-spelling-errors.diff │ │ ├── 0002-pdf_header.patch │ │ ├── 0010-ppd_trailing_whitespace.patch │ │ ├── 0500-paps.patch │ │ ├── fixed-segfault-when-creating-logfile.patch │ │ └── variables-definition-fix.patch ├── fxlinuxprint │ ├── Makefile │ └── files │ │ └── fxlinuxprint-set-cups-filters-permission ├── gutenprint │ ├── Makefile │ └── patches │ │ └── print-olympus-endianess-fix.patch ├── hplip │ ├── Makefile │ ├── files │ │ └── hplip-set-cpus-backends-permission │ └── patches │ │ ├── 000-enable-support-of-libusb-1_0.patch │ │ └── fix-automake-subdir-warning.patch ├── openprinting-cups-filters │ ├── Makefile │ ├── files │ │ └── cups-browsed.init │ └── patches │ │ └── do-not-install-ghostscript-filters.patch └── splix │ ├── Makefile │ ├── files │ └── splix-set-cups-filters-permission │ └── patches │ └── do-not-include-dependency-files.patch ├── sound ├── espeak │ ├── Makefile │ └── patches │ │ └── 101-portaudio.patch ├── forked-daapd │ ├── Makefile │ ├── files │ │ ├── forked-daapd.conf │ │ └── forked-daapd.init │ └── patches │ │ └── 010-include_pregen.patch ├── lame │ ├── Makefile │ └── patches │ │ └── 001-automake-compat.patch ├── madplay │ ├── Makefile │ └── patches │ │ ├── 0001-switch-to-new-alsa-api.patch │ │ └── 010-use_correct_shell.patch ├── mocp │ └── Makefile ├── mpc │ ├── Makefile │ └── files │ │ └── pls-handler.sh ├── mpd │ ├── Makefile │ ├── files │ │ ├── mpd.init │ │ └── mpd.service │ └── patches │ │ ├── 210-support_raw_pcm_streams.patch │ │ └── 220-handle_slow_server_stream_startup.patch ├── mpg123 │ └── Makefile ├── pianod │ ├── Makefile │ ├── files │ │ └── pianod.init │ └── patches │ │ ├── 010-Configure_add_SSL_options.patch │ │ ├── 020-Use_package_config_h_for_all_modules.patch │ │ └── 030-Waitress_add_polarssl_variant.patch ├── portaudio │ └── Makefile ├── pulseaudio │ ├── Makefile │ ├── files │ │ └── pulseaudio.init │ └── patches │ │ ├── 001-no_default_64mb_alloc.patch │ │ └── 002-xlocale.patch ├── shairplay │ ├── Makefile │ ├── files │ │ ├── shairplay.config │ │ └── shairplay.init │ └── patches │ │ ├── 001-key_file_dir.patch │ │ ├── 002-libavahi-compat-dnssd.patch │ │ └── 003-fix_big-endian.patch ├── shairport-sync │ ├── Makefile │ └── files │ │ ├── shairport-sync.config │ │ └── shairport-sync.init ├── shairport │ ├── Makefile │ ├── files │ │ ├── shairport.config │ │ └── shairport.init │ └── patches │ │ └── 001-disable_pulseaudio.patch ├── shine │ ├── Makefile │ └── patches │ │ └── 001-fix_mips64_bswap.patch ├── sox │ ├── Makefile │ └── patches │ │ ├── 001-cross_compile.patch │ │ ├── 010-fix_uclibc_build_issue.patch │ │ ├── 020-ffmpeg-0.11.patch │ │ └── 020-ffmpeg-2.x.patch ├── squeezelite │ ├── Makefile │ ├── files │ │ ├── squeezelite.conf │ │ └── squeezelite.init │ └── patches │ │ ├── 005-respect_LDFLAGS.patch │ │ ├── 010-wait_for_nonzero_mac.patch │ │ ├── 020-no_mpg123.patch │ │ ├── 030-fix_musl_compatibilty.patch │ │ └── 040-clear_dynlink_errors.patch ├── svox │ ├── Makefile │ └── patches │ │ ├── 0001-autoconf-building-of-library-using-libtool.patch │ │ ├── 0002-gitignore-for-autotools-files.patch │ │ ├── 0003-pico2wave-Convert-text-to-.wav-using-svox-text-to-sp.patch │ │ ├── 0004-add-header-files.patch │ │ ├── 0005-Install-lang-files.patch │ │ ├── 0006-Set-picolangdir.patch │ │ ├── 0008-64bits.patch │ │ ├── 0009-Fix-link-order.patch │ │ ├── 0010-platform.patch │ │ ├── 0011-subdir.patch │ │ └── 0012-no-headers.patch └── upmpdcli │ ├── Config.in │ ├── Makefile │ ├── files │ ├── upmpdcli.config │ ├── upmpdcli.init │ └── upmpdcli.png │ └── patches │ └── 010-Add_icon_config.patch ├── track └── utils ├── acl ├── Makefile └── patches │ ├── 100-no-gettext_configure.patch │ ├── 101-no-gettext_autogen.patch │ └── 102-no-gettext_Makefile.patch ├── acpid ├── Makefile ├── files │ ├── acpid.hotplug │ ├── acpid.init │ └── default └── patches │ └── 002-dont-use-isfdtype.patch ├── alsa-utils ├── Makefile └── patches │ └── 100-uClibc-compat.patch ├── attr ├── Makefile └── patches │ ├── 100-no-gettext_configure.patch │ ├── 101-no-gettext_autogen.patch │ └── 102-no-gettext_Makefile.patch ├── avrdude ├── Makefile └── patches │ ├── 010-configure-fixups.patch │ └── 100-musl-compat.patch ├── bandwidthd ├── Makefile ├── files │ ├── bandwidthd.config │ ├── bandwidthd.init │ └── logo.gif └── patches │ ├── 010-dont-add-host-paths.patch │ └── 100-fix_config_file_location ├── banhosts ├── Makefile └── files │ └── updatebanhost ├── bash ├── Makefile └── patches │ ├── 001-compile-fix.patch │ ├── 002-force-internal-readline.patch │ ├── 101-upstream-bash43-001.patch │ ├── 102-upstream-bash43-002.patch │ ├── 103-upstream-bash43-003.patch │ ├── 104-upstream-bash43-004.patch │ ├── 105-upstream-bash43-005.patch │ ├── 106-upstream-bash43-006.patch │ ├── 107-upstream-bash43-007.patch │ ├── 108-upstream-bash43-008.patch │ ├── 109-upstream-bash43-009.patch │ ├── 110-upstream-bash43-010.patch │ ├── 111-upstream-bash43-011.patch │ ├── 112-upstream-bash43-012.patch │ ├── 113-upstream-bash43-013.patch │ ├── 114-upstream-bash43-014.patch │ ├── 115-upstream-bash43-015.patch │ ├── 116-upstream-bash43-016.patch │ ├── 117-upstream-bash43-017.patch │ ├── 118-upstream-bash43-018.patch │ ├── 119-upstream-bash43-019.patch │ ├── 120-upstream-bash43-020.patch │ ├── 121-upstream-bash43-021.patch │ ├── 122-upstream-bash43-022.patch │ ├── 123-upstream-bash43-023.patch │ ├── 124-upstream-bash43-024.patch │ ├── 125-upstream-bash43-025.patch │ ├── 126-upstream-bash43-026.patch │ ├── 127-upstream-bash43-027.patch │ ├── 128-upstream-bash43-028.patch │ ├── 129-upstream-bash43-029.patch │ ├── 130-upstream-bash43-030.patch │ ├── 131-upstream-bash43-031.patch │ ├── 132-upstream-bash43-032.patch │ ├── 133-upstream-bash43-033.patch │ ├── 134-upstream-bash43-034.patch │ ├── 135-upstream-bash43-035.patch │ ├── 136-upstream-bash43-036.patch │ ├── 137-upstream-bash43-037.patch │ ├── 138-upstream-bash43-038.patch │ ├── 139-upstream-bash43-039.patch │ ├── 140-upstream-bash43-040.patch │ ├── 141-upstream-bash43-041.patch │ ├── 142-upstream-bash43-042.patch │ └── 900-no_doc.patch ├── bc ├── Makefile └── patches │ └── 001-disable-doc.patch ├── bluelog ├── Makefile └── files │ └── bluelog.init ├── bluez ├── Makefile ├── files │ ├── bluetooth.config │ ├── bluetooth.dbus │ ├── bluetoothd.init │ └── givepin └── patches │ ├── 200-uart-speed.patch │ └── 201-readline.patch ├── btrfs-progs ├── Makefile ├── files │ └── btrfs-scan.init └── patches │ └── 001-fix-xattr-h-include-location.patch ├── canutils └── Makefile ├── ccid └── Makefile ├── ccrypt ├── Makefile └── patches │ └── 001-no-intl.patch ├── cmdpad ├── Makefile ├── files │ └── cmdpad.init └── patches │ ├── 100-Makefile.patch │ ├── 120-kernel26-compat.patch │ ├── 130-no_zombie.patch │ └── 140-compile_fix.patch ├── collectd ├── Makefile ├── files │ ├── collectd.conf │ └── collectd.init └── patches │ ├── 001-undefined-AM_PATH_LIBGCRYPT.patch │ ├── 003-remove-werror.patch │ ├── 100-rrdtool-add-rrasingle-option.patch │ ├── 140-fix-fqdnlookup.patch │ ├── 200-fix-git-describe-error.patch │ ├── 300-delay-first-read-cycle.patch │ ├── 400-fix-olsrd-get-all.patch │ ├── 500-upstream-parallel-build-fix.patch │ ├── 900-add-iwinfo-plugin.patch │ └── 920-fix-ping-droprate.patch ├── coreutils ├── Makefile └── patches │ ├── 001-no_docs_man_tests.patch │ └── 002-fix_compile_with_uclibc.patch ├── crelay ├── Makefile ├── files │ └── crelay.init └── patches │ ├── 010-link_with_ftdi1.patch │ └── 020-link_using_LDFLAGS.patch ├── cryptodev-linux ├── Makefile ├── files │ └── cryptodev.modules └── patches │ └── 001-no-get-unused-fd.patch ├── cryptsetup └── Makefile ├── dbus ├── Makefile ├── files │ ├── dbus-launch │ └── dbus.init └── patches │ └── 100-fix-poll-select.patch ├── dfu-programmer └── Makefile ├── dmidecode └── Makefile ├── dosfstools ├── Makefile └── files │ └── dosfsck.sh ├── dump1090 ├── Makefile └── files │ ├── dump1090.config │ └── dump1090.init ├── exfat-fuse ├── Config.in └── Makefile ├── f2fs-tools ├── Config.in ├── Makefile └── patches │ ├── 001-compile.patch │ └── 010-include-byteswap-h.patch ├── flashrom ├── Makefile ├── flashrom.mk └── patches │ ├── 0001-fix_internal_bitbang.patch │ └── 0002-fix-musl-compatibility.patch ├── fontconfig ├── Makefile └── files │ └── fontconfig.init ├── gammu ├── Makefile ├── files │ ├── gammu │ └── gammu.init └── patches │ ├── 001-iconv-disabling-option.patch │ ├── 002-no-fstack-protector.patch │ ├── 003-cmake-cross-toolchain.patch │ ├── 004-cmake_libdbi_optional.patch │ └── 010-utils-shell-fix.patch ├── gnupg └── Makefile ├── gpsd ├── Makefile ├── files │ ├── gpsd.config │ ├── gpsd.hotplug │ └── gpsd.init └── patches │ └── 0001-Remove-a-BSD-ism.patch ├── grep ├── Makefile └── patches │ └── 0001-grep-F-fix-a-heap-buffer-read-overrun.patch ├── hamlib ├── Makefile └── patches │ └── 100-override-autoconf-detection.patch ├── haserl ├── Config.in ├── Makefile └── patches │ ├── 100-replace-lua2c-with-sed.patch │ └── 101-adjust-script-size.patch ├── haveged ├── Makefile └── files │ └── haveged.init ├── hd-idle ├── Makefile └── files │ ├── hd-idle.config │ └── hd-idle.init ├── hdparm └── Makefile ├── hfsprogs ├── Makefile ├── files │ └── hfsfsck.sh └── patches │ ├── 0001-Create-short-Makefiles-for-Debian.patch │ ├── 0002-Add-exclude-Darwin-specific-code.patch │ ├── 0003-Add-helper-include-files-absent-from-the-upstream-pa.patch │ ├── 0004-Fix-compilation-on-64-bit-arches.patch │ ├── 0005-Remove-Apple-specific-p-from-strings.patch │ ├── 0006-Adjust-types-for-printing.patch │ ├── 0007-Fix-path-for-HFS-wrapper-block.patch │ ├── 0008-Provide-command-line-option-a.patch │ ├── 0009-Rename-dprintf-to-dbg_printf.patch │ ├── 0010-Rename-custom-macro-nil-with-NULL.patch │ ├── 0011-Fix-types.patch │ ├── 0012-Fix-mkfs-not-creating-UUIDs-for-new-filesystems.patch │ ├── 0013-Fix-manpages.patch │ ├── 0014-uClibc_no_loadavg.patch │ └── 0015-sysctl-only-on-glibc.patch ├── hub-ctrl └── Makefile ├── i2c-tools └── Makefile ├── joe ├── Makefile └── files │ └── joerc ├── kmod ├── Makefile └── patches │ └── 001-fix_pkgconfig_file.patch ├── lcd4linux ├── Config.in ├── Makefile ├── files │ └── lcd4linux.init └── patches │ ├── 100-drv_RouterBoard.patch │ ├── 110-uclibc-logarithm-fix.patch │ ├── 120-remove-as-needed-linker-option.patch │ ├── 140-no_repnop_T6963.patch │ ├── 150-addlibmpdclient.patch │ ├── 160-uinput_defs.patch │ ├── 170-add-generic-spidev-driver.patch │ ├── 171-allow-to-specify-drv_generic_graphic_real_clear.patch │ └── 172-add-TEW673GRU-driver.patch ├── less └── Makefile ├── lm-sensors ├── Makefile ├── files │ └── sensors.conf └── patches │ └── 100-musl-compat.patch ├── lsof ├── Makefile └── patches │ ├── 001-lsof_makefile.patch │ ├── 002-lsof_noportmap.patch │ ├── 003-lsof_selinux.patch │ └── 004-lsof_ccv.patch ├── luci-app-lxc ├── Makefile └── files │ ├── controller │ └── lxc.lua │ ├── lxc.config │ ├── model │ └── cbi │ │ └── lxc.lua │ ├── view │ └── lxc.htm │ └── www │ └── luci-static │ └── resources │ └── cbi │ ├── green.gif │ ├── purple.gif │ └── red.gif ├── lvm2 ├── Makefile ├── files │ └── lvm2.init └── patches │ ├── 000-compile.patch │ ├── 001-include_fix.patch │ ├── 002-const-stdio.patch │ └── 003-no-mallinfo.patch ├── lxc ├── Config.in ├── Makefile ├── files │ └── lxc.conf └── patches │ ├── 010-compile.patch │ ├── 015-getline.patch │ ├── 020-lxc-checkconfig.patch │ ├── 025-remove-unsupported-option.patch │ ├── 030-lxc-download.patch │ └── 035-fix-undefined-lfd.patch ├── macchanger ├── Makefile └── patches │ └── 0001-fix-build-with-musl.patch ├── mbtools ├── Makefile └── patches │ └── 100-fix-unit-test-server-return-value.patch ├── mc ├── Config.in └── Makefile ├── minicom ├── Makefile └── patches │ ├── 100-fix_iconv_include.patch │ ├── 101-fix_music_includes.patch │ └── 102-fix_musl_compatibility.patch ├── mksh ├── Makefile └── patches │ └── 100-dot_mkshrc ├── mktorrent └── Makefile ├── mmc-utils ├── Makefile └── patches │ └── 001-properly-set-fortify-source-in-makefile.patch ├── mpack └── Makefile ├── mysql ├── Makefile ├── conf │ └── my.cnf ├── files │ └── mysqld.init └── patches │ ├── 100-fix_hostname.patch │ ├── 110-cross_compile.patch │ └── 120-bison-compat.patch ├── nano └── Makefile ├── ncdu ├── Makefile └── patches │ └── 010-add_sys_wait.patch ├── ntfs-3g ├── Makefile └── patches │ └── 001-fuseint-fix-path-mounted-on-musl.patch ├── open-plc-utils ├── Makefile └── patches │ └── 100-musl-compat.patch ├── open2300 ├── Makefile ├── files │ └── open2300.conf └── patches │ └── 001-crosscompile.patch ├── openobex ├── Makefile └── patches │ └── 001-cxx.patch ├── openocd ├── Makefile └── patches │ ├── 0001-mips_m4k-bulk-write-fast-data-check-fix.patch │ └── 0002-nor-cfi-mips-register-name-fix.patch ├── opensc ├── Makefile └── patches │ ├── 0001-OpenPGP-Detect-and-support-Gnuk-Token.patch │ ├── 0002-OpenPGP-Add-Gnuk-in-pkcs15-emulation-layer.patch │ ├── 0003-OpenPGP-Include-private-DO-to-filesystem-at-driver-i.patch │ ├── 0004-PKCS15-OpenPGP-Declare-DATA-objects.patch │ ├── 0005-OpenPGP-Support-erasing-reset-card.patch │ ├── 0006-openpgp-tool-Support-deleting-key-in-Gnuk.patch │ ├── 0007-OpenPGP-Correct-building-Extended-Header-List-when-i.patch │ ├── 0008-OpenPGP-Read-some-empty-DOs-from-Gnuk.patch │ ├── 0009-PKCS15-OpenPGP-Do-not-show-empty-DO-in-pkcs15-emu_in.patch │ ├── 0010-PKCS15-OpenPGP-Allow-to-store-data-to-pkcs15-data-ob.patch │ ├── 0011-OpenPGP-Provide-enough-buffer-to-read-pubkey-from-Gn.patch │ ├── 0012-OpenPGP-Support-write-certificate-for-Gnuk.patch │ ├── 0013-pkcs15-openpgp-Change-to-sc_put_data-instead-of-sc_u.patch │ ├── 0014-OpenPGP-Overcome-the-restriction-of-even-data-length.patch │ ├── 0015-OpenPGP-Delete-key-as-file-for-Gnuk.patch │ ├── 0016-OpenPGP-Correct-parameter-checking.patch │ ├── 0017-OpenPGP-Make-code-neater.patch │ ├── 0018-Move-declaration-to-top-of-block.patch │ ├── 0019-OpenPGP-Make-indentation-consistent-space-tab.patch │ ├── 0020-OpenPGP-Don-t-use-sc_log-in-openpgp-tool.patch │ ├── 0021-OpenPGP-Don-t-reimplement-gnuk_delete_key-in-openpgp.patch │ ├── 0022-OpenPGP-Use-directly-binary-array-of-APDUs-for-ERASE.patch │ ├── 0023-OpenPGP-Rename-private-blob-type-to-avoid-confusing-.patch │ ├── 0024-OpenPGP-Fix-crash-after-accessing-inexistent-file.patch │ ├── 0025-Replace-hardcode.patch │ ├── 0026-hardcode-defines-for-DO-s.patch │ ├── 0027-OpenPGP-Remove-unused-variables-and-fix-type-cast.patch │ └── 0028-openpgp-tool-Fix-wrong-operator.patch ├── opus-tools └── Makefile ├── owfs └── Makefile ├── parted ├── Makefile └── patches │ └── 100-device-mapper.patch ├── pciutils ├── Makefile └── patches │ ├── 100-remove-no-timestamping.patch │ ├── 101-no-strip.patch │ ├── 102-compressed-ids.patch │ ├── 103-relative-path-ids.patch │ ├── 104-resolv.patch │ └── 105-fix-host.patch ├── pcsc-lite ├── Makefile └── files │ └── pcscd.init ├── picocom ├── Makefile └── patches │ └── 100-musl-compat.patch ├── poppler └── Makefile ├── pps-tools └── Makefile ├── procps-ng └── Makefile ├── pv └── Makefile ├── qpdf └── Makefile ├── rng-tools ├── Makefile └── files │ └── rngd.init ├── rpcd-mod-lxc ├── Makefile └── files │ ├── CMakeLists.txt │ └── lxc.c ├── rrdtool1 ├── Makefile └── patches │ ├── 001-no_ordering_cd_joke.patch │ ├── 002-no_timezone.patch │ ├── 020-x86-float-cast.patch │ └── 030-pod2man-stderr.patch ├── rtklib └── Makefile ├── rtl-ais ├── Makefile └── files │ ├── rtl_ais.init │ └── uci_rtl_ais ├── rtl-sdr └── Makefile ├── sane-backends ├── Makefile ├── files │ └── xinet.d_sane-port └── patches │ ├── 002-remove-uneeded.patch │ ├── 020-fix_pieusb.patch │ ├── 030-musl.patch │ ├── 031-fix_uclibc.patch │ └── 050-remove_linked_libs_for_unused_preload.patch ├── screen ├── Makefile ├── files │ └── etc │ │ └── screenrc └── patches │ ├── 100-cross_compile_fix.patch │ ├── 110-do_not_add_srcdir_to_include_path.patch │ └── 200-musl-compat.patch ├── serialconsole └── Makefile ├── shadow ├── Makefile └── patches │ ├── 001-busybox_ash.patch │ ├── 002-disable-ruser-lookup.patch │ ├── 003-fix-disabling-subids.patch │ └── 004-fix-su-controoling-term.patch ├── sispmctl ├── Makefile └── patches │ └── 001-fix-includes.patch ├── smartmontools ├── Makefile └── files │ ├── smartd.conf │ └── smartd.init ├── smstools3 ├── Makefile ├── files │ ├── smstools3.conf │ └── smstools3.init └── patches │ ├── 001-smsd.patch │ └── 002-Makefile.patch ├── sockread ├── Makefile └── src │ ├── Makefile │ └── main.c ├── spi-tools └── Makefile ├── stm32flash └── Makefile ├── stoken └── Makefile ├── sumo ├── Makefile ├── files │ └── sumo.sh └── patches │ └── 100-configure_fix.patch ├── swig └── Makefile ├── sysstat ├── Makefile ├── files │ ├── sysstat.config │ └── sysstat.init └── patches │ └── 100-musl-compat.patch ├── tar └── Makefile ├── taskwarrior └── Makefile ├── tcsh ├── Makefile └── patches │ ├── 001-gethost │ ├── 001-sysmalloc.patch │ └── 100-musl-compat.patch ├── tmux ├── Makefile └── patches │ └── 100-b64_ntop-conflict.patch ├── tracertools └── Makefile ├── triggerhappy ├── Makefile ├── files │ ├── triggerhappy-example.conf │ ├── triggerhappy.hotplug │ └── triggerhappy.init └── patches │ └── 100-fix-LINUX_INPUT_H.patch ├── unrar ├── Makefile └── patches │ └── 100-makefile_fixes.patch ├── unzip ├── Makefile └── patches │ ├── 001-CVE-2014-8139-crc-overflow.patch │ ├── 002-CVE-2014-8140-test-compr-eb.patch │ ├── 003-CVE-2014-8141-getzip64data.patch │ ├── 004-CVE-2014-9636-test-compr-eb.patch │ ├── 005-CVE-2015-7696-heap-overflow.patch │ ├── 006-CVE-2015-7697-infinite-loop.patch │ └── 007-integer-underflow-csiz_decrypted.patch ├── usbmuxd └── Makefile ├── uvcdynctrl └── Makefile ├── vim ├── Makefile ├── files │ ├── vimrc │ └── vimrc.full └── patches │ ├── 001-compile.patch │ └── 002-remove_helptags_generation.patch ├── watchcat ├── Makefile └── files │ ├── initd_watchcat │ ├── uci_defaults_watchcat │ └── watchcat.sh ├── wifitoggle ├── Makefile └── files │ ├── wifitoggle.config │ └── wifitoggle.hotplug ├── xz └── Makefile ├── yunbridge ├── Makefile ├── files │ ├── etc │ │ ├── config │ │ │ └── yunbridge │ │ └── init.d │ │ │ └── yunbridge │ ├── sbin │ │ └── yunbridge │ └── usr │ │ ├── bin │ │ └── pretty-wifi-info.lua │ │ └── lib │ │ └── lua │ │ └── luci │ │ ├── controller │ │ └── arduino │ │ │ └── index.lua │ │ └── sha256.lua └── patches │ └── 000-scripts.patch ├── zile └── Makefile ├── zip └── Makefile ├── zoneinfo └── Makefile └── zsh └── Makefile /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/README.md -------------------------------------------------------------------------------- /admin/debootstrap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/admin/debootstrap/Makefile -------------------------------------------------------------------------------- /admin/htop/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/admin/htop/Makefile -------------------------------------------------------------------------------- /admin/monit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/admin/monit/Makefile -------------------------------------------------------------------------------- /admin/monit/files/monit.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/admin/monit/files/monit.init -------------------------------------------------------------------------------- /admin/muninlite/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/admin/muninlite/Makefile -------------------------------------------------------------------------------- /admin/sudo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/admin/sudo/Makefile -------------------------------------------------------------------------------- /admin/sudo/files/sudo.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/admin/sudo/files/sudo.init -------------------------------------------------------------------------------- /admin/zabbix/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/admin/zabbix/Makefile -------------------------------------------------------------------------------- /admin/zabbix/files/mac80211: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/admin/zabbix/files/mac80211 -------------------------------------------------------------------------------- /admin/zabbix/files/network: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/admin/zabbix/files/network -------------------------------------------------------------------------------- /admin/zabbix/files/wifi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/admin/zabbix/files/wifi -------------------------------------------------------------------------------- /devel/diffutils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/devel/diffutils/Makefile -------------------------------------------------------------------------------- /devel/gcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/devel/gcc/Makefile -------------------------------------------------------------------------------- /devel/gcc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/devel/gcc/README -------------------------------------------------------------------------------- /devel/lttng-modules/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/devel/lttng-modules/Makefile -------------------------------------------------------------------------------- /devel/lttng-tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/devel/lttng-tools/Makefile -------------------------------------------------------------------------------- /devel/patch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/devel/patch/Makefile -------------------------------------------------------------------------------- /ipv6/aiccu/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/ipv6/aiccu/Makefile -------------------------------------------------------------------------------- /ipv6/aiccu/files/aiccu.hotplug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/ipv6/aiccu/files/aiccu.hotplug -------------------------------------------------------------------------------- /ipv6/aiccu/files/aiccu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/ipv6/aiccu/files/aiccu.sh -------------------------------------------------------------------------------- /ipv6/tayga/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/ipv6/tayga/Makefile -------------------------------------------------------------------------------- /ipv6/tayga/files/tayga-proto.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/ipv6/tayga/files/tayga-proto.sh -------------------------------------------------------------------------------- /ipv6/tayga/files/tayga.hotplug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/ipv6/tayga/files/tayga.hotplug -------------------------------------------------------------------------------- /ipv6/tayga/files/tayga.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/ipv6/tayga/files/tayga.sh -------------------------------------------------------------------------------- /kernel/exfat-nofuse/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/kernel/exfat-nofuse/Makefile -------------------------------------------------------------------------------- /lang/dkjson/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/lang/dkjson/Makefile -------------------------------------------------------------------------------- /lang/erlang/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/lang/erlang/Makefile -------------------------------------------------------------------------------- /lang/ghostscript/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/lang/ghostscript/Makefile -------------------------------------------------------------------------------- /lang/jamvm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/lang/jamvm/Makefile -------------------------------------------------------------------------------- /lang/jre/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/lang/jre/Makefile -------------------------------------------------------------------------------- /lang/jre/files/jre-profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/lang/jre/files/jre-profile -------------------------------------------------------------------------------- /lang/json4lua/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/lang/json4lua/Makefile -------------------------------------------------------------------------------- /lang/lpeg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/lang/lpeg/Makefile -------------------------------------------------------------------------------- /lang/lua-bencode/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/lang/lua-bencode/Makefile -------------------------------------------------------------------------------- /lang/lua-cjson/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/lang/lua-cjson/Makefile -------------------------------------------------------------------------------- /lang/lua-copas/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/lang/lua-copas/Makefile -------------------------------------------------------------------------------- /lang/lua-coxpcall/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/lang/lua-coxpcall/Makefile -------------------------------------------------------------------------------- /lang/lua-lzlib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/lang/lua-lzlib/Makefile -------------------------------------------------------------------------------- /lang/lua-md5/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/lang/lua-md5/Makefile -------------------------------------------------------------------------------- /lang/lua-mobdebug/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/lang/lua-mobdebug/Makefile -------------------------------------------------------------------------------- /lang/lua-mosquitto/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/lang/lua-mosquitto/Makefile -------------------------------------------------------------------------------- /lang/lua-penlight/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/lang/lua-penlight/Makefile -------------------------------------------------------------------------------- /lang/lua-rings/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/lang/lua-rings/Makefile -------------------------------------------------------------------------------- /lang/lua-rs232/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/lang/lua-rs232/Makefile -------------------------------------------------------------------------------- /lang/lua-sha2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/lang/lua-sha2/Makefile -------------------------------------------------------------------------------- /lang/lua-wsapi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/lang/lua-wsapi/Makefile -------------------------------------------------------------------------------- /lang/lua-xavante/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/lang/lua-xavante/Makefile -------------------------------------------------------------------------------- /lang/luabitop/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/lang/luabitop/Makefile -------------------------------------------------------------------------------- /lang/luaexpat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/lang/luaexpat/Makefile -------------------------------------------------------------------------------- /lang/luafilesystem/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/lang/luafilesystem/Makefile -------------------------------------------------------------------------------- /lang/luai2c/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/lang/luai2c/Makefile -------------------------------------------------------------------------------- /lang/lualanes/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/lang/lualanes/Makefile -------------------------------------------------------------------------------- /lang/luaposix/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/lang/luaposix/Makefile -------------------------------------------------------------------------------- /lang/luarocks/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/lang/luarocks/Makefile -------------------------------------------------------------------------------- /lang/luasec/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/lang/luasec/Makefile -------------------------------------------------------------------------------- /lang/luasoap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/lang/luasoap/Makefile -------------------------------------------------------------------------------- /lang/luasocket/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/lang/luasocket/Makefile -------------------------------------------------------------------------------- /lang/luasql/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/lang/luasql/Makefile -------------------------------------------------------------------------------- /lang/lzmq/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/lang/lzmq/Makefile -------------------------------------------------------------------------------- /lang/micropython-lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/lang/micropython-lib/Makefile -------------------------------------------------------------------------------- /lang/micropython/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/lang/micropython/Makefile -------------------------------------------------------------------------------- /lang/node-cylon/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/lang/node-cylon/Makefile -------------------------------------------------------------------------------- /lang/node-hid/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/lang/node-hid/Makefile -------------------------------------------------------------------------------- /lang/node-serialport/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/lang/node-serialport/Makefile -------------------------------------------------------------------------------- /lang/node/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/lang/node/Makefile -------------------------------------------------------------------------------- /lang/perl-cgi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/lang/perl-cgi/Makefile -------------------------------------------------------------------------------- /lang/perl-dbi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/lang/perl-dbi/Makefile -------------------------------------------------------------------------------- /lang/perl-device-usb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/lang/perl-device-usb/Makefile -------------------------------------------------------------------------------- /lang/perl-file-listing/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/lang/perl-file-listing/Makefile -------------------------------------------------------------------------------- /lang/perl-html-form/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/lang/perl-html-form/Makefile -------------------------------------------------------------------------------- /lang/perl-html-parser/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/lang/perl-html-parser/Makefile -------------------------------------------------------------------------------- /lang/perl-html-tagset/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/lang/perl-html-tagset/Makefile -------------------------------------------------------------------------------- /lang/perl-html-tree/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/lang/perl-html-tree/Makefile -------------------------------------------------------------------------------- /lang/perl-http-cookies/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/lang/perl-http-cookies/Makefile -------------------------------------------------------------------------------- /lang/perl-http-daemon/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/lang/perl-http-daemon/Makefile -------------------------------------------------------------------------------- /lang/perl-http-date/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/lang/perl-http-date/Makefile -------------------------------------------------------------------------------- /lang/perl-http-message/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/lang/perl-http-message/Makefile -------------------------------------------------------------------------------- /lang/perl-inline-c/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/lang/perl-inline-c/Makefile -------------------------------------------------------------------------------- /lang/perl-inline/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/lang/perl-inline/Makefile -------------------------------------------------------------------------------- /lang/perl-io-html/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/lang/perl-io-html/Makefile -------------------------------------------------------------------------------- /lang/perl-net-http/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/lang/perl-net-http/Makefile -------------------------------------------------------------------------------- /lang/perl-net-telnet/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/lang/perl-net-telnet/Makefile -------------------------------------------------------------------------------- /lang/perl-sub-uplevel/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/lang/perl-sub-uplevel/Makefile -------------------------------------------------------------------------------- /lang/perl-test-harness/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/lang/perl-test-harness/Makefile -------------------------------------------------------------------------------- /lang/perl-test-warn/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/lang/perl-test-warn/Makefile -------------------------------------------------------------------------------- /lang/perl-uri/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/lang/perl-uri/Makefile -------------------------------------------------------------------------------- /lang/perl-www-curl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/lang/perl-www-curl/Makefile -------------------------------------------------------------------------------- /lang/perl-www/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/lang/perl-www/Makefile -------------------------------------------------------------------------------- /lang/perl-xml-parser/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/lang/perl-xml-parser/Makefile -------------------------------------------------------------------------------- /lang/perl/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/lang/perl/Config.in -------------------------------------------------------------------------------- /lang/perl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/lang/perl/Makefile -------------------------------------------------------------------------------- /lang/perl/README.patches: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/lang/perl/README.patches -------------------------------------------------------------------------------- /lang/perl/files/README.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/lang/perl/files/README.config -------------------------------------------------------------------------------- /lang/perl/files/arm.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/lang/perl/files/arm.config -------------------------------------------------------------------------------- /lang/perl/files/armeb.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/lang/perl/files/armeb.config -------------------------------------------------------------------------------- /lang/perl/files/base.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/lang/perl/files/base.config -------------------------------------------------------------------------------- /lang/perl/files/i486.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/lang/perl/files/i486.config -------------------------------------------------------------------------------- /lang/perl/files/libc.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/lang/perl/files/libc.config -------------------------------------------------------------------------------- /lang/perl/files/mips.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/lang/perl/files/mips.config -------------------------------------------------------------------------------- /lang/perl/files/mips64.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/lang/perl/files/mips64.config -------------------------------------------------------------------------------- /lang/perl/files/mipsel.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/lang/perl/files/mipsel.config -------------------------------------------------------------------------------- /lang/perl/files/misc.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/lang/perl/files/misc.config -------------------------------------------------------------------------------- /lang/perl/files/perlconfig.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/lang/perl/files/perlconfig.pl -------------------------------------------------------------------------------- /lang/perl/files/powerpc.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/lang/perl/files/powerpc.config -------------------------------------------------------------------------------- /lang/perl/files/signal.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/lang/perl/files/signal.config -------------------------------------------------------------------------------- /lang/perl/files/threads.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/lang/perl/files/threads.config -------------------------------------------------------------------------------- /lang/perl/files/version.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/lang/perl/files/version.config -------------------------------------------------------------------------------- /lang/perl/files/x86_64.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/lang/perl/files/x86_64.config -------------------------------------------------------------------------------- /lang/perl/perlbase.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/lang/perl/perlbase.mk -------------------------------------------------------------------------------- /lang/perl/perlmod.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/lang/perl/perlmod.mk -------------------------------------------------------------------------------- /lang/php5-pecl-dio/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/lang/php5-pecl-dio/Makefile -------------------------------------------------------------------------------- /lang/php5-pecl-propro/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/lang/php5-pecl-propro/Makefile -------------------------------------------------------------------------------- /lang/php5-pecl-raphf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/lang/php5-pecl-raphf/Makefile -------------------------------------------------------------------------------- /lang/php5/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/lang/php5/Makefile -------------------------------------------------------------------------------- /lang/php5/files/php.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/lang/php5/files/php.ini -------------------------------------------------------------------------------- /lang/php5/files/php5-fpm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/lang/php5/files/php5-fpm.conf -------------------------------------------------------------------------------- /lang/php5/files/php5-fpm.config: -------------------------------------------------------------------------------- 1 | config php5-fpm 2 | option enabled 1 3 | -------------------------------------------------------------------------------- /lang/php5/files/php5-fpm.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/lang/php5/files/php5-fpm.init -------------------------------------------------------------------------------- /lang/php5/pecl.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/lang/php5/pecl.mk -------------------------------------------------------------------------------- /lang/python-crcmod/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/lang/python-crcmod/Makefile -------------------------------------------------------------------------------- /lang/python-crypto/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/lang/python-crypto/Makefile -------------------------------------------------------------------------------- /lang/python-dns/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/lang/python-dns/Makefile -------------------------------------------------------------------------------- /lang/python-gevent/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/lang/python-gevent/Makefile -------------------------------------------------------------------------------- /lang/python-greenlet/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/lang/python-greenlet/Makefile -------------------------------------------------------------------------------- /lang/python-imglib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/lang/python-imglib/Makefile -------------------------------------------------------------------------------- /lang/python-ldap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/lang/python-ldap/Makefile -------------------------------------------------------------------------------- /lang/python-mysql/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/lang/python-mysql/Makefile -------------------------------------------------------------------------------- /lang/python-pip/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/lang/python-pip/Makefile -------------------------------------------------------------------------------- /lang/python-psycopg2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/lang/python-psycopg2/Makefile -------------------------------------------------------------------------------- /lang/python-pyserial/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/lang/python-pyserial/Makefile -------------------------------------------------------------------------------- /lang/python-setuptools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/lang/python-setuptools/Makefile -------------------------------------------------------------------------------- /lang/python-yaml/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/lang/python-yaml/Makefile -------------------------------------------------------------------------------- /lang/python/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/lang/python/Makefile -------------------------------------------------------------------------------- /lang/python/files/config.site: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/lang/python/files/config.site -------------------------------------------------------------------------------- /lang/python3-bottle/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/lang/python3-bottle/Makefile -------------------------------------------------------------------------------- /lang/python3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/lang/python3/Makefile -------------------------------------------------------------------------------- /lang/python3/files/config.site: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/lang/python3/files/config.site -------------------------------------------------------------------------------- /lang/ruby/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/lang/ruby/Makefile -------------------------------------------------------------------------------- /lang/ruby/files/ruby: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/lang/ruby/files/ruby -------------------------------------------------------------------------------- /lang/ruby/ruby_find_pkgsdeps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/lang/ruby/ruby_find_pkgsdeps -------------------------------------------------------------------------------- /lang/ruby/ruby_missingfiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/lang/ruby/ruby_missingfiles -------------------------------------------------------------------------------- /lang/simplejson/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/lang/simplejson/Makefile -------------------------------------------------------------------------------- /lang/uuid/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/lang/uuid/Makefile -------------------------------------------------------------------------------- /lang/vala/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/lang/vala/Makefile -------------------------------------------------------------------------------- /libs/alsa-lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/alsa-lib/Makefile -------------------------------------------------------------------------------- /libs/apr-util/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/apr-util/Makefile -------------------------------------------------------------------------------- /libs/apr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/apr/Makefile -------------------------------------------------------------------------------- /libs/avahi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/avahi/Makefile -------------------------------------------------------------------------------- /libs/avahi/files/service-http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/avahi/files/service-http -------------------------------------------------------------------------------- /libs/avahi/files/service-ssh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/avahi/files/service-ssh -------------------------------------------------------------------------------- /libs/boost/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/boost/Makefile -------------------------------------------------------------------------------- /libs/c-ares/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/c-ares/Makefile -------------------------------------------------------------------------------- /libs/check/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/check/Makefile -------------------------------------------------------------------------------- /libs/classpath/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/classpath/Makefile -------------------------------------------------------------------------------- /libs/confuse/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/confuse/Makefile -------------------------------------------------------------------------------- /libs/cyrus-sasl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/cyrus-sasl/Makefile -------------------------------------------------------------------------------- /libs/db47/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/db47/Makefile -------------------------------------------------------------------------------- /libs/dmx_usb_module/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/dmx_usb_module/Makefile -------------------------------------------------------------------------------- /libs/dtndht/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/dtndht/Makefile -------------------------------------------------------------------------------- /libs/engine_pkcs11/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/engine_pkcs11/Makefile -------------------------------------------------------------------------------- /libs/expat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/expat/Makefile -------------------------------------------------------------------------------- /libs/faad2/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/faad2/Config.in -------------------------------------------------------------------------------- /libs/faad2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/faad2/Makefile -------------------------------------------------------------------------------- /libs/fcgi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/fcgi/Makefile -------------------------------------------------------------------------------- /libs/fftw3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/fftw3/Makefile -------------------------------------------------------------------------------- /libs/file/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/file/Makefile -------------------------------------------------------------------------------- /libs/flac/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/flac/Makefile -------------------------------------------------------------------------------- /libs/freetype/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/freetype/Makefile -------------------------------------------------------------------------------- /libs/gdbm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/gdbm/Makefile -------------------------------------------------------------------------------- /libs/giflib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/giflib/Makefile -------------------------------------------------------------------------------- /libs/glib2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/glib2/Makefile -------------------------------------------------------------------------------- /libs/glpk/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/glpk/Makefile -------------------------------------------------------------------------------- /libs/gnutls/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/gnutls/Config.in -------------------------------------------------------------------------------- /libs/gnutls/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/gnutls/Makefile -------------------------------------------------------------------------------- /libs/gperf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/gperf/Makefile -------------------------------------------------------------------------------- /libs/hidapi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/hidapi/Makefile -------------------------------------------------------------------------------- /libs/hiredis/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/hiredis/Makefile -------------------------------------------------------------------------------- /libs/ibrcommon/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/ibrcommon/Makefile -------------------------------------------------------------------------------- /libs/ibrdtn/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/ibrdtn/Makefile -------------------------------------------------------------------------------- /libs/ijs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/ijs/Makefile -------------------------------------------------------------------------------- /libs/intltool/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/intltool/Makefile -------------------------------------------------------------------------------- /libs/jansson/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/jansson/Makefile -------------------------------------------------------------------------------- /libs/jbigkit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/jbigkit/Makefile -------------------------------------------------------------------------------- /libs/lcms2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/lcms2/Makefile -------------------------------------------------------------------------------- /libs/ldns/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/ldns/Makefile -------------------------------------------------------------------------------- /libs/libaio/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/libaio/Makefile -------------------------------------------------------------------------------- /libs/libantlr3c/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/libantlr3c/Makefile -------------------------------------------------------------------------------- /libs/libao/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/libao/Makefile -------------------------------------------------------------------------------- /libs/libarchive/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/libarchive/Makefile -------------------------------------------------------------------------------- /libs/libartnet/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/libartnet/Makefile -------------------------------------------------------------------------------- /libs/libaudiofile/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/libaudiofile/Makefile -------------------------------------------------------------------------------- /libs/libavl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/libavl/Makefile -------------------------------------------------------------------------------- /libs/libcanfestival/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/libcanfestival/Makefile -------------------------------------------------------------------------------- /libs/libcap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/libcap/Makefile -------------------------------------------------------------------------------- /libs/libcoap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/libcoap/Makefile -------------------------------------------------------------------------------- /libs/libdaemon/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/libdaemon/Makefile -------------------------------------------------------------------------------- /libs/libdaq/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/libdaq/Makefile -------------------------------------------------------------------------------- /libs/libdbi-drivers/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/libdbi-drivers/Makefile -------------------------------------------------------------------------------- /libs/libdbi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/libdbi/Makefile -------------------------------------------------------------------------------- /libs/libdmapsharing/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/libdmapsharing/Makefile -------------------------------------------------------------------------------- /libs/libdnet/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/libdnet/Makefile -------------------------------------------------------------------------------- /libs/libesmtp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/libesmtp/Makefile -------------------------------------------------------------------------------- /libs/libev/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/libev/Makefile -------------------------------------------------------------------------------- /libs/libevdev/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/libevdev/Makefile -------------------------------------------------------------------------------- /libs/libevent/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/libevent/Makefile -------------------------------------------------------------------------------- /libs/libevhtp-1.1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/libevhtp-1.1/Makefile -------------------------------------------------------------------------------- /libs/libevhtp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/libevhtp/Makefile -------------------------------------------------------------------------------- /libs/libexif/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/libexif/Makefile -------------------------------------------------------------------------------- /libs/libextractor/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/libextractor/Makefile -------------------------------------------------------------------------------- /libs/libffi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/libffi/Makefile -------------------------------------------------------------------------------- /libs/libftdi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/libftdi/Makefile -------------------------------------------------------------------------------- /libs/libftdi1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/libftdi1/Makefile -------------------------------------------------------------------------------- /libs/libgcrypt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/libgcrypt/Makefile -------------------------------------------------------------------------------- /libs/libgd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/libgd/Makefile -------------------------------------------------------------------------------- /libs/libgee/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/libgee/Makefile -------------------------------------------------------------------------------- /libs/libgpg-error/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/libgpg-error/Makefile -------------------------------------------------------------------------------- /libs/libhttp-parser/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/libhttp-parser/Makefile -------------------------------------------------------------------------------- /libs/libical/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/libical/Makefile -------------------------------------------------------------------------------- /libs/libid3tag/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/libid3tag/Makefile -------------------------------------------------------------------------------- /libs/libidn/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/libidn/Makefile -------------------------------------------------------------------------------- /libs/libimobiledevice/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/libimobiledevice/Makefile -------------------------------------------------------------------------------- /libs/libinput/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/libinput/Makefile -------------------------------------------------------------------------------- /libs/libjpeg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/libjpeg/Makefile -------------------------------------------------------------------------------- /libs/liblo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/liblo/Makefile -------------------------------------------------------------------------------- /libs/liblz4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/liblz4/Makefile -------------------------------------------------------------------------------- /libs/libmad/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/libmad/Makefile -------------------------------------------------------------------------------- /libs/libmcrypt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/libmcrypt/Makefile -------------------------------------------------------------------------------- /libs/libmicrohttpd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/libmicrohttpd/Makefile -------------------------------------------------------------------------------- /libs/libmms/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/libmms/Makefile -------------------------------------------------------------------------------- /libs/libmodbus/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/libmodbus/Makefile -------------------------------------------------------------------------------- /libs/libmpdclient/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/libmpdclient/Makefile -------------------------------------------------------------------------------- /libs/libmpeg2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/libmpeg2/Makefile -------------------------------------------------------------------------------- /libs/libmraa/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/libmraa/Makefile -------------------------------------------------------------------------------- /libs/libnatpmp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/libnatpmp/Makefile -------------------------------------------------------------------------------- /libs/libnet-1.2.x/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/libnet-1.2.x/Makefile -------------------------------------------------------------------------------- /libs/libnetfilter-acct/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/libnetfilter-acct/Makefile -------------------------------------------------------------------------------- /libs/libnfc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/libnfc/Makefile -------------------------------------------------------------------------------- /libs/libogg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/libogg/Makefile -------------------------------------------------------------------------------- /libs/liboil/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/liboil/Makefile -------------------------------------------------------------------------------- /libs/liboping/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/liboping/Makefile -------------------------------------------------------------------------------- /libs/libowfat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/libowfat/Makefile -------------------------------------------------------------------------------- /libs/libp11/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/libp11/Makefile -------------------------------------------------------------------------------- /libs/libpam/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/libpam/Makefile -------------------------------------------------------------------------------- /libs/libpam/files/pam.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/libpam/files/pam.conf -------------------------------------------------------------------------------- /libs/libpam/files/pam.d/other: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/libpam/files/pam.d/other -------------------------------------------------------------------------------- /libs/libplist/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/libplist/Makefile -------------------------------------------------------------------------------- /libs/libpng/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/libpng/Makefile -------------------------------------------------------------------------------- /libs/libradcli/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/libradcli/Config.in -------------------------------------------------------------------------------- /libs/libradcli/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/libradcli/Makefile -------------------------------------------------------------------------------- /libs/libsamplerate/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/libsamplerate/Makefile -------------------------------------------------------------------------------- /libs/libsearpc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/libsearpc/Makefile -------------------------------------------------------------------------------- /libs/libseccomp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/libseccomp/Makefile -------------------------------------------------------------------------------- /libs/libshout/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/libshout/Makefile -------------------------------------------------------------------------------- /libs/libsigc++/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/libsigc++/Makefile -------------------------------------------------------------------------------- /libs/libsndfile/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/libsndfile/Makefile -------------------------------------------------------------------------------- /libs/libsodium/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/libsodium/Makefile -------------------------------------------------------------------------------- /libs/libsoup/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/libsoup/Makefile -------------------------------------------------------------------------------- /libs/libsoxr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/libsoxr/Makefile -------------------------------------------------------------------------------- /libs/libssh2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/libssh2/Makefile -------------------------------------------------------------------------------- /libs/libstrophe/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/libstrophe/Config.in -------------------------------------------------------------------------------- /libs/libstrophe/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/libstrophe/Makefile -------------------------------------------------------------------------------- /libs/libtasn1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/libtasn1/Makefile -------------------------------------------------------------------------------- /libs/libtheora/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/libtheora/Makefile -------------------------------------------------------------------------------- /libs/libtorrent/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/libtorrent/Makefile -------------------------------------------------------------------------------- /libs/libudns/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/libudns/Makefile -------------------------------------------------------------------------------- /libs/libuecc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/libuecc/Makefile -------------------------------------------------------------------------------- /libs/libugpio/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/libugpio/Makefile -------------------------------------------------------------------------------- /libs/libunistring/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/libunistring/Makefile -------------------------------------------------------------------------------- /libs/libupm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/libupm/Makefile -------------------------------------------------------------------------------- /libs/libupnp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/libupnp/Makefile -------------------------------------------------------------------------------- /libs/libupnpp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/libupnpp/Makefile -------------------------------------------------------------------------------- /libs/liburcu/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/liburcu/Makefile -------------------------------------------------------------------------------- /libs/libusbmuxd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/libusbmuxd/Makefile -------------------------------------------------------------------------------- /libs/libuv/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/libuv/Makefile -------------------------------------------------------------------------------- /libs/libuvc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/libuvc/Makefile -------------------------------------------------------------------------------- /libs/libv4l/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/libv4l/Makefile -------------------------------------------------------------------------------- /libs/libvorbis/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/libvorbis/Makefile -------------------------------------------------------------------------------- /libs/libvorbisidec/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/libvorbisidec/Makefile -------------------------------------------------------------------------------- /libs/libvpx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/libvpx/Makefile -------------------------------------------------------------------------------- /libs/libwebsockets/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/libwebsockets/Makefile -------------------------------------------------------------------------------- /libs/libxerces-c/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/libxerces-c/Makefile -------------------------------------------------------------------------------- /libs/libxml2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/libxml2/Makefile -------------------------------------------------------------------------------- /libs/libxslt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/libxslt/Makefile -------------------------------------------------------------------------------- /libs/libzdb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/libzdb/Makefile -------------------------------------------------------------------------------- /libs/lttng-ust/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/lttng-ust/Makefile -------------------------------------------------------------------------------- /libs/mtdev/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/mtdev/Makefile -------------------------------------------------------------------------------- /libs/mxml/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/mxml/Makefile -------------------------------------------------------------------------------- /libs/nacl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/nacl/Makefile -------------------------------------------------------------------------------- /libs/nacl/do-openwrt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/nacl/do-openwrt -------------------------------------------------------------------------------- /libs/neon/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/neon/Makefile -------------------------------------------------------------------------------- /libs/opencv/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/opencv/Makefile -------------------------------------------------------------------------------- /libs/opencv/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/opencv/README.md -------------------------------------------------------------------------------- /libs/openldap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/openldap/Makefile -------------------------------------------------------------------------------- /libs/openldap/files/ldap.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/openldap/files/ldap.init -------------------------------------------------------------------------------- /libs/opus/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/opus/Makefile -------------------------------------------------------------------------------- /libs/p11-kit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/p11-kit/Makefile -------------------------------------------------------------------------------- /libs/p11-kit/files/opensc.module: -------------------------------------------------------------------------------- 1 | module: /usr/lib/opensc-pkcs11.so 2 | -------------------------------------------------------------------------------- /libs/pcre/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/pcre/Makefile -------------------------------------------------------------------------------- /libs/postgresql/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/postgresql/Makefile -------------------------------------------------------------------------------- /libs/protobuf-c/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/protobuf-c/Makefile -------------------------------------------------------------------------------- /libs/protobuf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/protobuf/Makefile -------------------------------------------------------------------------------- /libs/pthsem/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/pthsem/Makefile -------------------------------------------------------------------------------- /libs/qrencode/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/qrencode/Makefile -------------------------------------------------------------------------------- /libs/sbc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/sbc/Makefile -------------------------------------------------------------------------------- /libs/speex/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/speex/Makefile -------------------------------------------------------------------------------- /libs/sqlite3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/sqlite3/Makefile -------------------------------------------------------------------------------- /libs/tcp_wrappers/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/tcp_wrappers/Makefile -------------------------------------------------------------------------------- /libs/tdb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/tdb/Makefile -------------------------------------------------------------------------------- /libs/tiff/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/tiff/Makefile -------------------------------------------------------------------------------- /libs/tinycdb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/tinycdb/Makefile -------------------------------------------------------------------------------- /libs/toxcore/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/toxcore/Makefile -------------------------------------------------------------------------------- /libs/unixodbc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/unixodbc/Makefile -------------------------------------------------------------------------------- /libs/vips/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/vips/Makefile -------------------------------------------------------------------------------- /libs/xmlrpc-c/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/xmlrpc-c/Makefile -------------------------------------------------------------------------------- /libs/yajl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/yajl/Makefile -------------------------------------------------------------------------------- /libs/yaml/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/yaml/Makefile -------------------------------------------------------------------------------- /libs/zmq/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/libs/zmq/Makefile -------------------------------------------------------------------------------- /mail/alpine/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/mail/alpine/Makefile -------------------------------------------------------------------------------- /mail/bogofilter/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/mail/bogofilter/Makefile -------------------------------------------------------------------------------- /mail/dovecot/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/mail/dovecot/Makefile -------------------------------------------------------------------------------- /mail/dovecot/files/dovecot.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/mail/dovecot/files/dovecot.init -------------------------------------------------------------------------------- /mail/fdm/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/mail/fdm/Config.in -------------------------------------------------------------------------------- /mail/fdm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/mail/fdm/Makefile -------------------------------------------------------------------------------- /mail/fdm/files/etc/fdm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/mail/fdm/files/etc/fdm.conf -------------------------------------------------------------------------------- /mail/fdm/src/compat/b64_ntop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/mail/fdm/src/compat/b64_ntop.c -------------------------------------------------------------------------------- /mail/fdm/src/compat/b64_pton.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/mail/fdm/src/compat/b64_pton.c -------------------------------------------------------------------------------- /mail/mailman/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/mail/mailman/Makefile -------------------------------------------------------------------------------- /mail/mailman/files/mailman.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/mail/mailman/files/mailman.init -------------------------------------------------------------------------------- /mail/mailsend/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/mail/mailsend/Makefile -------------------------------------------------------------------------------- /mail/msmtp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/mail/msmtp/Makefile -------------------------------------------------------------------------------- /mail/nail/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/mail/nail/Makefile -------------------------------------------------------------------------------- /mail/postfix/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/mail/postfix/Makefile -------------------------------------------------------------------------------- /mail/postfix/files/postfix.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/mail/postfix/files/postfix.init -------------------------------------------------------------------------------- /mail/ssmtp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/mail/ssmtp/Makefile -------------------------------------------------------------------------------- /multimedia/crtmpserver/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/multimedia/crtmpserver/Makefile -------------------------------------------------------------------------------- /multimedia/ffmpeg/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/multimedia/ffmpeg/Config.in -------------------------------------------------------------------------------- /multimedia/ffmpeg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/multimedia/ffmpeg/Makefile -------------------------------------------------------------------------------- /multimedia/fswebcam/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/multimedia/fswebcam/Makefile -------------------------------------------------------------------------------- /multimedia/grilo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/multimedia/grilo/Makefile -------------------------------------------------------------------------------- /multimedia/gst1-libav/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/multimedia/gst1-libav/Config.in -------------------------------------------------------------------------------- /multimedia/gst1-libav/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/multimedia/gst1-libav/Makefile -------------------------------------------------------------------------------- /multimedia/gstreamer1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/multimedia/gstreamer1/Makefile -------------------------------------------------------------------------------- /multimedia/icecast/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/multimedia/icecast/Makefile -------------------------------------------------------------------------------- /multimedia/ices/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/multimedia/ices/Makefile -------------------------------------------------------------------------------- /multimedia/lcdgrilo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/multimedia/lcdgrilo/Makefile -------------------------------------------------------------------------------- /multimedia/minidlna/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/multimedia/minidlna/Makefile -------------------------------------------------------------------------------- /multimedia/motion/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/multimedia/motion/Makefile -------------------------------------------------------------------------------- /multimedia/oggfwd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/multimedia/oggfwd/Makefile -------------------------------------------------------------------------------- /multimedia/tvheadend/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/multimedia/tvheadend/Config.in -------------------------------------------------------------------------------- /multimedia/tvheadend/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/multimedia/tvheadend/Makefile -------------------------------------------------------------------------------- /multimedia/xupnpd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/multimedia/xupnpd/Makefile -------------------------------------------------------------------------------- /net/adblock/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/adblock/Makefile -------------------------------------------------------------------------------- /net/adblock/files/etc/adblock/adblock.blacklist: -------------------------------------------------------------------------------- 1 | bild.de 2 | -------------------------------------------------------------------------------- /net/aircrack-ng/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/aircrack-ng/Makefile -------------------------------------------------------------------------------- /net/announce/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/announce/Makefile -------------------------------------------------------------------------------- /net/apache/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/apache/Makefile -------------------------------------------------------------------------------- /net/apcupsd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/apcupsd/Makefile -------------------------------------------------------------------------------- /net/apcupsd/files/apccontrol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/apcupsd/files/apccontrol -------------------------------------------------------------------------------- /net/apcupsd/files/apcupsd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/apcupsd/files/apcupsd.conf -------------------------------------------------------------------------------- /net/apcupsd/files/apcupsd.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/apcupsd/files/apcupsd.css -------------------------------------------------------------------------------- /net/apcupsd/files/apcupsd.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/apcupsd/files/apcupsd.init -------------------------------------------------------------------------------- /net/apcupsd/files/changeme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/apcupsd/files/changeme -------------------------------------------------------------------------------- /net/apcupsd/files/commfailure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/apcupsd/files/commfailure -------------------------------------------------------------------------------- /net/apcupsd/files/commok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/apcupsd/files/commok -------------------------------------------------------------------------------- /net/apcupsd/files/hosts.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/apcupsd/files/hosts.conf -------------------------------------------------------------------------------- /net/apcupsd/files/multimon.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/apcupsd/files/multimon.conf -------------------------------------------------------------------------------- /net/apcupsd/files/offbattery: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/apcupsd/files/offbattery -------------------------------------------------------------------------------- /net/apcupsd/files/onbattery: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/apcupsd/files/onbattery -------------------------------------------------------------------------------- /net/apinger/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/apinger/Makefile -------------------------------------------------------------------------------- /net/apinger/files/apinger.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/apinger/files/apinger.init -------------------------------------------------------------------------------- /net/aria2/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/aria2/Config.in -------------------------------------------------------------------------------- /net/aria2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/aria2/Makefile -------------------------------------------------------------------------------- /net/atftp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/atftp/Makefile -------------------------------------------------------------------------------- /net/bcp38/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/bcp38/Makefile -------------------------------------------------------------------------------- /net/bcp38/files/bcp38.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/bcp38/files/bcp38.config -------------------------------------------------------------------------------- /net/bcp38/files/bcp38.defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/bcp38/files/bcp38.defaults -------------------------------------------------------------------------------- /net/bcp38/files/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/bcp38/files/run.sh -------------------------------------------------------------------------------- /net/bind/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/bind/Makefile -------------------------------------------------------------------------------- /net/bind/files/bind/db.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/bind/files/bind/db.0 -------------------------------------------------------------------------------- /net/bind/files/bind/db.127: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/bind/files/bind/db.127 -------------------------------------------------------------------------------- /net/bind/files/bind/db.255: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/bind/files/bind/db.255 -------------------------------------------------------------------------------- /net/bind/files/bind/db.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/bind/files/bind/db.local -------------------------------------------------------------------------------- /net/bind/files/bind/db.root: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/bind/files/bind/db.root -------------------------------------------------------------------------------- /net/bind/files/named.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/bind/files/named.init -------------------------------------------------------------------------------- /net/bmon/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/bmon/Makefile -------------------------------------------------------------------------------- /net/bridge-utils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/bridge-utils/Makefile -------------------------------------------------------------------------------- /net/bwm-ng/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/bwm-ng/Config.in -------------------------------------------------------------------------------- /net/bwm-ng/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/bwm-ng/Makefile -------------------------------------------------------------------------------- /net/cgi-io/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/cgi-io/Makefile -------------------------------------------------------------------------------- /net/cgi-io/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/cgi-io/src/CMakeLists.txt -------------------------------------------------------------------------------- /net/cgi-io/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/cgi-io/src/main.c -------------------------------------------------------------------------------- /net/chaosvpn/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/chaosvpn/Makefile -------------------------------------------------------------------------------- /net/chrony/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/chrony/Makefile -------------------------------------------------------------------------------- /net/chrony/files/chrony.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/chrony/files/chrony.conf -------------------------------------------------------------------------------- /net/chrony/files/chrony.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/chrony/files/chrony.config -------------------------------------------------------------------------------- /net/chrony/files/chrony.hotplug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/chrony/files/chrony.hotplug -------------------------------------------------------------------------------- /net/chrony/files/chronyd.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/chrony/files/chronyd.init -------------------------------------------------------------------------------- /net/clamav/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/clamav/Makefile -------------------------------------------------------------------------------- /net/clamav/files/bytecode.cvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/clamav/files/bytecode.cvd -------------------------------------------------------------------------------- /net/clamav/files/clamav.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/clamav/files/clamav.config -------------------------------------------------------------------------------- /net/clamav/files/clamav.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/clamav/files/clamav.init -------------------------------------------------------------------------------- /net/clamav/files/freshclam.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/clamav/files/freshclam.init -------------------------------------------------------------------------------- /net/coova-chilli/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/coova-chilli/Config.in -------------------------------------------------------------------------------- /net/coova-chilli/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/coova-chilli/Makefile -------------------------------------------------------------------------------- /net/cshark/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/cshark/Makefile -------------------------------------------------------------------------------- /net/ctorrent-svn/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/ctorrent-svn/Makefile -------------------------------------------------------------------------------- /net/ctorrent/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/ctorrent/Makefile -------------------------------------------------------------------------------- /net/dansguardian/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/dansguardian/Makefile -------------------------------------------------------------------------------- /net/davfs2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/davfs2/Makefile -------------------------------------------------------------------------------- /net/davfs2/files/davfs2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/davfs2/files/davfs2.conf -------------------------------------------------------------------------------- /net/ddns-scripts/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/ddns-scripts/Makefile -------------------------------------------------------------------------------- /net/ddns-scripts/files/services: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/ddns-scripts/files/services -------------------------------------------------------------------------------- /net/dhcpcd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/dhcpcd/Makefile -------------------------------------------------------------------------------- /net/dhcpcd/files/dhcpcd.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/dhcpcd/files/dhcpcd.init -------------------------------------------------------------------------------- /net/dmapd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/dmapd/Makefile -------------------------------------------------------------------------------- /net/dmapd/files/dmapd.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/dmapd/files/dmapd.init -------------------------------------------------------------------------------- /net/dnscrypt-proxy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/dnscrypt-proxy/Makefile -------------------------------------------------------------------------------- /net/e2guardian/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/e2guardian/Makefile -------------------------------------------------------------------------------- /net/emailrelay/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/emailrelay/Makefile -------------------------------------------------------------------------------- /net/esniper/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/esniper/Makefile -------------------------------------------------------------------------------- /net/etherwake/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/etherwake/Makefile -------------------------------------------------------------------------------- /net/ethtool/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/ethtool/Config.in -------------------------------------------------------------------------------- /net/ethtool/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/ethtool/Makefile -------------------------------------------------------------------------------- /net/fakeidentd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/fakeidentd/Makefile -------------------------------------------------------------------------------- /net/fastd/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/fastd/Config.in -------------------------------------------------------------------------------- /net/fastd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/fastd/Makefile -------------------------------------------------------------------------------- /net/fastd/files/fastd.upgrade: -------------------------------------------------------------------------------- 1 | /etc/fastd/ 2 | -------------------------------------------------------------------------------- /net/fossil/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/fossil/Makefile -------------------------------------------------------------------------------- /net/fossil/files/fossil.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/fossil/files/fossil.config -------------------------------------------------------------------------------- /net/fossil/files/fossil.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/fossil/files/fossil.init -------------------------------------------------------------------------------- /net/freeradius2/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/freeradius2/Config.in -------------------------------------------------------------------------------- /net/freeradius2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/freeradius2/Makefile -------------------------------------------------------------------------------- /net/fwknop/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/fwknop/Config.in -------------------------------------------------------------------------------- /net/fwknop/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/fwknop/Makefile -------------------------------------------------------------------------------- /net/fwknop/files/fwknopd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/fwknop/files/fwknopd -------------------------------------------------------------------------------- /net/fwknop/files/fwknopd.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/fwknop/files/fwknopd.init -------------------------------------------------------------------------------- /net/git/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/git/Makefile -------------------------------------------------------------------------------- /net/gnunet/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/gnunet/Makefile -------------------------------------------------------------------------------- /net/gnunet/files/gnunet.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/gnunet/files/gnunet.init -------------------------------------------------------------------------------- /net/gnunet/files/gnunet.upgrade: -------------------------------------------------------------------------------- 1 | /etc/gnunet 2 | -------------------------------------------------------------------------------- /net/gnurl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/gnurl/Makefile -------------------------------------------------------------------------------- /net/haproxy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/haproxy/Makefile -------------------------------------------------------------------------------- /net/haproxy/files/haproxy.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/haproxy/files/haproxy.cfg -------------------------------------------------------------------------------- /net/haproxy/files/haproxy.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/haproxy/files/haproxy.init -------------------------------------------------------------------------------- /net/horst/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/horst/Makefile -------------------------------------------------------------------------------- /net/htpdate/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/htpdate/Makefile -------------------------------------------------------------------------------- /net/htpdate/files/htpdate.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/htpdate/files/htpdate.init -------------------------------------------------------------------------------- /net/ibrdtn-tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/ibrdtn-tools/Makefile -------------------------------------------------------------------------------- /net/ibrdtnd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/ibrdtnd/Makefile -------------------------------------------------------------------------------- /net/ibrdtnd/files/ibrdtn.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/ibrdtnd/files/ibrdtn.init -------------------------------------------------------------------------------- /net/ibrdtnd/files/ibrdtn.uci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/ibrdtnd/files/ibrdtn.uci -------------------------------------------------------------------------------- /net/iodine/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/iodine/Makefile -------------------------------------------------------------------------------- /net/iodine/files/iodined.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/iodine/files/iodined.config -------------------------------------------------------------------------------- /net/iodine/files/iodined.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/iodine/files/iodined.init -------------------------------------------------------------------------------- /net/iotivity/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/iotivity/Makefile -------------------------------------------------------------------------------- /net/ipsec-tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/ipsec-tools/Makefile -------------------------------------------------------------------------------- /net/ipsec-tools/files/racoon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/ipsec-tools/files/racoon -------------------------------------------------------------------------------- /net/ipsec-tools/files/vpnctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/ipsec-tools/files/vpnctl -------------------------------------------------------------------------------- /net/irssi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/irssi/Makefile -------------------------------------------------------------------------------- /net/keepalived/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/keepalived/Makefile -------------------------------------------------------------------------------- /net/kismet/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/kismet/Makefile -------------------------------------------------------------------------------- /net/kismet/files/kismet.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/kismet/files/kismet.conf -------------------------------------------------------------------------------- /net/kismet/files/kismet_drone.config: -------------------------------------------------------------------------------- 1 | config kismet_drone 2 | option enabled 0 3 | -------------------------------------------------------------------------------- /net/kismet/files/kismet_server.config: -------------------------------------------------------------------------------- 1 | config kismet_server 2 | option enabled 0 3 | -------------------------------------------------------------------------------- /net/knot/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/knot/Makefile -------------------------------------------------------------------------------- /net/knot/files/knotd.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/knot/files/knotd.init -------------------------------------------------------------------------------- /net/knot/files/runtests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/knot/files/runtests.sh -------------------------------------------------------------------------------- /net/knxd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/knxd/Makefile -------------------------------------------------------------------------------- /net/knxd/files/knxd.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/knxd/files/knxd.config -------------------------------------------------------------------------------- /net/knxd/files/knxd.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/knxd/files/knxd.init -------------------------------------------------------------------------------- /net/kplex/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/kplex/Makefile -------------------------------------------------------------------------------- /net/kplex/files/kplex.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/kplex/files/kplex.init -------------------------------------------------------------------------------- /net/krb5/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/krb5/Makefile -------------------------------------------------------------------------------- /net/krb5/files/krb5kdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/krb5/files/krb5kdc -------------------------------------------------------------------------------- /net/l7-protocols/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/l7-protocols/Makefile -------------------------------------------------------------------------------- /net/lftp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/lftp/Makefile -------------------------------------------------------------------------------- /net/lighttpd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/lighttpd/Makefile -------------------------------------------------------------------------------- /net/linknx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/linknx/Makefile -------------------------------------------------------------------------------- /net/linknx/files/linknx.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/linknx/files/linknx.config -------------------------------------------------------------------------------- /net/linknx/files/linknx.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/linknx/files/linknx.init -------------------------------------------------------------------------------- /net/lispmob/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/lispmob/Makefile -------------------------------------------------------------------------------- /net/lksctp-tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/lksctp-tools/Makefile -------------------------------------------------------------------------------- /net/luci-app-bcp38/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/luci-app-bcp38/Makefile -------------------------------------------------------------------------------- /net/luci-app-clamav/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/luci-app-clamav/Makefile -------------------------------------------------------------------------------- /net/luci-app-squid/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/luci-app-squid/Makefile -------------------------------------------------------------------------------- /net/mac-telnet/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/mac-telnet/Makefile -------------------------------------------------------------------------------- /net/mdnsresponder/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/mdnsresponder/Makefile -------------------------------------------------------------------------------- /net/memcached/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/memcached/Makefile -------------------------------------------------------------------------------- /net/miniupnpc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/miniupnpc/Makefile -------------------------------------------------------------------------------- /net/mosquitto/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/mosquitto/Config.in -------------------------------------------------------------------------------- /net/mosquitto/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/mosquitto/Makefile -------------------------------------------------------------------------------- /net/mtr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/mtr/Makefile -------------------------------------------------------------------------------- /net/mwan3-luci/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/mwan3-luci/Makefile -------------------------------------------------------------------------------- /net/mwan3-luci/files/usr/lib/lua/luci/view/admin_status/index/mwan.htm: -------------------------------------------------------------------------------- 1 | <%+mwan/openwrt_overview_status%> 2 | -------------------------------------------------------------------------------- /net/mwan3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/mwan3/Makefile -------------------------------------------------------------------------------- /net/mwan3/files/usr/sbin/mwan3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/mwan3/files/usr/sbin/mwan3 -------------------------------------------------------------------------------- /net/nbd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/nbd/Makefile -------------------------------------------------------------------------------- /net/nbd/files/nbd-client.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/nbd/files/nbd-client.conf -------------------------------------------------------------------------------- /net/nbd/files/nbd-client.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/nbd/files/nbd-client.init -------------------------------------------------------------------------------- /net/nbd/files/nbd-server.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/nbd/files/nbd-server.conf -------------------------------------------------------------------------------- /net/nbd/files/nbd-server.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/nbd/files/nbd-server.init -------------------------------------------------------------------------------- /net/net-snmp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/net-snmp/Makefile -------------------------------------------------------------------------------- /net/net-snmp/files/snmpd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/net-snmp/files/snmpd.conf -------------------------------------------------------------------------------- /net/net-snmp/files/snmpd.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/net-snmp/files/snmpd.init -------------------------------------------------------------------------------- /net/netatalk/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/netatalk/Makefile -------------------------------------------------------------------------------- /net/netatalk/files/AppleVolumes.default: -------------------------------------------------------------------------------- 1 | - 2 | /tmp Temp allow:root,nobody cnidscheme:dbd 3 | -------------------------------------------------------------------------------- /net/netatalk/files/afpd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/netatalk/files/afpd.conf -------------------------------------------------------------------------------- /net/netatalk/files/afpd.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/netatalk/files/afpd.init -------------------------------------------------------------------------------- /net/netcat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/netcat/Makefile -------------------------------------------------------------------------------- /net/netdiscover/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/netdiscover/Makefile -------------------------------------------------------------------------------- /net/netperf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/netperf/Makefile -------------------------------------------------------------------------------- /net/nfs-kernel-server/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/nfs-kernel-server/Makefile -------------------------------------------------------------------------------- /net/nfs-kernel-server/files/nfsd.exports: -------------------------------------------------------------------------------- 1 | /mnt *(ro,all_squash,insecure,sync) 2 | -------------------------------------------------------------------------------- /net/nginx/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/nginx/Config.in -------------------------------------------------------------------------------- /net/nginx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/nginx/Makefile -------------------------------------------------------------------------------- /net/nginx/files/nginx.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/nginx/files/nginx.init -------------------------------------------------------------------------------- /net/ngircd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/ngircd/Makefile -------------------------------------------------------------------------------- /net/ngircd/files/ngircd.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/ngircd/files/ngircd.init -------------------------------------------------------------------------------- /net/nmap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/nmap/Makefile -------------------------------------------------------------------------------- /net/nsd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/nsd/Makefile -------------------------------------------------------------------------------- /net/nsd/files/nsd.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/nsd/files/nsd.init -------------------------------------------------------------------------------- /net/ntpclient/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/ntpclient/Makefile -------------------------------------------------------------------------------- /net/ntpd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/ntpd/Makefile -------------------------------------------------------------------------------- /net/ntpd/files/ntp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/ntpd/files/ntp.conf -------------------------------------------------------------------------------- /net/ntpd/files/ntpd.hotplug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/ntpd/files/ntpd.hotplug -------------------------------------------------------------------------------- /net/ntpd/files/ntpd.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/ntpd/files/ntpd.init -------------------------------------------------------------------------------- /net/ntpd/files/ntpdate.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/ntpd/files/ntpdate.init -------------------------------------------------------------------------------- /net/ntripcaster/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/ntripcaster/Makefile -------------------------------------------------------------------------------- /net/ntripclient/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/ntripclient/Makefile -------------------------------------------------------------------------------- /net/ntripserver/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/ntripserver/Makefile -------------------------------------------------------------------------------- /net/nut/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/nut/Config.in -------------------------------------------------------------------------------- /net/nut/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/nut/Makefile -------------------------------------------------------------------------------- /net/nut/files/nut-monitor.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/nut/files/nut-monitor.init -------------------------------------------------------------------------------- /net/nut/files/nut-server.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/nut/files/nut-server.init -------------------------------------------------------------------------------- /net/nut/files/nut.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/nut/files/nut.service -------------------------------------------------------------------------------- /net/ocserv/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/ocserv/Config.in -------------------------------------------------------------------------------- /net/ocserv/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/ocserv/Makefile -------------------------------------------------------------------------------- /net/ocserv/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/ocserv/README -------------------------------------------------------------------------------- /net/ocserv/files/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/ocserv/files/config -------------------------------------------------------------------------------- /net/ocserv/files/ocserv.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/ocserv/files/ocserv.init -------------------------------------------------------------------------------- /net/ocserv/files/ocserv.upgrade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/ocserv/files/ocserv.upgrade -------------------------------------------------------------------------------- /net/ola/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/ola/Makefile -------------------------------------------------------------------------------- /net/ola/files/olad.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/ola/files/olad.init -------------------------------------------------------------------------------- /net/openconnect/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/openconnect/Config.in -------------------------------------------------------------------------------- /net/openconnect/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/openconnect/Makefile -------------------------------------------------------------------------------- /net/openconnect/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/openconnect/README -------------------------------------------------------------------------------- /net/opennhrp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/opennhrp/Makefile -------------------------------------------------------------------------------- /net/openssh/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/openssh/Makefile -------------------------------------------------------------------------------- /net/openssh/files/sshd.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/openssh/files/sshd.init -------------------------------------------------------------------------------- /net/openssh/files/sshd.pam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/openssh/files/sshd.pam -------------------------------------------------------------------------------- /net/opentracker/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/opentracker/Makefile -------------------------------------------------------------------------------- /net/openvswitch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/openvswitch/Makefile -------------------------------------------------------------------------------- /net/p910nd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/p910nd/Makefile -------------------------------------------------------------------------------- /net/p910nd/files/p910nd.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/p910nd/files/p910nd.config -------------------------------------------------------------------------------- /net/p910nd/files/p910nd.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/p910nd/files/p910nd.init -------------------------------------------------------------------------------- /net/pen/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/pen/Makefile -------------------------------------------------------------------------------- /net/polipo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/polipo/Makefile -------------------------------------------------------------------------------- /net/polipo/files/polipo.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/polipo/files/polipo.config -------------------------------------------------------------------------------- /net/polipo/files/polipo.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/polipo/files/polipo.init -------------------------------------------------------------------------------- /net/portmap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/portmap/Makefile -------------------------------------------------------------------------------- /net/portmap/files/portmap.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/portmap/files/portmap.init -------------------------------------------------------------------------------- /net/pppossh/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/pppossh/Makefile -------------------------------------------------------------------------------- /net/pppossh/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/pppossh/README.md -------------------------------------------------------------------------------- /net/pppossh/files/pppossh.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/pppossh/files/pppossh.sh -------------------------------------------------------------------------------- /net/pptpd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/pptpd/Makefile -------------------------------------------------------------------------------- /net/pptpd/files/options.pptpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/pptpd/files/options.pptpd -------------------------------------------------------------------------------- /net/pptpd/files/pptpd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/pptpd/files/pptpd.conf -------------------------------------------------------------------------------- /net/pptpd/files/pptpd.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/pptpd/files/pptpd.config -------------------------------------------------------------------------------- /net/pptpd/files/pptpd.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/pptpd/files/pptpd.init -------------------------------------------------------------------------------- /net/privoxy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/privoxy/Makefile -------------------------------------------------------------------------------- /net/privoxy/files/privoxy.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/privoxy/files/privoxy.init -------------------------------------------------------------------------------- /net/prosody/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/prosody/Makefile -------------------------------------------------------------------------------- /net/prosody/files/prosody.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/prosody/files/prosody.init -------------------------------------------------------------------------------- /net/radicale/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/radicale/Makefile -------------------------------------------------------------------------------- /net/radsecproxy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/radsecproxy/Makefile -------------------------------------------------------------------------------- /net/reaver/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/reaver/Makefile -------------------------------------------------------------------------------- /net/redsocks/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/redsocks/Makefile -------------------------------------------------------------------------------- /net/remserial/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/remserial/Makefile -------------------------------------------------------------------------------- /net/rsync/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/rsync/Config.in -------------------------------------------------------------------------------- /net/rsync/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/rsync/Makefile -------------------------------------------------------------------------------- /net/rsync/files/rsyncd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/rsync/files/rsyncd.conf -------------------------------------------------------------------------------- /net/rsync/files/rsyncd.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/rsync/files/rsyncd.init -------------------------------------------------------------------------------- /net/rtorrent/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/rtorrent/Makefile -------------------------------------------------------------------------------- /net/scapy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/scapy/Makefile -------------------------------------------------------------------------------- /net/seafile-ccnet/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/seafile-ccnet/Makefile -------------------------------------------------------------------------------- /net/seafile-seahub/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/seafile-seahub/Makefile -------------------------------------------------------------------------------- /net/seafile-server/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/seafile-server/Makefile -------------------------------------------------------------------------------- /net/ser2net/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/ser2net/Makefile -------------------------------------------------------------------------------- /net/shadowsocks-client/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/shadowsocks-client/Makefile -------------------------------------------------------------------------------- /net/shadowsocks-libev/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/shadowsocks-libev/Makefile -------------------------------------------------------------------------------- /net/siit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/siit/Makefile -------------------------------------------------------------------------------- /net/siit/src/siit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/siit/src/siit.c -------------------------------------------------------------------------------- /net/siit/src/siit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/siit/src/siit.h -------------------------------------------------------------------------------- /net/smartsnmpd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/smartsnmpd/Makefile -------------------------------------------------------------------------------- /net/snort/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/snort/Config.in -------------------------------------------------------------------------------- /net/snort/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/snort/Makefile -------------------------------------------------------------------------------- /net/snort/files/snort.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/snort/files/snort.config -------------------------------------------------------------------------------- /net/snort/files/snort.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/snort/files/snort.init -------------------------------------------------------------------------------- /net/socat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/socat/Makefile -------------------------------------------------------------------------------- /net/socat/files/socat.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/socat/files/socat.config -------------------------------------------------------------------------------- /net/socat/files/socat.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/socat/files/socat.init -------------------------------------------------------------------------------- /net/softflowd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/softflowd/Makefile -------------------------------------------------------------------------------- /net/spawn-fcgi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/spawn-fcgi/Makefile -------------------------------------------------------------------------------- /net/sqm-scripts/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/sqm-scripts/Makefile -------------------------------------------------------------------------------- /net/squid/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/squid/Makefile -------------------------------------------------------------------------------- /net/squid/files/squid.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/squid/files/squid.conf -------------------------------------------------------------------------------- /net/squid/files/squid.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/squid/files/squid.config -------------------------------------------------------------------------------- /net/squid/files/squid.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/squid/files/squid.init -------------------------------------------------------------------------------- /net/sshfs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/sshfs/Makefile -------------------------------------------------------------------------------- /net/sshtunnel/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/sshtunnel/Makefile -------------------------------------------------------------------------------- /net/sslh/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/sslh/Makefile -------------------------------------------------------------------------------- /net/sslh/files/sslh.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/sslh/files/sslh.config -------------------------------------------------------------------------------- /net/sslh/files/sslh.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/sslh/files/sslh.init -------------------------------------------------------------------------------- /net/sstp-client/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/sstp-client/Makefile -------------------------------------------------------------------------------- /net/strongswan/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/strongswan/Config.in -------------------------------------------------------------------------------- /net/strongswan/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/strongswan/Makefile -------------------------------------------------------------------------------- /net/strongswan/files/ipsec.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/strongswan/files/ipsec.init -------------------------------------------------------------------------------- /net/strongswan/files/ipsec.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/strongswan/files/ipsec.user -------------------------------------------------------------------------------- /net/stunnel/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/stunnel/Makefile -------------------------------------------------------------------------------- /net/stunnel/files/stunnel.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/stunnel/files/stunnel.conf -------------------------------------------------------------------------------- /net/stunnel/files/stunnel.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/stunnel/files/stunnel.init -------------------------------------------------------------------------------- /net/tcpproxy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/tcpproxy/Makefile -------------------------------------------------------------------------------- /net/tgt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/tgt/Makefile -------------------------------------------------------------------------------- /net/tgt/files/etc/config/tgt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/tgt/files/etc/config/tgt -------------------------------------------------------------------------------- /net/tgt/files/etc/init.d/tgt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/tgt/files/etc/init.d/tgt -------------------------------------------------------------------------------- /net/tinc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/tinc/Makefile -------------------------------------------------------------------------------- /net/tinc/files/tinc.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/tinc/files/tinc.config -------------------------------------------------------------------------------- /net/tinc/files/tinc.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/tinc/files/tinc.init -------------------------------------------------------------------------------- /net/tinc/files/tinc.upgrade: -------------------------------------------------------------------------------- 1 | /etc/tinc/ 2 | -------------------------------------------------------------------------------- /net/tinyproxy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/tinyproxy/Makefile -------------------------------------------------------------------------------- /net/tor/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/tor/Makefile -------------------------------------------------------------------------------- /net/tor/files/tor.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/tor/files/tor.init -------------------------------------------------------------------------------- /net/tor/patches/001-torrc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/tor/patches/001-torrc.patch -------------------------------------------------------------------------------- /net/transmission/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/transmission/Makefile -------------------------------------------------------------------------------- /net/u2pnpd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/u2pnpd/Makefile -------------------------------------------------------------------------------- /net/u2pnpd/files/u2pnpd.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/u2pnpd/files/u2pnpd.config -------------------------------------------------------------------------------- /net/u2pnpd/files/u2pnpd.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/u2pnpd/files/u2pnpd.init -------------------------------------------------------------------------------- /net/uanytun/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/uanytun/Makefile -------------------------------------------------------------------------------- /net/uanytun/files/uanytun.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/uanytun/files/uanytun.init -------------------------------------------------------------------------------- /net/udpxy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/udpxy/Makefile -------------------------------------------------------------------------------- /net/udpxy/files/udpxy.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/udpxy/files/udpxy.conf -------------------------------------------------------------------------------- /net/udpxy/files/udpxy.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/udpxy/files/udpxy.init -------------------------------------------------------------------------------- /net/ulogd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/ulogd/Makefile -------------------------------------------------------------------------------- /net/ulogd/files/ulogd.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/ulogd/files/ulogd.init -------------------------------------------------------------------------------- /net/umurmur/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/umurmur/Makefile -------------------------------------------------------------------------------- /net/unbound/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/unbound/Makefile -------------------------------------------------------------------------------- /net/unbound/files/named.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/unbound/files/named.cache -------------------------------------------------------------------------------- /net/unbound/files/root.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/unbound/files/root.key -------------------------------------------------------------------------------- /net/unbound/files/unbound.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/unbound/files/unbound.init -------------------------------------------------------------------------------- /net/usbip/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/usbip/Makefile -------------------------------------------------------------------------------- /net/vlmcsd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/vlmcsd/Makefile -------------------------------------------------------------------------------- /net/vlmcsd/files/vlmcsd.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/vlmcsd/files/vlmcsd.init -------------------------------------------------------------------------------- /net/vlmcsd/files/vlmcsd.uci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/vlmcsd/files/vlmcsd.uci -------------------------------------------------------------------------------- /net/vnstat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/vnstat/Makefile -------------------------------------------------------------------------------- /net/vnstat/files/vnstat.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/vnstat/files/vnstat.config -------------------------------------------------------------------------------- /net/vnstat/files/vnstat.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/vnstat/files/vnstat.init -------------------------------------------------------------------------------- /net/vpnc-scripts/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/vpnc-scripts/Makefile -------------------------------------------------------------------------------- /net/vpnc/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/vpnc/Config.in -------------------------------------------------------------------------------- /net/vpnc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/vpnc/Makefile -------------------------------------------------------------------------------- /net/vpnc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/vpnc/README -------------------------------------------------------------------------------- /net/vpnc/files/vpnc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/vpnc/files/vpnc.sh -------------------------------------------------------------------------------- /net/vpnc/files/vpnc.upgrade: -------------------------------------------------------------------------------- 1 | /etc/vpnc/ca-vpn-*.pem 2 | 3 | -------------------------------------------------------------------------------- /net/vsftpd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/vsftpd/Makefile -------------------------------------------------------------------------------- /net/vsftpd/files/vsftpd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/vsftpd/files/vsftpd.conf -------------------------------------------------------------------------------- /net/vsftpd/files/vsftpd.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/vsftpd/files/vsftpd.init -------------------------------------------------------------------------------- /net/vsftpd/files/vsftpd.uci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/vsftpd/files/vsftpd.uci -------------------------------------------------------------------------------- /net/vsftpd/files/vsftpd_prepare: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/vsftpd/files/vsftpd_prepare -------------------------------------------------------------------------------- /net/vsftpd/files/vsftpd_wrapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/vsftpd/files/vsftpd_wrapper -------------------------------------------------------------------------------- /net/w8021x/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/w8021x/Makefile -------------------------------------------------------------------------------- /net/w8021x/src/etc/config/w8021x: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /net/wavemon/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/wavemon/Makefile -------------------------------------------------------------------------------- /net/wget/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/wget/Makefile -------------------------------------------------------------------------------- /net/wifidog/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/wifidog/Makefile -------------------------------------------------------------------------------- /net/wifidog/files/wifidog.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/wifidog/files/wifidog.init -------------------------------------------------------------------------------- /net/wshaper/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/wshaper/Makefile -------------------------------------------------------------------------------- /net/wshaper/files/wshaper.htb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/wshaper/files/wshaper.htb -------------------------------------------------------------------------------- /net/wshaper/files/wshaper.iface: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/wshaper/files/wshaper.iface -------------------------------------------------------------------------------- /net/wshaper/files/wshaper.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/wshaper/files/wshaper.init -------------------------------------------------------------------------------- /net/xinetd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/xinetd/Makefile -------------------------------------------------------------------------------- /net/xinetd/files/xinetd.conf: -------------------------------------------------------------------------------- 1 | defaults 2 | { 3 | 4 | } 5 | 6 | includedir /etc/xinetd.d 7 | -------------------------------------------------------------------------------- /net/xinetd/files/xinetd.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/xinetd/files/xinetd.init -------------------------------------------------------------------------------- /net/xinetd/patches/001-ar.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/xinetd/patches/001-ar.patch -------------------------------------------------------------------------------- /net/xl2tpd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/xl2tpd/Makefile -------------------------------------------------------------------------------- /net/xl2tpd/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/xl2tpd/README -------------------------------------------------------------------------------- /net/xl2tpd/files/l2tp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/xl2tpd/files/l2tp.sh -------------------------------------------------------------------------------- /net/xl2tpd/files/options.xl2tpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/xl2tpd/files/options.xl2tpd -------------------------------------------------------------------------------- /net/xl2tpd/files/xl2tp-secrets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/xl2tpd/files/xl2tp-secrets -------------------------------------------------------------------------------- /net/xl2tpd/files/xl2tpd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/xl2tpd/files/xl2tpd.conf -------------------------------------------------------------------------------- /net/xl2tpd/files/xl2tpd.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/xl2tpd/files/xl2tpd.init -------------------------------------------------------------------------------- /net/znc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/znc/Makefile -------------------------------------------------------------------------------- /net/znc/files/znc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/znc/files/znc.conf -------------------------------------------------------------------------------- /net/znc/files/znc.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/net/znc/files/znc.init -------------------------------------------------------------------------------- /print/brlaser/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/print/brlaser/Makefile -------------------------------------------------------------------------------- /print/c2esp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/print/c2esp/Makefile -------------------------------------------------------------------------------- /print/carps-cups/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/print/carps-cups/Makefile -------------------------------------------------------------------------------- /print/cndrvcups-capt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/print/cndrvcups-capt/Makefile -------------------------------------------------------------------------------- /print/cndrvcups-capt/src/backend/AUTHORS: -------------------------------------------------------------------------------- 1 | Canon INC. 2 | -------------------------------------------------------------------------------- /print/cndrvcups-capt/src/backend/acconfig.h: -------------------------------------------------------------------------------- 1 | #undef PROG_PATH 2 | -------------------------------------------------------------------------------- /print/cndrvcups-capt/src/pstocapt/AUTHORS: -------------------------------------------------------------------------------- 1 | Canon INC. 2 | -------------------------------------------------------------------------------- /print/cndrvcups-capt/src/pstocapt/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS= filter 2 | 3 | -------------------------------------------------------------------------------- /print/cndrvcups-capt/src/pstocapt/acconfig.h: -------------------------------------------------------------------------------- 1 | #undef PROG_PATH 2 | -------------------------------------------------------------------------------- /print/cndrvcups-capt/src/pstocapt2/AUTHORS: -------------------------------------------------------------------------------- 1 | Canon INC. 2 | -------------------------------------------------------------------------------- /print/cndrvcups-capt/src/pstocapt2/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS= filter 2 | 3 | -------------------------------------------------------------------------------- /print/cndrvcups-capt/src/pstocapt2/acconfig.h: -------------------------------------------------------------------------------- 1 | #undef PROG_PATH 2 | -------------------------------------------------------------------------------- /print/cndrvcups-capt/src/pstocapt3/AUTHORS: -------------------------------------------------------------------------------- 1 | Canon INC. 2 | -------------------------------------------------------------------------------- /print/cndrvcups-capt/src/pstocapt3/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS= filter 2 | 3 | -------------------------------------------------------------------------------- /print/cndrvcups-capt/src/pstocapt3/acconfig.h: -------------------------------------------------------------------------------- 1 | #undef PROG_PATH 2 | -------------------------------------------------------------------------------- /print/cndrvcups-common/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/print/cndrvcups-common/Makefile -------------------------------------------------------------------------------- /print/cndrvcups-common/src/backend/AUTHORS: -------------------------------------------------------------------------------- 1 | Canon INC. 2 | -------------------------------------------------------------------------------- /print/cndrvcups-common/src/backend/acconfig.h: -------------------------------------------------------------------------------- 1 | #undef PROG_PATH 2 | -------------------------------------------------------------------------------- /print/cndrvcups-common/src/buftool/AUTHORS: -------------------------------------------------------------------------------- 1 | Canon INC. 2 | -------------------------------------------------------------------------------- /print/cndrvcups-common/src/buftool/acconfig.h: -------------------------------------------------------------------------------- 1 | #undef PROG_PATH 2 | -------------------------------------------------------------------------------- /print/cndrvcups-lb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/print/cndrvcups-lb/Makefile -------------------------------------------------------------------------------- /print/cndrvcups-lb/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/print/cndrvcups-lb/src/Makefile -------------------------------------------------------------------------------- /print/cndrvcups-lb/src/pstoufr2cpca/AUTHORS: -------------------------------------------------------------------------------- 1 | Canon INC. 2 | -------------------------------------------------------------------------------- /print/cndrvcups-lb/src/pstoufr2cpca/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS= filter 2 | 3 | -------------------------------------------------------------------------------- /print/cndrvcups-lb/src/pstoufr2cpca/acconfig.h: -------------------------------------------------------------------------------- 1 | #undef PROG_PATH 2 | -------------------------------------------------------------------------------- /print/cups-bjnp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/print/cups-bjnp/Makefile -------------------------------------------------------------------------------- /print/cups/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/print/cups/Makefile -------------------------------------------------------------------------------- /print/cups/files/cupsd.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/print/cups/files/cupsd.init -------------------------------------------------------------------------------- /print/cups/files/etc/cups/printers.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /print/foo2zjs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/print/foo2zjs/Makefile -------------------------------------------------------------------------------- /print/foomatic-db/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/print/foomatic-db/Makefile -------------------------------------------------------------------------------- /print/foomatic-filters/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/print/foomatic-filters/Makefile -------------------------------------------------------------------------------- /print/fxlinuxprint/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/print/fxlinuxprint/Makefile -------------------------------------------------------------------------------- /print/gutenprint/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/print/gutenprint/Makefile -------------------------------------------------------------------------------- /print/hplip/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/print/hplip/Makefile -------------------------------------------------------------------------------- /print/splix/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/print/splix/Makefile -------------------------------------------------------------------------------- /sound/espeak/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/sound/espeak/Makefile -------------------------------------------------------------------------------- /sound/forked-daapd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/sound/forked-daapd/Makefile -------------------------------------------------------------------------------- /sound/lame/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/sound/lame/Makefile -------------------------------------------------------------------------------- /sound/madplay/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/sound/madplay/Makefile -------------------------------------------------------------------------------- /sound/mocp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/sound/mocp/Makefile -------------------------------------------------------------------------------- /sound/mpc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/sound/mpc/Makefile -------------------------------------------------------------------------------- /sound/mpc/files/pls-handler.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/sound/mpc/files/pls-handler.sh -------------------------------------------------------------------------------- /sound/mpd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/sound/mpd/Makefile -------------------------------------------------------------------------------- /sound/mpd/files/mpd.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/sound/mpd/files/mpd.init -------------------------------------------------------------------------------- /sound/mpd/files/mpd.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/sound/mpd/files/mpd.service -------------------------------------------------------------------------------- /sound/mpg123/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/sound/mpg123/Makefile -------------------------------------------------------------------------------- /sound/pianod/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/sound/pianod/Makefile -------------------------------------------------------------------------------- /sound/pianod/files/pianod.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/sound/pianod/files/pianod.init -------------------------------------------------------------------------------- /sound/portaudio/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/sound/portaudio/Makefile -------------------------------------------------------------------------------- /sound/pulseaudio/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/sound/pulseaudio/Makefile -------------------------------------------------------------------------------- /sound/shairplay/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/sound/shairplay/Makefile -------------------------------------------------------------------------------- /sound/shairport-sync/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/sound/shairport-sync/Makefile -------------------------------------------------------------------------------- /sound/shairport/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/sound/shairport/Makefile -------------------------------------------------------------------------------- /sound/shine/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/sound/shine/Makefile -------------------------------------------------------------------------------- /sound/sox/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/sound/sox/Makefile -------------------------------------------------------------------------------- /sound/squeezelite/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/sound/squeezelite/Makefile -------------------------------------------------------------------------------- /sound/svox/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/sound/svox/Makefile -------------------------------------------------------------------------------- /sound/upmpdcli/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/sound/upmpdcli/Config.in -------------------------------------------------------------------------------- /sound/upmpdcli/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/sound/upmpdcli/Makefile -------------------------------------------------------------------------------- /track: -------------------------------------------------------------------------------- 1 | e12737ff76dbeccc86cab93e9a228ef00dfe5497 2 | -------------------------------------------------------------------------------- /utils/acl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/acl/Makefile -------------------------------------------------------------------------------- /utils/acpid/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/acpid/Makefile -------------------------------------------------------------------------------- /utils/acpid/files/acpid.hotplug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/acpid/files/acpid.hotplug -------------------------------------------------------------------------------- /utils/acpid/files/acpid.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/acpid/files/acpid.init -------------------------------------------------------------------------------- /utils/acpid/files/default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/acpid/files/default -------------------------------------------------------------------------------- /utils/alsa-utils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/alsa-utils/Makefile -------------------------------------------------------------------------------- /utils/attr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/attr/Makefile -------------------------------------------------------------------------------- /utils/avrdude/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/avrdude/Makefile -------------------------------------------------------------------------------- /utils/bandwidthd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/bandwidthd/Makefile -------------------------------------------------------------------------------- /utils/bandwidthd/files/logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/bandwidthd/files/logo.gif -------------------------------------------------------------------------------- /utils/banhosts/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/banhosts/Makefile -------------------------------------------------------------------------------- /utils/bash/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/bash/Makefile -------------------------------------------------------------------------------- /utils/bc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/bc/Makefile -------------------------------------------------------------------------------- /utils/bluelog/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/bluelog/Makefile -------------------------------------------------------------------------------- /utils/bluez/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/bluez/Makefile -------------------------------------------------------------------------------- /utils/bluez/files/givepin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/bluez/files/givepin -------------------------------------------------------------------------------- /utils/btrfs-progs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/btrfs-progs/Makefile -------------------------------------------------------------------------------- /utils/canutils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/canutils/Makefile -------------------------------------------------------------------------------- /utils/ccid/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/ccid/Makefile -------------------------------------------------------------------------------- /utils/ccrypt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/ccrypt/Makefile -------------------------------------------------------------------------------- /utils/cmdpad/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/cmdpad/Makefile -------------------------------------------------------------------------------- /utils/cmdpad/files/cmdpad.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/cmdpad/files/cmdpad.init -------------------------------------------------------------------------------- /utils/collectd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/collectd/Makefile -------------------------------------------------------------------------------- /utils/coreutils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/coreutils/Makefile -------------------------------------------------------------------------------- /utils/crelay/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/crelay/Makefile -------------------------------------------------------------------------------- /utils/crelay/files/crelay.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/crelay/files/crelay.init -------------------------------------------------------------------------------- /utils/cryptodev-linux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/cryptodev-linux/Makefile -------------------------------------------------------------------------------- /utils/cryptodev-linux/files/cryptodev.modules: -------------------------------------------------------------------------------- 1 | cryptodev 2 | -------------------------------------------------------------------------------- /utils/cryptsetup/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/cryptsetup/Makefile -------------------------------------------------------------------------------- /utils/dbus/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/dbus/Makefile -------------------------------------------------------------------------------- /utils/dbus/files/dbus-launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/dbus/files/dbus-launch -------------------------------------------------------------------------------- /utils/dbus/files/dbus.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/dbus/files/dbus.init -------------------------------------------------------------------------------- /utils/dfu-programmer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/dfu-programmer/Makefile -------------------------------------------------------------------------------- /utils/dmidecode/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/dmidecode/Makefile -------------------------------------------------------------------------------- /utils/dosfstools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/dosfstools/Makefile -------------------------------------------------------------------------------- /utils/dump1090/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/dump1090/Makefile -------------------------------------------------------------------------------- /utils/exfat-fuse/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/exfat-fuse/Config.in -------------------------------------------------------------------------------- /utils/exfat-fuse/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/exfat-fuse/Makefile -------------------------------------------------------------------------------- /utils/f2fs-tools/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/f2fs-tools/Config.in -------------------------------------------------------------------------------- /utils/f2fs-tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/f2fs-tools/Makefile -------------------------------------------------------------------------------- /utils/flashrom/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/flashrom/Makefile -------------------------------------------------------------------------------- /utils/flashrom/flashrom.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/flashrom/flashrom.mk -------------------------------------------------------------------------------- /utils/fontconfig/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/fontconfig/Makefile -------------------------------------------------------------------------------- /utils/gammu/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/gammu/Makefile -------------------------------------------------------------------------------- /utils/gammu/files/gammu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/gammu/files/gammu -------------------------------------------------------------------------------- /utils/gammu/files/gammu.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/gammu/files/gammu.init -------------------------------------------------------------------------------- /utils/gnupg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/gnupg/Makefile -------------------------------------------------------------------------------- /utils/gpsd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/gpsd/Makefile -------------------------------------------------------------------------------- /utils/gpsd/files/gpsd.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/gpsd/files/gpsd.config -------------------------------------------------------------------------------- /utils/gpsd/files/gpsd.hotplug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/gpsd/files/gpsd.hotplug -------------------------------------------------------------------------------- /utils/gpsd/files/gpsd.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/gpsd/files/gpsd.init -------------------------------------------------------------------------------- /utils/grep/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/grep/Makefile -------------------------------------------------------------------------------- /utils/hamlib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/hamlib/Makefile -------------------------------------------------------------------------------- /utils/haserl/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/haserl/Config.in -------------------------------------------------------------------------------- /utils/haserl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/haserl/Makefile -------------------------------------------------------------------------------- /utils/haveged/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/haveged/Makefile -------------------------------------------------------------------------------- /utils/hd-idle/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/hd-idle/Makefile -------------------------------------------------------------------------------- /utils/hdparm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/hdparm/Makefile -------------------------------------------------------------------------------- /utils/hfsprogs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/hfsprogs/Makefile -------------------------------------------------------------------------------- /utils/hfsprogs/files/hfsfsck.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/hfsprogs/files/hfsfsck.sh -------------------------------------------------------------------------------- /utils/hub-ctrl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/hub-ctrl/Makefile -------------------------------------------------------------------------------- /utils/i2c-tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/i2c-tools/Makefile -------------------------------------------------------------------------------- /utils/joe/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/joe/Makefile -------------------------------------------------------------------------------- /utils/joe/files/joerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/joe/files/joerc -------------------------------------------------------------------------------- /utils/kmod/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/kmod/Makefile -------------------------------------------------------------------------------- /utils/lcd4linux/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/lcd4linux/Config.in -------------------------------------------------------------------------------- /utils/lcd4linux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/lcd4linux/Makefile -------------------------------------------------------------------------------- /utils/less/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/less/Makefile -------------------------------------------------------------------------------- /utils/lm-sensors/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/lm-sensors/Makefile -------------------------------------------------------------------------------- /utils/lsof/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/lsof/Makefile -------------------------------------------------------------------------------- /utils/luci-app-lxc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/luci-app-lxc/Makefile -------------------------------------------------------------------------------- /utils/lvm2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/lvm2/Makefile -------------------------------------------------------------------------------- /utils/lvm2/files/lvm2.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/lvm2/files/lvm2.init -------------------------------------------------------------------------------- /utils/lxc/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/lxc/Config.in -------------------------------------------------------------------------------- /utils/lxc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/lxc/Makefile -------------------------------------------------------------------------------- /utils/lxc/files/lxc.conf: -------------------------------------------------------------------------------- 1 | lxc.lxcpath = /lxc 2 | -------------------------------------------------------------------------------- /utils/macchanger/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/macchanger/Makefile -------------------------------------------------------------------------------- /utils/mbtools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/mbtools/Makefile -------------------------------------------------------------------------------- /utils/mc/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/mc/Config.in -------------------------------------------------------------------------------- /utils/mc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/mc/Makefile -------------------------------------------------------------------------------- /utils/minicom/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/minicom/Makefile -------------------------------------------------------------------------------- /utils/mksh/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/mksh/Makefile -------------------------------------------------------------------------------- /utils/mktorrent/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/mktorrent/Makefile -------------------------------------------------------------------------------- /utils/mmc-utils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/mmc-utils/Makefile -------------------------------------------------------------------------------- /utils/mpack/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/mpack/Makefile -------------------------------------------------------------------------------- /utils/mysql/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/mysql/Makefile -------------------------------------------------------------------------------- /utils/mysql/conf/my.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/mysql/conf/my.cnf -------------------------------------------------------------------------------- /utils/mysql/files/mysqld.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/mysql/files/mysqld.init -------------------------------------------------------------------------------- /utils/nano/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/nano/Makefile -------------------------------------------------------------------------------- /utils/ncdu/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/ncdu/Makefile -------------------------------------------------------------------------------- /utils/ntfs-3g/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/ntfs-3g/Makefile -------------------------------------------------------------------------------- /utils/open-plc-utils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/open-plc-utils/Makefile -------------------------------------------------------------------------------- /utils/open2300/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/open2300/Makefile -------------------------------------------------------------------------------- /utils/openobex/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/openobex/Makefile -------------------------------------------------------------------------------- /utils/openocd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/openocd/Makefile -------------------------------------------------------------------------------- /utils/opensc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/opensc/Makefile -------------------------------------------------------------------------------- /utils/opus-tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/opus-tools/Makefile -------------------------------------------------------------------------------- /utils/owfs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/owfs/Makefile -------------------------------------------------------------------------------- /utils/parted/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/parted/Makefile -------------------------------------------------------------------------------- /utils/pciutils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/pciutils/Makefile -------------------------------------------------------------------------------- /utils/pcsc-lite/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/pcsc-lite/Makefile -------------------------------------------------------------------------------- /utils/picocom/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/picocom/Makefile -------------------------------------------------------------------------------- /utils/poppler/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/poppler/Makefile -------------------------------------------------------------------------------- /utils/pps-tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/pps-tools/Makefile -------------------------------------------------------------------------------- /utils/procps-ng/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/procps-ng/Makefile -------------------------------------------------------------------------------- /utils/pv/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/pv/Makefile -------------------------------------------------------------------------------- /utils/qpdf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/qpdf/Makefile -------------------------------------------------------------------------------- /utils/rng-tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/rng-tools/Makefile -------------------------------------------------------------------------------- /utils/rng-tools/files/rngd.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/rng-tools/files/rngd.init -------------------------------------------------------------------------------- /utils/rpcd-mod-lxc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/rpcd-mod-lxc/Makefile -------------------------------------------------------------------------------- /utils/rpcd-mod-lxc/files/lxc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/rpcd-mod-lxc/files/lxc.c -------------------------------------------------------------------------------- /utils/rrdtool1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/rrdtool1/Makefile -------------------------------------------------------------------------------- /utils/rtklib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/rtklib/Makefile -------------------------------------------------------------------------------- /utils/rtl-ais/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/rtl-ais/Makefile -------------------------------------------------------------------------------- /utils/rtl-sdr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/rtl-sdr/Makefile -------------------------------------------------------------------------------- /utils/sane-backends/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/sane-backends/Makefile -------------------------------------------------------------------------------- /utils/screen/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/screen/Makefile -------------------------------------------------------------------------------- /utils/screen/files/etc/screenrc: -------------------------------------------------------------------------------- 1 | startup_message off 2 | -------------------------------------------------------------------------------- /utils/serialconsole/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/serialconsole/Makefile -------------------------------------------------------------------------------- /utils/shadow/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/shadow/Makefile -------------------------------------------------------------------------------- /utils/sispmctl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/sispmctl/Makefile -------------------------------------------------------------------------------- /utils/smartmontools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/smartmontools/Makefile -------------------------------------------------------------------------------- /utils/smartmontools/files/smartd.conf: -------------------------------------------------------------------------------- 1 | /dev/hdb -H 2 | -------------------------------------------------------------------------------- /utils/smstools3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/smstools3/Makefile -------------------------------------------------------------------------------- /utils/sockread/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/sockread/Makefile -------------------------------------------------------------------------------- /utils/sockread/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/sockread/src/Makefile -------------------------------------------------------------------------------- /utils/sockread/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/sockread/src/main.c -------------------------------------------------------------------------------- /utils/spi-tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/spi-tools/Makefile -------------------------------------------------------------------------------- /utils/stm32flash/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/stm32flash/Makefile -------------------------------------------------------------------------------- /utils/stoken/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/stoken/Makefile -------------------------------------------------------------------------------- /utils/sumo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/sumo/Makefile -------------------------------------------------------------------------------- /utils/sumo/files/sumo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/sumo/files/sumo.sh -------------------------------------------------------------------------------- /utils/swig/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/swig/Makefile -------------------------------------------------------------------------------- /utils/sysstat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/sysstat/Makefile -------------------------------------------------------------------------------- /utils/tar/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/tar/Makefile -------------------------------------------------------------------------------- /utils/taskwarrior/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/taskwarrior/Makefile -------------------------------------------------------------------------------- /utils/tcsh/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/tcsh/Makefile -------------------------------------------------------------------------------- /utils/tmux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/tmux/Makefile -------------------------------------------------------------------------------- /utils/tracertools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/tracertools/Makefile -------------------------------------------------------------------------------- /utils/triggerhappy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/triggerhappy/Makefile -------------------------------------------------------------------------------- /utils/unrar/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/unrar/Makefile -------------------------------------------------------------------------------- /utils/unzip/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/unzip/Makefile -------------------------------------------------------------------------------- /utils/usbmuxd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/usbmuxd/Makefile -------------------------------------------------------------------------------- /utils/uvcdynctrl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/uvcdynctrl/Makefile -------------------------------------------------------------------------------- /utils/vim/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/vim/Makefile -------------------------------------------------------------------------------- /utils/vim/files/vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/vim/files/vimrc -------------------------------------------------------------------------------- /utils/vim/files/vimrc.full: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/vim/files/vimrc.full -------------------------------------------------------------------------------- /utils/watchcat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/watchcat/Makefile -------------------------------------------------------------------------------- /utils/wifitoggle/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/wifitoggle/Makefile -------------------------------------------------------------------------------- /utils/xz/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/xz/Makefile -------------------------------------------------------------------------------- /utils/yunbridge/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/yunbridge/Makefile -------------------------------------------------------------------------------- /utils/zile/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/zile/Makefile -------------------------------------------------------------------------------- /utils/zip/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/zip/Makefile -------------------------------------------------------------------------------- /utils/zoneinfo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/zoneinfo/Makefile -------------------------------------------------------------------------------- /utils/zsh/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackpascal/packages/HEAD/utils/zsh/Makefile --------------------------------------------------------------------------------