| /freebsd-12.1/stand/libsa/ |
| H A D | pkgfs.c | 166 pkg = NULL; in pkgfs_init() 185 if (pkg == NULL) in pkgfs_init() 189 package = pkg; in pkgfs_init() 426 c = read(pkg->pkg_fd, pkg->pkg_buf, PKG_BUFSIZE); in get_byte() 430 pkg->pkg_zs.next_in = pkg->pkg_buf; in get_byte() 450 c = read(pkg->pkg_fd, pkg->pkg_buf, PKG_BUFSIZE); in get_zipped() 456 pkg->pkg_zs.next_in = pkg->pkg_buf; in get_zipped() 621 pkg = malloc(sizeof(*pkg)); in new_package() 625 bzero(pkg, sizeof(*pkg)); in new_package() 697 *pp = pkg; in new_package() [all …]
|
| /freebsd-12.1/usr.sbin/bsdconfig/share/packages/ |
| H A D | musthavepkg.subr | 41 # Validate pkg(8) is installed and set $PKG_ABI global if not already set. 42 # Returns success unless pkg(8) is not installed and user refuses to install 57 f_quietly pkg -N -vv # return status (pkg(8) functional?) 61 # Attempt to get PKG_ABI without prematurely bootstrapping pkg(8) 62 if f_eval_catch -k PKG_ABI $funcname pkg \ 63 "pkg -N -vv | awk '%s'" "$pkg_abi_awk" 70 # pkg(8) not yet bootstrapped; ask for permission unless nonInteractive 74 f_mustberoot_init # Have to be root to install pkg(8) 76 # Bootstrap pkg(8) 78 f_eval_catch -k PKG_ABI $funcname pkg \ [all …]
|
| /freebsd-12.1/usr.sbin/pkg/ |
| H A D | FreeBSD.conf.latest | 4 # create a /usr/local/etc/pkg/repos/FreeBSD.conf file: 6 # mkdir -p /usr/local/etc/pkg/repos 7 # echo "FreeBSD: { enabled: no }" > /usr/local/etc/pkg/repos/FreeBSD.conf 11 url: "pkg+http://pkg.FreeBSD.org/${ABI}/latest", 14 fingerprints: "/usr/share/keys/pkg",
|
| H A D | FreeBSD.conf.quarterly | 4 # create a /usr/local/etc/pkg/repos/FreeBSD.conf file: 6 # mkdir -p /usr/local/etc/pkg/repos 7 # echo "FreeBSD: { enabled: no }" > /usr/local/etc/pkg/repos/FreeBSD.conf 11 url: "pkg+http://pkg.FreeBSD.org/${ABI}/quarterly", 14 fingerprints: "/usr/share/keys/pkg",
|
| H A D | Makefile | 20 CONFSDIR= /etc/pkg 22 PROG= pkg 23 SRCS= pkg.c dns_utils.c config.c 24 MAN= pkg.7
|
| /freebsd-12.1/release/scripts/ |
| H A D | pkg-stage.sh | 46 if [ ! -x /usr/local/sbin/pkg ]; then 48 /usr/bin/make -C ${PORTSDIR}/ports-mgmt/pkg install clean 52 export PKG_ABI=$(pkg config ABI) 53 export PKG_ALTABI=$(pkg config ALTABI 2>/dev/null) 89 ln -s ../All/$(${PKGCMD} rquery %n-%v pkg).txz pkg.txz)
|
| H A D | make-pkg-package.sh | 13 export WRKDIR=$(make -C ${PORTSDIR}/ports-mgmt/pkg -V WRKDIR) 15 make -C ${PORTSDIR}/ports-mgmt/pkg TARGET=${TARGET} TARGET_ARCH=${TARGET_ARCH} \ 26 ln -s ../pkg-*.txz
|
| /freebsd-12.1/contrib/atf/atf-c++/ |
| H A D | pkg_config_test.sh | 36 pkg-config ${1} || atf_fail "pkg-config could not locate ${1}.pc;" \ 45 atf_check -s eq:0 -o save:stdout -e empty pkg-config --modversion "${1}" 77 pkg-config --variable=cxx atf-c++ 100 atf_check -s eq:0 -o save:stdout -e empty pkg-config --cflags atf-c++ 105 pkg-config --libs-only-L --libs-only-other atf-c++ 108 pkg-config --libs-only-l atf-c++
|
| /freebsd-12.1/contrib/atf/atf-c/ |
| H A D | pkg_config_test.sh | 36 pkg-config ${1} || atf_fail "pkg-config could not locate ${1}.pc;" \ 45 atf_check -s eq:0 -o save:stdout -e empty pkg-config --modversion "${1}" 76 atf_check -s eq:0 -o save:stdout -e empty pkg-config --variable=cc atf-c 101 atf_check -s eq:0 -o save:stdout -e empty pkg-config --cflags atf-c 106 pkg-config --libs-only-L --libs-only-other atf-c 108 atf_check -s eq:0 -o save:stdout -e empty pkg-config --libs-only-l atf-c
|
| /freebsd-12.1/contrib/googletest/googletest/docs/ |
| H A D | Pkgconfig.md | 3 GoogleTest comes with pkg-config files that can be used to determine all 13 All current build systems support pkg-config in one way or another. For 20 Using `pkg-config` in CMake is fairly easy: 44 splitting the pkg-config `Cflags` variable into include dirs and macros for 102 Since `pkg-config` is a small Unix command-line utility, it can be used 106 GTEST_CFLAGS = `pkg-config --cflags gtest_main` 107 GTEST_LIBS = `pkg-config --libs gtest_main` 124 ### Help! pkg-config can't find GoogleTest! ### 138 pkg-config where it can find the `.pc` files containing the information. 146 pkg-config will also try to look in `PKG_CONFIG_PATH` to find `gtest_main.pc`.
|
| /freebsd-12.1/sys/dev/acpica/ |
| H A D | acpi_perf.c | 174 ACPI_OBJECT *pkg; in acpi_perf_probe() local 193 pkg = (ACPI_OBJECT *)buf.Pointer; in acpi_perf_probe() 194 if (ACPI_PKG_VALID(pkg, 2)) { in acpi_perf_probe() 196 error = acpi_PkgGas(dev, pkg, 0, &type, &rid, &res, 0); in acpi_perf_probe() 246 ACPI_OBJECT *pkg, *res; in acpi_perf_evaluate() local 261 pkg = (ACPI_OBJECT *)buf.Pointer; in acpi_perf_evaluate() 262 if (!ACPI_PKG_VALID(pkg, 1)) { in acpi_perf_evaluate() 266 sc->px_count = pkg->Package.Count; in acpi_perf_evaluate() 278 res = &pkg->Package.Elements[i]; in acpi_perf_evaluate() 325 pkg = (ACPI_OBJECT *)buf.Pointer; in acpi_perf_evaluate() [all …]
|
| /freebsd-12.1/crypto/openssh/contrib/solaris/ |
| H A D | README | 19 pkg_post_make_install_fixes.sh pkg-post-prototype-edit.sh 20 pkg-preinstall.local pkg-postinstall.local pkg-preremove.local 21 pkg-postremove.local pkg-request.local
|
| /freebsd-12.1/contrib/libucl/tests/basic/ |
| H A D | 3.in | 5 #packagesite http//pkg.freebsd.org/freebsd-9-amd64/latest 6 #packagesite http//pkg.freebsd.org/freebsd-9-amd64/latest 7 packagesite: http://pkg-test.freebsd.org/pkg-test/${ABI}/latest
|
| H A D | 4.in | 13 …velopment frameworks. It is similar to pkg-config, but was written from\nscratch in Summer of 2011… 18 /usr/local/bin/pkg-config : "-", 20 …/usr/local/share/aclocal/pkg.m4 : "cffab33d659adfe36497ec57665eec36fa6fb7b007e578e6ac2434cc28be882…
|
| H A D | 4.res | 15 development frameworks. It is similar to pkg-config, but was written from 16 scratch in Summer of 2011 to replace pkg-config, which now needs itself to build 25 /usr/local/bin/pkg-config = "-"; 27 …/usr/local/share/aclocal/pkg.m4 = "cffab33d659adfe36497ec57665eec36fa6fb7b007e578e6ac2434cc28be882…
|
| /freebsd-12.1/sys/dev/drm2/i915/ |
| H A D | intel_acpi.c | 144 ACPI_OBJECT *pkg; in intel_dsm_platform_mux_info() local 166 pkg = (ACPI_OBJECT *)output.Pointer; in intel_dsm_platform_mux_info() 168 if (pkg->Type == ACPI_TYPE_PACKAGE) { in intel_dsm_platform_mux_info() 169 ACPI_OBJECT *connector_count = &pkg->Package.Elements[0]; in intel_dsm_platform_mux_info() 172 for (i = 1; i < pkg->Package.Count; i++) { in intel_dsm_platform_mux_info() 173 ACPI_OBJECT *obj = &pkg->Package.Elements[i]; in intel_dsm_platform_mux_info()
|
| /freebsd-12.1/release/tools/ |
| H A D | vagrant.conf | 21 env ASSUME_ALWAYS_YES=yes pkg -c ${DESTDIR} clean -y -a 22 env ASSUME_ALWAYS_YES=yes pkg -c ${DESTDIR} delete -f -y pkg 23 rm ${DESTDIR}/var/db/pkg/repo-*.sqlite
|
| H A D | ec2.conf | 44 /usr/sbin/pkg delete -f -y pkg 45 rm ${DESTDIR}/var/db/pkg/repo-*.sqlite
|
| /freebsd-12.1/contrib/ntp/sntp/m4/ |
| H A D | ntp_openssl.m4 | 9 dnl pkg-config openssl information to be ignored in favor of the legacy 77 for pkg in `echo $with_crypto | sed -e 's/,/ /'`; do 78 AC_MSG_CHECKING([pkg-config for $pkg]) 79 if $PKG_CONFIG --exists $pkg ; then 80 CPPFLAGS_NTP="$CPPFLAGS_NTP `$PKG_CONFIG --cflags-only-I $pkg`" 81 CFLAGS_NTP="$CFLAGS_NTP `$PKG_CONFIG --cflags-only-other $pkg`" 82 LDADD_NTP="$LDADD_NTP `$PKG_CONFIG --libs-only-L $pkg`" 83 LDADD_NTP="$LDADD_NTP `$PKG_CONFIG --libs-only-l --static $pkg`" 84 LDFLAGS_NTP="$LDFLAGS_NTP `$PKG_CONFIG --libs-only-other $pkg`" 88 ntp_openssl_version="`$PKG_CONFIG --modversion $pkg`"
|
| H A D | ntp_pkg_config.m4 | 3 dnl Look for pkg-config, which must be at least 10 AC_PATH_TOOL([PKG_CONFIG], [pkg-config]) 16 AC_MSG_CHECKING([if pkg-config is at least version $ntp_pkgconfig_min_version])
|
| /freebsd-12.1/contrib/libevent/m4/ |
| H A D | ntp_pkg_config.m4 | 3 dnl Look for pkg-config, which must be at least 10 AC_PATH_TOOL([PKG_CONFIG], [pkg-config]) 16 AC_MSG_CHECKING([if pkg-config is at least version $ntp_pkgconfig_min_version])
|
| /freebsd-12.1/contrib/ntp/sntp/libevent/m4/ |
| H A D | ntp_pkg_config.m4 | 3 dnl Look for pkg-config, which must be at least 10 AC_PATH_TOOL([PKG_CONFIG], [pkg-config]) 16 AC_MSG_CHECKING([if pkg-config is at least version $ntp_pkgconfig_min_version])
|
| /freebsd-12.1/crypto/openssh/ |
| H A D | buildpkg.sh.in | 39 POST_MAKE_INSTALL_FIXES=./pkg-post-make-install-fixes.sh 40 POST_PROTOTYPE_EDITS=./pkg-post-prototype-edit.sh 42 PKG_PREINSTALL_LOCAL=../pkg-preinstall.local 43 PKG_POSTINSTALL_LOCAL=../pkg-postinstall.local 44 PKG_PREREMOVE_LOCAL=../pkg-preremove.local 45 PKG_POSTREMOVE_LOCAL=../pkg-postremove.local 46 PKG_REQUEST_LOCAL=../pkg-request.local 126 FAKE_ROOT=$START/pkg 659 echo | pkgtrans -os ${FAKE_ROOT} ${START}/$PKGNAME-$VERSION$REV-$UNAME_S-$ARCH.pkg 670 echo | pkgtrans -os ${FAKE_ROOT} ${START}/$PKGNAME-$VERSION$REV-$UNAME_S-$ARCH.pkg
|
| /freebsd-12.1/release/ |
| H A D | Makefile.azure | 37 . if !exists(/usr/local/sbin/pkg-static) 38 env ASSUME_ALWAYS_YES=yes pkg bootstrap -yf 40 env ASSUME_ALWAYS_YES=yes pkg install -y www/npm
|
| /freebsd-12.1/contrib/openpam/ |
| H A D | mkpkgng.in | 70 pkgver=$(pkg -v) 72 pkgabi=$(pkg config abi) 172 pkg create -r "$tmproot" -m "$tmproot" -o "$builddir"
|