diff --git a/Mk/Scripts/do-depends.sh b/Mk/Scripts/do-depends.sh index b1d5d104..a2a37c74 100644 --- a/Mk/Scripts/do-depends.sh +++ b/Mk/Scripts/do-depends.sh @@ -23,7 +23,7 @@ install_depends() target=$2 depends_args=$3 if [ -z "${dp_USE_PACKAGE_DEPENDS}" -a -z "${dp_USE_PACKAGE_DEPENDS_ONLY}" ]; then - MAKEFLAGS="${dp_MAKEFLAGS}" ${dp_MAKE} -C ${origin} -DINSTALLS_DEPENDS ${target} ${depends_args} + MAKEFLAGS="${dp_MAKEFLAGS}" ${dp_MAKE} -C ${origin} install ${target} ${depends_args} return 0 fi diff --git a/Mk/bsd.gcc.mk b/Mk/bsd.gcc.mk index 814f967b..26ec6f11 100644 --- a/Mk/bsd.gcc.mk +++ b/Mk/bsd.gcc.mk @@ -45,6 +45,8 @@ GCCVERSION_060000= 0 6 GCCVERSION_070000= 0 7 GCCVERSION_080000= 0 8 GCCVERSION_090000= 0 9 +GCCVERSION_120000= 0 9 +GCCVERSION_140000= 0 9 # No configurable parts below this. #################################### # diff --git a/Mk/bsd.port.mk b/Mk/bsd.port.mk index 871eb0d3..2195a3db 100644 --- a/Mk/bsd.port.mk +++ b/Mk/bsd.port.mk @@ -2029,7 +2029,7 @@ MAKE_ENV+= PREFIX=${PREFIX} \ CPP="${CPP}" CPPFLAGS="${CPPFLAGS}" \ LDFLAGS="${LDFLAGS}" LIBS="${LIBS}" \ CXX="${CXX}" CXXFLAGS="${CXXFLAGS}" \ - MANPREFIX="${MANPREFIX}" + MANPREFIX="${MANPREFIX}" # Add -fno-strict-aliasing to CFLAGS with optimization level -O2 or higher. # gcc 4.x enable strict aliasing optimization with -O2 which is known to break diff --git a/arch/libsnappy/Makefile b/arch/libsnappy/Makefile new file mode 100644 index 00000000..263dc0c7 --- /dev/null +++ b/arch/libsnappy/Makefile @@ -0,0 +1,24 @@ +# Created by: Vanilla I. Shu +# $FreeBSD: head/archivers/snappy/Makefile 457139 2017-12-24 10:48:23Z danfe $ + +PORTNAME= snappy +PORTVERSION= 1.1.6 +CATEGORIES= archivers +PKGNAMEPREFIX= lib + +MAINTAINER= vanilla@FreeBSD.org +COMMENT= Fast compressor/decompressor library + +USES= autoreconf libtool pathfix pkgconfig +CONFIGURE_ARGS= --disable-gtest +GNU_CONFIGURE= yes +USE_LDCONFIG= yes +CFLAGS+= -DNDEBUG +USE_GITHUB= yes +GH_ACCOUNT= google +TEST_TARGET= check + +post-install: + ${STRIP_CMD} ${STAGEDIR}${LOCALBASE}/lib/libsnappy.so* + +.include diff --git a/arch/libsnappy/distinfo b/arch/libsnappy/distinfo new file mode 100644 index 00000000..363b2420 --- /dev/null +++ b/arch/libsnappy/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1501830268 +SHA256 (google-snappy-1.1.6_GH0.tar.gz) = 6fa92cde5b2caefd0d9a60336991ba42e5a7ddc3bdc36c5610451373751d0495 +SIZE (google-snappy-1.1.6_GH0.tar.gz) = 1128388 diff --git a/arch/libsnappy/pkg-descr b/arch/libsnappy/pkg-descr new file mode 100644 index 00000000..5dbcce5d --- /dev/null +++ b/arch/libsnappy/pkg-descr @@ -0,0 +1,8 @@ +Snappy is a compression/decompression library. It does not aim for maximum +compression, or compatibility with any other compression library; instead, +it aims for very high speeds and reasonable compression. For instance, +compared to the fastest mode of zlib, Snappy is an order of magnitude faster +for most inputs, but the resulting compressed files are anywhere from 20% to +100% bigger. + +WWW: http://google.github.io/snappy/ diff --git a/arch/libsnappy/pkg-plist b/arch/libsnappy/pkg-plist new file mode 100644 index 00000000..f64ddbf7 --- /dev/null +++ b/arch/libsnappy/pkg-plist @@ -0,0 +1,8 @@ +include/snappy-c.h +include/snappy-sinksource.h +include/snappy-stubs-public.h +include/snappy.h +lib/libsnappy.a +lib/libsnappy.so +lib/libsnappy.so.2 +lib/pkgconfig/snappy.pc diff --git a/arch/libzip/Makefile b/arch/libzip/Makefile new file mode 100644 index 00000000..1bd00ebc --- /dev/null +++ b/arch/libzip/Makefile @@ -0,0 +1,25 @@ +# Created by: Alexander Zhuravlev +# $FreeBSD: head/archivers/libzip/Makefile 495897 2019-03-16 15:59:26Z rakuco $ + +PORTNAME= libzip +PORTVERSION= 1.5.2 +CATEGORIES= archivers devel +MASTER_SITES= https://libzip.org/download/ + +MAINTAINER= rakuco@FreeBSD.org +COMMENT= C library for reading, creating, and modifying ZIP archives + +CPE_VENDOR= nih + +USES= cmake cpe perl5 ssl tar:xz +USE_LDCONFIG= yes +USE_PERL5= test +TEST_TARGET= test + +CMAKE_OFF= ENABLE_COMMONCRYPTO ENABLE_GNUTLS ENABLE_MBEDTLS + +post-install: + echo ${GZIP_CMD} ${STAGEDIR}${LOCALBASE}${MAN1_DIR} + + +.include diff --git a/arch/libzip/distinfo b/arch/libzip/distinfo new file mode 100644 index 00000000..9f151a14 --- /dev/null +++ b/arch/libzip/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1552751578 +SHA256 (libzip-1.5.2.tar.xz) = b3de4d4bd49a01e0cab3507fc163f88e1651695b6b9cb25ad174dbe319d4a3b4 +SIZE (libzip-1.5.2.tar.xz) = 725724 diff --git a/arch/libzip/files/patch-CMakeLists.txt b/arch/libzip/files/patch-CMakeLists.txt new file mode 100644 index 00000000..ac70abe1 --- /dev/null +++ b/arch/libzip/files/patch-CMakeLists.txt @@ -0,0 +1,12 @@ +Do not set RPATH on FreeBSD either. +--- CMakeLists.txt.orig 2018-06-14 20:07:27 UTC ++++ CMakeLists.txt +@@ -224,7 +224,7 @@ endif(WIN32) + ADD_DEFINITIONS("-DHAVE_CONFIG_H") + + # rpath handling: use rpath in installed binaries +-IF(NOT CMAKE_SYSTEM_NAME MATCHES Linux) ++IF(NOT CMAKE_SYSTEM_NAME MATCHES "FreeBSD|Linux") + SET(CMAKE_INSTALL_RPATH "${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_LIBDIR}") + SET(CMAKE_INSTALL_RPATH_USE_LINK_PATH TRUE) + ENDIF() diff --git a/arch/libzip/files/patch-x-lib-CMakeLists.txt b/arch/libzip/files/patch-x-lib-CMakeLists.txt new file mode 100644 index 00000000..21aee946 --- /dev/null +++ b/arch/libzip/files/patch-x-lib-CMakeLists.txt @@ -0,0 +1,11 @@ +--- ./lib/CMakeLists.txt~ 2019-03-12 13:44:02.000000000 +0200 ++++ ./lib/CMakeLists.txt 2020-08-28 10:09:56.015415000 +0200 +@@ -218,7 +218,7 @@ + ADD_LIBRARY(zip ${LIBZIP_SOURCES} ${LIBZIP_EXTRA_FILES} ${LIBZIP_OPTIONAL_FILES} ${LIBZIP_OPSYS_FILES}) + + IF(SHARED_LIB_VERSIONNING) +-SET_TARGET_PROPERTIES(zip PROPERTIES VERSION 5.0 SOVERSION 5) ++SET_TARGET_PROPERTIES(zip PROPERTIES VERSION 5 SOVERSION 5) + ENDIF() + + diff --git a/arch/libzip/pkg-descr b/arch/libzip/pkg-descr new file mode 100644 index 00000000..8d1b0783 --- /dev/null +++ b/arch/libzip/pkg-descr @@ -0,0 +1,7 @@ +libzip is a C library for reading, creating, and modifying zip +archives. Files can be added from data buffers, files, or compressed +data copied directly from other zip archives. Changes made without +closing the archive can be reverted. The API is documented by man +pages. + +WWW: https://libzip.org/ diff --git a/arch/libzip/pkg-plist b/arch/libzip/pkg-plist new file mode 100644 index 00000000..2c810c4f --- /dev/null +++ b/arch/libzip/pkg-plist @@ -0,0 +1,126 @@ +bin/zipcmp +bin/zipmerge +bin/ziptool +include/zip.h +include/zipconf.h +lib/libzip.so +lib/libzip.so.5 +lib/pkgconfig/libzip.pc +man/man1/zipcmp.1.gz +man/man1/zipmerge.1.gz +man/man1/ziptool.1.gz +man/man3/libzip.3.gz +man/man3/zip_add_dir.3.gz +man/man3/zip_add.3.gz +man/man3/zip_close.3.gz +man/man3/zip_delete.3.gz +man/man3/zip_dir_add.3.gz +man/man3/zip_discard.3.gz +man/man3/zip_error_clear.3.gz +man/man3/zip_error_code_system.3.gz +man/man3/zip_error_code_zip.3.gz +man/man3/zip_error_fini.3.gz +man/man3/zip_error_get_sys_type.3.gz +man/man3/zip_error_get.3.gz +man/man3/zip_error_init_with_code.3.gz +man/man3/zip_error_init.3.gz +man/man3/zip_error_set.3.gz +man/man3/zip_error_strerror.3.gz +man/man3/zip_error_system_type.3.gz +man/man3/zip_error_to_data.3.gz +man/man3/zip_error_to_str.3.gz +man/man3/zip_errors.3.gz +man/man3/zip_fclose.3.gz +man/man3/zip_fdopen.3.gz +man/man3/zip_file_add.3.gz +man/man3/zip_file_error_clear.3.gz +man/man3/zip_file_error_get.3.gz +man/man3/zip_file_extra_field_delete_by_id.3.gz +man/man3/zip_file_extra_field_delete.3.gz +man/man3/zip_file_extra_field_get_by_id.3.gz +man/man3/zip_file_extra_field_get.3.gz +man/man3/zip_file_extra_field_set.3.gz +man/man3/zip_file_extra_fields_count_by_id.3.gz +man/man3/zip_file_extra_fields_count.3.gz +man/man3/zip_file_get_comment.3.gz +man/man3/zip_file_get_error.3.gz +man/man3/zip_file_get_external_attributes.3.gz +man/man3/zip_file_rename.3.gz +man/man3/zip_file_replace.3.gz +man/man3/zip_file_set_comment.3.gz +man/man3/zip_file_set_encryption.3.gz +man/man3/zip_file_set_external_attributes.3.gz +man/man3/zip_file_set_mtime.3.gz +man/man3/zip_file_strerror.3.gz +man/man3/zip_fopen_encrypted.3.gz +man/man3/zip_fopen_index_encrypted.3.gz +man/man3/zip_fopen_index.3.gz +man/man3/zip_fopen.3.gz +man/man3/zip_fread.3.gz +man/man3/zip_fseek.3.gz +man/man3/zip_ftell.3.gz +man/man3/zip_get_archive_comment.3.gz +man/man3/zip_get_archive_flag.3.gz +man/man3/zip_get_error.3.gz +man/man3/zip_get_file_comment.3.gz +man/man3/zip_get_name.3.gz +man/man3/zip_get_num_entries.3.gz +man/man3/zip_get_num_files.3.gz +man/man3/zip_libzip_version.3.gz +man/man3/zip_name_locate.3.gz +man/man3/zip_open_from_source.3.gz +man/man3/zip_open.3.gz +man/man3/zip_register_progress_callback_with_state.3.gz +man/man3/zip_register_progress_callback.3.gz +man/man3/zip_rename.3.gz +man/man3/zip_replace.3.gz +man/man3/zip_set_archive_comment.3.gz +man/man3/zip_set_archive_flag.3.gz +man/man3/zip_set_default_password.3.gz +man/man3/zip_set_file_comment.3.gz +man/man3/zip_set_file_compression.3.gz +man/man3/zip_source_begin_write_cloning.3.gz +man/man3/zip_source_begin_write.3.gz +man/man3/zip_source_buffer_create.3.gz +man/man3/zip_source_buffer_fragment_create.3.gz +man/man3/zip_source_buffer_fragment.3.gz +man/man3/zip_source_buffer.3.gz +man/man3/zip_source_close.3.gz +man/man3/zip_source_commit_write.3.gz +man/man3/zip_source_error.3.gz +man/man3/zip_source_file_create.3.gz +man/man3/zip_source_file.3.gz +man/man3/zip_source_filep_create.3.gz +man/man3/zip_source_filep.3.gz +man/man3/zip_source_free.3.gz +man/man3/zip_source_function_create.3.gz +man/man3/zip_source_function.3.gz +man/man3/ZIP_SOURCE_GET_ARGS.3.gz +man/man3/zip_source_is_deleted.3.gz +man/man3/zip_source_keep.3.gz +man/man3/zip_source_make_command_bitmap.3.gz +man/man3/zip_source_open.3.gz +man/man3/zip_source_read.3.gz +man/man3/zip_source_rollback_write.3.gz +man/man3/zip_source_seek_compute_offset.3.gz +man/man3/zip_source_seek_write.3.gz +man/man3/zip_source_seek.3.gz +man/man3/zip_source_stat.3.gz +man/man3/zip_source_tell_write.3.gz +man/man3/zip_source_tell.3.gz +man/man3/zip_source_win32a_create.3.gz +man/man3/zip_source_win32a.3.gz +man/man3/zip_source_win32handle_create.3.gz +man/man3/zip_source_win32handle.3.gz +man/man3/zip_source_win32w_create.3.gz +man/man3/zip_source_win32w.3.gz +man/man3/zip_source_write.3.gz +man/man3/zip_source_zip.3.gz +man/man3/zip_source.3.gz +man/man3/zip_stat_index.3.gz +man/man3/zip_stat_init.3.gz +man/man3/zip_stat.3.gz +man/man3/zip_strerror.3.gz +man/man3/zip_unchange_all.3.gz +man/man3/zip_unchange_archive.3.gz +man/man3/zip_unchange.3.gz diff --git a/crypto/libsodium/Makefile b/crypto/libsodium/Makefile new file mode 100644 index 00000000..a39786d3 --- /dev/null +++ b/crypto/libsodium/Makefile @@ -0,0 +1,19 @@ +# $FreeBSD: head/security/libsodium/Makefile 489687 2019-01-08 13:31:51Z tobik $ + +PORTNAME= libsodium +PORTVERSION= 1.0.16 +CATEGORIES= security +MASTER_SITES= https://download.libsodium.org/libsodium/releases/ + +MAINTAINER= vsevolod@FreeBSD.org +COMMENT= Library to build higher-level cryptographic tools + +GNU_CONFIGURE= yes +USES= pathfix pkgconfig gmake +USE_LDCONFIG= yes + +CONFIGURE_ARGS+= --enable-blocking-random +INSTALL_TARGET?= install-strip +TEST_TARGET= check + +.include diff --git a/crypto/libsodium/distinfo b/crypto/libsodium/distinfo new file mode 100644 index 00000000..52889a3e --- /dev/null +++ b/crypto/libsodium/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1513157053 +SHA256 (libsodium-1.0.16.tar.gz) = eeadc7e1e1bcef09680fb4837d448fbdf57224978f865ac1c16745868fbd0533 +SIZE (libsodium-1.0.16.tar.gz) = 1910835 diff --git a/crypto/libsodium/files/patch-x-build-aux-ltmain.sh b/crypto/libsodium/files/patch-x-build-aux-ltmain.sh new file mode 100644 index 00000000..7d6bd1a3 --- /dev/null +++ b/crypto/libsodium/files/patch-x-build-aux-ltmain.sh @@ -0,0 +1,36 @@ +--- ./build-aux/ltmain.sh.orig 2017-12-13 16:32:49.000000000 +0200 ++++ ./build-aux/ltmain.sh 2019-05-25 11:48:30.156336000 +0200 +@@ -8805,13 +8805,13 @@ + # + case $version_type in + # correct linux to gnu/linux during the next big refactor +- darwin|freebsd-elf|linux|osf|windows|none) ++ darwin|linux|osf|windows|none) + func_arith $number_major + $number_minor + current=$func_arith_result + age=$number_minor + revision=$number_revision + ;; +- freebsd-aout|qnx|sunos) ++ freebsd*|qnx|sunos) + current=$number_major + revision=$number_minor + age=0 +@@ -8891,15 +8891,9 @@ + esac + ;; + +- freebsd-aout) ++ freebsd*) + major=.$current +- versuffix=.$current.$revision +- ;; +- +- freebsd-elf) +- func_arith $current - $age +- major=.$func_arith_result +- versuffix=$major.$age.$revision ++ versuffix=.$current + ;; + + irix | nonstopux) diff --git a/crypto/libsodium/files/patch-x-ltmain.sh b/crypto/libsodium/files/patch-x-ltmain.sh new file mode 100644 index 00000000..b5fdcbd4 --- /dev/null +++ b/crypto/libsodium/files/patch-x-ltmain.sh @@ -0,0 +1,28 @@ +--- ./ltmain.sh.orig 2014-11-01 01:59:03.000000000 +0200 ++++ ./ltmain.sh 2019-05-25 11:45:10.705048000 +0200 +@@ -7340,7 +7340,7 @@ + age="$number_minor" + revision="$number_revision" + ;; +- freebsd-aout|freebsd-elf|qnx|sunos) ++ freebsd*|qnx|sunos) + current="$number_major" + revision="$number_minor" + age="0" +@@ -7414,14 +7414,9 @@ + verstring="-compatibility_version $minor_current -current_version $minor_current.$revision" + ;; + +- freebsd-aout) ++ freebsd*) + major=".$current" +- versuffix=".$current.$revision"; +- ;; +- +- freebsd-elf) +- major=".$current" +- versuffix=".$current" ++ versuffix=".$current"; + ;; + + irix | nonstopux) diff --git a/crypto/libsodium/pkg-descr b/crypto/libsodium/pkg-descr new file mode 100644 index 00000000..51ee7fe8 --- /dev/null +++ b/crypto/libsodium/pkg-descr @@ -0,0 +1,9 @@ +libsodium is a library for network communication, encryption, +decryption, signatures, etc. + +libsodium is a portable, cross-compilable, installable, +packageable, API-compatible version of NaCl(security/nacl). +NaCl's goal is to provide all of the core operations needed +to build higher-level cryptographic tools. + +WWW: https://github.com/jedisct1/libsodium diff --git a/crypto/libsodium/pkg-plist b/crypto/libsodium/pkg-plist new file mode 100644 index 00000000..80016547 --- /dev/null +++ b/crypto/libsodium/pkg-plist @@ -0,0 +1,67 @@ +include/sodium.h +include/sodium/core.h +include/sodium/crypto_aead_aes256gcm.h +include/sodium/crypto_aead_chacha20poly1305.h +include/sodium/crypto_aead_xchacha20poly1305.h +include/sodium/crypto_auth_hmacsha256.h +include/sodium/crypto_auth_hmacsha512.h +include/sodium/crypto_auth_hmacsha512256.h +include/sodium/crypto_auth.h +include/sodium/crypto_box_curve25519xchacha20poly1305.h +include/sodium/crypto_box_curve25519xsalsa20poly1305.h +include/sodium/crypto_box.h +include/sodium/crypto_core_ed25519.h +include/sodium/crypto_core_hchacha20.h +include/sodium/crypto_core_hsalsa20.h +include/sodium/crypto_core_salsa20.h +include/sodium/crypto_core_salsa2012.h +include/sodium/crypto_core_salsa208.h +include/sodium/crypto_generichash_blake2b.h +include/sodium/crypto_generichash.h +include/sodium/crypto_hash_sha256.h +include/sodium/crypto_hash_sha512.h +include/sodium/crypto_hash.h +include/sodium/crypto_kdf_blake2b.h +include/sodium/crypto_kdf.h +include/sodium/crypto_kx.h +include/sodium/crypto_onetimeauth_poly1305.h +include/sodium/crypto_onetimeauth.h +include/sodium/crypto_pwhash_argon2i.h +include/sodium/crypto_pwhash_argon2id.h +include/sodium/crypto_pwhash_scryptsalsa208sha256.h +include/sodium/crypto_pwhash.h +include/sodium/crypto_scalarmult_curve25519.h +include/sodium/crypto_scalarmult_ed25519.h +include/sodium/crypto_scalarmult.h +include/sodium/crypto_secretbox_xchacha20poly1305.h +include/sodium/crypto_secretbox_xsalsa20poly1305.h +include/sodium/crypto_secretbox.h +include/sodium/crypto_secretstream_xchacha20poly1305.h +include/sodium/crypto_shorthash_siphash24.h +include/sodium/crypto_shorthash.h +include/sodium/crypto_sign_ed25519.h +include/sodium/crypto_sign_edwards25519sha512batch.h +include/sodium/crypto_sign.h +include/sodium/crypto_stream_chacha20.h +include/sodium/crypto_stream_salsa20.h +include/sodium/crypto_stream_salsa2012.h +include/sodium/crypto_stream_salsa208.h +include/sodium/crypto_stream_xchacha20.h +include/sodium/crypto_stream_xsalsa20.h +include/sodium/crypto_stream.h +include/sodium/crypto_verify_16.h +include/sodium/crypto_verify_32.h +include/sodium/crypto_verify_64.h +include/sodium/export.h +include/sodium/randombytes_salsa20_random.h +include/sodium/randombytes_sysrandom.h +include/sodium/randombytes.h +include/sodium/runtime.h +include/sodium/utils.h +include/sodium/version.h +lib/libsodium.a +lib/libsodium.la +lib/libsodium.so +lib/libsodium.so.24 +lib/pkgconfig/libsodium.pc +@dir include/sodium diff --git a/data/mariadb/Makefile b/data/mariadb/Makefile new file mode 100644 index 00000000..d70f9cdd --- /dev/null +++ b/data/mariadb/Makefile @@ -0,0 +1,165 @@ +# $FreeBSD: head/databases/mariadb102-server/Makefile 470246 2018-05-17 18:57:17Z brnrd $ + +PORTNAME?= mariadb +PORTVERSION= 10.6.21 +CATEGORIES= databases +#MASTER_SITES+= http://mirrors.supportex.net/${SITESDIR}/ +#MASTER_SITES+= http://mirror2.hs-esslingen.de/pub/Mirrors/${SITESDIR}/ +#MASTER_SITES+= http://gd.tuwien.ac.at/db/${SITESDIR}/ +#MASTER_SITES+= http://mirrors.fe.up.pt/pub/${SITESDIR}/ +#MASTER_SITES+= http://mirror.de.gsnw.de:56431/${SITESDIR}/ +#MASTER_SITES+= http://mirror.layerjet.com/${SITESDIR}/ +#MASTER_SITES+= http://mirror.switch.ch/mirror/${SITESDIR}/ +#MASTER_SITES+= http://ftp.osuosl.org/pub/${SITESDIR}/ +SITESDIR= mariadb/mariadb-${PORTVERSION}/source + +MAINTAINER= brnrd@FreeBSD.org +COMMENT= Multithreaded SQL database (server) + + +LIB_DEPENDS+= libiconv.so:text/libiconv +LIB_DEPENDS+= libxml2.so:text/libxml2 +#LIB_DEPENDS+= libodbc.so:data/unixODBC +#LIB_DEPENDS+= libsnappy.so:arch/libsnappy +#LIB_DEPENDS+= liblzo2.so:arch/liblzo2 +#LIB_DEPENDS+= liblz4.so:arch/liblz4 + +USES= bison:build cmake compiler:c++11-lib shebangfix +#USE_LDCONFIG= ${PREFIX}/lib/mysql +SHEBANG_FILES= scripts/*.sh +DOCSDIR= ${PREFIX}/share/doc/mysql + +CXXFLAGS+= -fcommon +CFLAGS+= -fcommon + + +# MySQL-Server options +#OPTIONS_DEFAULT+= CONNECT_EXTRA INNOBASE SPHINX SPIDER +#OPTIONS_GROUP= COMPRESSION ENGINES GROONGA +#OPTIONS_DEFINE= CONNECT_EXTRA +#OPTIONS_GROUP_COMPRESSION= LZ4 LZO SNAPPY ZSTD +#OPTIONS_GROUP_ENGINES= INNOBASE MROONGA OQGRAPH ROCKSDB SPHINX SPIDER TOKUDB XTRADB +#OPTIONS_GROUP_GROONGA= ZMQ MSGPACK +#OPTIONS_EXCLUDE_i386= TOKUDB + +#CONNECT_EXTRA_DESC= Enable ODBC and XML in CONNECT engine +#COMPRESSION_DESC= Optional page compression +#ENGINES_DESC= Optional MariaDB storage engines +#GROONGA_DESC= Optional Mroonga features +#INNOBASE_DESC= InnoDB default engine +#MROONGA_DESC= Mroonga Full Text Search engine +#MSGPACK_DESC= MsgPack support +#OQGRAPH_DESC= Open Query Graph Computation engine +#ROCKSDB_DESC= RocksDB LSM engine (Alpha) +#SPHINX_DESC= SphinxSE engine +#SPIDER_DESC= Partitioning and XA-transactions engine +#TOKUDB_DESC= Fractal tree index tree data structure engine +#XTRADB_DESC= Build XtraDB engine next to InnoDB +#ZMQ_DESC= ZeroMQ support +#ZSTD_DESC+= Zstandard compression support (RocksDB only) + + +OPENSSLBASE= /usr +NCURSESLIB= /usr/lib + +CMAKE_ARGS= -DCMAKE_PREFIX_PATH="${PREFIX}" +CMAKE_ARGS+= -DINSTALL_DOCDIR="share/doc/mysql" +CMAKE_ARGS+= -DINSTALL_DOCREADMEDIR="share/doc/mysql" +CMAKE_ARGS+= -DINSTALL_INCLUDEDIR="include/mysql" +CMAKE_ARGS+= -DINSTALL_INFODIR="info" +CMAKE_ARGS+= -DINSTALL_LIBDIR="lib/mysql" +CMAKE_ARGS+= -DINSTALL_MANDIR="man" +CMAKE_ARGS+= -DINSTALL_MYSQLDATADIR="/var/db/mysql" +CMAKE_ARGS+= -DINSTALL_MYSQLSHAREDIR="share/mysql" +CMAKE_ARGS+= -DINSTALL_MYSQLTESTDIR= +CMAKE_ARGS+= -DINSTALL_PLUGINDIR="lib/mysql/plugin" +CMAKE_ARGS+= -DINSTALL_SBINDIR="libexec" +CMAKE_ARGS+= -DINSTALL_SCRIPTDIR="bin" +CMAKE_ARGS+= -DINSTALL_SHAREDIR="share" +CMAKE_ARGS+= -DINSTALL_SQLBENCHDIR="" +CMAKE_ARGS+= -DINSTALL_SUPPORTFILESDIR="share/mysql" +CMAKE_ARGS+= -DDEFAULT_SYSCONFDIR="${PREFIX}/etc" +CMAKE_ARGS+= -DWITH_JEMALLOC="system" +CMAKE_ARGS+= -DWITH_LIBWRAP=0 +CMAKE_ARGS+= -DWITH_SSL="${OPENSSLBASE}" +CMAKE_ARGS+= -DWITH_UNIT_TESTS=0 +CMAKE_ARGS+= -DWITHOUT_DOCS=1 +CMAKE_ARGS+= -DCURSES_CURSES_LIBRARY="/usr/lib/libcurses.so" +CMAKE_ARGS+= -DCURSES_FORM_LIBRARY="/usr/lib/libform.so" +CMAKE_ARGS+= -DCURSES_CURSES_LIBRARY="/usr/lib/libncurses.so" +CMAKE_ARGS+= -DICONV_LIBRARIES="${LOCALBASE}/lib/libiconv.so" +CMAKE_ARGS+= -DCURSES_NCURSES_LIBRARY="${NCURSESLIB}/libncurses.so" +CMAKE_ARGS+= -DOPENSSL_ROOT_DIR="${OPENSSLBASE}" +CMAKE_ARGS+= -DOPENSSL_CRYPTO_LIBRARY="${OPENSSLBASE}/lib/libcrypto.so" +CMAKE_ARGS+= -DOPENSSL_SSL_LIBRARY="${OPENSSLBASE}/lib/libssl.so" +CMAKE_ARGS+= -DREMOTEIO_PLUGIN_TYPE="NO" +CMAKE_ARGS+= -DCOMPILATION_COMMENT="FreeBSD Ports" +CMAKE_ARGS+= -DCMAKE_PREFIX_PATH=${PREFIX} +CMAKE_ARGS+= -DPLUGIN_AUTH_TEST_PLUGIN=NO + +#CMAKE_ARGS+= -DCMAKE_SKIP_BUILD_RPATH=ON -DWITH_EMBEDDED_SERVER=ON + +CMAKE_ARGS+= -DWITH_FAST_MUTEXES=1 + + +#CMAKE_ARGS+= -DWITH_EMBEDDED_SERVER="ON" +CMAKE_ARGS+= -DPLUGIN_AUTH_GSSAPI_CLIENT=NO +CMAKE_ARGS+= -DCMAKE_SKIP_BUILD_RPATH:BOOL=YES +CMAKE_ARGS+= -DWITHOUT_EXAMPLE_STORAGE_ENGINE=1 + +#CMAKE_ARGS+= -DWITHOUT_INNOBASE=1 -DPLUGIN_INNOBASE=NO +CMAKE_ARGS+= -DWITHOUT_MROONGA=1 -DPLUGIN_MROONGA=NO +CMAKE_ARGS+= -DWITHOUT_OQGRAPH=1 -DPLUGIN_OQGRAPH=NO +CMAKE_ARGS+= -DWITHOUT_ROCKSDB=1 -DPLUGIN_ROCKSDB=NO +CMAKE_ARGS+= -DWITHOUT_SPHINX=1 -DPLUGIN_SPHINX=NO +CMAKE_ARGS+= -DWITHOUT_SPIDER=1 -DPLUGIN_SPIDER=NO +CMAKE_ARGS+= -DWITHOUT_TOKUDB=1 -DPLUGIN_TOKUDB=NO +#CMAKE_ARGS+= -DWITHOUT_XTRADB=1 -DPLUGIN_XTRADB=NO +CMAKE_ARGS+= -DWITH_WSREP=NO + +CMAKE_ARGS+= -DGRN_WITH_LZ4=OFF + +CMAKE_ARGS+= -DWITH_INNODB_LZ4=OFF +CMAKE_ARGS+= -DWITH_INNODB_LZO=OFF +CMAKE_ARGS+= -DWITH_INNODB_SNAPPY=OFF + +CMAKE_ARGS+= -DWITH_ROCKSDB_LZ4=OFF +CMAKE_ARGS+= -DWITH_ROCKSDB_ZSTD=OFF + + +CMAKE_ARGS+= -DPLUGIN_AUTH_GSSAPI=NO -DPLUGIN_AUTH_GSSAPI_CLIENT=NO + +LDFLAGS+= -L${LOCALBASE}/lib -liconv +CFLAGS+= -I${LOCALBASE}/include -fPIE +CXXLAGS+= -I${LOCALBASE}/include -fPIE + +MY_OWNER= mysql +MY_OWNER_ID= 88 +MY_GROUP= mysql +MY_GROUP_ID= 88 + +MY_VAR_DIR= /var +MY_DB_DIR= ${MY_VAR_DIR}/db/mysql + +SUB_LIST+= MY_OWNER=${MY_OWNER} +SUB_LIST+= MY_GROUP=${MY_GROUP} +SUB_LIST+= MY_OWNER_ID=${MY_OWNER_ID} +SUB_LIST+= MY_GROUP_ID=${MY_GROUP_ID} +SUB_LIST+= MY_DB_DIR=${MY_DB_DIR} + +USE_RC_SUBR+= mysql + +SUB_FILES= pkg-install pkg-deinstall pkg-message + +post-patch: + ${REINPLACE_CMD} 's/*.1/${MAN1}/' ${WRKSRC}/man/CMakeLists.txt + ${REINPLACE_CMD} 's|%%PREFIX%%|${PREFIX}|g' ${WRKSRC}/mysys/my_default.c + ${REINPLACE_CMD} 's|%%LOCALBASE%%|${LOCALBASE}|g' ${WRKSRC}/scripts/mysql_config.sh + +post-install: + ${RM} -rf ${STAGEDIR}/${PREFIX}/share/mysql/policy + cd ${STAGEDIR}${PREFIX}/lib && ${LN} -sf mysql/lib* . + + +.include +#EOF diff --git a/data/mariadb/distinfo b/data/mariadb/distinfo new file mode 100644 index 00000000..e0dbe49e --- /dev/null +++ b/data/mariadb/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1756284117 +SHA256 (mariadb-10.6.21.tar.gz) = 8d7f97169b3ba2044858965b8cfc254364400df43e905042f92e24b8fa7b0d96 +SIZE (mariadb-10.6.21.tar.gz) = 103982296 diff --git a/data/mariadb/files/mysql-server.in b/data/mariadb/files/mysql-server.in new file mode 100644 index 00000000..d3417eeb --- /dev/null +++ b/data/mariadb/files/mysql-server.in @@ -0,0 +1,140 @@ +#!/bin/sh + +# $FreeBSD: head/databases/mariadb55-server/files/mysql-server.in 361647 2014-07-12 22:42:33Z rakuco $ +# +# PROVIDE: mysql +# REQUIRE: LOGIN +# KEYWORD: shutdown +# +# Add the following line to /etc/rc.conf to enable mysql: +# mysql_(instance_)?enable (bool): Set to "NO" by default. +# Set it to "YES" to enable MySQL. +%%LEGACY_LIMITS%%# mysql_(instance_)?limits (bool): Set to "NO" by default. +%%LEGACY_LIMITS%%# Set it to yes to run `limits -e -U mysql` +%%LEGACY_LIMITS%%# just before mysql starts. +# mysql_(instance_)?dbdir (str): Default to "/var/db/mysql" +# Base database directory. +# mysql_(instance_)?args (str): Custom additional arguments to be passed +# to mysqld_safe (default empty). +# mysql_(instance_)?pidfile (str): Custum PID file path and name. +# Default to "${mysql_dbdir}/${hostname}.pid". +# mysql_(instance_)?user (str): User to run mysqld as +# Default to "mysql" created by the port +# mysql_(instance_)?optfile (str): Server-specific option file. +# Default to "${mysql_dbdir}/my.cnf". +# mysql_instances (str): Set to "" by default. +# If defined, list of instances to enable + +. /etc/rc.subr + +name="mysql" +rcvar=mysql_enable + +load_rc_config $name + +: ${mysql_enable="NO"} +%%LEGACY_LIMITS%%: ${mysql_limits="NO"} +: ${mysql_user="mysql"} +%%LEGACY_LIMITS%%: ${mysql_limits_args="-e -U $mysql_user"} +: ${mysql_dbdir="/var/db/mysql"} +: ${mysql_optfile="${mysql_dbdir}/my.cnf"} + +command="/usr/sbin/daemon" +procname="%%PREFIX%%/libexec/mysqld" +start_precmd="${name}_prestart" +start_postcmd="${name}_poststart" + +if [ -n "$2" ]; then + instance="$2" + load_rc_config ${name}_${instance} + case "$mysql_instances" in + "$2 "*|*" $2 "*|*" $2"|"$2") + eval mysql_args="\${mysql_${instance}_args:-\"${mysql_args}\"}" + eval mysql_dbdir="\${mysql_${instance}_dbdir:-\"/var/db/mysql_${instance}\"}" +%%LEGACY_LIMITS%% eval mysql_limits="\${mysql_${instance}_limits:-\"${mysql_limits}\"}" + eval mysql_user="\${mysql_${instance}_user:-\"${mysql_user}\"}" +%%LEGACY_LIMITS%% eval mysql_limits_args="\${mysql_${instance}_limits_args:-\"-e -U $mysql_user\"}" + eval mysql_optfile="\${mysql_${instance}_optfile:-\"${mysql_dbdir}/my.cnf\"}" + eval mysql_pidfile="\${mysql_${instance}_pidfile:-\"${mysql_dbdir}/`/bin/hostname`.pid\"}" + ;; + *) + err 1 "$2 not found in mysql_instances" ;; + esac +else + if [ -n "${mysql_instances}" -a -n "$1" ]; then + for instance in ${mysql_instances}; do + eval _enable="\${mysql_${instance}_enable}" + case "${_enable:-${mysql_enable}}" in + [Nn][Oo]|[Ff][Aa][Ll][Ss][Ee]|[Oo][Ff][Ff]|0) + continue + ;; + [Yy][Ee][Ss]|[Tt][Rr][Uu][Ee]|[Oo][Nn]|1) + ;; + *) + if [ -z "$_enable" ]; then + _var=mysql_enable + else + _var=mysql_${instance}_enable + fi + warn "Bad value" \ + "'${_enable:-${mysql_enable}}'" \ + "for ${_var}. " \ + "Instance ${instance} skipped." + continue + ;; + esac + echo "===> mysql instance: ${instance}" + if %%PREFIX%%/etc/rc.d/mysql-server $1 ${instance}; then + success="${instance} ${success}" + else + failed="${instance} (${retcode}) ${failed}" + fi + done + exit 0 + else + mysql_pidfile=${mysql_pidfile:-"${mysql_dbdir}/`/bin/hostname`.pid"} + fi +fi + +pidfile=$mysql_pidfile +mysql_install_db="%%PREFIX%%/bin/mysql_install_db" +mysql_install_db_args="--basedir=%%PREFIX%% --datadir=${mysql_dbdir} --force" +command_args="-c -f %%PREFIX%%/bin/mysqld_safe --defaults-extra-file=${mysql_optfile} --user=${mysql_user} --datadir=${mysql_dbdir} --pid-file=${pidfile} ${mysql_args}" + +mysql_create_auth_tables() +{ + eval $mysql_install_db $mysql_install_db_args + [ $? -eq 0 ] && chown -R ${mysql_user}:$(id -gn $mysql_user) ${mysql_dbdir} +} + +mysql_prestart() +{ + local dir + for dir in /etc /etc/mysql; do + if [ -f "${dir}/my.cnf" ]; then + echo "Please move existing my.cnf file from ${dir} to %%PREFIX%%${dir}" + return 1 + fi + done + if [ ! -d "${mysql_dbdir}/mysql/." ]; then + mysql_create_auth_tables || return 1 + fi +%%LEGACY_LIMITS%% if checkyesno mysql_limits; then +%%LEGACY_LIMITS%% eval `/usr/bin/limits ${mysql_limits_args:-"-e -U $mysql_user"}` 2>/dev/null +%%LEGACY_LIMITS%% else +%%LEGACY_LIMITS%% return 0 +%%LEGACY_LIMITS%% fi +%%MODERN_LIMITS%% return 0 +} + +mysql_poststart() +{ + local timeout=15 + while [ ! -f "${pidfile}" -a ${timeout} -gt 0 ]; do + timeout=$(( timeout - 1 )) + sleep 1 + done + return 0 +} + +run_rc_command "$1" diff --git a/data/mariadb/files/mysql.in b/data/mariadb/files/mysql.in new file mode 100644 index 00000000..da0e4f0a --- /dev/null +++ b/data/mariadb/files/mysql.in @@ -0,0 +1,92 @@ +#!/bin/sh + +# $FreeBSD: head/databases/mariadb55-server/files/mysql-server.in 361647 2014-07-12 22:42:33Z rakuco $ +# +# PROVIDE: mysql +# REQUIRE: LOGIN +# KEYWORD: shutdown +# +# Add the following line to /etc/rc.conf to enable mysql: +# mysql_(instance_)?enable (bool): Set to "NO" by default. +# Set it to "YES" to enable MySQL. +# mysql_(instance_)?limits (bool): Set to "NO" by default. +# Set it to yes to run `limits -e -U mysql` +# just before mysql starts. +# mysql_(instance_)?dbdir (str): Default to "/var/db/mysql" +# Base database directory. +# mysql_(instance_)?args (str): Custom additional arguments to be passed +# to mysqld_safe (default empty). +# mysql_(instance_)?pidfile (str): Custum PID file path and name. +# Default to "${mysql_dbdir}/${hostname}.pid". +# mysql_(instance_)?user (str): User to run mysqld as +# Default to "mysql" created by the port +# mysql_(instance_)?optfile (str): Server-specific option file. +# Default to "${mysql_dbdir}/my.cnf". +# mysql_instances (str): Set to "" by default. +# If defined, list of instances to enable + +. /etc/rc.subr + +name="mysql" +rcvar=mysql_enable + +load_rc_config $name + +: ${mysql_enable="NO"} +#: ${mysql_limits="NO"} +: ${mysql_user="mysql"} +: ${mysql_limits_args="-e -U $mysql_user"} +: ${mysql_dbdir="/var/db/mysql"} +: ${mysql_optfile="${mysql_dbdir}/my.cnf"} + + +command="/usr/sbin/daemon" +procname="%%PREFIX%%/libexec/mysqld" +start_precmd="${name}_prestart" +start_postcmd="${name}_poststart" + +mysql_pidfile=${mysql_pidfile:-"${mysql_dbdir}/mysql.pid"} + +pidfile=$mysql_pidfile +mysql_install_db="%%PREFIX%%/bin/mysql_install_db" +mysql_install_db_args="--basedir=%%PREFIX%% --datadir=${mysql_dbdir} --force" +command_args="-c -f %%PREFIX%%/bin/mysqld_safe --defaults-extra-file=${mysql_optfile} --user=${mysql_user} --datadir=${mysql_dbdir} --pid-file=${pidfile} ${mysql_args}" + +mysql_create_auth_tables() +{ + eval $mysql_install_db $mysql_install_db_args + [ $? -eq 0 ] && chown -R ${mysql_user}:$(id -gn $mysql_user) ${mysql_dbdir} +} + +mysql_prestart() +{ + local dir + for dir in /etc /etc/mysql; do + if [ -f "${dir}/my.cnf" ]; then + echo "Please move existing my.cnf file from ${dir} to %%PREFIX%%${dir}" + return 1 + fi + done + if [ ! -d "${mysql_dbdir}/mysql/." ]; then + mysql_create_auth_tables || return 1 + fi +# if checkyesno mysql_limits; then +# eval `/usr/bin/limits ${mysql_limits_args:-"-e -U $mysql_user"}` 2>/dev/null +# else + return 0 +# fi + return 0 +} + +mysql_poststart() +{ + local timeout=15 + while [ ! -f "${pidfile}" -a ${timeout} -gt 0 ]; do + timeout=$(( timeout - 1 )) + sleep 1 + done + return 0 +} + +run_rc_command "$1" +#EOF diff --git a/data/mariadb/files/patch-storage_rocksdb_rocksdb_port_jemalloc__helper.h b/data/mariadb/files/patch-storage_rocksdb_rocksdb_port_jemalloc__helper.h new file mode 100644 index 00000000..dab7177b --- /dev/null +++ b/data/mariadb/files/patch-storage_rocksdb_rocksdb_port_jemalloc__helper.h @@ -0,0 +1,13 @@ +--- storage/rocksdb/rocksdb/port/jemalloc_helper.h.orig 2020-06-23 15:10:17 UTC ++++ storage/rocksdb/rocksdb/port/jemalloc_helper.h +@@ -26,6 +26,10 @@ + #include + #endif + ++#ifdef __FreeBSD__ ++#define JEMALLOC_USABLE_SIZE_CONST const ++#endif ++ + #ifndef JEMALLOC_CXX_THROW + #define JEMALLOC_CXX_THROW + #endif diff --git a/data/mariadb/files/patch-tpool_CMakeLists.txt b/data/mariadb/files/patch-tpool_CMakeLists.txt new file mode 100644 index 00000000..5ab7d5de --- /dev/null +++ b/data/mariadb/files/patch-tpool_CMakeLists.txt @@ -0,0 +1,8 @@ +--- tpool/CMakeLists.txt.orig 2020-06-23 15:10:18 UTC ++++ tpool/CMakeLists.txt +@@ -1,4 +1,5 @@ + INCLUDE_DIRECTORIES(${CMAKE_CURRENT_SOURCE_DIR} ${PROJECT_SOURCE_DIR}/include) ++ADD_DEFINITIONS(-fPIC) + IF(WIN32) + SET(EXTRA_SOURCES tpool_win.cc aio_win.cc) + ELSEIF(CMAKE_SYSTEM_NAME STREQUAL "Linux") diff --git a/data/mariadb/files/patch-x-storage-innobase-include-trx0trx.h b/data/mariadb/files/patch-x-storage-innobase-include-trx0trx.h new file mode 100644 index 00000000..27e82893 --- /dev/null +++ b/data/mariadb/files/patch-x-storage-innobase-include-trx0trx.h @@ -0,0 +1,23 @@ +--- ./storage/innobase/include/trx0trx.h.orig 2025-01-29 12:22:21.000000000 +0200 ++++ ./storage/innobase/include/trx0trx.h 2025-08-27 14:19:07.750565000 +0200 +@@ -38,6 +38,7 @@ + #include "small_vector.h" + + #include ++#include + + // Forward declaration + struct mtr_t; +@@ -605,10 +606,10 @@ + /** mutex protecting state and some of lock + (some are protected by lock_sys.latch) */ + srw_spin_mutex mutex; +-#ifdef UNIV_DEBUG ++//#ifdef UNIV_DEBUG + /** The owner of mutex (0 if none); protected by mutex */ + std::atomic mutex_owner{0}; +-#endif /* UNIV_DEBUG */ ++//#endif /* UNIV_DEBUG */ + public: + void mutex_init() { mutex.init(); } + void mutex_destroy() { mutex.destroy(); } diff --git a/data/mariadb/files/pkg-deinstall.in b/data/mariadb/files/pkg-deinstall.in new file mode 100644 index 00000000..34dd110e --- /dev/null +++ b/data/mariadb/files/pkg-deinstall.in @@ -0,0 +1,14 @@ +#!/bin/sh -x + +MY_OWNER="%%MY_OWNER%%" +MY_GROUP="%%MY_GROUP%%" +MY_DB_DIR="%%MY_DB_DIR%%" + + +case $2 in + DEINSTALL) + ;; + POST-DEINSTALL) + ;; +esac +#EOF diff --git a/data/mariadb/files/pkg-install.in b/data/mariadb/files/pkg-install.in new file mode 100644 index 00000000..d74b7fcd --- /dev/null +++ b/data/mariadb/files/pkg-install.in @@ -0,0 +1,30 @@ +#!/bin/sh -x + +MY_OWNER="%%MY_OWNER%%" +MY_GROUP="%%MY_GROUP%%" +MY_OWNER_ID="%%MY_OWNER_ID%%" +MY_GROUP_ID="%%MY_GROUP_ID%%" + +MY_DB_DIR="%%MY_DB_DIR%%" + +PKG__PPREFIX="/notexist" + +case $2 in + PRE-INSTALL) + pw group add ${MY_GROUP} -g ${MY_GROUP_ID} + pw user add ${MY_OWNER} -u ${MY_OWNER_ID} -g ${MY_GROUP} \ + -d ${PKG_PREFIX} -m -s "/bin/sh" \ + -c "mysql" + pw group mod ${MY_GROUP} -M ${MY_OWNER} + + pw user show ${MY_OWNER} + pw group show ${MY_GROUP} + + mkdir -p ${MY_DB_DIR} + chown ${MY_OWNER}:${MY_GROUP} ${MY_DB_DIR} + chmod 0700 ${MY_DB_DIR} + ;; + POST-INSTALL) + ;; +esac +#EOF diff --git a/data/mariadb/files/pkg-message.in b/data/mariadb/files/pkg-message.in new file mode 100644 index 00000000..e0b900e2 --- /dev/null +++ b/data/mariadb/files/pkg-message.in @@ -0,0 +1,22 @@ +************************************************************************ + +!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! +!! !! +!! The default InnoDB storage engine is no longer XtraDB, check your !! +!! configuration and switch it to InnoDB !! +!! !! +!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +Remember to run mysql_upgrade (with the optional --datadir= flag) +the first time you start the MySQL server after an upgrade from an +earlier version. + +MariaDB respects hier(7) and doesn't check /etc and /etc/mysql for +my.cnf. Please move existing my.cnf files from those paths to +%%PREFIX%%/etc and %%PREFIX%%/etc/mysql. + +This port does NOT include the mytop perl script, this is included in +the MariaDB tarball but the most recent version can be found in the +databases/mytop port + +************************************************************************ diff --git a/data/mariadb/pkg-descr b/data/mariadb/pkg-descr new file mode 100644 index 00000000..31c3ca1c --- /dev/null +++ b/data/mariadb/pkg-descr @@ -0,0 +1,14 @@ +MariaDB is a database server that offers drop-in replacement functionality +for MySQL. MariaDB is built by some of the original authors of MySQL, with +assistance from the broader community of Free and open source software +developers. In addition to the core functionality of MySQL, MariaDB offers +a rich set of feature enhancements including alternate storage engines, +server optimizations, and patches. + +MariaDB is primarily driven by developers at Monty Program, a company +founded by Michael "Monty" Widenius, the original author of MySQL, but +this is not the whole story about MariaDB. On the "About MariaDB" page you +will find more information about all participants in the MariaDB community, +including storage engines XtraDB and PBXT. + +WWW: http://mariadb.org/ diff --git a/data/mariadb/pkg-plist b/data/mariadb/pkg-plist new file mode 100644 index 00000000..3ad4bbe8 --- /dev/null +++ b/data/mariadb/pkg-plist @@ -0,0 +1,897 @@ +bin/aria_chk +bin/aria_dump_log +bin/aria_ftdump +bin/aria_pack +bin/aria_read_log +bin/aria_s3_copy +bin/innochecksum +bin/mariabackup +bin/mariadb +bin/mariadb_config +bin/mariadb-access +bin/mariadb-admin +bin/mariadb-backup +bin/mariadb-binlog +bin/mariadb-check +bin/mariadb-client-test +bin/mariadb-config +bin/mariadb-conv +bin/mariadb-convert-table-format +bin/mariadb-dump +bin/mariadb-dumpslow +bin/mariadb-find-rows +bin/mariadb-fix-extensions +bin/mariadb-hotcopy +bin/mariadb-import +bin/mariadb-install-db +bin/mariadb-plugin +bin/mariadb-secure-installation +bin/mariadb-setpermission +bin/mariadb-show +bin/mariadb-slap +bin/mariadb-test +bin/mariadb-tzinfo-to-sql +bin/mariadb-upgrade +bin/mariadb-waitpid +bin/mariadbd-multi +bin/mariadbd-safe +bin/mariadbd-safe-helper +bin/mbstream +bin/msql2mysql +bin/my_print_defaults +bin/myisam_ftdump +bin/myisamchk +bin/myisamlog +bin/myisampack +bin/mysql +bin/mysql_client_test +bin/mysql_config +bin/mysql_convert_table_format +bin/mysql_find_rows +bin/mysql_fix_extensions +bin/mysql_install_db +bin/mysql_plugin +bin/mysql_secure_installation +bin/mysql_setpermission +bin/mysql_tzinfo_to_sql +bin/mysql_upgrade +bin/mysql_waitpid +bin/mysqlaccess +bin/mysqladmin +bin/mysqlbinlog +bin/mysqlcheck +bin/mysqld_multi +bin/mysqld_safe +bin/mysqld_safe_helper +bin/mysqldump +bin/mysqldumpslow +bin/mysqlhotcopy +bin/mysqlimport +bin/mysqlshow +bin/mysqlslap +bin/mysqltest +bin/mytop +bin/perror +bin/replace +bin/resolve_stack_dump +bin/resolveip +include/mysql/errmsg.h +include/mysql/ma_list.h +include/mysql/ma_pvio.h +include/mysql/ma_tls.h +include/mysql/mariadb_com.h +include/mysql/mariadb_ctype.h +include/mysql/mariadb_dyncol.h +include/mysql/mariadb_rpl.h +include/mysql/mariadb_stmt.h +include/mysql/mariadb_version.h +include/mysql/mariadb/ma_io.h +include/mysql/my_alloca.h +include/mysql/my_config.h +include/mysql/my_global.h +include/mysql/my_sys.h +include/mysql/mysql_com.h +include/mysql/mysql_version.h +include/mysql/mysql.h +include/mysql/mysql/client_plugin.h +include/mysql/mysql/plugin_auth.h +include/mysql/mysqld_error.h +include/mysql/server/big_endian.h +include/mysql/server/byte_order_generic_x86_64.h +include/mysql/server/byte_order_generic_x86.h +include/mysql/server/byte_order_generic.h +include/mysql/server/decimal.h +include/mysql/server/errmsg.h +include/mysql/server/handler_ername.h +include/mysql/server/handler_state.h +include/mysql/server/json_lib.h +include/mysql/server/keycache.h +include/mysql/server/little_endian.h +include/mysql/server/m_ctype.h +include/mysql/server/m_string.h +include/mysql/server/ma_dyncol.h +include/mysql/server/mariadb_capi_rename.h +include/mysql/server/my_alloc.h +include/mysql/server/my_alloca.h +include/mysql/server/my_attribute.h +include/mysql/server/my_byteorder.h +include/mysql/server/my_cmp.h +include/mysql/server/my_compiler.h +include/mysql/server/my_config.h +include/mysql/server/my_dbug.h +include/mysql/server/my_decimal_limits.h +include/mysql/server/my_dir.h +include/mysql/server/my_getopt.h +include/mysql/server/my_global.h +include/mysql/server/my_list.h +include/mysql/server/my_net.h +include/mysql/server/my_pthread.h +include/mysql/server/my_sys.h +include/mysql/server/my_valgrind.h +include/mysql/server/my_xml.h +include/mysql/server/mysql_com_server.h +include/mysql/server/mysql_com.h +include/mysql/server/mysql_embed.h +include/mysql/server/mysql_time.h +include/mysql/server/mysql_version.h +include/mysql/server/mysql.h +include/mysql/server/mysql/auth_dialog_client.h +include/mysql/server/mysql/client_plugin.h +include/mysql/server/mysql/plugin_audit.h +include/mysql/server/mysql/plugin_auth_common.h +include/mysql/server/mysql/plugin_auth.h +include/mysql/server/mysql/plugin_data_type.h +include/mysql/server/mysql/plugin_encryption.h +include/mysql/server/mysql/plugin_ftparser.h +include/mysql/server/mysql/plugin_function.h +include/mysql/server/mysql/plugin_password_validation.h +include/mysql/server/mysql/plugin.h +include/mysql/server/mysql/psi/mysql_file.h +include/mysql/server/mysql/psi/mysql_idle.h +include/mysql/server/mysql/psi/mysql_mdl.h +include/mysql/server/mysql/psi/mysql_memory.h +include/mysql/server/mysql/psi/mysql_ps.h +include/mysql/server/mysql/psi/mysql_socket.h +include/mysql/server/mysql/psi/mysql_sp.h +include/mysql/server/mysql/psi/mysql_stage.h +include/mysql/server/mysql/psi/mysql_statement.h +include/mysql/server/mysql/psi/mysql_table.h +include/mysql/server/mysql/psi/mysql_thread.h +include/mysql/server/mysql/psi/mysql_transaction.h +include/mysql/server/mysql/psi/psi_abi_v0.h +include/mysql/server/mysql/psi/psi_abi_v1.h +include/mysql/server/mysql/psi/psi_abi_v2.h +include/mysql/server/mysql/psi/psi_base.h +include/mysql/server/mysql/psi/psi_memory.h +include/mysql/server/mysql/psi/psi.h +include/mysql/server/mysql/service_base64.h +include/mysql/server/mysql/service_debug_sync.h +include/mysql/server/mysql/service_encryption_scheme.h +include/mysql/server/mysql/service_encryption.h +include/mysql/server/mysql/service_json.h +include/mysql/server/mysql/service_kill_statement.h +include/mysql/server/mysql/service_log_warnings.h +include/mysql/server/mysql/service_logger.h +include/mysql/server/mysql/service_md5.h +include/mysql/server/mysql/service_my_crypt.h +include/mysql/server/mysql/service_my_print_error.h +include/mysql/server/mysql/service_my_snprintf.h +include/mysql/server/mysql/service_print_check_msg.h +include/mysql/server/mysql/service_progress_report.h +include/mysql/server/mysql/service_sha1.h +include/mysql/server/mysql/service_sha2.h +include/mysql/server/mysql/service_sql.h +include/mysql/server/mysql/service_thd_alloc.h +include/mysql/server/mysql/service_thd_autoinc.h +include/mysql/server/mysql/service_thd_error_context.h +include/mysql/server/mysql/service_thd_mdl.h +include/mysql/server/mysql/service_thd_rnd.h +include/mysql/server/mysql/service_thd_specifics.h +include/mysql/server/mysql/service_thd_timezone.h +include/mysql/server/mysql/service_thd_wait.h +include/mysql/server/mysql/services.h +include/mysql/server/mysqld_ername.h +include/mysql/server/mysqld_error.h +include/mysql/server/pack.h +include/mysql/server/private/aligned.h +include/mysql/server/private/aria_backup.h +include/mysql/server/private/assume_aligned.h +include/mysql/server/private/atomic/gcc_builtins.h +include/mysql/server/private/atomic/generic-msvc.h +include/mysql/server/private/atomic/solaris.h +include/mysql/server/private/authors.h +include/mysql/server/private/backup.h +include/mysql/server/private/bounded_queue.h +include/mysql/server/private/client_settings.h +include/mysql/server/private/compat56.h +include/mysql/server/private/config.h +include/mysql/server/private/contributors.h +include/mysql/server/private/create_options.h +include/mysql/server/private/create_tmp_table.h +include/mysql/server/private/cset_narrowing.h +include/mysql/server/private/custom_conf.h +include/mysql/server/private/datadict.h +include/mysql/server/private/ddl_log.h +include/mysql/server/private/debug_sync.h +include/mysql/server/private/debug.h +include/mysql/server/private/derived_handler.h +include/mysql/server/private/derror.h +include/mysql/server/private/des_key_file.h +include/mysql/server/private/discover.h +include/mysql/server/private/dur_prop.h +include/mysql/server/private/event_data_objects.h +include/mysql/server/private/event_db_repository.h +include/mysql/server/private/event_parse_data.h +include/mysql/server/private/event_queue.h +include/mysql/server/private/event_scheduler.h +include/mysql/server/private/events.h +include/mysql/server/private/field_comp.h +include/mysql/server/private/field.h +include/mysql/server/private/filesort_utils.h +include/mysql/server/private/filesort.h +include/mysql/server/private/ft_global.h +include/mysql/server/private/gcalc_slicescan.h +include/mysql/server/private/gcalc_tools.h +include/mysql/server/private/grant.h +include/mysql/server/private/group_by_handler.h +include/mysql/server/private/gstream.h +include/mysql/server/private/ha_handler_stats.h +include/mysql/server/private/ha_partition.h +include/mysql/server/private/ha_sequence.h +include/mysql/server/private/handle_connections_win.h +include/mysql/server/private/handler.h +include/mysql/server/private/hash_filo.h +include/mysql/server/private/hash.h +include/mysql/server/private/heap.h +include/mysql/server/private/hostname.h +include/mysql/server/private/ilist.h +include/mysql/server/private/init.h +include/mysql/server/private/innodb_priv.h +include/mysql/server/private/item_cmpfunc.h +include/mysql/server/private/item_create.h +include/mysql/server/private/item_func.h +include/mysql/server/private/item_geofunc.h +include/mysql/server/private/item_jsonfunc.h +include/mysql/server/private/item_row.h +include/mysql/server/private/item_strfunc.h +include/mysql/server/private/item_subselect.h +include/mysql/server/private/item_sum.h +include/mysql/server/private/item_timefunc.h +include/mysql/server/private/item_vers.h +include/mysql/server/private/item_windowfunc.h +include/mysql/server/private/item_xmlfunc.h +include/mysql/server/private/item.h +include/mysql/server/private/json_table.h +include/mysql/server/private/key.h +include/mysql/server/private/keycaches.h +include/mysql/server/private/lex_ident.h +include/mysql/server/private/lex_string.h +include/mysql/server/private/lex_symbol.h +include/mysql/server/private/lex.h +include/mysql/server/private/lf.h +include/mysql/server/private/lock.h +include/mysql/server/private/log_event_data_type.h +include/mysql/server/private/log_event_old.h +include/mysql/server/private/log_event.h +include/mysql/server/private/log_slow.h +include/mysql/server/private/log.h +include/mysql/server/private/maria.h +include/mysql/server/private/mariadb.h +include/mysql/server/private/mdl.h +include/mysql/server/private/mem_root_array.h +include/mysql/server/private/message.h +include/mysql/server/private/multi_range_read.h +include/mysql/server/private/my_alarm.h +include/mysql/server/private/my_apc.h +include/mysql/server/private/my_atomic_wrapper.h +include/mysql/server/private/my_atomic.h +include/mysql/server/private/my_base.h +include/mysql/server/private/my_bit.h +include/mysql/server/private/my_bitmap.h +include/mysql/server/private/my_check_opt.h +include/mysql/server/private/my_compare.h +include/mysql/server/private/my_counter.h +include/mysql/server/private/my_cpu.h +include/mysql/server/private/my_crypt.h +include/mysql/server/private/my_decimal.h +include/mysql/server/private/my_default.h +include/mysql/server/private/my_handler_errors.h +include/mysql/server/private/my_json_writer.h +include/mysql/server/private/my_libwrap.h +include/mysql/server/private/my_md5.h +include/mysql/server/private/my_minidump.h +include/mysql/server/private/my_nosys.h +include/mysql/server/private/my_rdtsc.h +include/mysql/server/private/my_rnd.h +include/mysql/server/private/my_service_manager.h +include/mysql/server/private/my_stack_alloc.h +include/mysql/server/private/my_stacktrace.h +include/mysql/server/private/my_time.h +include/mysql/server/private/my_tree.h +include/mysql/server/private/my_uctype.h +include/mysql/server/private/my_user.h +include/mysql/server/private/myisam.h +include/mysql/server/private/myisamchk.h +include/mysql/server/private/myisammrg.h +include/mysql/server/private/myisampack.h +include/mysql/server/private/mysqld_default_groups.h +include/mysql/server/private/mysqld_suffix.h +include/mysql/server/private/mysqld.h +include/mysql/server/private/mysys_err.h +include/mysql/server/private/opt_range.h +include/mysql/server/private/opt_subselect.h +include/mysql/server/private/opt_trace_context.h +include/mysql/server/private/opt_trace.h +include/mysql/server/private/parse_file.h +include/mysql/server/private/partition_element.h +include/mysql/server/private/partition_info.h +include/mysql/server/private/password.h +include/mysql/server/private/pfs_file_provider.h +include/mysql/server/private/pfs_idle_provider.h +include/mysql/server/private/pfs_memory_provider.h +include/mysql/server/private/pfs_metadata_provider.h +include/mysql/server/private/pfs_socket_provider.h +include/mysql/server/private/pfs_stage_provider.h +include/mysql/server/private/pfs_statement_provider.h +include/mysql/server/private/pfs_table_provider.h +include/mysql/server/private/pfs_thread_provider.h +include/mysql/server/private/pfs_transaction_provider.h +include/mysql/server/private/privilege.h +include/mysql/server/private/probes_mysql_nodtrace.h +include/mysql/server/private/probes_mysql.h +include/mysql/server/private/procedure.h +include/mysql/server/private/protocol.h +include/mysql/server/private/proxy_protocol.h +include/mysql/server/private/queues.h +include/mysql/server/private/records.h +include/mysql/server/private/repl_failsafe.h +include/mysql/server/private/replication.h +include/mysql/server/private/rijndael.h +include/mysql/server/private/rowid_filter.h +include/mysql/server/private/rpl_constants.h +include/mysql/server/private/rpl_filter.h +include/mysql/server/private/rpl_gtid.h +include/mysql/server/private/rpl_injector.h +include/mysql/server/private/rpl_mi.h +include/mysql/server/private/rpl_parallel.h +include/mysql/server/private/rpl_record_old.h +include/mysql/server/private/rpl_record.h +include/mysql/server/private/rpl_reporting.h +include/mysql/server/private/rpl_rli.h +include/mysql/server/private/rpl_tblmap.h +include/mysql/server/private/rpl_utility.h +include/mysql/server/private/scheduler.h +include/mysql/server/private/scope.h +include/mysql/server/private/select_handler.h +include/mysql/server/private/semisync_master_ack_receiver.h +include/mysql/server/private/semisync_master.h +include/mysql/server/private/semisync_slave.h +include/mysql/server/private/semisync.h +include/mysql/server/private/service_versions.h +include/mysql/server/private/session_tracker.h +include/mysql/server/private/set_var.h +include/mysql/server/private/slave.h +include/mysql/server/private/socketpair.h +include/mysql/server/private/source_revision.h +include/mysql/server/private/sp_cache.h +include/mysql/server/private/sp_head.h +include/mysql/server/private/sp_pcontext.h +include/mysql/server/private/sp_rcontext.h +include/mysql/server/private/sp.h +include/mysql/server/private/span.h +include/mysql/server/private/spatial.h +include/mysql/server/private/sql_acl.h +include/mysql/server/private/sql_admin.h +include/mysql/server/private/sql_alloc.h +include/mysql/server/private/sql_alter.h +include/mysql/server/private/sql_analyse.h +include/mysql/server/private/sql_analyze_stmt.h +include/mysql/server/private/sql_array.h +include/mysql/server/private/sql_audit.h +include/mysql/server/private/sql_base.h +include/mysql/server/private/sql_basic_types.h +include/mysql/server/private/sql_binlog.h +include/mysql/server/private/sql_bitmap.h +include/mysql/server/private/sql_bootstrap.h +include/mysql/server/private/sql_cache.h +include/mysql/server/private/sql_callback.h +include/mysql/server/private/sql_class.h +include/mysql/server/private/sql_cmd.h +include/mysql/server/private/sql_connect.h +include/mysql/server/private/sql_const.h +include/mysql/server/private/sql_crypt.h +include/mysql/server/private/sql_cte.h +include/mysql/server/private/sql_cursor.h +include/mysql/server/private/sql_db.h +include/mysql/server/private/sql_debug.h +include/mysql/server/private/sql_delete.h +include/mysql/server/private/sql_derived.h +include/mysql/server/private/sql_digest_stream.h +include/mysql/server/private/sql_digest.h +include/mysql/server/private/sql_do.h +include/mysql/server/private/sql_error.h +include/mysql/server/private/sql_explain.h +include/mysql/server/private/sql_expression_cache.h +include/mysql/server/private/sql_get_diagnostics.h +include/mysql/server/private/sql_handler.h +include/mysql/server/private/sql_help.h +include/mysql/server/private/sql_hset.h +include/mysql/server/private/sql_i_s.h +include/mysql/server/private/sql_insert.h +include/mysql/server/private/sql_join_cache.h +include/mysql/server/private/sql_lex.h +include/mysql/server/private/sql_lifo_buffer.h +include/mysql/server/private/sql_limit.h +include/mysql/server/private/sql_list.h +include/mysql/server/private/sql_load.h +include/mysql/server/private/sql_locale.h +include/mysql/server/private/sql_manager.h +include/mysql/server/private/sql_mode.h +include/mysql/server/private/sql_parse.h +include/mysql/server/private/sql_partition_admin.h +include/mysql/server/private/sql_partition.h +include/mysql/server/private/sql_plist.h +include/mysql/server/private/sql_plugin_compat.h +include/mysql/server/private/sql_plugin.h +include/mysql/server/private/sql_prepare.h +include/mysql/server/private/sql_priv.h +include/mysql/server/private/sql_profile.h +include/mysql/server/private/sql_reload.h +include/mysql/server/private/sql_rename.h +include/mysql/server/private/sql_repl.h +include/mysql/server/private/sql_schema.h +include/mysql/server/private/sql_select.h +include/mysql/server/private/sql_sequence.h +include/mysql/server/private/sql_servers.h +include/mysql/server/private/sql_show.h +include/mysql/server/private/sql_signal.h +include/mysql/server/private/sql_sort.h +include/mysql/server/private/sql_statistics.h +include/mysql/server/private/sql_string.h +include/mysql/server/private/sql_table.h +include/mysql/server/private/sql_tablespace.h +include/mysql/server/private/sql_test.h +include/mysql/server/private/sql_time.h +include/mysql/server/private/sql_trigger.h +include/mysql/server/private/sql_truncate.h +include/mysql/server/private/sql_tvc.h +include/mysql/server/private/sql_type_fixedbin_storage.h +include/mysql/server/private/sql_type_fixedbin.h +include/mysql/server/private/sql_type_geom.h +include/mysql/server/private/sql_type_int.h +include/mysql/server/private/sql_type_json.h +include/mysql/server/private/sql_type_real.h +include/mysql/server/private/sql_type_string.h +include/mysql/server/private/sql_type.h +include/mysql/server/private/sql_udf.h +include/mysql/server/private/sql_union.h +include/mysql/server/private/sql_update.h +include/mysql/server/private/sql_view.h +include/mysql/server/private/sql_window.h +include/mysql/server/private/ssl_compat.h +include/mysql/server/private/strfunc.h +include/mysql/server/private/structs.h +include/mysql/server/private/sys_vars_shared.h +include/mysql/server/private/t_ctype.h +include/mysql/server/private/table_cache.h +include/mysql/server/private/table.h +include/mysql/server/private/thr_alarm.h +include/mysql/server/private/thr_lock.h +include/mysql/server/private/thr_malloc.h +include/mysql/server/private/thr_timer.h +include/mysql/server/private/thread_cache.h +include/mysql/server/private/threadpool_generic.h +include/mysql/server/private/threadpool_winsockets.h +include/mysql/server/private/threadpool.h +include/mysql/server/private/transaction.h +include/mysql/server/private/tzfile.h +include/mysql/server/private/tztime.h +include/mysql/server/private/uniques.h +include/mysql/server/private/unireg.h +include/mysql/server/private/vers_string.h +include/mysql/server/private/violite.h +include/mysql/server/private/waiting_threads.h +include/mysql/server/private/welcome_copyright_notice.h +include/mysql/server/private/win_tzname_data.h +include/mysql/server/private/winservice.h +include/mysql/server/private/wqueue.h +include/mysql/server/private/wsrep_on.h +include/mysql/server/private/wsrep.h +include/mysql/server/private/xa.h +include/mysql/server/sql_common.h +include/mysql/server/sql_state.h +include/mysql/server/sslopt-case.h +include/mysql/server/sslopt-longopts.h +include/mysql/server/sslopt-vars.h +include/mysql/server/typelib.h +lib/libmariadb.a +lib/libmariadb.so +lib/libmariadb.so.3 +lib/libmariadbclient.a +lib/libmysqlclient_r.a +lib/libmysqlclient_r.so +lib/libmysqlclient.a +lib/libmysqlclient.so +lib/libmysqlservices.a +lib/mysql/libmariadb.a +lib/mysql/libmariadb.so +lib/mysql/libmariadb.so.3 +lib/mysql/libmariadbclient.a +lib/mysql/libmysqlclient_r.a +lib/mysql/libmysqlclient_r.so +lib/mysql/libmysqlclient.a +lib/mysql/libmysqlclient.so +lib/mysql/libmysqlservices.a +lib/mysql/pkgconfig/mariadb.pc +lib/mysql/plugin/adt_null.so +lib/mysql/plugin/auth_0x0100.so +lib/mysql/plugin/auth_ed25519.so +lib/mysql/plugin/auth_pam_tool_dir/auth_pam_tool +lib/mysql/plugin/auth_pam_v1.so +lib/mysql/plugin/auth_pam.so +lib/mysql/plugin/caching_sha2_password.so +lib/mysql/plugin/client_ed25519.so +lib/mysql/plugin/daemon_example.ini +lib/mysql/plugin/debug_key_management.so +lib/mysql/plugin/dialog_examples.so +lib/mysql/plugin/dialog.so +lib/mysql/plugin/disks.so +lib/mysql/plugin/example_key_management.so +lib/mysql/plugin/file_key_management.so +lib/mysql/plugin/func_test.so +lib/mysql/plugin/ha_archive.so +lib/mysql/plugin/ha_blackhole.so +lib/mysql/plugin/ha_connect.so +lib/mysql/plugin/ha_federated.so +lib/mysql/plugin/ha_federatedx.so +lib/mysql/plugin/ha_s3.so +lib/mysql/plugin/ha_test_sql_discovery.so +lib/mysql/plugin/handlersocket.so +lib/mysql/plugin/libdaemon_example.so +lib/mysql/plugin/locales.so +lib/mysql/plugin/metadata_lock_info.so +lib/mysql/plugin/mypluglib.so +lib/mysql/plugin/mysql_clear_password.so +lib/mysql/plugin/qa_auth_client.so +lib/mysql/plugin/qa_auth_interface.so +lib/mysql/plugin/qa_auth_server.so +lib/mysql/plugin/query_cache_info.so +lib/mysql/plugin/query_response_time.so +lib/mysql/plugin/server_audit.so +lib/mysql/plugin/sha256_password.so +lib/mysql/plugin/simple_password_check.so +lib/mysql/plugin/sql_errlog.so +lib/mysql/plugin/test_sql_service.so +lib/mysql/plugin/test_versioning.so +lib/mysql/plugin/type_mysql_json.so +lib/mysql/plugin/type_mysql_timestamp.so +lib/mysql/plugin/type_test.so +lib/pkgconfig/libmariadb.pc +libexec/mariadbd +libexec/mysqld +man/man1/aria_chk.1.gz +man/man1/aria_dump_log.1.gz +man/man1/aria_ftdump.1.gz +man/man1/aria_pack.1.gz +man/man1/aria_read_log.1.gz +man/man1/aria_s3_copy.1.gz +man/man1/innochecksum.1.gz +man/man1/mariabackup.1.gz +man/man1/mariadb_config.1.gz +man/man1/mariadb-access.1.gz +man/man1/mariadb-admin.1.gz +man/man1/mariadb-backup.1.gz +man/man1/mariadb-binlog.1.gz +man/man1/mariadb-check.1.gz +man/man1/mariadb-client-test-embedded.1.gz +man/man1/mariadb-client-test.1.gz +man/man1/mariadb-conv.1.gz +man/man1/mariadb-convert-table-format.1.gz +man/man1/mariadb-dump.1.gz +man/man1/mariadb-dumpslow.1.gz +man/man1/mariadb-embedded.1.gz +man/man1/mariadb-find-rows.1.gz +man/man1/mariadb-fix-extensions.1.gz +man/man1/mariadb-hotcopy.1.gz +man/man1/mariadb-import.1.gz +man/man1/mariadb-install-db.1.gz +man/man1/mariadb-ldb.1.gz +man/man1/mariadb-plugin.1.gz +man/man1/mariadb-secure-installation.1.gz +man/man1/mariadb-service-convert.1.gz +man/man1/mariadb-setpermission.1.gz +man/man1/mariadb-show.1.gz +man/man1/mariadb-slap.1.gz +man/man1/mariadb-test-embedded.1.gz +man/man1/mariadb-test.1.gz +man/man1/mariadb-tzinfo-to-sql.1.gz +man/man1/mariadb-upgrade.1.gz +man/man1/mariadb-waitpid.1.gz +man/man1/mariadb.1.gz +man/man1/mariadbd-multi.1.gz +man/man1/mariadbd-safe-helper.1.gz +man/man1/mariadbd-safe.1.gz +man/man1/mbstream.1.gz +man/man1/msql2mysql.1.gz +man/man1/my_print_defaults.1.gz +man/man1/my_safe_process.1.gz +man/man1/myisam_ftdump.1.gz +man/man1/myisamchk.1.gz +man/man1/myisamlog.1.gz +man/man1/myisampack.1.gz +man/man1/myrocks_hotbackup.1.gz +man/man1/mysql_client_test_embedded.1.gz +man/man1/mysql_client_test.1.gz +man/man1/mysql_config.1.gz +man/man1/mysql_convert_table_format.1.gz +man/man1/mysql_embedded.1.gz +man/man1/mysql_find_rows.1.gz +man/man1/mysql_fix_extensions.1.gz +man/man1/mysql_install_db.1.gz +man/man1/mysql_ldb.1.gz +man/man1/mysql_plugin.1.gz +man/man1/mysql_secure_installation.1.gz +man/man1/mysql_setpermission.1.gz +man/man1/mysql_tzinfo_to_sql.1.gz +man/man1/mysql_upgrade.1.gz +man/man1/mysql_waitpid.1.gz +man/man1/mysql-stress-test.pl.1.gz +man/man1/mysql-test-run.pl.1.gz +man/man1/mysql.1.gz +man/man1/mysql.server.1.gz +man/man1/mysqlaccess.1.gz +man/man1/mysqladmin.1.gz +man/man1/mysqlbinlog.1.gz +man/man1/mysqlcheck.1.gz +man/man1/mysqld_multi.1.gz +man/man1/mysqld_safe_helper.1.gz +man/man1/mysqld_safe.1.gz +man/man1/mysqldump.1.gz +man/man1/mysqldumpslow.1.gz +man/man1/mysqlhotcopy.1.gz +man/man1/mysqlimport.1.gz +man/man1/mysqlshow.1.gz +man/man1/mysqlslap.1.gz +man/man1/mysqltest_embedded.1.gz +man/man1/mysqltest.1.gz +man/man1/mytop.1.gz +man/man1/perror.1.gz +man/man1/replace.1.gz +man/man1/resolve_stack_dump.1.gz +man/man1/resolveip.1.gz +man/man3/mariadb_cancel.3.gz +man/man3/mariadb_connection.3.gz +man/man3/mariadb_dyncol_check.3.gz +man/man3/mariadb_dyncol_column_cmp_named.3.gz +man/man3/mariadb_dyncol_column_count.3.gz +man/man3/mariadb_dyncol_create_many_named.3.gz +man/man3/mariadb_dyncol_create_many_num.3.gz +man/man3/mariadb_dyncol_exists_named.3.gz +man/man3/mariadb_dyncol_exists_num.3.gz +man/man3/mariadb_dyncol_free.3.gz +man/man3/mariadb_dyncol_list_named.3.gz +man/man3/mariadb_dyncol_list_num.3.gz +man/man3/mariadb_dyncol_unpack.3.gz +man/man3/mariadb_dyncol_update_many_named.3.gz +man/man3/mariadb_dyncol_update_many_num.3.gz +man/man3/mariadb_get_infov.3.gz +man/man3/mariadb_reconnect.3.gz +man/man3/mariadb_rpl_close.3.gz +man/man3/mariadb_rpl_fetch.3.gz +man/man3/mariadb_rpl_get_optionsv.3.gz +man/man3/mariadb_rpl_open.3.gz +man/man3/mariadb_rpl_optionsv.3.gz +man/man3/mariadb_stmt_execute_direct.3.gz +man/man3/mariadb_stmt_fetch_fields.3.gz +man/man3/mysql_affected_rows.3.gz +man/man3/mysql_autocommit.3.gz +man/man3/mysql_change_user.3.gz +man/man3/mysql_close.3.gz +man/man3/mysql_commit.3.gz +man/man3/mysql_data_seek.3.gz +man/man3/mysql_errno.3.gz +man/man3/mysql_error.3.gz +man/man3/mysql_fetch_field_direct.3.gz +man/man3/mysql_fetch_field.3.gz +man/man3/mysql_fetch_fields.3.gz +man/man3/mysql_fetch_lengths.3.gz +man/man3/mysql_fetch_row.3.gz +man/man3/mysql_field_count.3.gz +man/man3/mysql_field_seek.3.gz +man/man3/mysql_field_tell.3.gz +man/man3/mysql_free_result.3.gz +man/man3/mysql_get_character_set_info.3.gz +man/man3/mysql_get_client_info.3.gz +man/man3/mysql_get_client_version.3.gz +man/man3/mysql_get_host_info.3.gz +man/man3/mysql_get_proto_info.3.gz +man/man3/mysql_get_server_info.3.gz +man/man3/mysql_get_server_version.3.gz +man/man3/mysql_get_socket.3.gz +man/man3/mysql_get_ssl_cipher.3.gz +man/man3/mysql_hex_string.3.gz +man/man3/mysql_info.3.gz +man/man3/mysql_init.3.gz +man/man3/mysql_kill.3.gz +man/man3/mysql_more_results.3.gz +man/man3/mysql_next_result.3.gz +man/man3/mysql_num_fields.3.gz +man/man3/mysql_num_rows.3.gz +man/man3/mysql_options.3.gz +man/man3/mysql_options4.3.gz +man/man3/mysql_optionsv.3.gz +man/man3/mysql_ping.3.gz +man/man3/mysql_query.3.gz +man/man3/mysql_read_query_result.3.gz +man/man3/mysql_real_connect.3.gz +man/man3/mysql_real_escape_string.3.gz +man/man3/mysql_real_query.3.gz +man/man3/mysql_refresh.3.gz +man/man3/mysql_reset_connection.3.gz +man/man3/mysql_rollback.3.gz +man/man3/mysql_row_seek.3.gz +man/man3/mysql_row_tell.3.gz +man/man3/mysql_select_db.3.gz +man/man3/mysql_send_query.3.gz +man/man3/mysql_server_end.3.gz +man/man3/mysql_server_init.3.gz +man/man3/mysql_session_track_get_first.3.gz +man/man3/mysql_session_track_get_next.3.gz +man/man3/mysql_set_character_set.3.gz +man/man3/mysql_set_server_option.3.gz +man/man3/mysql_shutdown.3.gz +man/man3/mysql_sqlstate.3.gz +man/man3/mysql_ssl_set.3.gz +man/man3/mysql_stat.3.gz +man/man3/mysql_stmt_affected_rows.3.gz +man/man3/mysql_stmt_attr_get.3.gz +man/man3/mysql_stmt_attr_set.3.gz +man/man3/mysql_stmt_bind_param.3.gz +man/man3/mysql_stmt_bind_result.3.gz +man/man3/mysql_stmt_close.3.gz +man/man3/mysql_stmt_data_seek.3.gz +man/man3/mysql_stmt_errno.3.gz +man/man3/mysql_stmt_error.3.gz +man/man3/mysql_stmt_execute.3.gz +man/man3/mysql_stmt_fetch_column.3.gz +man/man3/mysql_stmt_fetch.3.gz +man/man3/mysql_stmt_field_count.3.gz +man/man3/mysql_stmt_free_result.3.gz +man/man3/mysql_stmt_init.3.gz +man/man3/mysql_stmt_insert_id.3.gz +man/man3/mysql_stmt_more_results.3.gz +man/man3/mysql_stmt_next_result.3.gz +man/man3/mysql_stmt_num_rows.3.gz +man/man3/mysql_stmt_param_count.3.gz +man/man3/mysql_stmt_param_metadata.3.gz +man/man3/mysql_stmt_prepare.3.gz +man/man3/mysql_stmt_reset.3.gz +man/man3/mysql_stmt_result_metadata.3.gz +man/man3/mysql_stmt_row_seek.3.gz +man/man3/mysql_stmt_row_tell.3.gz +man/man3/mysql_stmt_send_long_data.3.gz +man/man3/mysql_stmt_sqlstate.3.gz +man/man3/mysql_stmt_store_result.3.gz +man/man3/mysql_stmt_warning_count.3.gz +man/man3/mysql_store_result.3.gz +man/man3/mysql_thread_end.3.gz +man/man3/mysql_thread_id.3.gz +man/man3/mysql_thread_init.3.gz +man/man3/mysql_use_result.3.gz +man/man3/mysql_warning_count.3.gz +man/man8/mariadbd.8.gz +man/man8/mysqld.8.gz +share/aclocal/mysql.m4 +share/doc/mysql/COPYING +share/doc/mysql/CREDITS +share/doc/mysql/INSTALL-BINARY +share/doc/mysql/README.md +share/doc/mysql/THIRDPARTY +share/mysql/binary-configure +share/mysql/bulgarian/errmsg.sys +share/mysql/charsets/armscii8.xml +share/mysql/charsets/ascii.xml +share/mysql/charsets/cp1250.xml +share/mysql/charsets/cp1251.xml +share/mysql/charsets/cp1256.xml +share/mysql/charsets/cp1257.xml +share/mysql/charsets/cp850.xml +share/mysql/charsets/cp852.xml +share/mysql/charsets/cp866.xml +share/mysql/charsets/dec8.xml +share/mysql/charsets/geostd8.xml +share/mysql/charsets/greek.xml +share/mysql/charsets/hebrew.xml +share/mysql/charsets/hp8.xml +share/mysql/charsets/Index.xml +share/mysql/charsets/keybcs2.xml +share/mysql/charsets/koi8r.xml +share/mysql/charsets/koi8u.xml +share/mysql/charsets/latin1.xml +share/mysql/charsets/latin2.xml +share/mysql/charsets/latin5.xml +share/mysql/charsets/latin7.xml +share/mysql/charsets/macce.xml +share/mysql/charsets/macroman.xml +share/mysql/charsets/README +share/mysql/charsets/swe7.xml +share/mysql/chinese/errmsg.sys +share/mysql/czech/errmsg.sys +share/mysql/danish/errmsg.sys +share/mysql/dutch/errmsg.sys +share/mysql/english/errmsg.sys +share/mysql/errmsg-utf8.txt +share/mysql/estonian/errmsg.sys +share/mysql/fill_help_tables.sql +share/mysql/french/errmsg.sys +share/mysql/german/errmsg.sys +share/mysql/greek/errmsg.sys +share/mysql/hindi/errmsg.sys +share/mysql/hungarian/errmsg.sys +share/mysql/italian/errmsg.sys +share/mysql/japanese/errmsg.sys +share/mysql/korean/errmsg.sys +share/mysql/magic +share/mysql/maria_add_gis_sp_bootstrap.sql +share/mysql/maria_add_gis_sp.sql +share/mysql/mysql_performance_tables.sql +share/mysql/mysql_sys_schema.sql +share/mysql/mysql_system_tables_data.sql +share/mysql/mysql_system_tables.sql +share/mysql/mysql_test_data_timezone.sql +share/mysql/mysql_test_db.sql +share/mysql/mysql-log-rotate +share/mysql/mysql.server +share/mysql/mysqld_multi.server +share/mysql/norwegian-ny/errmsg.sys +share/mysql/norwegian/errmsg.sys +share/mysql/polish/errmsg.sys +share/mysql/portuguese/errmsg.sys +share/mysql/romanian/errmsg.sys +share/mysql/russian/errmsg.sys +share/mysql/serbian/errmsg.sys +share/mysql/slovak/errmsg.sys +share/mysql/spanish/errmsg.sys +share/mysql/swedish/errmsg.sys +share/mysql/ukrainian/errmsg.sys +share/pam_user_map.so +share/user_map.conf +@dir include/mysql/mariadb +@dir include/mysql/mysql +@dir include/mysql/server/mysql/psi +@dir include/mysql/server/mysql +@dir include/mysql/server/private/atomic +@dir include/mysql/server/private +@dir include/mysql/server +@dir include/mysql +@dir lib/mysql/pkgconfig +@dir lib/mysql/plugin/auth_pam_tool_dir +@dir lib/mysql/plugin +@dir share/mysql/bulgarian +@dir share/mysql/charsets +@dir share/mysql/chinese +@dir share/mysql/czech +@dir share/mysql/danish +@dir share/mysql/dutch +@dir share/mysql/english +@dir share/mysql/estonian +@dir share/mysql/french +@dir share/mysql/german +@dir share/mysql/greek +@dir share/mysql/hindi +@dir share/mysql/hungarian +@dir share/mysql/italian +@dir share/mysql/japanese +@dir share/mysql/korean +@dir share/mysql/norwegian +@dir share/mysql/norwegian-ny +@dir share/mysql/polish +@dir share/mysql/portuguese +@dir share/mysql/romanian +@dir share/mysql/russian +@dir share/mysql/serbian +@dir share/mysql/slovak +@dir share/mysql/spanish +@dir share/mysql/swedish +@dir share/mysql/ukrainian +@dir share/mysql diff --git a/data/postgresql/Makefile b/data/postgresql/Makefile new file mode 100644 index 00000000..0a09de30 --- /dev/null +++ b/data/postgresql/Makefile @@ -0,0 +1,153 @@ +# +# $Id: Makefile 1575 2008-07-31 07:53:53Z root $ +# +PORTNAME= postgresql +PORTVERSION= 15.4 +CATEGORIES= databases +MASTER_SITES+= http://ftp.postgresql.org/pub/%SUBDIR%/ +MASTER_SITES+= http://ftp.de.postgresql.org/%SUBDIR%/ +MASTER_SITES+= ftp://ftp.digex.net/pub/packages/database/postgresql/%SUBDIR%/ +MASTER_SITES+= ftp://ftp.sunet.se/pub/unix/databases/relational/postgresql/%SUBDIR%/ +MASTER_SITES+= ftp://ftp.chg.ru/pub/databases/postgresql/%SUBDIR%/ +MASTER_SITES+= ${MASTER_SITE_RINGSERVER:S,%SUBDIR%,misc/db/postgresql/&,} +MASTER_SITE_SUBDIR= source/v${PORTVERSION} +DISTFILES= ${PORTNAME}-${PORTVERSION}${EXTRACT_SUFX} + +MAINTAINER= onborodin@gmail.com +COMMENT= A robust, next generation, object-relational DBMS + +LIB_DEPENDS+= libiconv.so:text/libiconv +LIB_DEPENDS+= libintl.so:devel/gettext +#LIB_DEPENDS+= libicuuc.so:devel/libicu + +USES+= tar:bzip2 gmake bison pkgconfig + +PG_OWNER= pgsql +PG_OWNER_ID= 90 +PG_GROUP= pgsql +PG_GROUP_ID= 90 + +PG_DOC_SUBDIR= doc +PG_DOC_DIR= ${PREFIX}/${PG_DOC_SUBDIR} + +PG_VAR_DIR= /var +PG_DB_DIR= ${PG_VAR_DIR}/db/pgsql +PG_LOGDIR= ${PG_VAR_DIR}/log/pgsql +PG_RUN_DIR= ${PG_VAR_DIR}/run/pgsql + +USES+= gmake +GNU_CONFIGURE= yes +CONFIGURE_ARGS+= --sysconfdir=${PREFIX}/etc + +CONFIGURE_ARGS+= --with-includes=${LOCALBASE}/include +CONFIGURE_ARGS+= --with-libraries=${LOCALBASE}/lib +CONFIGURE_ARGS+= --libdir=${PREFIX}/lib +CONFIGURE_ARGS+= --includedir=${PREFIX}/include/${PORTNAME} + +CONFIGURE_ARGS+= --datarootdir=${PREFIX}/share/postgresql +CONFIGURE_ARGS+= --mandir=${PREFIX}/man +CONFIGURE_ARGS+= --infodir=${PREFIX}/info +CONFIGURE_ARGS+= --htmldir=${PREFIX}/share/doc/postgresql +CONFIGURE_ARGS+= --without-perl +CONFIGURE_ARGS+= --without-tcl +CONFIGURE_ARGS+= --without-python +CONFIGURE_ARGS+= --without-pam +CONFIGURE_ARGS+= --enable-thread-safety +CONFIGURE_ARGS+= --enable-nls +CONFIGURE_ARGS+= --with-system-tzdata=/usr/share/zoneinfo +######CONFIGURE_ARGS+= --disable-integer-datetimes +CONFIGURE_ARGS+= --with-icu +CONFIGURE_ARGS+= --enable-depend + +CONFIGURE_ARGS+= --without-ldap +CONFIGURE_ARGS+= --with-openssl + +#CONFIGURE_ARGS+= --with-libedit-preferred +#CFLAGS+= -I/usr/include/edit +#CPPFLAGS+= -I/usr/include/edit + +CFLAGS+= -pthread +CONFIGURE_ENV+= INCLUDES="${INCLUDES}" +CONFIGURE_ENV+= PTHREAD_LIBS="-lpthread" + +PKGDEINSTALL= ${WRKDIR}/pkg-deinstall +PKGINSTALL= ${WRKDIR}/pkg-install +PKGMESSAGE= ${WRKDIR}/pkg-message + +SUB_FILES= pkg-install pkg-deinstall pkg-message + +USE_RC_SUBR+= pgsql + +PLIST_SUB+= PG_DOC_SUBDIR=${PG_DOC_SUBDIR} + +SUB_LIST+= PG_OWNER=${PG_OWNER} +SUB_LIST+= PG_GROUP=${PG_GROUP} +SUB_LIST+= PG_OWNER_ID=${PG_OWNER_ID} +SUB_LIST+= PG_GROUP_ID=${PG_GROUP_ID} +SUB_LIST+= PG_DB_DIR=${PG_DB_DIR} +SUB_LIST+= PG_RUN_DIR=${PG_RUN_DIR} +SUB_LIST+= PG_LOG_DIR=${PG_LOG_DIR} + +BINS+= clusterdb +BINS+= createdb +BINS+= createuser +BINS+= dropdb +BINS+= dropuser +BINS+= initdb +BINS+= reindexdb +BINS+= vacuumdb +BINS+= vacuumlo +BINS+= oid2name + +BIN_PREFIX= pg_ +SUB_LIST+= BIN_PREFIX=${BIN_PREFIX} + +PLIST_SUB= BIN_PREFIX=${BIN_PREFIX} + +_LIBS+= libecpg.a +_LIBS+= libecpg.so +_LIBS+= libecpg.so.6 +_LIBS+= libecpg_compat.a +_LIBS+= libecpg_compat.so +_LIBS+= libecpg_compat.so.3 +_LIBS+= libpgport.a +_LIBS+= libpgtypes.a +_LIBS+= libpgtypes.so +_LIBS+= libpgtypes.so.3 +_LIBS+= libpq.a +_LIBS+= libpq.so +_LIBS+= libpq.so.5 + +post-patch: + ${RM} -f ${WRKSRC}/src/backend/parser/gram.c + ${RM} -f ${WRKSRC}/src/backend/parser/gram.h + ${RM} -f ${WRKSRC}/src/interfaces/ecpg/preproc/preproc.c + ${RM} -f ${WRKSRC}/src/interfaces/ecpg/preproc/preproc.h + +post-build: + cd ${WRKSRC}/contrib && ${GMAKE} all + +post-install: + cd ${WRKSRC}/contrib && ${GMAKE} DESTDIR=${STAGEDIR} install + cd ${WRKSRC} && ${GMAKE} DESTDIR=${STAGEDIR} install-docs +.for file in ${BINS} + cd ${STAGEDIR}/${PREFIX}/bin && ${MV} ${file} ${BIN_PREFIX}${file} + cd ${STAGEDIR}/${PREFIX}/man/man1 && ${MV} ${file}.1 ${BIN_PREFIX}${file}.1 +.endfor +.for file in ${MAN1_DEL} + cd ${STAGEDIR}/${PREFIX}/man/man1 && ${RM} -f ${file} +.endfor + +#post-patch: +# cd ${WRKSRC} && autoconf + +.include + + +.if ${OSVERSION} > 1100000 +LIB_DEPENDS+= libreadline.so:devel/libreadline +.endif + + +.include +#EOF diff --git a/data/postgresql/distinfo b/data/postgresql/distinfo new file mode 100644 index 00000000..b186e10a --- /dev/null +++ b/data/postgresql/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1709838501 +SHA256 (postgresql-15.4.tar.bz2) = baec5a4bdc4437336653b6cb5d9ed89be5bd5c0c58b94e0becee0a999e63c8f9 +SIZE (postgresql-15.4.tar.bz2) = 22850355 diff --git a/data/postgresql/files/patch-x-contrib-Makefile b/data/postgresql/files/patch-x-contrib-Makefile new file mode 100644 index 00000000..f3e25ae4 --- /dev/null +++ b/data/postgresql/files/patch-x-contrib-Makefile @@ -0,0 +1,14 @@ +--- ./contrib/Makefile.orig 2022-02-07 23:15:36.000000000 +0200 ++++ ./contrib/Makefile 2022-02-23 20:23:06.873598000 +0200 +@@ -5,6 +5,11 @@ + include $(top_builddir)/src/Makefile.global + + SUBDIRS = \ ++ oid2name \ ++ vacuumlo ++ ++ ++NOSUBDIRS = \ + adminpack \ + amcheck \ + auth_delay \ diff --git a/data/postgresql/files/patch-x-doc-Makefile b/data/postgresql/files/patch-x-doc-Makefile new file mode 100644 index 00000000..49a14356 --- /dev/null +++ b/data/postgresql/files/patch-x-doc-Makefile @@ -0,0 +1,9 @@ +--- ./doc/Makefile.orig 2022-02-07 23:15:36.000000000 +0200 ++++ ./doc/Makefile 2022-02-23 20:23:06.819396000 +0200 +@@ -12,5 +12,5 @@ + top_builddir = .. + include $(top_builddir)/src/Makefile.global + +-all distprep html man install installdirs uninstall clean distclean maintainer-clean: ++all distprep man install installdirs uninstall clean distclean maintainer-clean: + $(MAKE) -C src $@ diff --git a/data/postgresql/files/patch-x-doc-src-sgml-Makefile b/data/postgresql/files/patch-x-doc-src-sgml-Makefile new file mode 100644 index 00000000..03585de6 --- /dev/null +++ b/data/postgresql/files/patch-x-doc-src-sgml-Makefile @@ -0,0 +1,41 @@ +--- ./doc/src/sgml/Makefile.orig 2022-02-07 23:15:36.000000000 +0200 ++++ ./doc/src/sgml/Makefile 2022-02-23 20:23:06.825980000 +0200 +@@ -15,7 +15,7 @@ + + # Make "html" the default target, since that is what most people tend + # to want to use. +-html: ++man: + + # We don't need the tree-wide headers or install support here. + NO_GENERATED_HEADERS=yes +@@ -26,7 +26,7 @@ + include $(top_builddir)/src/Makefile.global + + +-all: html man ++all: man + + distprep: html distprep-man + +@@ -65,7 +65,6 @@ + ## Man pages + ## + +-man distprep-man: man-stamp + + man-stamp: stylesheet-man.xsl postgres.sgml $(ALLSGML) + $(XMLLINT) $(XMLINCLUDE) --noout --valid $(word 2,$^) +@@ -220,10 +219,10 @@ + ## Install + ## + +-install: install-html install-man ++install: install-man + + installdirs: +- $(MKDIR_P) '$(DESTDIR)$(htmldir)'/html $(addprefix '$(DESTDIR)$(mandir)'/man, 1 3 $(sqlmansectnum)) ++ $(MKDIR_P) $(addprefix '$(DESTDIR)$(mandir)'/man, 1 3 $(sqlmansectnum)) + + # If the install used a man directory shared with other applications, this will remove all files. + uninstall: diff --git a/data/postgresql/files/patch-x-src-backend-Makefile b/data/postgresql/files/patch-x-src-backend-Makefile new file mode 100644 index 00000000..f53849b4 --- /dev/null +++ b/data/postgresql/files/patch-x-src-backend-Makefile @@ -0,0 +1,11 @@ +--- ./src/backend/Makefile.orig 2022-02-07 23:15:36.000000000 +0200 ++++ ./src/backend/Makefile 2022-02-23 20:23:06.868037000 +0200 +@@ -116,6 +116,8 @@ + + $(top_builddir)/src/port/libpgport_srv.a: | submake-libpgport + ++symlinks: $(top_builddir)/src/include/parser/gram.h $(top_builddir)/src/include/storage/lwlocknames.h ++ + + # The postgres.o target is needed by the rule in Makefile.global that + # creates the exports file when MAKE_EXPORTS = true. diff --git a/data/postgresql/files/patch-x-src-backend-jit-llvm-llvmjit_inline.cpp b/data/postgresql/files/patch-x-src-backend-jit-llvm-llvmjit_inline.cpp new file mode 100644 index 00000000..118114b8 --- /dev/null +++ b/data/postgresql/files/patch-x-src-backend-jit-llvm-llvmjit_inline.cpp @@ -0,0 +1,19 @@ +--- ./src/backend/jit/llvm/llvmjit_inline.cpp.orig 2022-02-07 23:15:36.000000000 +0200 ++++ ./src/backend/jit/llvm/llvmjit_inline.cpp 2022-02-23 20:23:06.814278000 +0200 +@@ -609,6 +609,16 @@ + elog(FATAL, "failed to materialize metadata"); + + /* ++ * Don't inline functions with thread-local variables until ++ * related crashes are investigated (see BUG #16696) ++ */ ++ if (rv->isThreadLocal()) { ++ ilog(DEBUG1, "cannot inline %s due to thread-local variable %s", ++ F.getName().data(), rv->getName().data()); ++ return false; ++ } ++ ++ /* + * Don't inline functions that access thread local variables. That + * doesn't work on current LLVM releases (but might in future). + */ diff --git a/data/postgresql/files/patch-x-src-backend-utils-misc-postgresql.conf.sample b/data/postgresql/files/patch-x-src-backend-utils-misc-postgresql.conf.sample new file mode 100644 index 00000000..8d736a8d --- /dev/null +++ b/data/postgresql/files/patch-x-src-backend-utils-misc-postgresql.conf.sample @@ -0,0 +1,21 @@ +--- ./src/backend/utils/misc/postgresql.conf.sample.orig 2022-02-07 23:15:36.000000000 +0200 ++++ ./src/backend/utils/misc/postgresql.conf.sample 2022-02-23 20:23:06.850278000 +0200 +@@ -430,6 +430,7 @@ + + # - Where to Log - + ++log_destination = 'syslog' + #log_destination = 'stderr' # Valid values are combinations of + # stderr, csvlog, syslog, and eventlog, + # depending on platform. csvlog +@@ -586,7 +587,9 @@ + + #cluster_name = '' # added to process titles if nonempty + # (change requires restart) +-#update_process_title = on ++ ++# On FreeBSD, this is a performance hog, so keep it off if you need speed ++update_process_title = off + + + #------------------------------------------------------------------------------ diff --git a/data/postgresql/files/patch-x-src-include-storage-s_lock.h b/data/postgresql/files/patch-x-src-include-storage-s_lock.h new file mode 100644 index 00000000..6e2cc12b --- /dev/null +++ b/data/postgresql/files/patch-x-src-include-storage-s_lock.h @@ -0,0 +1,20 @@ +--- ./src/include/storage/s_lock.h.orig 2022-02-07 23:15:36.000000000 +0200 ++++ ./src/include/storage/s_lock.h 2022-02-23 20:23:06.858809000 +0200 +@@ -321,7 +321,7 @@ + * We use the int-width variant of the builtin because it works on more chips + * than other widths. + */ +-#if defined(__arm__) || defined(__arm) || defined(__aarch64__) || defined(__aarch64) ++#if defined(__arm__) || defined(__arm) || defined(__aarch64__) || defined(__aarch64) || defined(__riscv) + #ifdef HAVE_GCC__SYNC_INT32_TAS + #define HAS_TEST_AND_SET + +@@ -338,7 +338,7 @@ + #define S_UNLOCK(lock) __sync_lock_release(lock) + + #endif /* HAVE_GCC__SYNC_INT32_TAS */ +-#endif /* __arm__ || __arm || __aarch64__ || __aarch64 */ ++#endif /* __arm__ || __arm || __aarch64__ || __aarch64 || __riscv */ + + + /* diff --git a/data/postgresql/files/pgsql.in b/data/postgresql/files/pgsql.in new file mode 100755 index 00000000..ab637b49 --- /dev/null +++ b/data/postgresql/files/pgsql.in @@ -0,0 +1,67 @@ +#!/bin/sh + +# PROVIDE: pgsql +# REQUIRE: LOGIN + + +prefix="%%PREFIX%%"; +pgsql_data="%%PG_DB_DIR%%"; + +. /etc/rc.subr + +# -i - enable internet sockets +# -l - enable ssl +pgsql_flags=" -i "; +pgsql_owner="%%PG_OWNER%%"; + +name="pgsql"; + +rcvar="pgsql_enable"; + +procname="${prefix}/bin/postgres"; +pidfile="${pgsql_data}/postmaster.pid"; + +pgctl="${prefix}/bin/pg_ctl"; +pgctl_args="-s -w -m fast -D ${pgsql_data} -o \"${pgsql_flags}\""; + +extra_commands="initdb reload"; + +start_cmd="pgsql_command_start"; +stop_cmd="pgsql_command_stop"; +restart_cmd="pgsql_command_restart"; +reload_cmd="pgsql_command_reload"; +initdb_cmd="pgsql_initdb"; + +pgsql_command_start() { + if [ "$(check_process $procname)x" != "x" ]; then + echo "$name already running? ($(check_process $procname))"; + exit 0; + fi + su ${pgsql_owner} -c "exec ${pgctl} ${pgctl_args} start" && echo "Starting pgsql."; +} + +pgsql_command_stop() { + su ${pgsql_owner} -c "exec ${pgctl} ${pgctl_args} stop" && echo "Stoping pgsql."; + wait_for_pids $(check_process "$procname") +} + +pgsql_command_restart() { + pgsql_command_stop; +# wait_for_pids $(check_process "$procname") + pgsql_command_start; +} + +pgsql_command_reload() { + su ${pgsql_owner} -c "exec ${pgctl} ${pgctl_args} reload" && echo "Reload pgsql."; +} + +pgsql_initdb() { + su ${pgsql_owner} -c "exec ${prefix}/bin//%%BIN_PREFIX%%initdb -D ${pgsql_data} -E UTF8 --locale en_GB.UTF-8 -U pgsql -W -A md5" && echo "Init pgsql database in ${pgsql_data}"; +} + +load_rc_config $name + +: ${pgsql_enable=NO} + +run_rc_command "$1" +#EOF diff --git a/data/postgresql/files/pkg-deinstall.in b/data/postgresql/files/pkg-deinstall.in new file mode 100644 index 00000000..b1845254 --- /dev/null +++ b/data/postgresql/files/pkg-deinstall.in @@ -0,0 +1,15 @@ +#!/bin/sh -x + +PG_OWNER="%%PG_OWNER%%" +PG_GROUP="%%PG_GROUP%%" +PG_DB_DIR="%%PG_DB_DIR%%" + + +case $2 in + DEINSTALL) + ;; + POST-DEINSTALL) + rmdir ${PG_DB_DIR} || (ls -l ${PG_DB_DIR} ; du -sch ${PG_DB_DIR}) + ;; +esac +#EOF diff --git a/data/postgresql/files/pkg-install.in b/data/postgresql/files/pkg-install.in new file mode 100644 index 00000000..a48f752b --- /dev/null +++ b/data/postgresql/files/pkg-install.in @@ -0,0 +1,30 @@ +#!/bin/sh -x + +PG_OWNER="%%PG_OWNER%%" +PG_GROUP="%%PG_GROUP%%" +PG_OWNER_ID="%%PG_OWNER_ID%%" +PG_GROUP_ID="%%PG_GROUP_ID%%" + +PG_DB_DIR="%%PG_DB_DIR%%" + +PKG__PPREFIX="/notexist" + +case $2 in + PRE-INSTALL) + pw group add ${PG_GROUP} -g ${PG_GROUP_ID} + pw user add ${PG_OWNER} -u ${PG_OWNER_ID} -g ${PG_GROUP} \ + -d ${PKG_PREFIX} -m -s "/bin/sh" \ + -c "postgresql" + pw group mod ${PG_GROUP} -M ${PG_OWNER} + + pw user show ${PG_OWNER} + pw group show ${PG_GROUP} + + mkdir -p ${PG_DB_DIR} + chown ${PG_OWNER}:${PG_GROUP} ${PG_DB_DIR} + chmod 0700 ${PG_DB_DIR} + ;; + POST-INSTALL) + ;; +esac +#EOF diff --git a/data/postgresql/files/pkg-message.in b/data/postgresql/files/pkg-message.in new file mode 100644 index 00000000..5a0debf5 --- /dev/null +++ b/data/postgresql/files/pkg-message.in @@ -0,0 +1,17 @@ +*************************************************************************** + +1 For initialize databases area with admin %%PG_OWNER%% and base +encoding UTF8: + +su %%PG_OWNER%% -c '%%PREFIX%%/bin/pg_initdb -D %%PG_DB_DIR%% \ + -E UTF8 --locale en_GB.UTF-8 -U %%PG_OWNER%% -W -A md5' + +2 Add user: +su %%PG_OWNER%% -c '%%PREFIX%%/bin/pg_createuser --createrole \ + --superuser --createdb --pwprompt --echo username' + + +3 Create database: +su %%PG_OWNER%% -c '%%PREFIX%%/bin/pg_createdb db_name' + +*************************************************************************** diff --git a/data/postgresql/pkg-descr b/data/postgresql/pkg-descr new file mode 100644 index 00000000..f48a3333 --- /dev/null +++ b/data/postgresql/pkg-descr @@ -0,0 +1,24 @@ +PostgreSQL is a robust, next-generation, Object-Relational DBMS (ORDBMS), +derived from the Berkeley Postgres database management system. While +PostgreSQL retains the powerful object-relational data model, rich data types +and easy extensibility of Postgres, it replaces the PostQuel query language +with an extended subset of SQL. + +The original Postgres code was the effort of many graduate students, +undergraduate students, and staff programmers working under the direction of +Professor Michael Stonebraker at the University of California, Berkeley. In +1995, Andrew Yu and Jolly Chen took on the task of converting the DBMS query +language to SQL and created a new database system which came to known as +Postgres95. Many others contributed to the porting, testing, debugging and +enhancement of the Postgres95 code. As the code improved, and 1995 faded into +memory, PostgreSQL was born. + +PostgreSQL development is presently being performed by a team of Internet +developers who are now responsible for all current and future development. The +development team coordinator is Marc G. Fournier (scrappy@PostgreSQL.ORG). +Support is available from the PostgreSQL developer/user community through the +support mailing list (questions@PostgreSQL.ORG). + +PostgreSQL is free and the complete source is available. + +WWW: http://www.postgresql.org diff --git a/data/postgresql/pkg-plist b/data/postgresql/pkg-plist new file mode 100644 index 00000000..1e38a49a --- /dev/null +++ b/data/postgresql/pkg-plist @@ -0,0 +1,1720 @@ +bin/ecpg +bin/pg_amcheck +bin/pg_archivecleanup +bin/pg_basebackup +bin/pg_checksums +bin/pg_clusterdb +bin/pg_config +bin/pg_controldata +bin/pg_createdb +bin/pg_createuser +bin/pg_ctl +bin/pg_dropdb +bin/pg_dropuser +bin/pg_dump +bin/pg_dumpall +bin/pg_initdb +bin/pg_isready +bin/pg_oid2name +bin/pg_receivewal +bin/pg_recvlogical +bin/pg_reindexdb +bin/pg_resetwal +bin/pg_restore +bin/pg_rewind +bin/pg_test_fsync +bin/pg_test_timing +bin/pg_upgrade +bin/pg_vacuumdb +bin/pg_vacuumlo +bin/pg_verifybackup +bin/pg_waldump +bin/pgbench +bin/postgres +bin/postmaster +bin/psql +include/postgresql/ecpg_config.h +include/postgresql/ecpg_informix.h +include/postgresql/ecpgerrno.h +include/postgresql/ecpglib.h +include/postgresql/ecpgtype.h +include/postgresql/informix/esql/datetime.h +include/postgresql/informix/esql/decimal.h +include/postgresql/informix/esql/sqltypes.h +include/postgresql/internal/c.h +include/postgresql/internal/fe-auth-sasl.h +include/postgresql/internal/libpq-int.h +include/postgresql/internal/libpq/pqcomm.h +include/postgresql/internal/port.h +include/postgresql/internal/postgres_fe.h +include/postgresql/internal/pqexpbuffer.h +include/postgresql/libpq-events.h +include/postgresql/libpq-fe.h +include/postgresql/libpq/libpq-fs.h +include/postgresql/pg_config_ext.h +include/postgresql/pg_config_manual.h +include/postgresql/pg_config_os.h +include/postgresql/pg_config.h +include/postgresql/pgtypes_date.h +include/postgresql/pgtypes_error.h +include/postgresql/pgtypes_interval.h +include/postgresql/pgtypes_numeric.h +include/postgresql/pgtypes_timestamp.h +include/postgresql/pgtypes.h +include/postgresql/postgres_ext.h +include/postgresql/server/access/amapi.h +include/postgresql/server/access/amvalidate.h +include/postgresql/server/access/attmap.h +include/postgresql/server/access/attnum.h +include/postgresql/server/access/brin_internal.h +include/postgresql/server/access/brin_page.h +include/postgresql/server/access/brin_pageops.h +include/postgresql/server/access/brin_revmap.h +include/postgresql/server/access/brin_tuple.h +include/postgresql/server/access/brin_xlog.h +include/postgresql/server/access/brin.h +include/postgresql/server/access/bufmask.h +include/postgresql/server/access/clog.h +include/postgresql/server/access/commit_ts.h +include/postgresql/server/access/detoast.h +include/postgresql/server/access/genam.h +include/postgresql/server/access/generic_xlog.h +include/postgresql/server/access/gin_private.h +include/postgresql/server/access/gin.h +include/postgresql/server/access/ginblock.h +include/postgresql/server/access/ginxlog.h +include/postgresql/server/access/gist_private.h +include/postgresql/server/access/gist.h +include/postgresql/server/access/gistscan.h +include/postgresql/server/access/gistxlog.h +include/postgresql/server/access/hash_xlog.h +include/postgresql/server/access/hash.h +include/postgresql/server/access/heapam_xlog.h +include/postgresql/server/access/heapam.h +include/postgresql/server/access/heaptoast.h +include/postgresql/server/access/hio.h +include/postgresql/server/access/htup_details.h +include/postgresql/server/access/htup.h +include/postgresql/server/access/itup.h +include/postgresql/server/access/multixact.h +include/postgresql/server/access/nbtree.h +include/postgresql/server/access/nbtxlog.h +include/postgresql/server/access/parallel.h +include/postgresql/server/access/printsimple.h +include/postgresql/server/access/printtup.h +include/postgresql/server/access/relation.h +include/postgresql/server/access/reloptions.h +include/postgresql/server/access/relscan.h +include/postgresql/server/access/rewriteheap.h +include/postgresql/server/access/rmgr.h +include/postgresql/server/access/rmgrlist.h +include/postgresql/server/access/sdir.h +include/postgresql/server/access/session.h +include/postgresql/server/access/skey.h +include/postgresql/server/access/slru.h +include/postgresql/server/access/spgist_private.h +include/postgresql/server/access/spgist.h +include/postgresql/server/access/spgxlog.h +include/postgresql/server/access/stratnum.h +include/postgresql/server/access/subtrans.h +include/postgresql/server/access/syncscan.h +include/postgresql/server/access/sysattr.h +include/postgresql/server/access/table.h +include/postgresql/server/access/tableam.h +include/postgresql/server/access/timeline.h +include/postgresql/server/access/toast_compression.h +include/postgresql/server/access/toast_helper.h +include/postgresql/server/access/toast_internals.h +include/postgresql/server/access/transam.h +include/postgresql/server/access/tsmapi.h +include/postgresql/server/access/tupconvert.h +include/postgresql/server/access/tupdesc_details.h +include/postgresql/server/access/tupdesc.h +include/postgresql/server/access/tupmacs.h +include/postgresql/server/access/twophase_rmgr.h +include/postgresql/server/access/twophase.h +include/postgresql/server/access/valid.h +include/postgresql/server/access/visibilitymap.h +include/postgresql/server/access/visibilitymapdefs.h +include/postgresql/server/access/xact.h +include/postgresql/server/access/xlog_internal.h +include/postgresql/server/access/xlog.h +include/postgresql/server/access/xlogarchive.h +include/postgresql/server/access/xlogdefs.h +include/postgresql/server/access/xloginsert.h +include/postgresql/server/access/xlogprefetcher.h +include/postgresql/server/access/xlogreader.h +include/postgresql/server/access/xlogrecord.h +include/postgresql/server/access/xlogrecovery.h +include/postgresql/server/access/xlogstats.h +include/postgresql/server/access/xlogutils.h +include/postgresql/server/bootstrap/bootstrap.h +include/postgresql/server/c.h +include/postgresql/server/catalog/binary_upgrade.h +include/postgresql/server/catalog/catalog.h +include/postgresql/server/catalog/catversion.h +include/postgresql/server/catalog/dependency.h +include/postgresql/server/catalog/genbki.h +include/postgresql/server/catalog/heap.h +include/postgresql/server/catalog/index.h +include/postgresql/server/catalog/indexing.h +include/postgresql/server/catalog/namespace.h +include/postgresql/server/catalog/objectaccess.h +include/postgresql/server/catalog/objectaddress.h +include/postgresql/server/catalog/partition.h +include/postgresql/server/catalog/pg_aggregate_d.h +include/postgresql/server/catalog/pg_aggregate.h +include/postgresql/server/catalog/pg_am_d.h +include/postgresql/server/catalog/pg_am.h +include/postgresql/server/catalog/pg_amop_d.h +include/postgresql/server/catalog/pg_amop.h +include/postgresql/server/catalog/pg_amproc_d.h +include/postgresql/server/catalog/pg_amproc.h +include/postgresql/server/catalog/pg_attrdef_d.h +include/postgresql/server/catalog/pg_attrdef.h +include/postgresql/server/catalog/pg_attribute_d.h +include/postgresql/server/catalog/pg_attribute.h +include/postgresql/server/catalog/pg_auth_members_d.h +include/postgresql/server/catalog/pg_auth_members.h +include/postgresql/server/catalog/pg_authid_d.h +include/postgresql/server/catalog/pg_authid.h +include/postgresql/server/catalog/pg_cast_d.h +include/postgresql/server/catalog/pg_cast.h +include/postgresql/server/catalog/pg_class_d.h +include/postgresql/server/catalog/pg_class.h +include/postgresql/server/catalog/pg_collation_d.h +include/postgresql/server/catalog/pg_collation.h +include/postgresql/server/catalog/pg_constraint_d.h +include/postgresql/server/catalog/pg_constraint.h +include/postgresql/server/catalog/pg_control.h +include/postgresql/server/catalog/pg_conversion_d.h +include/postgresql/server/catalog/pg_conversion.h +include/postgresql/server/catalog/pg_database_d.h +include/postgresql/server/catalog/pg_database.h +include/postgresql/server/catalog/pg_db_role_setting_d.h +include/postgresql/server/catalog/pg_db_role_setting.h +include/postgresql/server/catalog/pg_default_acl_d.h +include/postgresql/server/catalog/pg_default_acl.h +include/postgresql/server/catalog/pg_depend_d.h +include/postgresql/server/catalog/pg_depend.h +include/postgresql/server/catalog/pg_description_d.h +include/postgresql/server/catalog/pg_description.h +include/postgresql/server/catalog/pg_enum_d.h +include/postgresql/server/catalog/pg_enum.h +include/postgresql/server/catalog/pg_event_trigger_d.h +include/postgresql/server/catalog/pg_event_trigger.h +include/postgresql/server/catalog/pg_extension_d.h +include/postgresql/server/catalog/pg_extension.h +include/postgresql/server/catalog/pg_foreign_data_wrapper_d.h +include/postgresql/server/catalog/pg_foreign_data_wrapper.h +include/postgresql/server/catalog/pg_foreign_server_d.h +include/postgresql/server/catalog/pg_foreign_server.h +include/postgresql/server/catalog/pg_foreign_table_d.h +include/postgresql/server/catalog/pg_foreign_table.h +include/postgresql/server/catalog/pg_index_d.h +include/postgresql/server/catalog/pg_index.h +include/postgresql/server/catalog/pg_inherits_d.h +include/postgresql/server/catalog/pg_inherits.h +include/postgresql/server/catalog/pg_init_privs_d.h +include/postgresql/server/catalog/pg_init_privs.h +include/postgresql/server/catalog/pg_language_d.h +include/postgresql/server/catalog/pg_language.h +include/postgresql/server/catalog/pg_largeobject_d.h +include/postgresql/server/catalog/pg_largeobject_metadata_d.h +include/postgresql/server/catalog/pg_largeobject_metadata.h +include/postgresql/server/catalog/pg_largeobject.h +include/postgresql/server/catalog/pg_namespace_d.h +include/postgresql/server/catalog/pg_namespace.h +include/postgresql/server/catalog/pg_opclass_d.h +include/postgresql/server/catalog/pg_opclass.h +include/postgresql/server/catalog/pg_operator_d.h +include/postgresql/server/catalog/pg_operator.h +include/postgresql/server/catalog/pg_opfamily_d.h +include/postgresql/server/catalog/pg_opfamily.h +include/postgresql/server/catalog/pg_parameter_acl_d.h +include/postgresql/server/catalog/pg_parameter_acl.h +include/postgresql/server/catalog/pg_partitioned_table_d.h +include/postgresql/server/catalog/pg_partitioned_table.h +include/postgresql/server/catalog/pg_policy_d.h +include/postgresql/server/catalog/pg_policy.h +include/postgresql/server/catalog/pg_proc_d.h +include/postgresql/server/catalog/pg_proc.h +include/postgresql/server/catalog/pg_publication_d.h +include/postgresql/server/catalog/pg_publication_namespace_d.h +include/postgresql/server/catalog/pg_publication_namespace.h +include/postgresql/server/catalog/pg_publication_rel_d.h +include/postgresql/server/catalog/pg_publication_rel.h +include/postgresql/server/catalog/pg_publication.h +include/postgresql/server/catalog/pg_range_d.h +include/postgresql/server/catalog/pg_range.h +include/postgresql/server/catalog/pg_replication_origin_d.h +include/postgresql/server/catalog/pg_replication_origin.h +include/postgresql/server/catalog/pg_rewrite_d.h +include/postgresql/server/catalog/pg_rewrite.h +include/postgresql/server/catalog/pg_seclabel_d.h +include/postgresql/server/catalog/pg_seclabel.h +include/postgresql/server/catalog/pg_sequence_d.h +include/postgresql/server/catalog/pg_sequence.h +include/postgresql/server/catalog/pg_shdepend_d.h +include/postgresql/server/catalog/pg_shdepend.h +include/postgresql/server/catalog/pg_shdescription_d.h +include/postgresql/server/catalog/pg_shdescription.h +include/postgresql/server/catalog/pg_shseclabel_d.h +include/postgresql/server/catalog/pg_shseclabel.h +include/postgresql/server/catalog/pg_statistic_d.h +include/postgresql/server/catalog/pg_statistic_ext_d.h +include/postgresql/server/catalog/pg_statistic_ext_data_d.h +include/postgresql/server/catalog/pg_statistic_ext_data.h +include/postgresql/server/catalog/pg_statistic_ext.h +include/postgresql/server/catalog/pg_statistic.h +include/postgresql/server/catalog/pg_subscription_d.h +include/postgresql/server/catalog/pg_subscription_rel_d.h +include/postgresql/server/catalog/pg_subscription_rel.h +include/postgresql/server/catalog/pg_subscription.h +include/postgresql/server/catalog/pg_tablespace_d.h +include/postgresql/server/catalog/pg_tablespace.h +include/postgresql/server/catalog/pg_transform_d.h +include/postgresql/server/catalog/pg_transform.h +include/postgresql/server/catalog/pg_trigger_d.h +include/postgresql/server/catalog/pg_trigger.h +include/postgresql/server/catalog/pg_ts_config_d.h +include/postgresql/server/catalog/pg_ts_config_map_d.h +include/postgresql/server/catalog/pg_ts_config_map.h +include/postgresql/server/catalog/pg_ts_config.h +include/postgresql/server/catalog/pg_ts_dict_d.h +include/postgresql/server/catalog/pg_ts_dict.h +include/postgresql/server/catalog/pg_ts_parser_d.h +include/postgresql/server/catalog/pg_ts_parser.h +include/postgresql/server/catalog/pg_ts_template_d.h +include/postgresql/server/catalog/pg_ts_template.h +include/postgresql/server/catalog/pg_type_d.h +include/postgresql/server/catalog/pg_type.h +include/postgresql/server/catalog/pg_user_mapping_d.h +include/postgresql/server/catalog/pg_user_mapping.h +include/postgresql/server/catalog/schemapg.h +include/postgresql/server/catalog/storage_xlog.h +include/postgresql/server/catalog/storage.h +include/postgresql/server/catalog/system_fk_info.h +include/postgresql/server/catalog/toasting.h +include/postgresql/server/commands/alter.h +include/postgresql/server/commands/async.h +include/postgresql/server/commands/cluster.h +include/postgresql/server/commands/collationcmds.h +include/postgresql/server/commands/comment.h +include/postgresql/server/commands/conversioncmds.h +include/postgresql/server/commands/copy.h +include/postgresql/server/commands/copyfrom_internal.h +include/postgresql/server/commands/createas.h +include/postgresql/server/commands/dbcommands_xlog.h +include/postgresql/server/commands/dbcommands.h +include/postgresql/server/commands/defrem.h +include/postgresql/server/commands/discard.h +include/postgresql/server/commands/event_trigger.h +include/postgresql/server/commands/explain.h +include/postgresql/server/commands/extension.h +include/postgresql/server/commands/lockcmds.h +include/postgresql/server/commands/matview.h +include/postgresql/server/commands/policy.h +include/postgresql/server/commands/portalcmds.h +include/postgresql/server/commands/prepare.h +include/postgresql/server/commands/proclang.h +include/postgresql/server/commands/progress.h +include/postgresql/server/commands/publicationcmds.h +include/postgresql/server/commands/schemacmds.h +include/postgresql/server/commands/seclabel.h +include/postgresql/server/commands/sequence.h +include/postgresql/server/commands/subscriptioncmds.h +include/postgresql/server/commands/tablecmds.h +include/postgresql/server/commands/tablespace.h +include/postgresql/server/commands/trigger.h +include/postgresql/server/commands/typecmds.h +include/postgresql/server/commands/user.h +include/postgresql/server/commands/vacuum.h +include/postgresql/server/commands/variable.h +include/postgresql/server/commands/view.h +include/postgresql/server/common/archive.h +include/postgresql/server/common/base64.h +include/postgresql/server/common/checksum_helper.h +include/postgresql/server/common/compression.h +include/postgresql/server/common/config_info.h +include/postgresql/server/common/connect.h +include/postgresql/server/common/controldata_utils.h +include/postgresql/server/common/cryptohash.h +include/postgresql/server/common/fe_memutils.h +include/postgresql/server/common/file_perm.h +include/postgresql/server/common/file_utils.h +include/postgresql/server/common/hashfn.h +include/postgresql/server/common/hmac.h +include/postgresql/server/common/int.h +include/postgresql/server/common/int128.h +include/postgresql/server/common/ip.h +include/postgresql/server/common/jsonapi.h +include/postgresql/server/common/keywords.h +include/postgresql/server/common/kwlookup.h +include/postgresql/server/common/link-canary.h +include/postgresql/server/common/logging.h +include/postgresql/server/common/md5.h +include/postgresql/server/common/openssl.h +include/postgresql/server/common/pg_lzcompress.h +include/postgresql/server/common/pg_prng.h +include/postgresql/server/common/relpath.h +include/postgresql/server/common/restricted_token.h +include/postgresql/server/common/saslprep.h +include/postgresql/server/common/scram-common.h +include/postgresql/server/common/sha1.h +include/postgresql/server/common/sha2.h +include/postgresql/server/common/shortest_dec.h +include/postgresql/server/common/string.h +include/postgresql/server/common/unicode_combining_table.h +include/postgresql/server/common/unicode_east_asian_fw_table.h +include/postgresql/server/common/unicode_norm_hashfunc.h +include/postgresql/server/common/unicode_norm_table.h +include/postgresql/server/common/unicode_norm.h +include/postgresql/server/common/unicode_normprops_table.h +include/postgresql/server/common/username.h +include/postgresql/server/datatype/timestamp.h +include/postgresql/server/executor/execAsync.h +include/postgresql/server/executor/execdebug.h +include/postgresql/server/executor/execdesc.h +include/postgresql/server/executor/execExpr.h +include/postgresql/server/executor/execParallel.h +include/postgresql/server/executor/execPartition.h +include/postgresql/server/executor/executor.h +include/postgresql/server/executor/functions.h +include/postgresql/server/executor/hashjoin.h +include/postgresql/server/executor/instrument.h +include/postgresql/server/executor/nodeAgg.h +include/postgresql/server/executor/nodeAppend.h +include/postgresql/server/executor/nodeBitmapAnd.h +include/postgresql/server/executor/nodeBitmapHeapscan.h +include/postgresql/server/executor/nodeBitmapIndexscan.h +include/postgresql/server/executor/nodeBitmapOr.h +include/postgresql/server/executor/nodeCtescan.h +include/postgresql/server/executor/nodeCustom.h +include/postgresql/server/executor/nodeForeignscan.h +include/postgresql/server/executor/nodeFunctionscan.h +include/postgresql/server/executor/nodeGather.h +include/postgresql/server/executor/nodeGatherMerge.h +include/postgresql/server/executor/nodeGroup.h +include/postgresql/server/executor/nodeHash.h +include/postgresql/server/executor/nodeHashjoin.h +include/postgresql/server/executor/nodeIncrementalSort.h +include/postgresql/server/executor/nodeIndexonlyscan.h +include/postgresql/server/executor/nodeIndexscan.h +include/postgresql/server/executor/nodeLimit.h +include/postgresql/server/executor/nodeLockRows.h +include/postgresql/server/executor/nodeMaterial.h +include/postgresql/server/executor/nodeMemoize.h +include/postgresql/server/executor/nodeMergeAppend.h +include/postgresql/server/executor/nodeMergejoin.h +include/postgresql/server/executor/nodeModifyTable.h +include/postgresql/server/executor/nodeNamedtuplestorescan.h +include/postgresql/server/executor/nodeNestloop.h +include/postgresql/server/executor/nodeProjectSet.h +include/postgresql/server/executor/nodeRecursiveunion.h +include/postgresql/server/executor/nodeResult.h +include/postgresql/server/executor/nodeSamplescan.h +include/postgresql/server/executor/nodeSeqscan.h +include/postgresql/server/executor/nodeSetOp.h +include/postgresql/server/executor/nodeSort.h +include/postgresql/server/executor/nodeSubplan.h +include/postgresql/server/executor/nodeSubqueryscan.h +include/postgresql/server/executor/nodeTableFuncscan.h +include/postgresql/server/executor/nodeTidrangescan.h +include/postgresql/server/executor/nodeTidscan.h +include/postgresql/server/executor/nodeUnique.h +include/postgresql/server/executor/nodeValuesscan.h +include/postgresql/server/executor/nodeWindowAgg.h +include/postgresql/server/executor/nodeWorktablescan.h +include/postgresql/server/executor/spi_priv.h +include/postgresql/server/executor/spi.h +include/postgresql/server/executor/tablefunc.h +include/postgresql/server/executor/tqueue.h +include/postgresql/server/executor/tstoreReceiver.h +include/postgresql/server/executor/tuptable.h +include/postgresql/server/fe_utils/archive.h +include/postgresql/server/fe_utils/cancel.h +include/postgresql/server/fe_utils/conditional.h +include/postgresql/server/fe_utils/connect_utils.h +include/postgresql/server/fe_utils/mbprint.h +include/postgresql/server/fe_utils/option_utils.h +include/postgresql/server/fe_utils/parallel_slot.h +include/postgresql/server/fe_utils/print.h +include/postgresql/server/fe_utils/psqlscan_int.h +include/postgresql/server/fe_utils/psqlscan.h +include/postgresql/server/fe_utils/query_utils.h +include/postgresql/server/fe_utils/recovery_gen.h +include/postgresql/server/fe_utils/simple_list.h +include/postgresql/server/fe_utils/string_utils.h +include/postgresql/server/fmgr.h +include/postgresql/server/foreign/fdwapi.h +include/postgresql/server/foreign/foreign.h +include/postgresql/server/funcapi.h +include/postgresql/server/getaddrinfo.h +include/postgresql/server/getopt_long.h +include/postgresql/server/jit/jit.h +include/postgresql/server/jit/llvmjit_emit.h +include/postgresql/server/jit/llvmjit.h +include/postgresql/server/lib/binaryheap.h +include/postgresql/server/lib/bipartite_match.h +include/postgresql/server/lib/bloomfilter.h +include/postgresql/server/lib/dshash.h +include/postgresql/server/lib/hyperloglog.h +include/postgresql/server/lib/ilist.h +include/postgresql/server/lib/integerset.h +include/postgresql/server/lib/knapsack.h +include/postgresql/server/lib/pairingheap.h +include/postgresql/server/lib/qunique.h +include/postgresql/server/lib/rbtree.h +include/postgresql/server/lib/simplehash.h +include/postgresql/server/lib/sort_template.h +include/postgresql/server/lib/stringinfo.h +include/postgresql/server/libpq/auth.h +include/postgresql/server/libpq/be-fsstubs.h +include/postgresql/server/libpq/be-gssapi-common.h +include/postgresql/server/libpq/crypt.h +include/postgresql/server/libpq/hba.h +include/postgresql/server/libpq/ifaddr.h +include/postgresql/server/libpq/libpq-be.h +include/postgresql/server/libpq/libpq-fs.h +include/postgresql/server/libpq/libpq.h +include/postgresql/server/libpq/pqcomm.h +include/postgresql/server/libpq/pqformat.h +include/postgresql/server/libpq/pqmq.h +include/postgresql/server/libpq/pqsignal.h +include/postgresql/server/libpq/sasl.h +include/postgresql/server/libpq/scram.h +include/postgresql/server/mb/pg_wchar.h +include/postgresql/server/mb/stringinfo_mb.h +include/postgresql/server/miscadmin.h +include/postgresql/server/nodes/bitmapset.h +include/postgresql/server/nodes/execnodes.h +include/postgresql/server/nodes/extensible.h +include/postgresql/server/nodes/lockoptions.h +include/postgresql/server/nodes/makefuncs.h +include/postgresql/server/nodes/memnodes.h +include/postgresql/server/nodes/nodeFuncs.h +include/postgresql/server/nodes/nodes.h +include/postgresql/server/nodes/params.h +include/postgresql/server/nodes/parsenodes.h +include/postgresql/server/nodes/pathnodes.h +include/postgresql/server/nodes/pg_list.h +include/postgresql/server/nodes/plannodes.h +include/postgresql/server/nodes/primnodes.h +include/postgresql/server/nodes/print.h +include/postgresql/server/nodes/readfuncs.h +include/postgresql/server/nodes/replnodes.h +include/postgresql/server/nodes/subscripting.h +include/postgresql/server/nodes/supportnodes.h +include/postgresql/server/nodes/tidbitmap.h +include/postgresql/server/nodes/value.h +include/postgresql/server/optimizer/appendinfo.h +include/postgresql/server/optimizer/clauses.h +include/postgresql/server/optimizer/cost.h +include/postgresql/server/optimizer/geqo_copy.h +include/postgresql/server/optimizer/geqo_gene.h +include/postgresql/server/optimizer/geqo_misc.h +include/postgresql/server/optimizer/geqo_mutation.h +include/postgresql/server/optimizer/geqo_pool.h +include/postgresql/server/optimizer/geqo_random.h +include/postgresql/server/optimizer/geqo_recombination.h +include/postgresql/server/optimizer/geqo_selection.h +include/postgresql/server/optimizer/geqo.h +include/postgresql/server/optimizer/inherit.h +include/postgresql/server/optimizer/joininfo.h +include/postgresql/server/optimizer/optimizer.h +include/postgresql/server/optimizer/orclauses.h +include/postgresql/server/optimizer/paramassign.h +include/postgresql/server/optimizer/pathnode.h +include/postgresql/server/optimizer/paths.h +include/postgresql/server/optimizer/placeholder.h +include/postgresql/server/optimizer/plancat.h +include/postgresql/server/optimizer/planmain.h +include/postgresql/server/optimizer/planner.h +include/postgresql/server/optimizer/prep.h +include/postgresql/server/optimizer/restrictinfo.h +include/postgresql/server/optimizer/subselect.h +include/postgresql/server/optimizer/tlist.h +include/postgresql/server/parser/analyze.h +include/postgresql/server/parser/gram.h +include/postgresql/server/parser/gramparse.h +include/postgresql/server/parser/kwlist.h +include/postgresql/server/parser/parse_agg.h +include/postgresql/server/parser/parse_clause.h +include/postgresql/server/parser/parse_coerce.h +include/postgresql/server/parser/parse_collate.h +include/postgresql/server/parser/parse_cte.h +include/postgresql/server/parser/parse_enr.h +include/postgresql/server/parser/parse_expr.h +include/postgresql/server/parser/parse_func.h +include/postgresql/server/parser/parse_merge.h +include/postgresql/server/parser/parse_node.h +include/postgresql/server/parser/parse_oper.h +include/postgresql/server/parser/parse_param.h +include/postgresql/server/parser/parse_relation.h +include/postgresql/server/parser/parse_target.h +include/postgresql/server/parser/parse_type.h +include/postgresql/server/parser/parse_utilcmd.h +include/postgresql/server/parser/parser.h +include/postgresql/server/parser/parsetree.h +include/postgresql/server/parser/scanner.h +include/postgresql/server/parser/scansup.h +include/postgresql/server/partitioning/partbounds.h +include/postgresql/server/partitioning/partdefs.h +include/postgresql/server/partitioning/partdesc.h +include/postgresql/server/partitioning/partprune.h +include/postgresql/server/pg_config_ext.h +include/postgresql/server/pg_config_manual.h +include/postgresql/server/pg_config_os.h +include/postgresql/server/pg_config.h +include/postgresql/server/pg_getopt.h +include/postgresql/server/pg_trace.h +include/postgresql/server/pgstat.h +include/postgresql/server/pgtar.h +include/postgresql/server/pgtime.h +include/postgresql/server/plpgsql.h +include/postgresql/server/port.h +include/postgresql/server/port/aix.h +include/postgresql/server/port/atomics.h +include/postgresql/server/port/atomics/arch-arm.h +include/postgresql/server/port/atomics/arch-hppa.h +include/postgresql/server/port/atomics/arch-ia64.h +include/postgresql/server/port/atomics/arch-ppc.h +include/postgresql/server/port/atomics/arch-x86.h +include/postgresql/server/port/atomics/fallback.h +include/postgresql/server/port/atomics/generic-acc.h +include/postgresql/server/port/atomics/generic-gcc.h +include/postgresql/server/port/atomics/generic-msvc.h +include/postgresql/server/port/atomics/generic-sunpro.h +include/postgresql/server/port/atomics/generic.h +include/postgresql/server/port/cygwin.h +include/postgresql/server/port/darwin.h +include/postgresql/server/port/freebsd.h +include/postgresql/server/port/hpux.h +include/postgresql/server/port/linux.h +include/postgresql/server/port/netbsd.h +include/postgresql/server/port/openbsd.h +include/postgresql/server/port/pg_bitutils.h +include/postgresql/server/port/pg_bswap.h +include/postgresql/server/port/pg_crc32c.h +include/postgresql/server/port/pg_iovec.h +include/postgresql/server/port/pg_pthread.h +include/postgresql/server/port/solaris.h +include/postgresql/server/port/win32_msvc/dirent.h +include/postgresql/server/port/win32_msvc/sys/file.h +include/postgresql/server/port/win32_msvc/sys/param.h +include/postgresql/server/port/win32_msvc/sys/time.h +include/postgresql/server/port/win32_msvc/unistd.h +include/postgresql/server/port/win32_msvc/utime.h +include/postgresql/server/port/win32_port.h +include/postgresql/server/port/win32.h +include/postgresql/server/port/win32/arpa/inet.h +include/postgresql/server/port/win32/dlfcn.h +include/postgresql/server/port/win32/grp.h +include/postgresql/server/port/win32/netdb.h +include/postgresql/server/port/win32/netinet/in.h +include/postgresql/server/port/win32/pwd.h +include/postgresql/server/port/win32/sys/socket.h +include/postgresql/server/port/win32/sys/wait.h +include/postgresql/server/port/win32ntdll.h +include/postgresql/server/portability/instr_time.h +include/postgresql/server/portability/mem.h +include/postgresql/server/postgres_ext.h +include/postgresql/server/postgres_fe.h +include/postgresql/server/postgres.h +include/postgresql/server/postmaster/autovacuum.h +include/postgresql/server/postmaster/auxprocess.h +include/postgresql/server/postmaster/bgworker_internals.h +include/postgresql/server/postmaster/bgworker.h +include/postgresql/server/postmaster/bgwriter.h +include/postgresql/server/postmaster/fork_process.h +include/postgresql/server/postmaster/interrupt.h +include/postgresql/server/postmaster/pgarch.h +include/postgresql/server/postmaster/postmaster.h +include/postgresql/server/postmaster/startup.h +include/postgresql/server/postmaster/syslogger.h +include/postgresql/server/postmaster/walwriter.h +include/postgresql/server/regex/regcustom.h +include/postgresql/server/regex/regerrs.h +include/postgresql/server/regex/regex.h +include/postgresql/server/regex/regexport.h +include/postgresql/server/regex/regguts.h +include/postgresql/server/replication/decode.h +include/postgresql/server/replication/logical.h +include/postgresql/server/replication/logicallauncher.h +include/postgresql/server/replication/logicalproto.h +include/postgresql/server/replication/logicalrelation.h +include/postgresql/server/replication/logicalworker.h +include/postgresql/server/replication/message.h +include/postgresql/server/replication/origin.h +include/postgresql/server/replication/output_plugin.h +include/postgresql/server/replication/pgoutput.h +include/postgresql/server/replication/reorderbuffer.h +include/postgresql/server/replication/slot.h +include/postgresql/server/replication/snapbuild.h +include/postgresql/server/replication/syncrep.h +include/postgresql/server/replication/walreceiver.h +include/postgresql/server/replication/walsender_private.h +include/postgresql/server/replication/walsender.h +include/postgresql/server/replication/worker_internal.h +include/postgresql/server/rewrite/prs2lock.h +include/postgresql/server/rewrite/rewriteDefine.h +include/postgresql/server/rewrite/rewriteHandler.h +include/postgresql/server/rewrite/rewriteManip.h +include/postgresql/server/rewrite/rewriteRemove.h +include/postgresql/server/rewrite/rewriteSearchCycle.h +include/postgresql/server/rewrite/rewriteSupport.h +include/postgresql/server/rewrite/rowsecurity.h +include/postgresql/server/rusagestub.h +include/postgresql/server/snowball/header.h +include/postgresql/server/snowball/libstemmer/api.h +include/postgresql/server/snowball/libstemmer/header.h +include/postgresql/server/snowball/libstemmer/stem_ISO_8859_1_basque.h +include/postgresql/server/snowball/libstemmer/stem_ISO_8859_1_catalan.h +include/postgresql/server/snowball/libstemmer/stem_ISO_8859_1_danish.h +include/postgresql/server/snowball/libstemmer/stem_ISO_8859_1_dutch.h +include/postgresql/server/snowball/libstemmer/stem_ISO_8859_1_english.h +include/postgresql/server/snowball/libstemmer/stem_ISO_8859_1_finnish.h +include/postgresql/server/snowball/libstemmer/stem_ISO_8859_1_french.h +include/postgresql/server/snowball/libstemmer/stem_ISO_8859_1_german.h +include/postgresql/server/snowball/libstemmer/stem_ISO_8859_1_indonesian.h +include/postgresql/server/snowball/libstemmer/stem_ISO_8859_1_irish.h +include/postgresql/server/snowball/libstemmer/stem_ISO_8859_1_italian.h +include/postgresql/server/snowball/libstemmer/stem_ISO_8859_1_norwegian.h +include/postgresql/server/snowball/libstemmer/stem_ISO_8859_1_porter.h +include/postgresql/server/snowball/libstemmer/stem_ISO_8859_1_portuguese.h +include/postgresql/server/snowball/libstemmer/stem_ISO_8859_1_spanish.h +include/postgresql/server/snowball/libstemmer/stem_ISO_8859_1_swedish.h +include/postgresql/server/snowball/libstemmer/stem_ISO_8859_2_hungarian.h +include/postgresql/server/snowball/libstemmer/stem_ISO_8859_2_romanian.h +include/postgresql/server/snowball/libstemmer/stem_KOI8_R_russian.h +include/postgresql/server/snowball/libstemmer/stem_UTF_8_arabic.h +include/postgresql/server/snowball/libstemmer/stem_UTF_8_armenian.h +include/postgresql/server/snowball/libstemmer/stem_UTF_8_basque.h +include/postgresql/server/snowball/libstemmer/stem_UTF_8_catalan.h +include/postgresql/server/snowball/libstemmer/stem_UTF_8_danish.h +include/postgresql/server/snowball/libstemmer/stem_UTF_8_dutch.h +include/postgresql/server/snowball/libstemmer/stem_UTF_8_english.h +include/postgresql/server/snowball/libstemmer/stem_UTF_8_finnish.h +include/postgresql/server/snowball/libstemmer/stem_UTF_8_french.h +include/postgresql/server/snowball/libstemmer/stem_UTF_8_german.h +include/postgresql/server/snowball/libstemmer/stem_UTF_8_greek.h +include/postgresql/server/snowball/libstemmer/stem_UTF_8_hindi.h +include/postgresql/server/snowball/libstemmer/stem_UTF_8_hungarian.h +include/postgresql/server/snowball/libstemmer/stem_UTF_8_indonesian.h +include/postgresql/server/snowball/libstemmer/stem_UTF_8_irish.h +include/postgresql/server/snowball/libstemmer/stem_UTF_8_italian.h +include/postgresql/server/snowball/libstemmer/stem_UTF_8_lithuanian.h +include/postgresql/server/snowball/libstemmer/stem_UTF_8_nepali.h +include/postgresql/server/snowball/libstemmer/stem_UTF_8_norwegian.h +include/postgresql/server/snowball/libstemmer/stem_UTF_8_porter.h +include/postgresql/server/snowball/libstemmer/stem_UTF_8_portuguese.h +include/postgresql/server/snowball/libstemmer/stem_UTF_8_romanian.h +include/postgresql/server/snowball/libstemmer/stem_UTF_8_russian.h +include/postgresql/server/snowball/libstemmer/stem_UTF_8_serbian.h +include/postgresql/server/snowball/libstemmer/stem_UTF_8_spanish.h +include/postgresql/server/snowball/libstemmer/stem_UTF_8_swedish.h +include/postgresql/server/snowball/libstemmer/stem_UTF_8_tamil.h +include/postgresql/server/snowball/libstemmer/stem_UTF_8_turkish.h +include/postgresql/server/snowball/libstemmer/stem_UTF_8_yiddish.h +include/postgresql/server/statistics/extended_stats_internal.h +include/postgresql/server/statistics/statistics.h +include/postgresql/server/storage/backendid.h +include/postgresql/server/storage/barrier.h +include/postgresql/server/storage/block.h +include/postgresql/server/storage/buf_internals.h +include/postgresql/server/storage/buf.h +include/postgresql/server/storage/buffile.h +include/postgresql/server/storage/bufmgr.h +include/postgresql/server/storage/bufpage.h +include/postgresql/server/storage/checksum_impl.h +include/postgresql/server/storage/checksum.h +include/postgresql/server/storage/condition_variable.h +include/postgresql/server/storage/copydir.h +include/postgresql/server/storage/dsm_impl.h +include/postgresql/server/storage/dsm.h +include/postgresql/server/storage/fd.h +include/postgresql/server/storage/fileset.h +include/postgresql/server/storage/freespace.h +include/postgresql/server/storage/fsm_internals.h +include/postgresql/server/storage/indexfsm.h +include/postgresql/server/storage/ipc.h +include/postgresql/server/storage/item.h +include/postgresql/server/storage/itemid.h +include/postgresql/server/storage/itemptr.h +include/postgresql/server/storage/large_object.h +include/postgresql/server/storage/latch.h +include/postgresql/server/storage/lmgr.h +include/postgresql/server/storage/lock.h +include/postgresql/server/storage/lockdefs.h +include/postgresql/server/storage/lwlock.h +include/postgresql/server/storage/lwlocknames.h +include/postgresql/server/storage/md.h +include/postgresql/server/storage/off.h +include/postgresql/server/storage/pg_sema.h +include/postgresql/server/storage/pg_shmem.h +include/postgresql/server/storage/pmsignal.h +include/postgresql/server/storage/predicate_internals.h +include/postgresql/server/storage/predicate.h +include/postgresql/server/storage/proc.h +include/postgresql/server/storage/procarray.h +include/postgresql/server/storage/proclist_types.h +include/postgresql/server/storage/proclist.h +include/postgresql/server/storage/procsignal.h +include/postgresql/server/storage/reinit.h +include/postgresql/server/storage/relfilenode.h +include/postgresql/server/storage/s_lock.h +include/postgresql/server/storage/sharedfileset.h +include/postgresql/server/storage/shm_mq.h +include/postgresql/server/storage/shm_toc.h +include/postgresql/server/storage/shmem.h +include/postgresql/server/storage/sinval.h +include/postgresql/server/storage/sinvaladt.h +include/postgresql/server/storage/smgr.h +include/postgresql/server/storage/spin.h +include/postgresql/server/storage/standby.h +include/postgresql/server/storage/standbydefs.h +include/postgresql/server/storage/sync.h +include/postgresql/server/tcop/cmdtag.h +include/postgresql/server/tcop/cmdtaglist.h +include/postgresql/server/tcop/deparse_utility.h +include/postgresql/server/tcop/dest.h +include/postgresql/server/tcop/fastpath.h +include/postgresql/server/tcop/pquery.h +include/postgresql/server/tcop/tcopprot.h +include/postgresql/server/tcop/utility.h +include/postgresql/server/tsearch/dicts/regis.h +include/postgresql/server/tsearch/dicts/spell.h +include/postgresql/server/tsearch/ts_cache.h +include/postgresql/server/tsearch/ts_locale.h +include/postgresql/server/tsearch/ts_public.h +include/postgresql/server/tsearch/ts_type.h +include/postgresql/server/tsearch/ts_utils.h +include/postgresql/server/utils/acl.h +include/postgresql/server/utils/aclchk_internal.h +include/postgresql/server/utils/array.h +include/postgresql/server/utils/arrayaccess.h +include/postgresql/server/utils/ascii.h +include/postgresql/server/utils/attoptcache.h +include/postgresql/server/utils/backend_progress.h +include/postgresql/server/utils/backend_status.h +include/postgresql/server/utils/builtins.h +include/postgresql/server/utils/bytea.h +include/postgresql/server/utils/cash.h +include/postgresql/server/utils/catcache.h +include/postgresql/server/utils/combocid.h +include/postgresql/server/utils/date.h +include/postgresql/server/utils/datetime.h +include/postgresql/server/utils/datum.h +include/postgresql/server/utils/dsa.h +include/postgresql/server/utils/dynahash.h +include/postgresql/server/utils/elog.h +include/postgresql/server/utils/errcodes.h +include/postgresql/server/utils/evtcache.h +include/postgresql/server/utils/expandeddatum.h +include/postgresql/server/utils/expandedrecord.h +include/postgresql/server/utils/float.h +include/postgresql/server/utils/fmgroids.h +include/postgresql/server/utils/fmgrprotos.h +include/postgresql/server/utils/fmgrtab.h +include/postgresql/server/utils/formatting.h +include/postgresql/server/utils/freepage.h +include/postgresql/server/utils/geo_decls.h +include/postgresql/server/utils/guc_tables.h +include/postgresql/server/utils/guc.h +include/postgresql/server/utils/help_config.h +include/postgresql/server/utils/hsearch.h +include/postgresql/server/utils/index_selfuncs.h +include/postgresql/server/utils/inet.h +include/postgresql/server/utils/inval.h +include/postgresql/server/utils/json.h +include/postgresql/server/utils/jsonb.h +include/postgresql/server/utils/jsonfuncs.h +include/postgresql/server/utils/jsonpath.h +include/postgresql/server/utils/logtape.h +include/postgresql/server/utils/lsyscache.h +include/postgresql/server/utils/memdebug.h +include/postgresql/server/utils/memutils.h +include/postgresql/server/utils/multirangetypes.h +include/postgresql/server/utils/numeric.h +include/postgresql/server/utils/old_snapshot.h +include/postgresql/server/utils/palloc.h +include/postgresql/server/utils/partcache.h +include/postgresql/server/utils/pg_crc.h +include/postgresql/server/utils/pg_locale.h +include/postgresql/server/utils/pg_lsn.h +include/postgresql/server/utils/pg_rusage.h +include/postgresql/server/utils/pgstat_internal.h +include/postgresql/server/utils/pidfile.h +include/postgresql/server/utils/plancache.h +include/postgresql/server/utils/portal.h +include/postgresql/server/utils/probes.h +include/postgresql/server/utils/ps_status.h +include/postgresql/server/utils/queryenvironment.h +include/postgresql/server/utils/queryjumble.h +include/postgresql/server/utils/rangetypes.h +include/postgresql/server/utils/regproc.h +include/postgresql/server/utils/rel.h +include/postgresql/server/utils/relcache.h +include/postgresql/server/utils/relfilenodemap.h +include/postgresql/server/utils/relmapper.h +include/postgresql/server/utils/relptr.h +include/postgresql/server/utils/reltrigger.h +include/postgresql/server/utils/resowner_private.h +include/postgresql/server/utils/resowner.h +include/postgresql/server/utils/rls.h +include/postgresql/server/utils/ruleutils.h +include/postgresql/server/utils/sampling.h +include/postgresql/server/utils/selfuncs.h +include/postgresql/server/utils/sharedtuplestore.h +include/postgresql/server/utils/snapmgr.h +include/postgresql/server/utils/snapshot.h +include/postgresql/server/utils/sortsupport.h +include/postgresql/server/utils/spccache.h +include/postgresql/server/utils/syscache.h +include/postgresql/server/utils/timeout.h +include/postgresql/server/utils/timestamp.h +include/postgresql/server/utils/tuplesort.h +include/postgresql/server/utils/tuplestore.h +include/postgresql/server/utils/typcache.h +include/postgresql/server/utils/tzparser.h +include/postgresql/server/utils/uuid.h +include/postgresql/server/utils/varbit.h +include/postgresql/server/utils/varlena.h +include/postgresql/server/utils/wait_event.h +include/postgresql/server/utils/xid8.h +include/postgresql/server/utils/xml.h +include/postgresql/server/windowapi.h +include/postgresql/sql3types.h +include/postgresql/sqlca.h +include/postgresql/sqlda-compat.h +include/postgresql/sqlda-native.h +include/postgresql/sqlda.h +lib/libecpg_compat.a +lib/libecpg_compat.so +lib/libecpg_compat.so.3 +lib/libecpg.a +lib/libecpg.so +lib/libecpg.so.6 +lib/libpgcommon_shlib.a +lib/libpgcommon.a +lib/libpgfeutils.a +lib/libpgport_shlib.a +lib/libpgport.a +lib/libpgtypes.a +lib/libpgtypes.so +lib/libpgtypes.so.3 +lib/libpq.a +lib/libpq.so +lib/libpq.so.5 +lib/pkgconfig/libecpg_compat.pc +lib/pkgconfig/libecpg.pc +lib/pkgconfig/libpgtypes.pc +lib/pkgconfig/libpq.pc +lib/postgresql/cyrillic_and_mic.so +lib/postgresql/dict_snowball.so +lib/postgresql/euc_cn_and_mic.so +lib/postgresql/euc_jp_and_sjis.so +lib/postgresql/euc_kr_and_mic.so +lib/postgresql/euc_tw_and_big5.so +lib/postgresql/euc2004_sjis2004.so +lib/postgresql/latin_and_mic.so +lib/postgresql/latin2_and_win1250.so +lib/postgresql/libpqwalreceiver.so +lib/postgresql/pgcrypto.so +lib/postgresql/pgoutput.so +lib/postgresql/pgxs/config/install-sh +lib/postgresql/pgxs/config/missing +lib/postgresql/pgxs/src/Makefile.global +lib/postgresql/pgxs/src/Makefile.port +lib/postgresql/pgxs/src/Makefile.shlib +lib/postgresql/pgxs/src/makefiles/pgxs.mk +lib/postgresql/pgxs/src/nls-global.mk +lib/postgresql/pgxs/src/test/isolation/isolationtester +lib/postgresql/pgxs/src/test/isolation/pg_isolation_regress +lib/postgresql/pgxs/src/test/regress/pg_regress +lib/postgresql/plpgsql.so +lib/postgresql/sslinfo.so +lib/postgresql/utf8_and_big5.so +lib/postgresql/utf8_and_cyrillic.so +lib/postgresql/utf8_and_euc_cn.so +lib/postgresql/utf8_and_euc_jp.so +lib/postgresql/utf8_and_euc_kr.so +lib/postgresql/utf8_and_euc_tw.so +lib/postgresql/utf8_and_euc2004.so +lib/postgresql/utf8_and_gb18030.so +lib/postgresql/utf8_and_gbk.so +lib/postgresql/utf8_and_iso8859_1.so +lib/postgresql/utf8_and_iso8859.so +lib/postgresql/utf8_and_johab.so +lib/postgresql/utf8_and_sjis.so +lib/postgresql/utf8_and_sjis2004.so +lib/postgresql/utf8_and_uhc.so +lib/postgresql/utf8_and_win.so +man/man1/ecpg.1.gz +man/man1/pg_amcheck.1.gz +man/man1/pg_archivecleanup.1.gz +man/man1/pg_basebackup.1.gz +man/man1/pg_checksums.1.gz +man/man1/pg_clusterdb.1.gz +man/man1/pg_config.1.gz +man/man1/pg_controldata.1.gz +man/man1/pg_createdb.1.gz +man/man1/pg_createuser.1.gz +man/man1/pg_ctl.1.gz +man/man1/pg_dropdb.1.gz +man/man1/pg_dropuser.1.gz +man/man1/pg_dump.1.gz +man/man1/pg_dumpall.1.gz +man/man1/pg_initdb.1.gz +man/man1/pg_isready.1.gz +man/man1/pg_oid2name.1.gz +man/man1/pg_receivewal.1.gz +man/man1/pg_recvlogical.1.gz +man/man1/pg_reindexdb.1.gz +man/man1/pg_resetwal.1.gz +man/man1/pg_restore.1.gz +man/man1/pg_rewind.1.gz +man/man1/pg_test_fsync.1.gz +man/man1/pg_test_timing.1.gz +man/man1/pg_upgrade.1.gz +man/man1/pg_vacuumdb.1.gz +man/man1/pg_vacuumlo.1.gz +man/man1/pg_verifybackup.1.gz +man/man1/pg_waldump.1.gz +man/man1/pgbench.1.gz +man/man1/postgres.1.gz +man/man1/postmaster.1.gz +man/man1/psql.1.gz +man/man3/dblink_build_sql_delete.3.gz +man/man3/dblink_build_sql_insert.3.gz +man/man3/dblink_build_sql_update.3.gz +man/man3/dblink_cancel_query.3.gz +man/man3/dblink_close.3.gz +man/man3/dblink_connect_u.3.gz +man/man3/dblink_connect.3.gz +man/man3/dblink_disconnect.3.gz +man/man3/dblink_error_message.3.gz +man/man3/dblink_exec.3.gz +man/man3/dblink_fetch.3.gz +man/man3/dblink_get_connections.3.gz +man/man3/dblink_get_notify.3.gz +man/man3/dblink_get_pkey.3.gz +man/man3/dblink_get_result.3.gz +man/man3/dblink_is_busy.3.gz +man/man3/dblink_open.3.gz +man/man3/dblink_send_query.3.gz +man/man3/dblink.3.gz +man/man3/SPI_commit_and_chain.3.gz +man/man3/SPI_commit.3.gz +man/man3/SPI_connect_ext.3.gz +man/man3/SPI_connect.3.gz +man/man3/SPI_copytuple.3.gz +man/man3/SPI_cursor_close.3.gz +man/man3/SPI_cursor_fetch.3.gz +man/man3/SPI_cursor_find.3.gz +man/man3/SPI_cursor_move.3.gz +man/man3/SPI_cursor_open_with_args.3.gz +man/man3/SPI_cursor_open_with_paramlist.3.gz +man/man3/SPI_cursor_open.3.gz +man/man3/SPI_cursor_parse_open.3.gz +man/man3/SPI_exec.3.gz +man/man3/SPI_execp.3.gz +man/man3/SPI_execute_extended.3.gz +man/man3/SPI_execute_plan_extended.3.gz +man/man3/SPI_execute_plan_with_paramlist.3.gz +man/man3/SPI_execute_plan.3.gz +man/man3/SPI_execute_with_args.3.gz +man/man3/SPI_execute.3.gz +man/man3/SPI_finish.3.gz +man/man3/SPI_fname.3.gz +man/man3/SPI_fnumber.3.gz +man/man3/SPI_freeplan.3.gz +man/man3/SPI_freetuple.3.gz +man/man3/SPI_freetuptable.3.gz +man/man3/SPI_getargcount.3.gz +man/man3/SPI_getargtypeid.3.gz +man/man3/SPI_getbinval.3.gz +man/man3/SPI_getnspname.3.gz +man/man3/SPI_getrelname.3.gz +man/man3/SPI_gettype.3.gz +man/man3/SPI_gettypeid.3.gz +man/man3/SPI_getvalue.3.gz +man/man3/SPI_is_cursor_plan.3.gz +man/man3/SPI_keepplan.3.gz +man/man3/SPI_modifytuple.3.gz +man/man3/SPI_palloc.3.gz +man/man3/SPI_pfree.3.gz +man/man3/SPI_prepare_cursor.3.gz +man/man3/SPI_prepare_extended.3.gz +man/man3/SPI_prepare_params.3.gz +man/man3/SPI_prepare.3.gz +man/man3/SPI_register_relation.3.gz +man/man3/SPI_register_trigger_data.3.gz +man/man3/SPI_repalloc.3.gz +man/man3/SPI_result_code_string.3.gz +man/man3/SPI_returntuple.3.gz +man/man3/SPI_rollback_and_chain.3.gz +man/man3/SPI_rollback.3.gz +man/man3/SPI_saveplan.3.gz +man/man3/SPI_scroll_cursor_fetch.3.gz +man/man3/SPI_scroll_cursor_move.3.gz +man/man3/SPI_start_transaction.3.gz +man/man3/SPI_unregister_relation.3.gz +man/man7/ABORT.7.gz +man/man7/ALTER_AGGREGATE.7.gz +man/man7/ALTER_COLLATION.7.gz +man/man7/ALTER_CONVERSION.7.gz +man/man7/ALTER_DATABASE.7.gz +man/man7/ALTER_DEFAULT_PRIVILEGES.7.gz +man/man7/ALTER_DOMAIN.7.gz +man/man7/ALTER_EVENT_TRIGGER.7.gz +man/man7/ALTER_EXTENSION.7.gz +man/man7/ALTER_FOREIGN_DATA_WRAPPER.7.gz +man/man7/ALTER_FOREIGN_TABLE.7.gz +man/man7/ALTER_FUNCTION.7.gz +man/man7/ALTER_GROUP.7.gz +man/man7/ALTER_INDEX.7.gz +man/man7/ALTER_LANGUAGE.7.gz +man/man7/ALTER_LARGE_OBJECT.7.gz +man/man7/ALTER_MATERIALIZED_VIEW.7.gz +man/man7/ALTER_OPERATOR_CLASS.7.gz +man/man7/ALTER_OPERATOR_FAMILY.7.gz +man/man7/ALTER_OPERATOR.7.gz +man/man7/ALTER_POLICY.7.gz +man/man7/ALTER_PROCEDURE.7.gz +man/man7/ALTER_PUBLICATION.7.gz +man/man7/ALTER_ROLE.7.gz +man/man7/ALTER_ROUTINE.7.gz +man/man7/ALTER_RULE.7.gz +man/man7/ALTER_SCHEMA.7.gz +man/man7/ALTER_SEQUENCE.7.gz +man/man7/ALTER_SERVER.7.gz +man/man7/ALTER_STATISTICS.7.gz +man/man7/ALTER_SUBSCRIPTION.7.gz +man/man7/ALTER_SYSTEM.7.gz +man/man7/ALTER_TABLE.7.gz +man/man7/ALTER_TABLESPACE.7.gz +man/man7/ALTER_TEXT_SEARCH_CONFIGURATION.7.gz +man/man7/ALTER_TEXT_SEARCH_DICTIONARY.7.gz +man/man7/ALTER_TEXT_SEARCH_PARSER.7.gz +man/man7/ALTER_TEXT_SEARCH_TEMPLATE.7.gz +man/man7/ALTER_TRIGGER.7.gz +man/man7/ALTER_TYPE.7.gz +man/man7/ALTER_USER_MAPPING.7.gz +man/man7/ALTER_USER.7.gz +man/man7/ALTER_VIEW.7.gz +man/man7/ANALYZE.7.gz +man/man7/BEGIN.7.gz +man/man7/CALL.7.gz +man/man7/CHECKPOINT.7.gz +man/man7/CLOSE.7.gz +man/man7/CLUSTER.7.gz +man/man7/COMMENT.7.gz +man/man7/COMMIT_PREPARED.7.gz +man/man7/COMMIT.7.gz +man/man7/COPY.7.gz +man/man7/CREATE_ACCESS_METHOD.7.gz +man/man7/CREATE_AGGREGATE.7.gz +man/man7/CREATE_CAST.7.gz +man/man7/CREATE_COLLATION.7.gz +man/man7/CREATE_CONVERSION.7.gz +man/man7/CREATE_DATABASE.7.gz +man/man7/CREATE_DOMAIN.7.gz +man/man7/CREATE_EVENT_TRIGGER.7.gz +man/man7/CREATE_EXTENSION.7.gz +man/man7/CREATE_FOREIGN_DATA_WRAPPER.7.gz +man/man7/CREATE_FOREIGN_TABLE.7.gz +man/man7/CREATE_FUNCTION.7.gz +man/man7/CREATE_GROUP.7.gz +man/man7/CREATE_INDEX.7.gz +man/man7/CREATE_LANGUAGE.7.gz +man/man7/CREATE_MATERIALIZED_VIEW.7.gz +man/man7/CREATE_OPERATOR_CLASS.7.gz +man/man7/CREATE_OPERATOR_FAMILY.7.gz +man/man7/CREATE_OPERATOR.7.gz +man/man7/CREATE_POLICY.7.gz +man/man7/CREATE_PROCEDURE.7.gz +man/man7/CREATE_PUBLICATION.7.gz +man/man7/CREATE_ROLE.7.gz +man/man7/CREATE_RULE.7.gz +man/man7/CREATE_SCHEMA.7.gz +man/man7/CREATE_SEQUENCE.7.gz +man/man7/CREATE_SERVER.7.gz +man/man7/CREATE_STATISTICS.7.gz +man/man7/CREATE_SUBSCRIPTION.7.gz +man/man7/CREATE_TABLE_AS.7.gz +man/man7/CREATE_TABLE.7.gz +man/man7/CREATE_TABLESPACE.7.gz +man/man7/CREATE_TEXT_SEARCH_CONFIGURATION.7.gz +man/man7/CREATE_TEXT_SEARCH_DICTIONARY.7.gz +man/man7/CREATE_TEXT_SEARCH_PARSER.7.gz +man/man7/CREATE_TEXT_SEARCH_TEMPLATE.7.gz +man/man7/CREATE_TRANSFORM.7.gz +man/man7/CREATE_TRIGGER.7.gz +man/man7/CREATE_TYPE.7.gz +man/man7/CREATE_USER_MAPPING.7.gz +man/man7/CREATE_USER.7.gz +man/man7/CREATE_VIEW.7.gz +man/man7/DEALLOCATE.7.gz +man/man7/DECLARE.7.gz +man/man7/DELETE.7.gz +man/man7/DISCARD.7.gz +man/man7/DO.7.gz +man/man7/DROP_ACCESS_METHOD.7.gz +man/man7/DROP_AGGREGATE.7.gz +man/man7/DROP_CAST.7.gz +man/man7/DROP_COLLATION.7.gz +man/man7/DROP_CONVERSION.7.gz +man/man7/DROP_DATABASE.7.gz +man/man7/DROP_DOMAIN.7.gz +man/man7/DROP_EVENT_TRIGGER.7.gz +man/man7/DROP_EXTENSION.7.gz +man/man7/DROP_FOREIGN_DATA_WRAPPER.7.gz +man/man7/DROP_FOREIGN_TABLE.7.gz +man/man7/DROP_FUNCTION.7.gz +man/man7/DROP_GROUP.7.gz +man/man7/DROP_INDEX.7.gz +man/man7/DROP_LANGUAGE.7.gz +man/man7/DROP_MATERIALIZED_VIEW.7.gz +man/man7/DROP_OPERATOR_CLASS.7.gz +man/man7/DROP_OPERATOR_FAMILY.7.gz +man/man7/DROP_OPERATOR.7.gz +man/man7/DROP_OWNED.7.gz +man/man7/DROP_POLICY.7.gz +man/man7/DROP_PROCEDURE.7.gz +man/man7/DROP_PUBLICATION.7.gz +man/man7/DROP_ROLE.7.gz +man/man7/DROP_ROUTINE.7.gz +man/man7/DROP_RULE.7.gz +man/man7/DROP_SCHEMA.7.gz +man/man7/DROP_SEQUENCE.7.gz +man/man7/DROP_SERVER.7.gz +man/man7/DROP_STATISTICS.7.gz +man/man7/DROP_SUBSCRIPTION.7.gz +man/man7/DROP_TABLE.7.gz +man/man7/DROP_TABLESPACE.7.gz +man/man7/DROP_TEXT_SEARCH_CONFIGURATION.7.gz +man/man7/DROP_TEXT_SEARCH_DICTIONARY.7.gz +man/man7/DROP_TEXT_SEARCH_PARSER.7.gz +man/man7/DROP_TEXT_SEARCH_TEMPLATE.7.gz +man/man7/DROP_TRANSFORM.7.gz +man/man7/DROP_TRIGGER.7.gz +man/man7/DROP_TYPE.7.gz +man/man7/DROP_USER_MAPPING.7.gz +man/man7/DROP_USER.7.gz +man/man7/DROP_VIEW.7.gz +man/man7/END.7.gz +man/man7/EXECUTE.7.gz +man/man7/EXPLAIN.7.gz +man/man7/FETCH.7.gz +man/man7/GRANT.7.gz +man/man7/IMPORT_FOREIGN_SCHEMA.7.gz +man/man7/INSERT.7.gz +man/man7/LISTEN.7.gz +man/man7/LOAD.7.gz +man/man7/LOCK.7.gz +man/man7/MERGE.7.gz +man/man7/MOVE.7.gz +man/man7/NOTIFY.7.gz +man/man7/PREPARE_TRANSACTION.7.gz +man/man7/PREPARE.7.gz +man/man7/REASSIGN_OWNED.7.gz +man/man7/REFRESH_MATERIALIZED_VIEW.7.gz +man/man7/REINDEX.7.gz +man/man7/RELEASE_SAVEPOINT.7.gz +man/man7/RESET.7.gz +man/man7/REVOKE.7.gz +man/man7/ROLLBACK_PREPARED.7.gz +man/man7/ROLLBACK_TO_SAVEPOINT.7.gz +man/man7/ROLLBACK.7.gz +man/man7/SAVEPOINT.7.gz +man/man7/SECURITY_LABEL.7.gz +man/man7/SELECT_INTO.7.gz +man/man7/SELECT.7.gz +man/man7/SET_CONSTRAINTS.7.gz +man/man7/SET_ROLE.7.gz +man/man7/SET_SESSION_AUTHORIZATION.7.gz +man/man7/SET_TRANSACTION.7.gz +man/man7/SET.7.gz +man/man7/SHOW.7.gz +man/man7/START_TRANSACTION.7.gz +man/man7/TABLE.7.gz +man/man7/TRUNCATE.7.gz +man/man7/UNLISTEN.7.gz +man/man7/UPDATE.7.gz +man/man7/VACUUM.7.gz +man/man7/VALUES.7.gz +man/man7/WITH.7.gz +share/postgresql/errcodes.txt +share/postgresql/extension/pgcrypto--1.0--1.1.sql +share/postgresql/extension/pgcrypto--1.1--1.2.sql +share/postgresql/extension/pgcrypto--1.2--1.3.sql +share/postgresql/extension/pgcrypto--1.3.sql +share/postgresql/extension/pgcrypto.control +share/postgresql/extension/plpgsql--1.0.sql +share/postgresql/extension/plpgsql.control +share/postgresql/extension/sslinfo--1.0--1.1.sql +share/postgresql/extension/sslinfo--1.1--1.2.sql +share/postgresql/extension/sslinfo--1.2.sql +share/postgresql/extension/sslinfo.control +share/postgresql/information_schema.sql +share/postgresql/locale/cs/LC_MESSAGES/ecpg-15.mo +share/postgresql/locale/cs/LC_MESSAGES/ecpglib6-15.mo +share/postgresql/locale/cs/LC_MESSAGES/libpq5-15.mo +share/postgresql/locale/cs/LC_MESSAGES/pg_archivecleanup-15.mo +share/postgresql/locale/cs/LC_MESSAGES/pg_config-15.mo +share/postgresql/locale/cs/LC_MESSAGES/pg_controldata-15.mo +share/postgresql/locale/cs/LC_MESSAGES/pg_ctl-15.mo +share/postgresql/locale/cs/LC_MESSAGES/pg_dump-15.mo +share/postgresql/locale/cs/LC_MESSAGES/pg_resetwal-15.mo +share/postgresql/locale/cs/LC_MESSAGES/pg_upgrade-15.mo +share/postgresql/locale/cs/LC_MESSAGES/pgscripts-15.mo +share/postgresql/locale/cs/LC_MESSAGES/plpgsql-15.mo +share/postgresql/locale/cs/LC_MESSAGES/psql-15.mo +share/postgresql/locale/de/LC_MESSAGES/ecpg-15.mo +share/postgresql/locale/de/LC_MESSAGES/ecpglib6-15.mo +share/postgresql/locale/de/LC_MESSAGES/initdb-15.mo +share/postgresql/locale/de/LC_MESSAGES/libpq5-15.mo +share/postgresql/locale/de/LC_MESSAGES/pg_amcheck-15.mo +share/postgresql/locale/de/LC_MESSAGES/pg_archivecleanup-15.mo +share/postgresql/locale/de/LC_MESSAGES/pg_basebackup-15.mo +share/postgresql/locale/de/LC_MESSAGES/pg_checksums-15.mo +share/postgresql/locale/de/LC_MESSAGES/pg_config-15.mo +share/postgresql/locale/de/LC_MESSAGES/pg_controldata-15.mo +share/postgresql/locale/de/LC_MESSAGES/pg_ctl-15.mo +share/postgresql/locale/de/LC_MESSAGES/pg_dump-15.mo +share/postgresql/locale/de/LC_MESSAGES/pg_resetwal-15.mo +share/postgresql/locale/de/LC_MESSAGES/pg_rewind-15.mo +share/postgresql/locale/de/LC_MESSAGES/pg_test_fsync-15.mo +share/postgresql/locale/de/LC_MESSAGES/pg_test_timing-15.mo +share/postgresql/locale/de/LC_MESSAGES/pg_upgrade-15.mo +share/postgresql/locale/de/LC_MESSAGES/pg_verifybackup-15.mo +share/postgresql/locale/de/LC_MESSAGES/pg_waldump-15.mo +share/postgresql/locale/de/LC_MESSAGES/pgscripts-15.mo +share/postgresql/locale/de/LC_MESSAGES/plpgsql-15.mo +share/postgresql/locale/de/LC_MESSAGES/postgres-15.mo +share/postgresql/locale/de/LC_MESSAGES/psql-15.mo +share/postgresql/locale/el/LC_MESSAGES/ecpg-15.mo +share/postgresql/locale/el/LC_MESSAGES/ecpglib6-15.mo +share/postgresql/locale/el/LC_MESSAGES/initdb-15.mo +share/postgresql/locale/el/LC_MESSAGES/libpq5-15.mo +share/postgresql/locale/el/LC_MESSAGES/pg_amcheck-15.mo +share/postgresql/locale/el/LC_MESSAGES/pg_archivecleanup-15.mo +share/postgresql/locale/el/LC_MESSAGES/pg_basebackup-15.mo +share/postgresql/locale/el/LC_MESSAGES/pg_checksums-15.mo +share/postgresql/locale/el/LC_MESSAGES/pg_config-15.mo +share/postgresql/locale/el/LC_MESSAGES/pg_controldata-15.mo +share/postgresql/locale/el/LC_MESSAGES/pg_ctl-15.mo +share/postgresql/locale/el/LC_MESSAGES/pg_dump-15.mo +share/postgresql/locale/el/LC_MESSAGES/pg_resetwal-15.mo +share/postgresql/locale/el/LC_MESSAGES/pg_rewind-15.mo +share/postgresql/locale/el/LC_MESSAGES/pg_test_fsync-15.mo +share/postgresql/locale/el/LC_MESSAGES/pg_test_timing-15.mo +share/postgresql/locale/el/LC_MESSAGES/pg_verifybackup-15.mo +share/postgresql/locale/el/LC_MESSAGES/pg_waldump-15.mo +share/postgresql/locale/el/LC_MESSAGES/pgscripts-15.mo +share/postgresql/locale/el/LC_MESSAGES/plpgsql-15.mo +share/postgresql/locale/el/LC_MESSAGES/psql-15.mo +share/postgresql/locale/es/LC_MESSAGES/ecpg-15.mo +share/postgresql/locale/es/LC_MESSAGES/ecpglib6-15.mo +share/postgresql/locale/es/LC_MESSAGES/initdb-15.mo +share/postgresql/locale/es/LC_MESSAGES/libpq5-15.mo +share/postgresql/locale/es/LC_MESSAGES/pg_amcheck-15.mo +share/postgresql/locale/es/LC_MESSAGES/pg_archivecleanup-15.mo +share/postgresql/locale/es/LC_MESSAGES/pg_basebackup-15.mo +share/postgresql/locale/es/LC_MESSAGES/pg_checksums-15.mo +share/postgresql/locale/es/LC_MESSAGES/pg_config-15.mo +share/postgresql/locale/es/LC_MESSAGES/pg_controldata-15.mo +share/postgresql/locale/es/LC_MESSAGES/pg_ctl-15.mo +share/postgresql/locale/es/LC_MESSAGES/pg_dump-15.mo +share/postgresql/locale/es/LC_MESSAGES/pg_resetwal-15.mo +share/postgresql/locale/es/LC_MESSAGES/pg_rewind-15.mo +share/postgresql/locale/es/LC_MESSAGES/pg_test_fsync-15.mo +share/postgresql/locale/es/LC_MESSAGES/pg_test_timing-15.mo +share/postgresql/locale/es/LC_MESSAGES/pg_upgrade-15.mo +share/postgresql/locale/es/LC_MESSAGES/pg_verifybackup-15.mo +share/postgresql/locale/es/LC_MESSAGES/pg_waldump-15.mo +share/postgresql/locale/es/LC_MESSAGES/pgscripts-15.mo +share/postgresql/locale/es/LC_MESSAGES/plpgsql-15.mo +share/postgresql/locale/es/LC_MESSAGES/postgres-15.mo +share/postgresql/locale/es/LC_MESSAGES/psql-15.mo +share/postgresql/locale/fr/LC_MESSAGES/ecpg-15.mo +share/postgresql/locale/fr/LC_MESSAGES/ecpglib6-15.mo +share/postgresql/locale/fr/LC_MESSAGES/initdb-15.mo +share/postgresql/locale/fr/LC_MESSAGES/libpq5-15.mo +share/postgresql/locale/fr/LC_MESSAGES/pg_amcheck-15.mo +share/postgresql/locale/fr/LC_MESSAGES/pg_archivecleanup-15.mo +share/postgresql/locale/fr/LC_MESSAGES/pg_basebackup-15.mo +share/postgresql/locale/fr/LC_MESSAGES/pg_checksums-15.mo +share/postgresql/locale/fr/LC_MESSAGES/pg_config-15.mo +share/postgresql/locale/fr/LC_MESSAGES/pg_controldata-15.mo +share/postgresql/locale/fr/LC_MESSAGES/pg_ctl-15.mo +share/postgresql/locale/fr/LC_MESSAGES/pg_dump-15.mo +share/postgresql/locale/fr/LC_MESSAGES/pg_resetwal-15.mo +share/postgresql/locale/fr/LC_MESSAGES/pg_rewind-15.mo +share/postgresql/locale/fr/LC_MESSAGES/pg_test_fsync-15.mo +share/postgresql/locale/fr/LC_MESSAGES/pg_test_timing-15.mo +share/postgresql/locale/fr/LC_MESSAGES/pg_upgrade-15.mo +share/postgresql/locale/fr/LC_MESSAGES/pg_verifybackup-15.mo +share/postgresql/locale/fr/LC_MESSAGES/pg_waldump-15.mo +share/postgresql/locale/fr/LC_MESSAGES/pgscripts-15.mo +share/postgresql/locale/fr/LC_MESSAGES/plpgsql-15.mo +share/postgresql/locale/fr/LC_MESSAGES/postgres-15.mo +share/postgresql/locale/fr/LC_MESSAGES/psql-15.mo +share/postgresql/locale/he/LC_MESSAGES/pg_config-15.mo +share/postgresql/locale/it/LC_MESSAGES/ecpg-15.mo +share/postgresql/locale/it/LC_MESSAGES/ecpglib6-15.mo +share/postgresql/locale/it/LC_MESSAGES/initdb-15.mo +share/postgresql/locale/it/LC_MESSAGES/libpq5-15.mo +share/postgresql/locale/it/LC_MESSAGES/pg_amcheck-15.mo +share/postgresql/locale/it/LC_MESSAGES/pg_archivecleanup-15.mo +share/postgresql/locale/it/LC_MESSAGES/pg_basebackup-15.mo +share/postgresql/locale/it/LC_MESSAGES/pg_checksums-15.mo +share/postgresql/locale/it/LC_MESSAGES/pg_config-15.mo +share/postgresql/locale/it/LC_MESSAGES/pg_controldata-15.mo +share/postgresql/locale/it/LC_MESSAGES/pg_ctl-15.mo +share/postgresql/locale/it/LC_MESSAGES/pg_dump-15.mo +share/postgresql/locale/it/LC_MESSAGES/pg_resetwal-15.mo +share/postgresql/locale/it/LC_MESSAGES/pg_rewind-15.mo +share/postgresql/locale/it/LC_MESSAGES/pg_test_fsync-15.mo +share/postgresql/locale/it/LC_MESSAGES/pg_test_timing-15.mo +share/postgresql/locale/it/LC_MESSAGES/pg_upgrade-15.mo +share/postgresql/locale/it/LC_MESSAGES/pg_verifybackup-15.mo +share/postgresql/locale/it/LC_MESSAGES/pg_waldump-15.mo +share/postgresql/locale/it/LC_MESSAGES/pgscripts-15.mo +share/postgresql/locale/it/LC_MESSAGES/plpgsql-15.mo +share/postgresql/locale/it/LC_MESSAGES/postgres-15.mo +share/postgresql/locale/it/LC_MESSAGES/psql-15.mo +share/postgresql/locale/ja/LC_MESSAGES/ecpg-15.mo +share/postgresql/locale/ja/LC_MESSAGES/ecpglib6-15.mo +share/postgresql/locale/ja/LC_MESSAGES/initdb-15.mo +share/postgresql/locale/ja/LC_MESSAGES/libpq5-15.mo +share/postgresql/locale/ja/LC_MESSAGES/pg_amcheck-15.mo +share/postgresql/locale/ja/LC_MESSAGES/pg_archivecleanup-15.mo +share/postgresql/locale/ja/LC_MESSAGES/pg_basebackup-15.mo +share/postgresql/locale/ja/LC_MESSAGES/pg_checksums-15.mo +share/postgresql/locale/ja/LC_MESSAGES/pg_config-15.mo +share/postgresql/locale/ja/LC_MESSAGES/pg_controldata-15.mo +share/postgresql/locale/ja/LC_MESSAGES/pg_ctl-15.mo +share/postgresql/locale/ja/LC_MESSAGES/pg_dump-15.mo +share/postgresql/locale/ja/LC_MESSAGES/pg_resetwal-15.mo +share/postgresql/locale/ja/LC_MESSAGES/pg_rewind-15.mo +share/postgresql/locale/ja/LC_MESSAGES/pg_test_fsync-15.mo +share/postgresql/locale/ja/LC_MESSAGES/pg_test_timing-15.mo +share/postgresql/locale/ja/LC_MESSAGES/pg_upgrade-15.mo +share/postgresql/locale/ja/LC_MESSAGES/pg_verifybackup-15.mo +share/postgresql/locale/ja/LC_MESSAGES/pg_waldump-15.mo +share/postgresql/locale/ja/LC_MESSAGES/pgscripts-15.mo +share/postgresql/locale/ja/LC_MESSAGES/plpgsql-15.mo +share/postgresql/locale/ja/LC_MESSAGES/postgres-15.mo +share/postgresql/locale/ja/LC_MESSAGES/psql-15.mo +share/postgresql/locale/ka/LC_MESSAGES/ecpg-15.mo +share/postgresql/locale/ka/LC_MESSAGES/ecpglib6-15.mo +share/postgresql/locale/ka/LC_MESSAGES/initdb-15.mo +share/postgresql/locale/ka/LC_MESSAGES/libpq5-15.mo +share/postgresql/locale/ka/LC_MESSAGES/pg_amcheck-15.mo +share/postgresql/locale/ka/LC_MESSAGES/pg_archivecleanup-15.mo +share/postgresql/locale/ka/LC_MESSAGES/pg_basebackup-15.mo +share/postgresql/locale/ka/LC_MESSAGES/pg_checksums-15.mo +share/postgresql/locale/ka/LC_MESSAGES/pg_config-15.mo +share/postgresql/locale/ka/LC_MESSAGES/pg_controldata-15.mo +share/postgresql/locale/ka/LC_MESSAGES/pg_ctl-15.mo +share/postgresql/locale/ka/LC_MESSAGES/pg_dump-15.mo +share/postgresql/locale/ka/LC_MESSAGES/pg_resetwal-15.mo +share/postgresql/locale/ka/LC_MESSAGES/pg_rewind-15.mo +share/postgresql/locale/ka/LC_MESSAGES/pg_test_fsync-15.mo +share/postgresql/locale/ka/LC_MESSAGES/pg_test_timing-15.mo +share/postgresql/locale/ka/LC_MESSAGES/pg_upgrade-15.mo +share/postgresql/locale/ka/LC_MESSAGES/pg_verifybackup-15.mo +share/postgresql/locale/ka/LC_MESSAGES/pg_waldump-15.mo +share/postgresql/locale/ka/LC_MESSAGES/pgscripts-15.mo +share/postgresql/locale/ka/LC_MESSAGES/plpgsql-15.mo +share/postgresql/locale/ka/LC_MESSAGES/psql-15.mo +share/postgresql/locale/ko/LC_MESSAGES/ecpg-15.mo +share/postgresql/locale/ko/LC_MESSAGES/ecpglib6-15.mo +share/postgresql/locale/ko/LC_MESSAGES/initdb-15.mo +share/postgresql/locale/ko/LC_MESSAGES/libpq5-15.mo +share/postgresql/locale/ko/LC_MESSAGES/pg_amcheck-15.mo +share/postgresql/locale/ko/LC_MESSAGES/pg_archivecleanup-15.mo +share/postgresql/locale/ko/LC_MESSAGES/pg_basebackup-15.mo +share/postgresql/locale/ko/LC_MESSAGES/pg_checksums-15.mo +share/postgresql/locale/ko/LC_MESSAGES/pg_config-15.mo +share/postgresql/locale/ko/LC_MESSAGES/pg_controldata-15.mo +share/postgresql/locale/ko/LC_MESSAGES/pg_ctl-15.mo +share/postgresql/locale/ko/LC_MESSAGES/pg_dump-15.mo +share/postgresql/locale/ko/LC_MESSAGES/pg_resetwal-15.mo +share/postgresql/locale/ko/LC_MESSAGES/pg_rewind-15.mo +share/postgresql/locale/ko/LC_MESSAGES/pg_test_fsync-15.mo +share/postgresql/locale/ko/LC_MESSAGES/pg_test_timing-15.mo +share/postgresql/locale/ko/LC_MESSAGES/pg_upgrade-15.mo +share/postgresql/locale/ko/LC_MESSAGES/pg_verifybackup-15.mo +share/postgresql/locale/ko/LC_MESSAGES/pg_waldump-15.mo +share/postgresql/locale/ko/LC_MESSAGES/pgscripts-15.mo +share/postgresql/locale/ko/LC_MESSAGES/plpgsql-15.mo +share/postgresql/locale/ko/LC_MESSAGES/postgres-15.mo +share/postgresql/locale/ko/LC_MESSAGES/psql-15.mo +share/postgresql/locale/pl/LC_MESSAGES/ecpg-15.mo +share/postgresql/locale/pl/LC_MESSAGES/ecpglib6-15.mo +share/postgresql/locale/pl/LC_MESSAGES/pg_config-15.mo +share/postgresql/locale/pl/LC_MESSAGES/plpgsql-15.mo +share/postgresql/locale/pt_BR/LC_MESSAGES/ecpg-15.mo +share/postgresql/locale/pt_BR/LC_MESSAGES/ecpglib6-15.mo +share/postgresql/locale/pt_BR/LC_MESSAGES/initdb-15.mo +share/postgresql/locale/pt_BR/LC_MESSAGES/pg_archivecleanup-15.mo +share/postgresql/locale/pt_BR/LC_MESSAGES/pg_checksums-15.mo +share/postgresql/locale/pt_BR/LC_MESSAGES/pg_config-15.mo +share/postgresql/locale/pt_BR/LC_MESSAGES/pg_controldata-15.mo +share/postgresql/locale/pt_BR/LC_MESSAGES/pg_ctl-15.mo +share/postgresql/locale/pt_BR/LC_MESSAGES/pg_resetwal-15.mo +share/postgresql/locale/pt_BR/LC_MESSAGES/pg_test_fsync-15.mo +share/postgresql/locale/pt_BR/LC_MESSAGES/pg_test_timing-15.mo +share/postgresql/locale/pt_BR/LC_MESSAGES/pgscripts-15.mo +share/postgresql/locale/pt_BR/LC_MESSAGES/plpgsql-15.mo +share/postgresql/locale/ru/LC_MESSAGES/ecpg-15.mo +share/postgresql/locale/ru/LC_MESSAGES/ecpglib6-15.mo +share/postgresql/locale/ru/LC_MESSAGES/initdb-15.mo +share/postgresql/locale/ru/LC_MESSAGES/libpq5-15.mo +share/postgresql/locale/ru/LC_MESSAGES/pg_amcheck-15.mo +share/postgresql/locale/ru/LC_MESSAGES/pg_archivecleanup-15.mo +share/postgresql/locale/ru/LC_MESSAGES/pg_basebackup-15.mo +share/postgresql/locale/ru/LC_MESSAGES/pg_checksums-15.mo +share/postgresql/locale/ru/LC_MESSAGES/pg_config-15.mo +share/postgresql/locale/ru/LC_MESSAGES/pg_controldata-15.mo +share/postgresql/locale/ru/LC_MESSAGES/pg_ctl-15.mo +share/postgresql/locale/ru/LC_MESSAGES/pg_dump-15.mo +share/postgresql/locale/ru/LC_MESSAGES/pg_resetwal-15.mo +share/postgresql/locale/ru/LC_MESSAGES/pg_rewind-15.mo +share/postgresql/locale/ru/LC_MESSAGES/pg_test_fsync-15.mo +share/postgresql/locale/ru/LC_MESSAGES/pg_test_timing-15.mo +share/postgresql/locale/ru/LC_MESSAGES/pg_upgrade-15.mo +share/postgresql/locale/ru/LC_MESSAGES/pg_verifybackup-15.mo +share/postgresql/locale/ru/LC_MESSAGES/pg_waldump-15.mo +share/postgresql/locale/ru/LC_MESSAGES/pgscripts-15.mo +share/postgresql/locale/ru/LC_MESSAGES/plpgsql-15.mo +share/postgresql/locale/ru/LC_MESSAGES/postgres-15.mo +share/postgresql/locale/ru/LC_MESSAGES/psql-15.mo +share/postgresql/locale/sv/LC_MESSAGES/ecpg-15.mo +share/postgresql/locale/sv/LC_MESSAGES/ecpglib6-15.mo +share/postgresql/locale/sv/LC_MESSAGES/initdb-15.mo +share/postgresql/locale/sv/LC_MESSAGES/libpq5-15.mo +share/postgresql/locale/sv/LC_MESSAGES/pg_amcheck-15.mo +share/postgresql/locale/sv/LC_MESSAGES/pg_archivecleanup-15.mo +share/postgresql/locale/sv/LC_MESSAGES/pg_basebackup-15.mo +share/postgresql/locale/sv/LC_MESSAGES/pg_checksums-15.mo +share/postgresql/locale/sv/LC_MESSAGES/pg_config-15.mo +share/postgresql/locale/sv/LC_MESSAGES/pg_controldata-15.mo +share/postgresql/locale/sv/LC_MESSAGES/pg_ctl-15.mo +share/postgresql/locale/sv/LC_MESSAGES/pg_dump-15.mo +share/postgresql/locale/sv/LC_MESSAGES/pg_resetwal-15.mo +share/postgresql/locale/sv/LC_MESSAGES/pg_rewind-15.mo +share/postgresql/locale/sv/LC_MESSAGES/pg_test_fsync-15.mo +share/postgresql/locale/sv/LC_MESSAGES/pg_test_timing-15.mo +share/postgresql/locale/sv/LC_MESSAGES/pg_upgrade-15.mo +share/postgresql/locale/sv/LC_MESSAGES/pg_verifybackup-15.mo +share/postgresql/locale/sv/LC_MESSAGES/pg_waldump-15.mo +share/postgresql/locale/sv/LC_MESSAGES/pgscripts-15.mo +share/postgresql/locale/sv/LC_MESSAGES/plpgsql-15.mo +share/postgresql/locale/sv/LC_MESSAGES/postgres-15.mo +share/postgresql/locale/sv/LC_MESSAGES/psql-15.mo +share/postgresql/locale/tr/LC_MESSAGES/ecpg-15.mo +share/postgresql/locale/tr/LC_MESSAGES/ecpglib6-15.mo +share/postgresql/locale/tr/LC_MESSAGES/pg_archivecleanup-15.mo +share/postgresql/locale/tr/LC_MESSAGES/pg_config-15.mo +share/postgresql/locale/tr/LC_MESSAGES/pg_controldata-15.mo +share/postgresql/locale/tr/LC_MESSAGES/pg_ctl-15.mo +share/postgresql/locale/tr/LC_MESSAGES/pg_dump-15.mo +share/postgresql/locale/tr/LC_MESSAGES/pgscripts-15.mo +share/postgresql/locale/tr/LC_MESSAGES/plpgsql-15.mo +share/postgresql/locale/uk/LC_MESSAGES/ecpg-15.mo +share/postgresql/locale/uk/LC_MESSAGES/ecpglib6-15.mo +share/postgresql/locale/uk/LC_MESSAGES/initdb-15.mo +share/postgresql/locale/uk/LC_MESSAGES/libpq5-15.mo +share/postgresql/locale/uk/LC_MESSAGES/pg_amcheck-15.mo +share/postgresql/locale/uk/LC_MESSAGES/pg_archivecleanup-15.mo +share/postgresql/locale/uk/LC_MESSAGES/pg_basebackup-15.mo +share/postgresql/locale/uk/LC_MESSAGES/pg_checksums-15.mo +share/postgresql/locale/uk/LC_MESSAGES/pg_config-15.mo +share/postgresql/locale/uk/LC_MESSAGES/pg_controldata-15.mo +share/postgresql/locale/uk/LC_MESSAGES/pg_ctl-15.mo +share/postgresql/locale/uk/LC_MESSAGES/pg_dump-15.mo +share/postgresql/locale/uk/LC_MESSAGES/pg_resetwal-15.mo +share/postgresql/locale/uk/LC_MESSAGES/pg_rewind-15.mo +share/postgresql/locale/uk/LC_MESSAGES/pg_test_fsync-15.mo +share/postgresql/locale/uk/LC_MESSAGES/pg_test_timing-15.mo +share/postgresql/locale/uk/LC_MESSAGES/pg_upgrade-15.mo +share/postgresql/locale/uk/LC_MESSAGES/pg_verifybackup-15.mo +share/postgresql/locale/uk/LC_MESSAGES/pg_waldump-15.mo +share/postgresql/locale/uk/LC_MESSAGES/pgscripts-15.mo +share/postgresql/locale/uk/LC_MESSAGES/plpgsql-15.mo +share/postgresql/locale/uk/LC_MESSAGES/postgres-15.mo +share/postgresql/locale/uk/LC_MESSAGES/psql-15.mo +share/postgresql/locale/vi/LC_MESSAGES/ecpg-15.mo +share/postgresql/locale/vi/LC_MESSAGES/ecpglib6-15.mo +share/postgresql/locale/vi/LC_MESSAGES/pg_config-15.mo +share/postgresql/locale/vi/LC_MESSAGES/plpgsql-15.mo +share/postgresql/locale/zh_CN/LC_MESSAGES/ecpg-15.mo +share/postgresql/locale/zh_CN/LC_MESSAGES/ecpglib6-15.mo +share/postgresql/locale/zh_CN/LC_MESSAGES/initdb-15.mo +share/postgresql/locale/zh_CN/LC_MESSAGES/libpq5-15.mo +share/postgresql/locale/zh_CN/LC_MESSAGES/pg_amcheck-15.mo +share/postgresql/locale/zh_CN/LC_MESSAGES/pg_archivecleanup-15.mo +share/postgresql/locale/zh_CN/LC_MESSAGES/pg_config-15.mo +share/postgresql/locale/zh_CN/LC_MESSAGES/pg_controldata-15.mo +share/postgresql/locale/zh_CN/LC_MESSAGES/pg_ctl-15.mo +share/postgresql/locale/zh_CN/LC_MESSAGES/pg_dump-15.mo +share/postgresql/locale/zh_CN/LC_MESSAGES/pg_resetwal-15.mo +share/postgresql/locale/zh_CN/LC_MESSAGES/pg_rewind-15.mo +share/postgresql/locale/zh_CN/LC_MESSAGES/pg_test_timing-15.mo +share/postgresql/locale/zh_CN/LC_MESSAGES/pg_upgrade-15.mo +share/postgresql/locale/zh_CN/LC_MESSAGES/pg_verifybackup-15.mo +share/postgresql/locale/zh_CN/LC_MESSAGES/pgscripts-15.mo +share/postgresql/locale/zh_CN/LC_MESSAGES/plpgsql-15.mo +share/postgresql/locale/zh_CN/LC_MESSAGES/postgres-15.mo +share/postgresql/locale/zh_CN/LC_MESSAGES/psql-15.mo +share/postgresql/locale/zh_TW/LC_MESSAGES/ecpg-15.mo +share/postgresql/pg_hba.conf.sample +share/postgresql/pg_ident.conf.sample +share/postgresql/pg_service.conf.sample +share/postgresql/postgres.bki +share/postgresql/postgresql.conf.sample +share/postgresql/psqlrc.sample +share/postgresql/snowball_create.sql +share/postgresql/sql_features.txt +share/postgresql/system_constraints.sql +share/postgresql/system_functions.sql +share/postgresql/system_views.sql +share/postgresql/timezonesets/Africa.txt +share/postgresql/timezonesets/America.txt +share/postgresql/timezonesets/Antarctica.txt +share/postgresql/timezonesets/Asia.txt +share/postgresql/timezonesets/Atlantic.txt +share/postgresql/timezonesets/Australia +share/postgresql/timezonesets/Australia.txt +share/postgresql/timezonesets/Default +share/postgresql/timezonesets/Etc.txt +share/postgresql/timezonesets/Europe.txt +share/postgresql/timezonesets/India +share/postgresql/timezonesets/Indian.txt +share/postgresql/timezonesets/Pacific.txt +share/postgresql/tsearch_data/danish.stop +share/postgresql/tsearch_data/dutch.stop +share/postgresql/tsearch_data/english.stop +share/postgresql/tsearch_data/finnish.stop +share/postgresql/tsearch_data/french.stop +share/postgresql/tsearch_data/german.stop +share/postgresql/tsearch_data/hungarian.stop +share/postgresql/tsearch_data/hunspell_sample_long.affix +share/postgresql/tsearch_data/hunspell_sample_long.dict +share/postgresql/tsearch_data/hunspell_sample_num.affix +share/postgresql/tsearch_data/hunspell_sample_num.dict +share/postgresql/tsearch_data/hunspell_sample.affix +share/postgresql/tsearch_data/ispell_sample.affix +share/postgresql/tsearch_data/ispell_sample.dict +share/postgresql/tsearch_data/italian.stop +share/postgresql/tsearch_data/nepali.stop +share/postgresql/tsearch_data/norwegian.stop +share/postgresql/tsearch_data/portuguese.stop +share/postgresql/tsearch_data/russian.stop +share/postgresql/tsearch_data/spanish.stop +share/postgresql/tsearch_data/swedish.stop +share/postgresql/tsearch_data/synonym_sample.syn +share/postgresql/tsearch_data/thesaurus_sample.ths +share/postgresql/tsearch_data/turkish.stop +@dir include/postgresql/informix/esql +@dir include/postgresql/informix +@dir include/postgresql/internal/libpq +@dir include/postgresql/internal +@dir include/postgresql/libpq +@dir include/postgresql/server/access +@dir include/postgresql/server/bootstrap +@dir include/postgresql/server/catalog +@dir include/postgresql/server/commands +@dir include/postgresql/server/common +@dir include/postgresql/server/datatype +@dir include/postgresql/server/executor +@dir include/postgresql/server/fe_utils +@dir include/postgresql/server/foreign +@dir include/postgresql/server/jit +@dir include/postgresql/server/lib +@dir include/postgresql/server/libpq +@dir include/postgresql/server/mb +@dir include/postgresql/server/nodes +@dir include/postgresql/server/optimizer +@dir include/postgresql/server/parser +@dir include/postgresql/server/partitioning +@dir include/postgresql/server/port/atomics +@dir include/postgresql/server/port/win32/arpa +@dir include/postgresql/server/port/win32/netinet +@dir include/postgresql/server/port/win32/sys +@dir include/postgresql/server/port/win32 +@dir include/postgresql/server/port/win32_msvc/sys +@dir include/postgresql/server/port/win32_msvc +@dir include/postgresql/server/port +@dir include/postgresql/server/portability +@dir include/postgresql/server/postmaster +@dir include/postgresql/server/regex +@dir include/postgresql/server/replication +@dir include/postgresql/server/rewrite +@dir include/postgresql/server/snowball/libstemmer +@dir include/postgresql/server/snowball +@dir include/postgresql/server/statistics +@dir include/postgresql/server/storage +@dir include/postgresql/server/tcop +@dir include/postgresql/server/tsearch/dicts +@dir include/postgresql/server/tsearch +@dir include/postgresql/server/utils +@dir include/postgresql/server +@dir include/postgresql +@dir lib/pkgconfig +@dir lib/postgresql/pgxs/config +@dir lib/postgresql/pgxs/src/makefiles +@dir lib/postgresql/pgxs/src/test/isolation +@dir lib/postgresql/pgxs/src/test/regress +@dir lib/postgresql/pgxs/src/test +@dir lib/postgresql/pgxs/src +@dir lib/postgresql/pgxs +@dir lib/postgresql +@dir share/postgresql/extension +@dir share/postgresql/locale/cs/LC_MESSAGES +@dir share/postgresql/locale/cs +@dir share/postgresql/locale/de/LC_MESSAGES +@dir share/postgresql/locale/de +@dir share/postgresql/locale/el/LC_MESSAGES +@dir share/postgresql/locale/el +@dir share/postgresql/locale/es/LC_MESSAGES +@dir share/postgresql/locale/es +@dir share/postgresql/locale/fr/LC_MESSAGES +@dir share/postgresql/locale/fr +@dir share/postgresql/locale/he/LC_MESSAGES +@dir share/postgresql/locale/he +@dir share/postgresql/locale/it/LC_MESSAGES +@dir share/postgresql/locale/it +@dir share/postgresql/locale/ja/LC_MESSAGES +@dir share/postgresql/locale/ja +@dir share/postgresql/locale/ka/LC_MESSAGES +@dir share/postgresql/locale/ka +@dir share/postgresql/locale/ko/LC_MESSAGES +@dir share/postgresql/locale/ko +@dir share/postgresql/locale/pl/LC_MESSAGES +@dir share/postgresql/locale/pl +@dir share/postgresql/locale/pt_BR/LC_MESSAGES +@dir share/postgresql/locale/pt_BR +@dir share/postgresql/locale/ru/LC_MESSAGES +@dir share/postgresql/locale/ru +@dir share/postgresql/locale/sv/LC_MESSAGES +@dir share/postgresql/locale/sv +@dir share/postgresql/locale/tr/LC_MESSAGES +@dir share/postgresql/locale/tr +@dir share/postgresql/locale/uk/LC_MESSAGES +@dir share/postgresql/locale/uk +@dir share/postgresql/locale/vi/LC_MESSAGES +@dir share/postgresql/locale/vi +@dir share/postgresql/locale/zh_CN/LC_MESSAGES +@dir share/postgresql/locale/zh_CN +@dir share/postgresql/locale/zh_TW/LC_MESSAGES +@dir share/postgresql/locale/zh_TW +@dir share/postgresql/locale +@dir share/postgresql/timezonesets +@dir share/postgresql/tsearch_data +@dir share/postgresql diff --git a/data/unixODBC/Makefile b/data/unixODBC/Makefile new file mode 100644 index 00000000..dc8ff2b5 --- /dev/null +++ b/data/unixODBC/Makefile @@ -0,0 +1,38 @@ +# +# $Id$ +# +PORTNAME= unixODBC +PORTVERSION= 2.3.4 +CATEGORIES= databases +MASTER_SITES= ftp://ftp.unixodbc.org/pub/unixODBC/ +#PKGNAMEPREFIX= lib + +MAINTAINER= ports@FreeBSD.org +COMMENT= ODBC library suite for Unix + +GNU_CONFIGURE= yes +USE+= gmake +CONFIGURE_ENV= ac_cv_header_msql_h=no +CONFIGURE_ARGS= --enable-static --enable-shared +#CONFIGURE_ARGS+= --enable-iconv +CONFIGURE_ARGS+= --enable-readline +CONFIGURE_ARGS+= --enable-threads +LDFLAGS+= -L${LOCALBASE}/lib +CFLAGS+= -I${LOCALBASE}/include + +INSTALL_TARGET= install-strip +USE_LDCONFIG= yes + +post-patch: + ${REINPLACE_CMD} -e 's|\.ini$$|.ini.sample|' ${WRKSRC}/Makefile.in + +.include + +.if (${OSVERSION} > 1100000) +LIB_DEPENDS+= libreadline.so:devel/libreadline +CFLAGS+= -I${LOCALBASE}/include +LDFLAGS+= -L${LOCALBASE}/lib +.endif + +.include +#EOF diff --git a/data/unixODBC/distinfo b/data/unixODBC/distinfo new file mode 100644 index 00000000..857695fc --- /dev/null +++ b/data/unixODBC/distinfo @@ -0,0 +1,2 @@ +SHA256 (unixODBC-2.3.4.tar.gz) = 2e1509a96bb18d248bf08ead0d74804957304ff7c6f8b2e5965309c632421e39 +SIZE (unixODBC-2.3.4.tar.gz) = 1830660 diff --git a/data/unixODBC/files/pkg-message.in b/data/unixODBC/files/pkg-message.in new file mode 100644 index 00000000..50adf587 --- /dev/null +++ b/data/unixODBC/files/pkg-message.in @@ -0,0 +1,9 @@ +============================================================================== + +If installing for MySQL, then copy the example configuration file to your home +directory as ".odbc.ini", and modify to define specific MySQL database(s). The +file is located at "%%EXAMPLESDIR%%/MySQL/iodbc.ini". + +This is required to use MySQL databases from OpenOffice.org, for example. + +============================================================================== diff --git a/data/unixODBC/pkg-descr b/data/unixODBC/pkg-descr new file mode 100644 index 00000000..f0e91600 --- /dev/null +++ b/data/unixODBC/pkg-descr @@ -0,0 +1,14 @@ +From the web site: + +What is the unixODBC Project? + +The unixODBC Project goals are to develop and promote unixODBC to be the +definitive standard for ODBC on the Linux platform. + +What is ODBC? + +ODBC is an open specification for providing application developers with +a predictable API with which to access Data Sources. Data Sources include +SQL Servers and any Data Source with an ODBC Driver. + +WWW: http://www.unixodbc.org/ diff --git a/data/unixODBC/pkg-plist b/data/unixODBC/pkg-plist new file mode 100644 index 00000000..9103bdf5 --- /dev/null +++ b/data/unixODBC/pkg-plist @@ -0,0 +1,37 @@ +bin/dltest +bin/isql +bin/iusql +bin/odbc_config +bin/odbcinst +bin/slencheck +include/autotest.h +include/odbcinst.h +include/odbcinstext.h +include/sql.h +include/sqlext.h +include/sqlspi.h +include/sqltypes.h +include/sqlucode.h +include/unixodbc_conf.h +include/uodbc_extras.h +include/uodbc_stats.h +lib/libodbc.a +lib/libodbc.la +lib/libodbc.so +lib/libodbc.so.2 +lib/libodbccr.a +lib/libodbccr.la +lib/libodbccr.so +lib/libodbccr.so.2 +lib/libodbcinst.a +lib/libodbcinst.la +lib/libodbcinst.so +lib/libodbcinst.so.2 +man/man1/dltest.1.gz +man/man1/isql.1.gz +man/man1/iusql.1.gz +man/man1/odbc_config.1.gz +man/man1/odbcinst.1.gz +man/man5/odbc.ini.5.gz +man/man5/odbcinst.ini.5.gz +man/man7/unixODBC.7.gz diff --git a/devel/cmake/files/patch-x-Modules-GNUInstallDirs.cmake b/devel/cmake/files/patch-x-Modules-GNUInstallDirs.cmake new file mode 100644 index 00000000..0dc8e77d --- /dev/null +++ b/devel/cmake/files/patch-x-Modules-GNUInstallDirs.cmake @@ -0,0 +1,11 @@ +--- ./Modules/GNUInstallDirs.cmake.orig 2025-08-27 09:23:22.300542000 +0200 ++++ ./Modules/GNUInstallDirs.cmake 2025-08-27 09:24:42.220931000 +0200 +@@ -330,7 +330,7 @@ + "Info documentation (DATAROOTDIR/info)") + endif() + +-if(CMAKE_SYSTEM_NAME MATCHES "^(([^k].*)?BSD|DragonFly)$" AND NOT CMAKE_SYSTEM_NAME MATCHES "^(FreeBSD)$") ++if(CMAKE_SYSTEM_NAME MATCHES "^(([^k].*)?BSD|DragonFly)$") + _GNUInstallDirs_cache_path_fallback(CMAKE_INSTALL_MANDIR "man" + "Man documentation (man)") + else() diff --git a/devel/gperf/Makefile b/devel/gperf/Makefile new file mode 100644 index 00000000..38d14733 --- /dev/null +++ b/devel/gperf/Makefile @@ -0,0 +1,23 @@ +# +# $ID$ +# +PORTNAME= gperf +PORTVERSION= 3.1 +CATEGORIES= devel +#MASTER_SITES= ${MASTER_SITE_GNU} +#MASTER_SITE_SUBDIR= gperf + +MAINTAINER= onborodin@gmail.com +COMMENT= Generates perfect hash functions for sets of keywords + +USE_CXXSTD= gnu++98 +GNU_CONFIGURE= yes +USES+= gmake +CONFIGURE_ARGS+= --docdir=${DOCSDIR} +CONFIGURE_ARGS+= --infodir=${PREFIX}/info +CONFIGURE_ARGS+= --mandir=${PREFIX}/man + +INFO= gperf + +.include +#EOF diff --git a/devel/gperf/distinfo b/devel/gperf/distinfo new file mode 100644 index 00000000..92e8d23a --- /dev/null +++ b/devel/gperf/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1756194841 +SHA256 (gperf-3.1.tar.gz) = 588546b945bba4b70b6a3a616e80b4ab466e3f33024a352fc2198112cdbb3ae2 +SIZE (gperf-3.1.tar.gz) = 1215925 diff --git a/devel/gperf/files/patch-x-doc-Makefile.in b/devel/gperf/files/patch-x-doc-Makefile.in new file mode 100644 index 00000000..9de2363b --- /dev/null +++ b/devel/gperf/files/patch-x-doc-Makefile.in @@ -0,0 +1,22 @@ +--- ./doc/Makefile.in.orig 2007-04-04 13:56:28.000000000 +0300 ++++ ./doc/Makefile.in 2014-12-31 00:41:07.000000000 +0200 +@@ -117,8 +117,8 @@ + # $(INSTALL_DATA) $(srcdir)/gperf.ps $(DESTDIR)$(psdir)/gperf.ps + # $(MKINSTALLDIRS) $(DESTDIR)$(pdfdir) + # $(INSTALL_DATA) $(srcdir)/gperf.pdf $(DESTDIR)$(pdfdir)/gperf.pdf +- $(MKINSTALLDIRS) $(DESTDIR)$(htmldir) +- $(INSTALL_DATA) $(srcdir)/gperf.html $(DESTDIR)$(htmldir)/gperf.html ++# $(MKINSTALLDIRS) $(DESTDIR)$(htmldir) ++# $(INSTALL_DATA) $(srcdir)/gperf.html $(DESTDIR)$(htmldir)/gperf.html + + installdirs : force + $(MKINSTALLDIRS) $(DESTDIR)$(infodir) +@@ -126,7 +126,7 @@ + # $(MKINSTALLDIRS) $(DESTDIR)$(dvidir) + # $(MKINSTALLDIRS) $(DESTDIR)$(psdir) + # $(MKINSTALLDIRS) $(DESTDIR)$(pdfdir) +- $(MKINSTALLDIRS) $(DESTDIR)$(htmldir) ++# $(MKINSTALLDIRS) $(DESTDIR)$(htmldir) + + uninstall : force + $(RM) $(DESTDIR)$(infodir)/gperf.info diff --git a/devel/gperf/pkg-descr b/devel/gperf/pkg-descr new file mode 100644 index 00000000..49084e26 --- /dev/null +++ b/devel/gperf/pkg-descr @@ -0,0 +1,24 @@ +While teaching a data structures course at University of California, +Irvine, I developed a program called GPERF that generates perfect hash +functions for sets of key words. A perfect hash function is simply: + + A hash function and a data structure that allows + recognition of a key word in a set of words using + exactly 1 probe into the data structure. + +The gperf.texinfo file explains how the program works, the form of the +input, what options are available, and hints on choosing the best +options for particular key word sets. The texinfo file is readable +both via the GNU emacs `info' command, and is also suitable for +typesetting with TeX. + +The enclosed Makefile creates the executable program ``gperf'' and +also runs some tests. + +Output from the GPERF program is used to recognize reserved words in +the GNU C, GNU C++, and GNU Pascal compilers, as well as with the GNU +indent program. + +LICENSE: GPL2 or later + +WWW: http://www.gnu.org/software/gperf/ diff --git a/devel/gperf/pkg-plist b/devel/gperf/pkg-plist new file mode 100644 index 00000000..e5834e70 --- /dev/null +++ b/devel/gperf/pkg-plist @@ -0,0 +1,2 @@ +bin/gperf +man/man1/gperf.1.gz diff --git a/devel/pkg-config/Makefile b/devel/pkg-config/Makefile new file mode 100644 index 00000000..3ff940a9 --- /dev/null +++ b/devel/pkg-config/Makefile @@ -0,0 +1,23 @@ +# +# $Id: Makefile 2619 2009-09-27 20:12:17Z root $ +# $URL: file:///usr2/svn/ports5/devel/pkg-config/Makefile $ +# +PORTNAME= pkg-config +PORTVERSION= 0.25 +CATEGORIES= devel +MASTER_SITES= http://pkgconfig.freedesktop.org/releases/ + +MAINTAINER= onborodin@gmail.com +COMMENT= A utility to retrieve information about installed libraries + +USES+= gmake +GNU_CONFIGURE= yes +CONFIGURE_ARGS+= --with-pc-path=${LOCALBASE}/lib/pkgconfig +CONFIGURE_ARGS+= --disable-threads +CONFIGURE_ARGS+= --mandir=${PREFIX}/man + +post-patch: + ${REINPLACE_CMD} -e 's|install-data-am: install-dist_docDATA|install-data-am: |' ${WRKSRC}/Makefile.in + +.include +#EOF diff --git a/devel/pkg-config/distinfo b/devel/pkg-config/distinfo new file mode 100644 index 00000000..5ad6d642 --- /dev/null +++ b/devel/pkg-config/distinfo @@ -0,0 +1,3 @@ +MD5 (pkg-config-0.25.tar.gz) = a3270bab3f4b69b7dc6dbdacbcae9745 +SHA256 (pkg-config-0.25.tar.gz) = 3ba691ee2431f32ccb8efa131e59bf23e37f122dc66791309023ca6dcefcd10e +SIZE (pkg-config-0.25.tar.gz) = 988899 diff --git a/devel/pkg-config/files/_patch-x-parse.c b/devel/pkg-config/files/_patch-x-parse.c new file mode 100644 index 00000000..2374f5ad --- /dev/null +++ b/devel/pkg-config/files/_patch-x-parse.c @@ -0,0 +1,73 @@ +--- ./parse.c.orig 2010-05-27 23:21:36.000000000 +0300 ++++ ./parse.c 2010-10-09 20:56:13.000000000 +0300 +@@ -1460,19 +1460,19 @@ + } + else + { +- /* Check for the module in gnome-config */ ++ /* Check for the module in pkg-config */ + char *output; + char *p; + char *command; + +- debug_spew ("Calling gnome-config\n"); ++ debug_spew ("Calling pkg-config\n"); + + /* Annoyingly, --modversion doesn't return a failure + * code if the lib is unknown, so we have to use --libs + * for that. + */ + +- command = g_strdup_printf ("gnome-config --libs %s", ++ command = g_strdup_printf ("pkg-config --libs %s", + name); + + if (!try_command (command)) +@@ -1484,7 +1484,7 @@ + else + g_free (command); + +- command = g_strdup_printf ("gnome-config --modversion %s", ++ command = g_strdup_printf ("pkg-config --modversion %s", + name); + + output = backticks (command); +@@ -1495,7 +1495,7 @@ + return NULL; + } + +- /* Unknown modules give "Unknown library `foo'" from gnome-config ++ /* Unknown modules give "Unknown library `foo'" from pkg-config + * (but on stderr so this is useless, nevermind) + */ + if (strstr (output, "Unknown") || *output == '\0') +@@ -1505,7 +1505,7 @@ + return NULL; + } + +- /* gnome-config --modversion gnomeui outputs e.g. "gnome-libs-1.2.4" ++ /* pkg-config --modversion gnomeui outputs e.g. "gnome-libs-1.2.4" + * or libglade-0.12 + */ + p = output; +@@ -1543,16 +1543,16 @@ + pkg->key = g_strdup (name); + pkg->description = g_strdup ("No description"); + +- command = g_strdup_printf ("gnome-config --libs %s", name); ++ command = g_strdup_printf ("pkg-config --libs %s", name); + output = backticks (command); + g_free (command); +- parse_libs (pkg, output, "gnome-config"); ++ parse_libs (pkg, output, "pkg-config"); + g_free (output); + +- command = g_strdup_printf ("gnome-config --cflags %s", name); ++ command = g_strdup_printf ("pkg-config --cflags %s", name); + output = backticks (command); + g_free (command); +- parse_cflags (pkg, output, "gnome-config"); ++ parse_cflags (pkg, output, "pkg-config"); + g_free (output); + + return pkg; diff --git a/devel/pkg-config/files/patch-x-glib-1.2.10-Makefile.in b/devel/pkg-config/files/patch-x-glib-1.2.10-Makefile.in new file mode 100644 index 00000000..fc3c4b97 --- /dev/null +++ b/devel/pkg-config/files/patch-x-glib-1.2.10-Makefile.in @@ -0,0 +1,31 @@ +--- ./glib-1.2.10/Makefile.in.orig 2010-05-09 10:18:11.000000000 +0300 ++++ ./glib-1.2.10/Makefile.in 2013-11-02 22:29:04.000000000 +0300 +@@ -38,8 +38,8 @@ + POST_UNINSTALL = : + build_triplet = @build@ + host_triplet = @host@ +-noinst_PROGRAMS = testglib$(EXEEXT) testgdate$(EXEEXT) \ +- testgdateparser$(EXEEXT) ++noinst_PROGRAMS = ++ + subdir = . + DIST_COMMON = README $(am__configure_deps) $(noinst_HEADERS) \ + $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ +@@ -288,7 +288,7 @@ + + # require automake 1.4 + AUTOMAKE_OPTIONS = 1.4 +-SUBDIRS = . gmodule gthread docs tests ++SUBDIRS = . gmodule gthread docs + configincludedir = $(pkglibdir)/include + noinst_SCRIPTS = glib-config + INCLUDES = -DG_LOG_DOMAIN=g_log_domain_glib @GLIB_DEBUG_FLAGS@ +@@ -842,7 +842,7 @@ + installdirs: installdirs-recursive + installdirs-am: + install: $(BUILT_SOURCES) +- $(MAKE) $(AM_MAKEFLAGS) install-recursive ++# $(MAKE) $(AM_MAKEFLAGS) install-recursive + install-exec: install-exec-recursive + install-data: install-data-recursive + uninstall: uninstall-recursive diff --git a/devel/pkg-config/files/patch-x-glib-1.2.10-glib.h b/devel/pkg-config/files/patch-x-glib-1.2.10-glib.h new file mode 100644 index 00000000..60de47c8 --- /dev/null +++ b/devel/pkg-config/files/patch-x-glib-1.2.10-glib.h @@ -0,0 +1,12 @@ +--- ./glib-1.2.10/glib.h.orig 2001-02-27 05:44:38.000000000 +0200 ++++ ./glib-1.2.10/glib.h 2013-11-02 22:39:31.000000000 +0300 +@@ -218,6 +218,9 @@ + # endif /* !__GNUC__ */ + #endif /* !G_INLINE_FUNC */ + ++#undef G_INLINE_FUNC ++#define G_INLINE_FUNC static inline ++ + + /* Provide simple macro statement wrappers (adapted from Perl): + * G_STMT_START { statements; } G_STMT_END; diff --git a/devel/pkg-config/pkg-descr b/devel/pkg-config/pkg-descr new file mode 100644 index 00000000..c24838f6 --- /dev/null +++ b/devel/pkg-config/pkg-descr @@ -0,0 +1,13 @@ +The pkg-config program is used to retrieve information about installed +libraries in the system. It is typically used to compile and link against one +or more libraries. It's more useful to the compilation process than to +the end-user. + +pkg-config retrieves information about packages from special metadata files. +These files are named after the package, with the extension .pc. By default, +pkg-config looks for these files in the following directories: +${PREFIX}/libdata/pkgconfig, ${LOCALBASE}/libdata/pkgconfig and +${X11BASE}/libdata/pkgconfig; it will also look in the list of directories +specified by the PKG_CONFIG_PATH environment variable. + +WWW: http://pkgconfig.freedesktop.org/wiki/ diff --git a/devel/pkg-config/pkg-plist b/devel/pkg-config/pkg-plist new file mode 100644 index 00000000..686f505a --- /dev/null +++ b/devel/pkg-config/pkg-plist @@ -0,0 +1,3 @@ +bin/pkg-config +share/aclocal/pkg.m4 +man/man1/pkg-config.1.gz diff --git a/graph/libexif/Makefile b/graph/libexif/Makefile new file mode 100644 index 00000000..0dd1a88d --- /dev/null +++ b/graph/libexif/Makefile @@ -0,0 +1,28 @@ +# +# $Id: Makefile 2368 2009-09-08 05:55:57Z root $ +# $URL: file:///usr2/svn/ports5/graphics-libs/libexif/Makefile $ +# +PORTNAME= libexif +PORTVERSION= 0.6.21 +CATEGORIES= graphics +MASTER_SITES= SF + +MAINTAINER= onborodin@gmail.com +COMMENT= Library to read digital camera file meta-data + +LIB_DEPENDS+= libintl.so:devel/gettext + +USES+= tar:bzip2 +GNU_CONFIGURE= yes +USES+= gmake +CPPFLAGS+= -I${LOCALBASE}/include +INSTALLS_SHLIB= yes +CONFIGURE_ARGS+= --with-libiconv-prefix=${LOCALBASE} +CONFIGURE_ARGS+= --with-libintl-prefix=${LOCALBASE} +CONFIGURE_ARGS+= --mandir=${PREFIX} + +post-patch: + @${REINPLACE_CMD} -e 's|-g -Wall||g' ${WRKSRC}/configure + +.include +#EOF diff --git a/graph/libexif/distinfo b/graph/libexif/distinfo new file mode 100644 index 00000000..82a65d82 --- /dev/null +++ b/graph/libexif/distinfo @@ -0,0 +1,2 @@ +SHA256 (libexif-0.6.21.tar.bz2) = 16cdaeb62eb3e6dfab2435f7d7bccd2f37438d21c5218ec4e58efa9157d4d41a +SIZE (libexif-0.6.21.tar.bz2) = 1368435 diff --git a/graph/libexif/files/patch-x-Makefile.in b/graph/libexif/files/patch-x-Makefile.in new file mode 100644 index 00000000..e5a609c8 --- /dev/null +++ b/graph/libexif/files/patch-x-Makefile.in @@ -0,0 +1,11 @@ +--- ./Makefile.in.orig 2012-07-12 21:36:45.000000000 +0300 ++++ ./Makefile.in 2015-10-19 16:40:03.591982000 +0200 +@@ -783,7 +783,7 @@ + + info-am: + +-install-data-am: install-docDATA install-pkgconfigDATA ++install-data-am: install-pkgconfigDATA + + install-dvi: install-dvi-recursive + diff --git a/graph/libexif/files/patch-x-po-Makevars b/graph/libexif/files/patch-x-po-Makevars new file mode 100644 index 00000000..7ea82e14 --- /dev/null +++ b/graph/libexif/files/patch-x-po-Makevars @@ -0,0 +1,11 @@ +--- ./po/Makevars.orig 2012-07-12 23:34:02.000000000 +0300 ++++ ./po/Makevars 2015-10-19 16:43:06.248931000 +0200 +@@ -1,7 +1,7 @@ + # Makefile variables for PO directory in any package using GNU gettext. + + # Usually the message domain is the same as the package name. +-DOMAIN = libexif-12 ++DOMAIN = libexif + + # These two variables depend on the location of this directory. + subdir = po diff --git a/graph/libexif/pkg-descr b/graph/libexif/pkg-descr new file mode 100644 index 00000000..968438ad --- /dev/null +++ b/graph/libexif/pkg-descr @@ -0,0 +1,7 @@ +This library allows metadata that is written to files on a digital camera to be + read. This library will be required for the gphoto2 port. + +WWW: http://sourceforge.net/projects/libexif/ + +- Peter Schmiedeskamp +pschmied@qwest.net diff --git a/graph/libexif/pkg-plist b/graph/libexif/pkg-plist new file mode 100644 index 00000000..6d91a8ff --- /dev/null +++ b/graph/libexif/pkg-plist @@ -0,0 +1,45 @@ +include/libexif/_stdint.h +include/libexif/exif-byte-order.h +include/libexif/exif-content.h +include/libexif/exif-data-type.h +include/libexif/exif-data.h +include/libexif/exif-entry.h +include/libexif/exif-format.h +include/libexif/exif-ifd.h +include/libexif/exif-loader.h +include/libexif/exif-log.h +include/libexif/exif-mem.h +include/libexif/exif-mnote-data.h +include/libexif/exif-tag.h +include/libexif/exif-utils.h +lib/libexif.a +lib/libexif.la +lib/libexif.so +lib/libexif.so.15 +lib/pkgconfig/libexif.pc +share/locale/be/LC_MESSAGES/libexif.mo +share/locale/bs/LC_MESSAGES/libexif.mo +share/locale/cs/LC_MESSAGES/libexif.mo +share/locale/da/LC_MESSAGES/libexif.mo +share/locale/de/LC_MESSAGES/libexif.mo +share/locale/en_AU/LC_MESSAGES/libexif.mo +share/locale/en_CA/LC_MESSAGES/libexif.mo +share/locale/en_GB/LC_MESSAGES/libexif.mo +share/locale/es/LC_MESSAGES/libexif.mo +share/locale/fr/LC_MESSAGES/libexif.mo +share/locale/it/LC_MESSAGES/libexif.mo +share/locale/ja/LC_MESSAGES/libexif.mo +share/locale/nl/LC_MESSAGES/libexif.mo +share/locale/pl/LC_MESSAGES/libexif.mo +share/locale/pt/LC_MESSAGES/libexif.mo +share/locale/pt_BR/LC_MESSAGES/libexif.mo +share/locale/ru/LC_MESSAGES/libexif.mo +share/locale/sk/LC_MESSAGES/libexif.mo +share/locale/sq/LC_MESSAGES/libexif.mo +share/locale/sr/LC_MESSAGES/libexif.mo +share/locale/sv/LC_MESSAGES/libexif.mo +share/locale/tr/LC_MESSAGES/libexif.mo +share/locale/uk/LC_MESSAGES/libexif.mo +share/locale/vi/LC_MESSAGES/libexif.mo +share/locale/zh_CN/LC_MESSAGES/libexif.mo +@dir include/libexif diff --git a/graph/libfreetype2/Makefile b/graph/libfreetype2/Makefile new file mode 100644 index 00000000..13caa684 --- /dev/null +++ b/graph/libfreetype2/Makefile @@ -0,0 +1,47 @@ +# Created by: jseger@FreeBSD.org +# $FreeBSD: head/print/freetype2/Makefile 435690 2017-03-08 15:26:28Z kwm $ + +PORTNAME= freetype2 +PORTVERSION= 2.7.1 +CATEGORIES= print +MASTER_SITES+= http://savannah.nongnu.org/download/freetype/ +MASTER_SITES+= SF/freetype/${PORTNAME}/${PORTVERSION:C/^([0-9]+\.[0-9]+\.[0-9]+).*/\1/}/ +MASTER_SITES+= http://sunsite.cnlab-switch.ch/ftp/mirror/freetype/freetype2/ +MASTER_SITES+= http://www.funet.fi/pub/mirrors/ftp.freetype.org/freetype2/ +MASTER_SITES+= http://ftp.sunet.se/pub/text-processing/freetype/freetype2/ +MASTER_SITES+= ftp://ftp.freetype.org/freetype/freetype2/ +DISTNAME= ${PORTNAME:S/2//}-${PORTVERSION} +PKGNAMEPREFIX= lib + +MAINTAINER= gnome@FreeBSD.org +COMMENT= Free and portable TrueType font rendering engine + +USES= gmake tar:bzip2 +MAKE_ENV= TOP="" +USE_LDCONFIG= yes +GNU_CONFIGURE= yes +CONFIGURE_ARGS= --without-harfbuzz +CONFIGURE_WRKSRC= ${WRKSRC}/builds/unix + +SUB_FILES= pkg-message + +#CFLAGS= -DFT_CONFIG_OPTION_SUBPIXEL_RENDERING + +#SUBPIXEL_HINTING_DESC= Sub-pixel hinting support +#V38_DESC= v38 mode (Infinality code) +#V38_VARS= SUBPIXEL_HINTING_MODE+=1 +#V40_DESC= v40 mode (minimal code, a.k.a. ClearType hinting, faster) +#V40_VARS= SUBPIXEL_HINTING_MODE+=2 + +.include + +post-configure: + cd ${BUILD_WRKSRC}; ${SETENV} ${MAKE_ENV} \ + ${MAKE_CMD} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} setup + +post-install: + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libfreetype.so.* + +.include +#EOF + diff --git a/graph/libfreetype2/distinfo b/graph/libfreetype2/distinfo new file mode 100644 index 00000000..edc53f7a --- /dev/null +++ b/graph/libfreetype2/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1483129043 +SHA256 (freetype-2.7.1.tar.bz2) = 3a3bb2c4e15ffb433f2032f50a5b5a92558206822e22bfe8cbe339af4aa82f88 +SIZE (freetype-2.7.1.tar.bz2) = 1825107 diff --git a/graph/libfreetype2/files/patch-builds_unix_detect.mk b/graph/libfreetype2/files/patch-builds_unix_detect.mk new file mode 100644 index 00000000..7655792f --- /dev/null +++ b/graph/libfreetype2/files/patch-builds_unix_detect.mk @@ -0,0 +1,26 @@ +--- builds/unix/detect.mk.orig 2016-02-03 18:13:58 UTC ++++ builds/unix/detect.mk +@@ -22,6 +22,9 @@ ifeq ($(PLATFORM),ansi) + $(wildcard /usr/sbin/init) \ + $(wildcard /dev/null) \ + $(wildcard /hurd/auth)) ++ # FreeBSD is "unix" so just mandate this to fix the build in ++ # jails that do not have init (see PR#113470). ++ is_unix := true + ifneq ($(is_unix),) + + PLATFORM := unix +@@ -80,10 +83,10 @@ ifeq ($(PLATFORM),unix) + ifdef must_configure + ifneq ($(have_Makefile),) + # we are building FT2 not in the src tree +- $(TOP_DIR)/builds/unix/configure $(value CFG) ++# $(TOP_DIR)/builds/unix/configure $(value CFG) + else +- cd builds/unix; \ +- ./configure $(value CFG) ++# cd builds/unix; \ ++# ./configure $(value CFG) + endif + endif + diff --git a/graph/libfreetype2/files/patch-x-builds-unix-configure b/graph/libfreetype2/files/patch-x-builds-unix-configure new file mode 100644 index 00000000..a1df6542 --- /dev/null +++ b/graph/libfreetype2/files/patch-x-builds-unix-configure @@ -0,0 +1,11 @@ +--- ./builds/unix/configure.orig 2016-12-30 22:17:23.000000000 +0200 ++++ ./builds/unix/configure 2017-05-03 15:49:57.982399000 +0200 +@@ -2495,7 +2495,7 @@ + + # Don't forget to update `docs/VERSIONS.TXT'! + +-version_info='19:0:13' ++version_info='13:0:13' + + ft_version=`echo $version_info | tr : .` + diff --git a/graph/libfreetype2/files/patch-x-builds-unix-ltmain.sh b/graph/libfreetype2/files/patch-x-builds-unix-ltmain.sh new file mode 100644 index 00000000..175114fc --- /dev/null +++ b/graph/libfreetype2/files/patch-x-builds-unix-ltmain.sh @@ -0,0 +1,36 @@ +--- ./builds/unix/ltmain.sh.orig 2016-12-30 22:17:22.000000000 +0200 ++++ ./builds/unix/ltmain.sh 2017-05-03 15:42:25.006660000 +0200 +@@ -8805,13 +8805,13 @@ + # + case $version_type in + # correct linux to gnu/linux during the next big refactor +- darwin|freebsd-elf|linux|osf|windows|none) ++ darwin|linux|osf|windows|none) + func_arith $number_major + $number_minor + current=$func_arith_result + age=$number_minor + revision=$number_revision + ;; +- freebsd-aout|qnx|sunos) ++ freebsd*|qnx|sunos) + current=$number_major + revision=$number_minor + age=0 +@@ -8891,15 +8891,9 @@ + esac + ;; + +- freebsd-aout) ++ freebsd*) + major=.$current +- versuffix=.$current.$revision +- ;; +- +- freebsd-elf) +- func_arith $current - $age +- major=.$func_arith_result +- versuffix=$major.$age.$revision ++ versuffix=.$current + ;; + + irix | nonstopux) diff --git a/graph/libfreetype2/files/patch-x-include-freetype-config-ftoption.h b/graph/libfreetype2/files/patch-x-include-freetype-config-ftoption.h new file mode 100644 index 00000000..247697bc --- /dev/null +++ b/graph/libfreetype2/files/patch-x-include-freetype-config-ftoption.h @@ -0,0 +1,11 @@ +--- ./include/freetype/config/ftoption.h.orig 2016-12-11 08:53:49.000000000 +0200 ++++ ./include/freetype/config/ftoption.h 2017-05-03 15:31:22.111100000 +0200 +@@ -122,7 +122,7 @@ + /* This is done to allow FreeType clients to run unmodified, forcing */ + /* them to display normal gray-level anti-aliased glyphs. */ + /* */ +-/* #define FT_CONFIG_OPTION_SUBPIXEL_RENDERING */ ++/* #define FT_CONFIG_OPTION_SUBPIXEL_RENDERING */ + + + /*************************************************************************/ diff --git a/graph/libfreetype2/files/pkg-message.in b/graph/libfreetype2/files/pkg-message.in new file mode 100644 index 00000000..e4d90779 --- /dev/null +++ b/graph/libfreetype2/files/pkg-message.in @@ -0,0 +1,19 @@ +The 2.7.x series now uses the new subpixel hinting mode (V40 port's option) as +the default, emulating a modern version of ClearType. This change inevitably +leads to different rendering results, and you might change port's options to +adapt it to your taste (or use the new "FREETYPE_PROPERTIES" environment +variable). + +The environment variable "FREETYPE_PROPERTIES" can be used to control the +driver properties. Example: + +FREETYPE_PROPERTIES=truetype:interpreter-version=35 \ + cff:no-stem-darkening=1 \ + autofitter:warping=1 + +This allows to select, say, the subpixel hinting mode at runtime for a given +application. + +The controllable properties are listed in the section "Controlling FreeType +Modules" in the reference's table of contents +(%%DOCSDIR%%/reference/ft2-toc.html, if documentation was installed). diff --git a/graph/libfreetype2/pkg-descr b/graph/libfreetype2/pkg-descr new file mode 100644 index 00000000..fece4e3c --- /dev/null +++ b/graph/libfreetype2/pkg-descr @@ -0,0 +1,25 @@ +FreeType is a freely available software library to render fonts. + +It is written in C, designed to be small, efficient, highly customizable, and portable while capable of producing high-quality output (glyph images) of most vector and bitmap font formats. + +Some products that use FreeType for rendering fonts on screen or on paper, either exclusively or partially: + +--- +The FreeType engine is a free and portable font rendering +engine, developed to provide advanced font support for a variety of +platforms and environments. FreeType is a library which can open and +manages font files as well as efficiently load, hint and render +individual glyphs. FreeType is not a font server or a complete +text-rendering library. + +---- +This includes some tools that are in FreeType 1's contrib directory. + +ttf2pfb: Converting TrueType fonts to the Postscript Type 1 format. +ttf2pk: A simple conversion tool to bring TrueType quality to the + TeX world. +ttf2bdf: Produce bitmapped fonts from TrueType files for your X11 + applications. +ttfbanner: make posters using a TrueType font + +WWW: http://www.freetype.org/ diff --git a/graph/libfreetype2/pkg-plist b/graph/libfreetype2/pkg-plist new file mode 100644 index 00000000..92f293e2 --- /dev/null +++ b/graph/libfreetype2/pkg-plist @@ -0,0 +1,62 @@ +bin/freetype-config +include/freetype2/freetype/config/ftconfig.h +include/freetype2/freetype/config/ftheader.h +include/freetype2/freetype/config/ftmodule.h +include/freetype2/freetype/config/ftoption.h +include/freetype2/freetype/config/ftstdlib.h +include/freetype2/freetype/freetype.h +include/freetype2/freetype/ftadvanc.h +include/freetype2/freetype/ftautoh.h +include/freetype2/freetype/ftbbox.h +include/freetype2/freetype/ftbdf.h +include/freetype2/freetype/ftbitmap.h +include/freetype2/freetype/ftbzip2.h +include/freetype2/freetype/ftcache.h +include/freetype2/freetype/ftcffdrv.h +include/freetype2/freetype/ftchapters.h +include/freetype2/freetype/ftcid.h +include/freetype2/freetype/fterrdef.h +include/freetype2/freetype/fterrors.h +include/freetype2/freetype/ftfntfmt.h +include/freetype2/freetype/ftgasp.h +include/freetype2/freetype/ftglyph.h +include/freetype2/freetype/ftgxval.h +include/freetype2/freetype/ftgzip.h +include/freetype2/freetype/ftimage.h +include/freetype2/freetype/ftincrem.h +include/freetype2/freetype/ftlcdfil.h +include/freetype2/freetype/ftlist.h +include/freetype2/freetype/ftlzw.h +include/freetype2/freetype/ftmac.h +include/freetype2/freetype/ftmm.h +include/freetype2/freetype/ftmodapi.h +include/freetype2/freetype/ftmoderr.h +include/freetype2/freetype/ftotval.h +include/freetype2/freetype/ftoutln.h +include/freetype2/freetype/ftpfr.h +include/freetype2/freetype/ftrender.h +include/freetype2/freetype/ftsizes.h +include/freetype2/freetype/ftsnames.h +include/freetype2/freetype/ftstroke.h +include/freetype2/freetype/ftsynth.h +include/freetype2/freetype/ftsystem.h +include/freetype2/freetype/fttrigon.h +include/freetype2/freetype/ftttdrv.h +include/freetype2/freetype/fttypes.h +include/freetype2/freetype/ftwinfnt.h +include/freetype2/freetype/t1tables.h +include/freetype2/freetype/ttnameid.h +include/freetype2/freetype/tttables.h +include/freetype2/freetype/tttags.h +include/freetype2/freetype/ttunpat.h +include/freetype2/ft2build.h +lib/libfreetype.a +lib/libfreetype.la +lib/libfreetype.so +lib/libfreetype.so.13 +lib/pkgconfig/freetype2.pc +man/man1/freetype-config.1.gz +share/aclocal/freetype2.m4 +@dir include/freetype2/freetype/config +@dir include/freetype2/freetype +@dir include/freetype2 diff --git a/graph/libgd/Makefile b/graph/libgd/Makefile new file mode 100644 index 00000000..f9657c0e --- /dev/null +++ b/graph/libgd/Makefile @@ -0,0 +1,55 @@ +# +# $Id$ +# +PORTNAME= libgd +PORTVERSION= 2.2.4 +CATEGORIES+= graphics +MASTER_SITES+= https://bitbucket.org/libgd/gd-libgd/downloads/ +MASTER_SITES+= http://cdn.bitbucket.org/libgd/gd-libgd/downloads/ + +MAINTAINER= onborodin@gmail.com +COMMENT?= Graphics library for fast creation of images + +LIB_DEPENDS+= libintl.so:devel/gettext +LIB_DEPENDS+= libfreetype.so:graph/libfreetype2 +LIB_DEPENDS+= libjpeg.so:graph/libjpeg +LIB_DEPENDS+= libpng.so:graph/libpng +LIB_DEPENDS+= libtiff.so:graph/libtiff +LIB_DEPENDS+= libexpat.so:text/libexpat +LIB_DEPENDS+= libiconv.so:text/libiconv +LIB_DEPENDS+= libfontconfig.so:x11/libfontconfig + +LIB_DEPENDS+= libXpm.so:x11/libXpm +LIB_DEPENDS+= libjpeg.so:graph/libjpeg +LIB_DEPENDS+= libpng.so:graph/libpng +LIB_DEPENDS+= libvpx.so:media/libvpx +LIB_DEPENDS+= libfreetype.so:graph/libfreetype2 +LIB_DEPENDS+= libwebp.so:graph/libwebp + + +USES+= gmake tar:xz +#USES+= perl5 +#USE_PERL5= build + +#SHEBANG_FILES= ${WRKSRC}/src/bdftogd +GNU_CONFIGURE= yes +USE_LDCONFIG= yes +LDFLAGS+= -L${LOCALBASE}/lib +CONFIGURE_ARGS+= --with-vpx=${LOCALBASE} +CONFIGURE_ARGS+= --with-x=${LOCALBASE} +CONFIGURE_ARGS+= --with-fontconfig=${LOCALBASE} +CONFIGURE_ARGS+= --with-xpm=${LOCALBASE} +#CONFIGURE_ARGS+= --without-xpm +CONFIGURE_ARGS+= --with-tiff=${LOCALBASE} + +pre-configure: + ${REINPLACE_CMD} \ + -e 's|^GDLIB_LT_CURRENT=3|GDLIB_LT_CURRENT=5|' \ + ${WRKSRC}/configure + +post-install: + ${INSTALL_DATA} ${WRKSRC}/src/gdhelpers.h ${STAGEDIR}${PREFIX}/include/ + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libgd.so.* + +.include +#EOF diff --git a/graph/libgd/distinfo b/graph/libgd/distinfo new file mode 100644 index 00000000..c4c0e058 --- /dev/null +++ b/graph/libgd/distinfo @@ -0,0 +1,2 @@ +SHA256 (libgd-2.2.4.tar.xz) = 137f13a7eb93ce72e32ccd7cebdab6874f8cf7ddf31d3a455a68e016ecd9e4e6 +SIZE (libgd-2.2.4.tar.xz) = 2478528 diff --git a/graph/libgd/files/makefonts b/graph/libgd/files/makefonts new file mode 100644 index 00000000..dfab2383 --- /dev/null +++ b/graph/libgd/files/makefonts @@ -0,0 +1,31 @@ +#!/bin/sh +# $FreeBSD: head/graphics/gd/files/makefonts 340872 2014-01-24 00:14:07Z mat $ + +target="${1}" +shift +tarball="${1}" +shift +fonts="Tiny Small MediumBold Large Giant" +case "${target}" in +extract) + tar -xvzpf "${tarball}" $@ + ;; +configure) + for font in ${fonts} + do + f=`echo "${font}" | tr -d [[:lower:]] | tr [[:upper:]] [[:lower:]]` + mv -v "gdfont${f}.c" "gdfont${f}.c.dist" + mv -v "gdfont${f}.h" "gdfont${f}.h.dist" + done + ;; +build) + set -x + for font in ${fonts} + do + f=`echo "${font}" | tr -d [[:lower:]] | tr [[:upper:]] [[:lower:]]` + perl ./bdftogd "gdFont${font}" "font${f}" < "${1}" + shift + done + ;; +esac +# eof diff --git a/graph/libgd/files/patch-bdftogd b/graph/libgd/files/patch-bdftogd new file mode 100644 index 00000000..450d1a04 --- /dev/null +++ b/graph/libgd/files/patch-bdftogd @@ -0,0 +1,68 @@ +--- src/bdftogd.orig 2017-01-29 09:45:57 UTC ++++ src/bdftogd +@@ -24,6 +24,9 @@ $gdname = 'gd' . $gdname unless $gdname + my $filename = shift; + $filename = 'gd' . $filename unless $filename =~ /^gd/i; + ++my $gdfunc = $gdname; ++$gdfunc =~ s/(.*Font)(.*)/$1Get$2/; ++ + if (-f "$filename.c") { die "File $filename.c already exists, won't overwrite\n"; } + if (-f "$filename.h") { die "File $filename.h already exists, won't overwrite\n"; } + +@@ -139,6 +142,10 @@ print FILEC <<"EOF"; + + $info + ++#ifdef HAVE_CONFIG_H ++#include "config.h" ++#endif ++ + #include "$filename.h" + + char ${gdname}Data[] = { +@@ -177,28 +184,40 @@ gdFont ${gdname}Rep = { + ${gdname}Data + }; + +-gdFontPtr ${gdname} = &${gdname}Rep; ++BGD_EXPORT_DATA_PROT gdFontPtr ${gdname} = &${gdname}Rep; + +-/* This file has not been truncated. */ ++BGD_DECLARE(gdFontPtr) ++$gdfunc (void) ++{ ++ return $gdname; ++} + ++/* This file has not been truncated. */ + EOF + + + close FILEC; + + print FILEH <<"EOF"; +- + #ifndef $capdef + #define $capdef 1 + ++#ifdef __cplusplus ++extern "C" { ++#endif ++ + $info + + #include "gd.h" + +-extern gdFontPtr $gdname; ++extern BGD_EXPORT_DATA_PROT gdFontPtr $gdname; ++BGD_DECLARE(gdFontPtr) $gdfunc(void); + ++#ifdef __cplusplus ++} + #endif + ++#endif + EOF + + 1; diff --git a/graph/libgd/files/patch-gd_png.c b/graph/libgd/files/patch-gd_png.c new file mode 100644 index 00000000..ac3565d8 --- /dev/null +++ b/graph/libgd/files/patch-gd_png.c @@ -0,0 +1,17 @@ +--- src/gd_png.c.orig 2016-10-12 08:13:44 UTC ++++ src/gd_png.c +@@ -277,6 +277,14 @@ BGD_DECLARE(gdImagePtr) gdImageCreateFro + png_read_info (png_ptr, info_ptr); /* read all PNG info up to image data */ + + png_get_IHDR (png_ptr, info_ptr, &width, &height, &bit_depth, &color_type, &interlace_type, NULL, NULL); ++ ++ if (overflow2(sizeof (int), width)) { ++ return NULL; ++ } ++ if (overflow2(sizeof (int) * width, height)) { ++ return NULL; ++ } ++ + if ((color_type == PNG_COLOR_TYPE_RGB) || (color_type == PNG_COLOR_TYPE_RGB_ALPHA) + || color_type == PNG_COLOR_TYPE_GRAY_ALPHA) { + im = gdImageCreateTrueColor ((int) width, (int) height); diff --git a/graph/libgd/files/patch-gdtest.c b/graph/libgd/files/patch-gdtest.c new file mode 100644 index 00000000..f2c9a0ff --- /dev/null +++ b/graph/libgd/files/patch-gdtest.c @@ -0,0 +1,58 @@ +--- src/gdtest.c.orig 2015-09-16 11:34:29 UTC ++++ src/gdtest.c +@@ -35,6 +35,8 @@ main (int argc, char **argv) + gdSink imgsnk; + int foreground; + int i; ++ gdIOCtx *ctx; ++ + if (argc != 2) { + fprintf(stderr, "Usage: gdtest filename.png\n"); + exit (1); +@@ -63,6 +65,35 @@ main (int argc, char **argv) + + CompareImages ("Initial Versions", ref, im); + ++ /* */ ++ /* Send to GIF File then Ptr */ ++ /* */ ++ sprintf(of, "%s.gif", argv[1]); ++ out = fopen(of, "wb"); ++ gdImageGif(im, out); ++ fclose(out); ++ ++ in = fopen(of, "rb"); ++ if (!in) { ++ fprintf(stderr, "GIF Output file does not exist!\n"); ++ exit(1); ++ } ++ im2 = gdImageCreateFromGif(in); ++ fclose(in); ++ ++ CompareImages("GD->GIF File->GD", ref, im2); ++ ++ unlink(of); ++ gdImageDestroy(im2); ++ ++ iptr = gdImageGifPtr(im,&sz); ++ ctx = gdNewDynamicCtx(sz,iptr); ++ im2 = gdImageCreateFromGifCtx(ctx); ++ ++ CompareImages("GD->GIF ptr->GD", ref, im2); ++ ++ gdImageDestroy(im2); ++ ctx->gd_free(ctx); + + /* */ + /* Send to PNG File then Ptr */ +@@ -334,6 +365,10 @@ main (int argc, char **argv) + printf ("[Merged Image has %d colours]\n", im2->colorsTotal); + CompareImages ("Merged (gdtest.png, gdtest_merge.png)", im2, im3); + ++ out = fopen ("test/gdtest_merge_out.png", "wb"); ++ gdImagePng(im2, out); ++ fclose(out); ++ + gdImageDestroy (im2); + gdImageDestroy (im3); + diff --git a/graph/libgd/files/patch-x-config-ltmain.sh b/graph/libgd/files/patch-x-config-ltmain.sh new file mode 100644 index 00000000..0c7f2fe8 --- /dev/null +++ b/graph/libgd/files/patch-x-config-ltmain.sh @@ -0,0 +1,36 @@ +--- ./config/ltmain.sh.orig 2017-01-18 13:02:29.000000000 +0200 ++++ ./config/ltmain.sh 2017-05-12 14:41:31.941190000 +0200 +@@ -8811,13 +8811,13 @@ + # + case $version_type in + # correct linux to gnu/linux during the next big refactor +- darwin|freebsd-elf|linux|osf|windows|none) ++ darwin|linux|osf|windows|none) + func_arith $number_major + $number_minor + current=$func_arith_result + age=$number_minor + revision=$number_revision + ;; +- freebsd-aout|qnx|sunos) ++ freebsd*|qnx|sunos) + current=$number_major + revision=$number_minor + age=0 +@@ -8900,15 +8900,9 @@ + esac + ;; + +- freebsd-aout) ++ freebsd*) + major=.$current +- versuffix=.$current.$revision +- ;; +- +- freebsd-elf) +- func_arith $current - $age +- major=.$func_arith_result +- versuffix=$major.$age.$revision ++ versuffix=.$current + ;; + + irix | nonstopux) diff --git a/graph/libgd/pkg-descr b/graph/libgd/pkg-descr new file mode 100644 index 00000000..255c0486 --- /dev/null +++ b/graph/libgd/pkg-descr @@ -0,0 +1,13 @@ +gd is a graphics library. It allows your code to quickly draw images +complete with lines, arcs, text, multiple colors, cut and paste from +other images, and flood fills, and write out the result as a PNG, GIF +or JPEG file. This is particularly useful in World Wide Web applications, +where PNG, GIF and JPEG are three of the formats accepted for inline +images by most browsers. + +gd does not provide for every possible desirable graphics operation, +but version 2.0 does include most frequently requested features, +including both truecolor and palette images, resampling (smooth +resizing of truecolor images) and so forth. + +WWW: http://www.libgd.org/ diff --git a/graph/libgd/pkg-plist b/graph/libgd/pkg-plist new file mode 100644 index 00000000..4fca190f --- /dev/null +++ b/graph/libgd/pkg-plist @@ -0,0 +1,32 @@ +bin/annotate +bin/bdftogd +bin/gd2copypal +bin/gd2togif +bin/gd2topng +bin/gdcmpgif +bin/gdlib-config +bin/gdparttopng +bin/gdtopng +bin/giftogd2 +bin/pngtogd +bin/pngtogd2 +bin/webpng +include/entities.h +include/gd_color_map.h +include/gd_errors.h +include/gd_io.h +include/gd.h +include/gdcache.h +include/gdfontg.h +include/gdfontl.h +include/gdfontmb.h +include/gdfonts.h +include/gdfontt.h +include/gdfx.h +include/gdhelpers.h +include/gdpp.h +lib/libgd.a +lib/libgd.la +lib/libgd.so +lib/libgd.so.5 +lib/pkgconfig/gdlib.pc diff --git a/graph/libgif/Makefile b/graph/libgif/Makefile new file mode 100644 index 00000000..711ae316 --- /dev/null +++ b/graph/libgif/Makefile @@ -0,0 +1,66 @@ +# +# $Id: Makefile 2442 2009-09-14 21:30:05Z root $ +# +PORTNAME= gif +PORTVERSION= 4.2.3 +CATEGORIES= graphics +MASTER_SITES= SF/${PORTNAME}lib/${PORTNAME}lib-4.x +PKGNAMEPREFIX= lib + +DISTNAME= ${PORTNAME}lib-${PORTVERSION} + +MAINTAINER= onborodin@gmail.com +COMMENT= Tools and library routines for working with GIF images + +GNU_CONFIGURE= yes +USES+= gmake +USES+= perl5 +CONFIGURE_ARGS= # +CONFIGURE_ARGS+= --enable-shared +CONFIGURE_ARGS+= --with-x=no +INSTALLS_SHLIB= yes + +MAN_PLIST_FILES+= man/man1/gif2rgb.1.gz +MAN_PLIST_FILES+= man/man1/gifasm.1.gz +MAN_PLIST_FILES+= man/man1/gifbg.1.gz +MAN_PLIST_FILES+= man/man1/gifclip.1.gz +MAN_PLIST_FILES+= man/man1/gifclrmp.1.gz +MAN_PLIST_FILES+= man/man1/gifcolor.1.gz +MAN_PLIST_FILES+= man/man1/gifcomb.1.gz +MAN_PLIST_FILES+= man/man1/gifcompose.1.gz +MAN_PLIST_FILES+= man/man1/giffiltr.1.gz +MAN_PLIST_FILES+= man/man1/giffix.1.gz +MAN_PLIST_FILES+= man/man1/gifflip.1.gz +MAN_PLIST_FILES+= man/man1/gifhisto.1.gz +MAN_PLIST_FILES+= man/man1/gifinter.1.gz +MAN_PLIST_FILES+= man/man1/gifinto.1.gz +MAN_PLIST_FILES+= man/man1/gifovly.1.gz +MAN_PLIST_FILES+= man/man1/gifpos.1.gz +MAN_PLIST_FILES+= man/man1/gifrotat.1.gz +MAN_PLIST_FILES+= man/man1/gifrsize.1.gz +MAN_PLIST_FILES+= man/man1/gifspnge.1.gz +MAN_PLIST_FILES+= man/man1/giftext.1.gz +MAN_PLIST_FILES+= man/man1/gifwedge.1.gz +MAN_PLIST_FILES+= man/man1/icon2gif.1.gz +MAN_PLIST_FILES+= man/man1/raw2gif.1.gz +MAN_PLIST_FILES+= man/man1/rgb2gif.1.gz +MAN_PLIST_FILES+= man/man1/text2gif.1.gz + +PLIST_FILES+= ${MAN_PLIST_FILES} + + +post-extract: + ${PERL} -pi -e "s|/bin/perl|${LOCALBASE}/bin/perl|" \ + ${WRKSRC}/util/gifburst + +post-patch: + ${CP} ${FILESDIR}/quantize.c ${WRKSRC}/lib/ + +post-install: + ${MKDIR} -p ${STAGEDIR}/${PREFIX}/man/man1 +.for MAN in ${MAN_PLIST_FILES} + ${INSTALL_DATA} ${WRKSRC}/doc/$$(basename ${MAN} .gz) ${STAGEDIR}/${PREFIX}/man/man1 +.endfor + +.include +#EOF diff --git a/graph/libgif/distinfo b/graph/libgif/distinfo new file mode 100644 index 00000000..811df95b --- /dev/null +++ b/graph/libgif/distinfo @@ -0,0 +1,2 @@ +SHA256 (giflib-4.2.3.tar.gz) = 4d220d51c9024563da013b90a419244f9a6d87c42aa00fea450cde128214743b +SIZE (giflib-4.2.3.tar.gz) = 655806 diff --git a/graph/libgif/files/patch-x-doc-Makefile.in b/graph/libgif/files/patch-x-doc-Makefile.in new file mode 100644 index 00000000..82ca790f --- /dev/null +++ b/graph/libgif/files/patch-x-doc-Makefile.in @@ -0,0 +1,26 @@ +--- ./doc/Makefile.in.orig 2013-09-03 16:47:52.000000000 +0300 ++++ ./doc/Makefile.in 2014-12-27 22:19:54.000000000 +0200 +@@ -400,16 +400,16 @@ + uninstall uninstall-am + + +-.xml.html: +- xmlto xhtml-nochunks $< ++#.xml.html: ++# xmlto xhtml-nochunks $< + +-.xml.1: +- xmlto man $< ++#.xml.1: ++# xmlto man $< + +-.xml.txt: +- xmlto txt $< ++#.xml.txt: ++# xmlto txt $< + +-all: allhtml manpages ++all: manpages + + allhtml: $(XMLALL:.xml=.html) + diff --git a/graph/libgif/files/patch-x-lib-Makefile.in b/graph/libgif/files/patch-x-lib-Makefile.in new file mode 100644 index 00000000..8c1d4a4b --- /dev/null +++ b/graph/libgif/files/patch-x-lib-Makefile.in @@ -0,0 +1,27 @@ +--- ./lib/Makefile.in.orig 2013-09-03 16:47:52.000000000 +0300 ++++ ./lib/Makefile.in 2014-12-27 22:16:49.000000000 +0200 +@@ -94,7 +94,7 @@ + LTLIBRARIES = $(lib_LTLIBRARIES) + libgif_la_DEPENDENCIES = + am_libgif_la_OBJECTS = dgif_lib.lo egif_lib.lo gif_font.lo gif_hash.lo \ +- gifalloc.lo gif_err.lo ++ gifalloc.lo gif_err.lo quantize.lo + libgif_la_OBJECTS = $(am_libgif_la_OBJECTS) + libgif_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ +@@ -256,6 +256,7 @@ + gif_hash.h \ + gifalloc.c \ + gif_err.c \ ++ quantize.c \ + gif_lib_private.h + + libgif_la_LDFLAGS = -no-undefined -version-info @SHLIBVERSION@ +@@ -342,6 +343,7 @@ + @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gif_font.Plo@am__quote@ + @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gif_hash.Plo@am__quote@ + @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gifalloc.Plo@am__quote@ ++@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/quantize.Plo@am__quote@ + + .c.o: + @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< diff --git a/graph/libgif/files/patch-x-lib-gif_hash.c b/graph/libgif/files/patch-x-lib-gif_hash.c new file mode 100644 index 00000000..94ce7239 --- /dev/null +++ b/graph/libgif/files/patch-x-lib-gif_hash.c @@ -0,0 +1,10 @@ +--- ./lib/gif_hash.c.orig 2013-09-03 16:41:31.000000000 +0300 ++++ ./lib/gif_hash.c 2014-12-27 22:16:49.000000000 +0200 +@@ -21,6 +21,7 @@ + #include + #include + #include ++#include + + #include "gif_lib.h" + #include "gif_hash.h" diff --git a/graph/libgif/files/patch-x-lib-gif_lib.h b/graph/libgif/files/patch-x-lib-gif_lib.h new file mode 100644 index 00000000..4b205712 --- /dev/null +++ b/graph/libgif/files/patch-x-lib-gif_lib.h @@ -0,0 +1,18 @@ +--- ./lib/gif_lib.h.orig 2013-09-03 16:46:28.000000000 +0300 ++++ ./lib/gif_lib.h 2014-12-27 22:16:49.000000000 +0200 +@@ -180,6 +180,15 @@ + #define D_GIF_ERR_IMAGE_DEFECT 112 + #define D_GIF_ERR_EOF_TOO_SOON 113 + ++/****************************************************************************** ++ * O.K., here are the routines from GIF_LIB file QUANTIZE.C. ++******************************************************************************/ ++int QuantizeBuffer(unsigned int Width, unsigned int Height, ++ int *ColorMapSize, GifByteType * RedInput, ++ GifByteType * GreenInput, GifByteType * BlueInput, ++ GifByteType * OutputBuffer, ++ GifColorType * OutputColorMap); ++ + /* These are legacy. You probably do not want to call them directly */ + int DGifGetScreenDesc(GifFileType * GifFile); + int DGifGetRecordType(GifFileType * GifFile, GifRecordType * GifType); diff --git a/graph/libgif/files/patch-x-util-rgb2gif.c b/graph/libgif/files/patch-x-util-rgb2gif.c new file mode 100644 index 00000000..eb9bb257 --- /dev/null +++ b/graph/libgif/files/patch-x-util-rgb2gif.c @@ -0,0 +1,20 @@ +--- ./util/rgb2gif.c.orig 2013-09-03 16:41:31.000000000 +0300 ++++ ./util/rgb2gif.c 2014-12-27 22:16:49.000000000 +0200 +@@ -129,7 +129,7 @@ + * This function returns GIF_OK if succesfull, GIF_ERROR otherwise. + ******************************************************************************/ + static int +-QuantizeBuffer(unsigned int Width, ++GifQuantizeBuffer(unsigned int Width, + unsigned int Height, + int *ColorMapSize, + GifByteType * RedInput, +@@ -428,7 +428,7 @@ + sizeof(GifByteType))) == NULL) + GIF_EXIT("Failed to allocate memory required, aborted."); + +- if (QuantizeBuffer(Width, Height, &ColorMapSize, ++ if (GifQuantizeBuffer(Width, Height, &ColorMapSize, + RedBuffer, GreenBuffer, BlueBuffer, + OutputBuffer, OutputColorMap->Colors) == GIF_ERROR) + QuitGifError(NULL); diff --git a/graph/libgif/files/quantize.c b/graph/libgif/files/quantize.c new file mode 100644 index 00000000..fdcfe36e --- /dev/null +++ b/graph/libgif/files/quantize.c @@ -0,0 +1,332 @@ +/***************************************************************************** + * "Gif-Lib" - Yet another gif library. + * + * Written by: Gershon Elber IBM PC Ver 0.1, Jun. 1989 + ****************************************************************************** + * Module to quatize high resolution image into lower one. You may want to + * peek into the following article this code is based on: + * "Color Image Quantization for frame buffer Display", by Paul Heckbert + * SIGGRAPH 1982 page 297-307. + ****************************************************************************** + * History: + * 5 Jan 90 - Version 1.0 by Gershon Elber. + *****************************************************************************/ + +#ifdef HAVE_CONFIG_H +#include +#endif + +#ifdef __MSDOS__ +#include +#include +#include +#endif /* __MSDOS__ */ + +#include +#include +#include "gif_lib.h" +#include "gif_lib_private.h" + +#define ABS(x) ((x) > 0 ? (x) : (-(x))) + +#define PROGRAM_NAME "giflib" + +/* The colors are stripped to 5 bits per primary color if non MSDOS system + * or to 4 (not enough memory...) if MSDOS as first step. + */ +#ifdef __MSDOS__ +#define COLOR_ARRAY_SIZE 4096 +#define BITS_PER_PRIM_COLOR 4 +#define MAX_PRIM_COLOR 0x0f +#else +#define COLOR_ARRAY_SIZE 32768 +#define BITS_PER_PRIM_COLOR 5 +#define MAX_PRIM_COLOR 0x1f +#endif /* __MSDOS__ */ + +static int SortRGBAxis; + +typedef struct QuantizedColorType { + GifByteType RGB[3]; + GifByteType NewColorIndex; + long Count; + struct QuantizedColorType *Pnext; +} QuantizedColorType; + +typedef struct NewColorMapType { + GifByteType RGBMin[3], RGBWidth[3]; + unsigned int NumEntries; /* # of QuantizedColorType in linked list below */ + unsigned long Count; /* Total number of pixels in all the entries */ + QuantizedColorType *QuantizedColors; +} NewColorMapType; + +static int SubdivColorMap(NewColorMapType * NewColorSubdiv, + unsigned int ColorMapSize, + unsigned int *NewColorMapSize); +static int SortCmpRtn(const VoidPtr Entry1, const VoidPtr Entry2); + +/****************************************************************************** + * Quantize high resolution image into lower one. Input image consists of a + * 2D array for each of the RGB colors with size Width by Height. There is no + * Color map for the input. Output is a quantized image with 2D array of + * indexes into the output color map. + * Note input image can be 24 bits at the most (8 for red/green/blue) and + * the output has 256 colors at the most (256 entries in the color map.). + * ColorMapSize specifies size of color map up to 256 and will be updated to + * real size before returning. + * Also non of the parameter are allocated by this routine. + * This function returns GIF_OK if succesfull, GIF_ERROR otherwise. + ******************************************************************************/ +int +QuantizeBuffer(unsigned int Width, + unsigned int Height, + int *ColorMapSize, + GifByteType * RedInput, + GifByteType * GreenInput, + GifByteType * BlueInput, + GifByteType * OutputBuffer, + GifColorType * OutputColorMap) { + + unsigned int Index, NumOfEntries; + int i, j, MaxRGBError[3]; + unsigned int NewColorMapSize; + long Red, Green, Blue; + NewColorMapType NewColorSubdiv[256]; + QuantizedColorType *ColorArrayEntries, *QuantizedColor; + + ColorArrayEntries = (QuantizedColorType *)malloc( + sizeof(QuantizedColorType) * COLOR_ARRAY_SIZE); + if (ColorArrayEntries == NULL) { + _GifError = E_GIF_ERR_NOT_ENOUGH_MEM; + return GIF_ERROR; + } + + for (i = 0; i < COLOR_ARRAY_SIZE; i++) { + ColorArrayEntries[i].RGB[0] = i >> (2 * BITS_PER_PRIM_COLOR); + ColorArrayEntries[i].RGB[1] = (i >> BITS_PER_PRIM_COLOR) & + MAX_PRIM_COLOR; + ColorArrayEntries[i].RGB[2] = i & MAX_PRIM_COLOR; + ColorArrayEntries[i].Count = 0; + } + + /* Sample the colors and their distribution: */ + for (i = 0; i < (int)(Width * Height); i++) { + Index = ((RedInput[i] >> (8 - BITS_PER_PRIM_COLOR)) << + (2 * BITS_PER_PRIM_COLOR)) + + ((GreenInput[i] >> (8 - BITS_PER_PRIM_COLOR)) << + BITS_PER_PRIM_COLOR) + + (BlueInput[i] >> (8 - BITS_PER_PRIM_COLOR)); + ColorArrayEntries[Index].Count++; + } + + /* Put all the colors in the first entry of the color map, and call the + * recursive subdivision process. */ + for (i = 0; i < 256; i++) { + NewColorSubdiv[i].QuantizedColors = NULL; + NewColorSubdiv[i].Count = NewColorSubdiv[i].NumEntries = 0; + for (j = 0; j < 3; j++) { + NewColorSubdiv[i].RGBMin[j] = 0; + NewColorSubdiv[i].RGBWidth[j] = 255; + } + } + + /* Find the non empty entries in the color table and chain them: */ + for (i = 0; i < COLOR_ARRAY_SIZE; i++) + if (ColorArrayEntries[i].Count > 0) + break; + QuantizedColor = NewColorSubdiv[0].QuantizedColors = &ColorArrayEntries[i]; + NumOfEntries = 1; + while (++i < COLOR_ARRAY_SIZE) + if (ColorArrayEntries[i].Count > 0) { + QuantizedColor->Pnext = &ColorArrayEntries[i]; + QuantizedColor = &ColorArrayEntries[i]; + NumOfEntries++; + } + QuantizedColor->Pnext = NULL; + + NewColorSubdiv[0].NumEntries = NumOfEntries; /* Different sampled colors */ + NewColorSubdiv[0].Count = ((long)Width) * Height; /* Pixels */ + NewColorMapSize = 1; + if (SubdivColorMap(NewColorSubdiv, *ColorMapSize, &NewColorMapSize) != + GIF_OK) { + free((char *)ColorArrayEntries); + return GIF_ERROR; + } + if (NewColorMapSize < *ColorMapSize) { + /* And clear rest of color map: */ + for (i = NewColorMapSize; i < *ColorMapSize; i++) + OutputColorMap[i].Red = OutputColorMap[i].Green = + OutputColorMap[i].Blue = 0; + } + + /* Average the colors in each entry to be the color to be used in the + * output color map, and plug it into the output color map itself. */ + for (i = 0; i < NewColorMapSize; i++) { + if ((j = NewColorSubdiv[i].NumEntries) > 0) { + QuantizedColor = NewColorSubdiv[i].QuantizedColors; + Red = Green = Blue = 0; + while (QuantizedColor) { + QuantizedColor->NewColorIndex = i; + Red += QuantizedColor->RGB[0]; + Green += QuantizedColor->RGB[1]; + Blue += QuantizedColor->RGB[2]; + QuantizedColor = QuantizedColor->Pnext; + } + OutputColorMap[i].Red = (Red << (8 - BITS_PER_PRIM_COLOR)) / j; + OutputColorMap[i].Green = (Green << (8 - BITS_PER_PRIM_COLOR)) / j; + OutputColorMap[i].Blue = (Blue << (8 - BITS_PER_PRIM_COLOR)) / j; + } else + fprintf(stderr, + "\n%s: Null entry in quantized color map - that's weird.\n", + PROGRAM_NAME); + } + + /* Finally scan the input buffer again and put the mapped index in the + * output buffer. */ + MaxRGBError[0] = MaxRGBError[1] = MaxRGBError[2] = 0; + for (i = 0; i < (int)(Width * Height); i++) { + Index = ((RedInput[i] >> (8 - BITS_PER_PRIM_COLOR)) << + (2 * BITS_PER_PRIM_COLOR)) + + ((GreenInput[i] >> (8 - BITS_PER_PRIM_COLOR)) << + BITS_PER_PRIM_COLOR) + + (BlueInput[i] >> (8 - BITS_PER_PRIM_COLOR)); + Index = ColorArrayEntries[Index].NewColorIndex; + OutputBuffer[i] = Index; + if (MaxRGBError[0] < ABS(OutputColorMap[Index].Red - RedInput[i])) + MaxRGBError[0] = ABS(OutputColorMap[Index].Red - RedInput[i]); + if (MaxRGBError[1] < ABS(OutputColorMap[Index].Green - GreenInput[i])) + MaxRGBError[1] = ABS(OutputColorMap[Index].Green - GreenInput[i]); + if (MaxRGBError[2] < ABS(OutputColorMap[Index].Blue - BlueInput[i])) + MaxRGBError[2] = ABS(OutputColorMap[Index].Blue - BlueInput[i]); + } + +#ifdef DEBUG + fprintf(stderr, + "Quantization L(0) errors: Red = %d, Green = %d, Blue = %d.\n", + MaxRGBError[0], MaxRGBError[1], MaxRGBError[2]); +#endif /* DEBUG */ + + free((char *)ColorArrayEntries); + + *ColorMapSize = NewColorMapSize; + + return GIF_OK; +} + +/****************************************************************************** + * Routine to subdivide the RGB space recursively using median cut in each + * axes alternatingly until ColorMapSize different cubes exists. + * The biggest cube in one dimension is subdivide unless it has only one entry. + * Returns GIF_ERROR if failed, otherwise GIF_OK. + ******************************************************************************/ +static int +SubdivColorMap(NewColorMapType * NewColorSubdiv, + unsigned int ColorMapSize, + unsigned int *NewColorMapSize) { + + int MaxSize; + unsigned int i, j, Index = 0, NumEntries, MinColor, MaxColor; + long Sum, Count; + QuantizedColorType *QuantizedColor, **SortArray; + + while (ColorMapSize > *NewColorMapSize) { + /* Find candidate for subdivision: */ + MaxSize = -1; + for (i = 0; i < *NewColorMapSize; i++) { + for (j = 0; j < 3; j++) { + if ((((int)NewColorSubdiv[i].RGBWidth[j]) > MaxSize) && + (NewColorSubdiv[i].NumEntries > 1)) { + MaxSize = NewColorSubdiv[i].RGBWidth[j]; + Index = i; + SortRGBAxis = j; + } + } + } + + if (MaxSize == -1) + return GIF_OK; + + /* Split the entry Index into two along the axis SortRGBAxis: */ + + /* Sort all elements in that entry along the given axis and split at + * the median. */ + SortArray = (QuantizedColorType **)malloc( + sizeof(QuantizedColorType *) * + NewColorSubdiv[Index].NumEntries); + if (SortArray == NULL) + return GIF_ERROR; + for (j = 0, QuantizedColor = NewColorSubdiv[Index].QuantizedColors; + j < NewColorSubdiv[Index].NumEntries && QuantizedColor != NULL; + j++, QuantizedColor = QuantizedColor->Pnext) + SortArray[j] = QuantizedColor; + + qsort(SortArray, NewColorSubdiv[Index].NumEntries, + sizeof(QuantizedColorType *), SortCmpRtn); + + /* Relink the sorted list into one: */ + for (j = 0; j < NewColorSubdiv[Index].NumEntries - 1; j++) + SortArray[j]->Pnext = SortArray[j + 1]; + SortArray[NewColorSubdiv[Index].NumEntries - 1]->Pnext = NULL; + NewColorSubdiv[Index].QuantizedColors = QuantizedColor = SortArray[0]; + free((char *)SortArray); + + /* Now simply add the Counts until we have half of the Count: */ + Sum = NewColorSubdiv[Index].Count / 2 - QuantizedColor->Count; + NumEntries = 1; + Count = QuantizedColor->Count; + while ((Sum -= QuantizedColor->Pnext->Count) >= 0 && + QuantizedColor->Pnext != NULL && + QuantizedColor->Pnext->Pnext != NULL) { + QuantizedColor = QuantizedColor->Pnext; + NumEntries++; + Count += QuantizedColor->Count; + } + /* Save the values of the last color of the first half, and first + * of the second half so we can update the Bounding Boxes later. + * Also as the colors are quantized and the BBoxes are full 0..255, + * they need to be rescaled. + */ + MaxColor = QuantizedColor->RGB[SortRGBAxis]; /* Max. of first half */ + MinColor = QuantizedColor->Pnext->RGB[SortRGBAxis]; /* of second */ + MaxColor <<= (8 - BITS_PER_PRIM_COLOR); + MinColor <<= (8 - BITS_PER_PRIM_COLOR); + + /* Partition right here: */ + NewColorSubdiv[*NewColorMapSize].QuantizedColors = + QuantizedColor->Pnext; + QuantizedColor->Pnext = NULL; + NewColorSubdiv[*NewColorMapSize].Count = Count; + NewColorSubdiv[Index].Count -= Count; + NewColorSubdiv[*NewColorMapSize].NumEntries = + NewColorSubdiv[Index].NumEntries - NumEntries; + NewColorSubdiv[Index].NumEntries = NumEntries; + for (j = 0; j < 3; j++) { + NewColorSubdiv[*NewColorMapSize].RGBMin[j] = + NewColorSubdiv[Index].RGBMin[j]; + NewColorSubdiv[*NewColorMapSize].RGBWidth[j] = + NewColorSubdiv[Index].RGBWidth[j]; + } + NewColorSubdiv[*NewColorMapSize].RGBWidth[SortRGBAxis] = + NewColorSubdiv[*NewColorMapSize].RGBMin[SortRGBAxis] + + NewColorSubdiv[*NewColorMapSize].RGBWidth[SortRGBAxis] - MinColor; + NewColorSubdiv[*NewColorMapSize].RGBMin[SortRGBAxis] = MinColor; + + NewColorSubdiv[Index].RGBWidth[SortRGBAxis] = + MaxColor - NewColorSubdiv[Index].RGBMin[SortRGBAxis]; + + (*NewColorMapSize)++; + } + + return GIF_OK; +} + +/**************************************************************************** + * Routine called by qsort to compare to entries. + ****************************************************************************/ +static int +SortCmpRtn(const VoidPtr Entry1, + const VoidPtr Entry2) { + + return (*((QuantizedColorType **) Entry1))->RGB[SortRGBAxis] - + (*((QuantizedColorType **) Entry2))->RGB[SortRGBAxis]; +} diff --git a/graph/libgif/pkg-descr b/graph/libgif/pkg-descr new file mode 100644 index 00000000..94901ec2 --- /dev/null +++ b/graph/libgif/pkg-descr @@ -0,0 +1,7 @@ +GIF loading and saving shared library. (Saving uses an uncompressed gif +algorithm that does not use LZW compression.) + +See /usr/local/share/doc/libungif directory for more information +on libungif's capabilities. + +WWW: http://prtr-13.ucsc.edu/~badger/software/libungif/ diff --git a/graph/libgif/pkg-plist b/graph/libgif/pkg-plist new file mode 100644 index 00000000..0078a96d --- /dev/null +++ b/graph/libgif/pkg-plist @@ -0,0 +1,32 @@ +bin/gif2rgb +bin/gifasm +bin/gifbg +bin/gifburst +bin/gifclip +bin/gifclrmp +bin/gifcolor +bin/gifcomb +bin/gifcompose +bin/giffiltr +bin/giffix +bin/gifflip +bin/gifhisto +bin/gifinfo +bin/gifinter +bin/gifinto +bin/gifovly +bin/gifpos +bin/gifrotat +bin/gifrsize +bin/gifspnge +bin/giftext +bin/gifwedge +bin/icon2gif +bin/raw2gif +bin/rgb2gif +bin/text2gif +include/gif_lib.h +lib/libgif.a +lib/libgif.la +lib/libgif.so +lib/libgif.so.5 diff --git a/graph/libjpeg/Makefile b/graph/libjpeg/Makefile new file mode 100644 index 00000000..7959709f --- /dev/null +++ b/graph/libjpeg/Makefile @@ -0,0 +1,30 @@ +# Created by: Denis Podolskiy +# $FreeBSD: head/graphics/jpeg-turbo/Makefile 523792 2020-01-22 06:01:47Z antoine $ + +PORTNAME= jpeg +PORTVERSION= 8.${DISTVERSION} +DISTVERSION= 2.0.4 +CATEGORIES= graphics +#MASTER_SITES= SF/lib${DISTNAME}/${PORTVERSION} +DISTNAME= lib${PORTNAME}-turbo-${DISTVERSION} +PKGNAMEPREFIX= lib + + + +MAINTAINER= portmgr@FreeBSD.org +COMMENT?= SIMD-accelerated JPEG codec which replaces libjpeg + +USES= cmake gmake +USE_LDCONFIG= yes +CMAKE_ON+= WITH_JPEG8 +CMAKE_ARGS+= WITH_TURBOJPEG=ON +TEST_TARGET= test + +.include + +.if ${ARCH} == i386 || ${ARCH} == amd64 +BUILD_DEPENDS+= nasm:devel/nasm +.endif + + +.include diff --git a/graph/libjpeg/distinfo b/graph/libjpeg/distinfo new file mode 100644 index 00000000..1e9ecbbe --- /dev/null +++ b/graph/libjpeg/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1579127392 +SHA256 (libjpeg-turbo-2.0.4.tar.gz) = 33dd8547efd5543639e890efbf2ef52d5a21df81faf41bb940657af916a23406 +SIZE (libjpeg-turbo-2.0.4.tar.gz) = 2161812 diff --git a/graph/libjpeg/files/patch-x-CMakeLists.txt b/graph/libjpeg/files/patch-x-CMakeLists.txt new file mode 100644 index 00000000..d6151861 --- /dev/null +++ b/graph/libjpeg/files/patch-x-CMakeLists.txt @@ -0,0 +1,32 @@ +--- ./CMakeLists.txt.orig 2019-12-31 09:10:30.000000000 +0200 ++++ ./CMakeLists.txt 2020-03-10 10:22:34.313824000 +0200 +@@ -258,8 +258,10 @@ + if(JPEG_LIB_VERSION STREQUAL "62") + set(DEFAULT_SO_MAJOR_VERSION ${JPEG_LIB_VERSION}) + else() +- set(DEFAULT_SO_MAJOR_VERSION ${JPEG_LIB_VERSION_DIV10}) ++# set(DEFAULT_SO_MAJOR_VERSION ${JPEG_LIB_VERSION_DIV10}) ++ set(DEFAULT_SO_MAJOR_VERSION 12) + endif() ++ + if(JPEG_LIB_VERSION STREQUAL "80") + set(DEFAULT_SO_MINOR_VERSION 2) + else() +@@ -282,7 +284,7 @@ + "Minor version of the libjpeg API shared library (default: ${DEFAULT_SO_MINOR_VERSION})" + ${FORCE_SO_VERSION}) + +-set(JPEG_LIB_VERSION_DECIMAL "${JPEG_LIB_VERSION_DIV10}.${JPEG_LIB_VERSION_MOD10}") ++set(JPEG_LIB_VERSION_DECIMAL "${JPEG_LIB_VERSION_DIV10}") + message(STATUS "Emulating libjpeg API/ABI v${JPEG_LIB_VERSION_DECIMAL} (WITH_JPEG7 = ${WITH_JPEG7}, WITH_JPEG8 = ${WITH_JPEG8})") + message(STATUS "libjpeg API shared library version = ${SO_MAJOR_VERSION}.${SO_AGE}.${SO_MINOR_VERSION}") + +@@ -292,7 +294,7 @@ + # minor SO versions don't change. However, we increase the middle number (the + # SO "age") whenever functions are added to the API. + set(TURBOJPEG_SO_MAJOR_VERSION 0) +-set(TURBOJPEG_SO_VERSION 0.2.0) ++set(TURBOJPEG_SO_VERSION 0) + + + ############################################################################### diff --git a/graph/libjpeg/files/patch-x-libjpeg.map.in b/graph/libjpeg/files/patch-x-libjpeg.map.in new file mode 100644 index 00000000..f22813a4 --- /dev/null +++ b/graph/libjpeg/files/patch-x-libjpeg.map.in @@ -0,0 +1,11 @@ +--- ./libjpeg.map.in.orig 2019-12-31 09:10:30.000000000 +0200 ++++ ./libjpeg.map.in 2020-03-10 10:30:35.631754000 +0200 +@@ -5,7 +5,7 @@ + jconst_*; + }; + +-LIBJPEG_@JPEG_LIB_VERSION_DECIMAL@ { ++LIBJPEG_8.0 { + global: + *; + }; diff --git a/graph/libjpeg/files/patch-x-sharedlib-CMakeLists.txt b/graph/libjpeg/files/patch-x-sharedlib-CMakeLists.txt new file mode 100644 index 00000000..a39f41f5 --- /dev/null +++ b/graph/libjpeg/files/patch-x-sharedlib-CMakeLists.txt @@ -0,0 +1,11 @@ +--- ./sharedlib/CMakeLists.txt.orig 2019-12-31 09:10:30.000000000 +0200 ++++ ./sharedlib/CMakeLists.txt 2020-03-10 10:22:34.317697000 +0200 +@@ -39,7 +39,7 @@ + ${SIMD_OBJS}) + + set_target_properties(jpeg PROPERTIES SOVERSION ${SO_MAJOR_VERSION} +- VERSION ${SO_MAJOR_VERSION}.${SO_AGE}.${SO_MINOR_VERSION}) ++ VERSION ${SO_MAJOR_VERSION}) + if(APPLE AND (NOT CMAKE_OSX_DEPLOYMENT_TARGET OR + CMAKE_OSX_DEPLOYMENT_TARGET VERSION_GREATER 10.4)) + if(NOT CMAKE_SHARED_LIBRARY_RUNTIME_C_FLAG) diff --git a/graph/libjpeg/pkg-descr b/graph/libjpeg/pkg-descr new file mode 100644 index 00000000..b4a2d1e1 --- /dev/null +++ b/graph/libjpeg/pkg-descr @@ -0,0 +1,20 @@ +This is a drop-in replacement for the graphics/jpeg library. It does not +include libturbojpeg.so (see graphics/libjpeg-turbo). + +libjpeg-turbo is a high-speed version of libjpeg for x86 and x86-64 processors +which uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG +compression and decompression. +libjpeg-turbo is generally 2-4x as fast as the unmodified version +of libjpeg, all else being equal. + +libjpeg-turbo was originally based on libjpeg/SIMD by Miyasaka Masaru, +but the TigerVNC and VirtualGL projects made numerous enhancements to the codec, +including improved support for Mac OS X, 64-bit support, +support for 32-bit and big endian pixel formats (RGBA, ABGR, etc.), +accelerated Huffman encoding/decoding, and various bug fixes. +The goal was to produce a fully open source codec that could replace +the partially closed source TurboJPEG/IPP codec used by VirtualGL and TurboVNC. +libjpeg-turbo generally achieves 80-120% of the performance of TurboJPEG/IPP. +It is faster in some areas but slower in others. + +WWW: http://libjpeg-turbo.virtualgl.org/ diff --git a/graph/libjpeg/pkg-plist b/graph/libjpeg/pkg-plist new file mode 100644 index 00000000..1062eee9 --- /dev/null +++ b/graph/libjpeg/pkg-plist @@ -0,0 +1,24 @@ +bin/cjpeg +bin/djpeg +bin/jpegtran +bin/rdjpgcom +bin/tjbench +bin/wrjpgcom +include/jconfig.h +include/jerror.h +include/jmorecfg.h +include/jpeglib.h +include/turbojpeg.h +lib/libjpeg.a +lib/libjpeg.so +lib/libjpeg.so.12 +lib/libturbojpeg.a +lib/libturbojpeg.so +lib/libturbojpeg.so.0 +lib/pkgconfig/libjpeg.pc +lib/pkgconfig/libturbojpeg.pc +man/man1/cjpeg.1.gz +man/man1/djpeg.1.gz +man/man1/jpegtran.1.gz +man/man1/rdjpgcom.1.gz +man/man1/wrjpgcom.1.gz diff --git a/graph/libpng/Makefile b/graph/libpng/Makefile new file mode 100644 index 00000000..d209943a --- /dev/null +++ b/graph/libpng/Makefile @@ -0,0 +1,29 @@ +# Created by: ache +# $FreeBSD: head/graphics/png/Makefile 436720 2017-03-22 19:14:55Z antoine $ + +PORTNAME= png +PORTVERSION= 1.6.29 +CATEGORIES= graphics +#MASTER_SITES+= SF/lib${PORTNAME}/lib${PORTNAME}16/${PORTVERSION} +MASTER_SITES+= ftp://ftp.simplesystems.org/pub/lib${PORTNAME}/${PORTNAME}/src/lib${PORTNAME}16/ +PATCH_SITES= SF/apng/lib${PORTNAME}/lib${PORTNAME}16/ +DISTNAME= lib${PORTNAME}-${PORTVERSION} +PKGNAMEPREFIX= lib + +MAINTAINER= portmgr@FreeBSD.org +COMMENT= Library for manipulating PNG images + +USES= tar:xz +GNU_CONFIGURE= yes +CONFIGURE_ARGS= --with-pkgconfigdir=${PREFIX}/lib/pkgconfig +INSTALL_TARGET= install-strip +USE_LDCONFIG= yes + +CONFIGURE_ARGS+= --enable-unversioned-libpng-config +CONFIGURE_ARGS+= --enable-unversioned-libpng-pc +CONFIGURE_ARGS+= --enable-unversioned-links + + +.include +#EOF + diff --git a/graph/libpng/distinfo b/graph/libpng/distinfo new file mode 100644 index 00000000..ba915ab9 --- /dev/null +++ b/graph/libpng/distinfo @@ -0,0 +1,5 @@ +TIMESTAMP = 1489819428 +SHA256 (libpng-1.6.29.tar.xz) = 4245b684e8fe829ebb76186327bb37ce5a639938b219882b53d64bd3cfc5f239 +SIZE (libpng-1.6.29.tar.xz) = 987652 +SHA256 (libpng-1.6.29-apng.patch.gz) = 6120948990a86f8118d67471ff04e35ca1f93722061ef6b90842c64608584b91 +SIZE (libpng-1.6.29-apng.patch.gz) = 10313 diff --git a/graph/libpng/files/patch-x-ltmain.sh b/graph/libpng/files/patch-x-ltmain.sh new file mode 100644 index 00000000..b86ede14 --- /dev/null +++ b/graph/libpng/files/patch-x-ltmain.sh @@ -0,0 +1,20 @@ +--- ./ltmain.sh.orig 2017-05-12 12:50:03.177104000 +0200 ++++ ./ltmain.sh 2017-05-12 12:50:38.075987000 +0200 +@@ -8886,15 +8886,9 @@ + esac + ;; + +- freebsd-aout) ++ freebsd*) + major=.$current +- versuffix=.$current.$revision +- ;; +- +- freebsd-elf) +- func_arith $current - $age +- major=.$func_arith_result +- versuffix=$major.$age.$revision ++ versuffix=.$current + ;; + + irix | nonstopux) diff --git a/graph/libpng/pkg-descr b/graph/libpng/pkg-descr new file mode 100644 index 00000000..7e9379d4 --- /dev/null +++ b/graph/libpng/pkg-descr @@ -0,0 +1,13 @@ +Libpng was written as a companion to the PNG specification, as a +way to reduce the amount of time and effort it takes to support +the PNG file format in application programs. Most users will not +have to modify the library significantly; advanced users may want +to modify it more. The library was coded for both users. All +attempts were made to make it as complete as possible, while +keeping the code easy to understand. Currently, this library +only supports C. Support for other languages is being considered. + +LICENSE: libpng license + +WWW: http://www.libpng.org/pub/png/libpng.html + http://libpng.sourceforge.net/ diff --git a/graph/libpng/pkg-plist b/graph/libpng/pkg-plist new file mode 100644 index 00000000..1ca08c06 --- /dev/null +++ b/graph/libpng/pkg-plist @@ -0,0 +1,23 @@ +bin/libpng-config +bin/libpng16-config +bin/png-fix-itxt +bin/pngfix +include/libpng16/png.h +include/libpng16/pngconf.h +include/libpng16/pnglibconf.h +include/png.h +include/pngconf.h +include/pnglibconf.h +lib/libpng.a +lib/libpng.la +lib/libpng.so +lib/libpng16.a +lib/libpng16.la +lib/libpng16.so +lib/libpng16.so.45 +lib/pkgconfig/libpng.pc +lib/pkgconfig/libpng16.pc +man/man3/libpng.3.gz +man/man3/libpngpf.3.gz +man/man5/png.5.gz +@dir include/libpng16 diff --git a/graph/libtiff/Makefile b/graph/libtiff/Makefile new file mode 100644 index 00000000..7be22b32 --- /dev/null +++ b/graph/libtiff/Makefile @@ -0,0 +1,92 @@ +# +# $Id: Makefile 2368 2009-09-08 05:55:57Z root $ +# +PORTNAME= libtiff +PORTVERSION= 4.0.6 #3.9.7 +CATEGORIES= graphics devel +MASTER_SITES+= ftp://ftp.remotesensing.org/pub/libtiff/ +MASTER_SITES+= ftp://ftp.onshore.com/pub/libtiff/ +MASTER_SITES+= http://www.libtiff.org/ +DISTNAME= ${PORTNAME:S/lib//}-${PORTVERSION} + +MAINTAINER= onborodin@gmail.com +COMMENT= Tools and library routines for working with TIFF images + +LIB_DEPENDS+= libjpeg.so:graph/libjpeg + +WRKSRC= ${WRKDIR}/${PORTNAME:S/^lib//}-${PORTVERSION} +GNU_CONFIGURE= yes +GNU_MAKE= yes +MAKE_ARGS+= program_transform_name='' +CONFIGURE_ARGS+= --without-docdir +CONFIGURE_ARGS+= --with-zlib-include-dir=/usr/include +CONFIGURE_ARGS+= --with-zlib-lib-dir=/usr/lib +CONFIGURE_ARGS+= --with-jpeg-include-dir=${LOCALBASE}/include +CONFIGURE_ARGS+= --with-jpeg-lib-dir=${LOCALBASE}/lib +CONFIGURE_ARGS+= --without-x +CONFIGURE_ARGS+= --mandir=${PREFIX}/man +CONFIGURE_ARGS+= --disable-jbig +INSTALLS_SHLIB= yes + +post-install: + cd ${STAGEDIR}${PREFIX}/man/man3 && ${LN} -sf TIFFError.3tiff TIFFSetErrorHandler.3tiff + cd ${STAGEDIR}${PREFIX}/man/man3 && ${LN} -sf TIFFFlush.3tiff TIFFFlushData.3tiff + cd ${STAGEDIR}${PREFIX}/man/man3 && ${LN} -sf TIFFGetField.3tiff TIFFGetFieldDefaulted.3tiff + cd ${STAGEDIR}${PREFIX}/man/man3 && ${LN} -sf TIFFGetField.3tiff TIFFVGetField.3tiff + cd ${STAGEDIR}${PREFIX}/man/man3 && ${LN} -sf TIFFGetField.3tiff TIFFVGetFieldDefaulted.3tiff + cd ${STAGEDIR}${PREFIX}/man/man3 && ${LN} -sf TIFFOpen.3tiff TIFFFdOpen.3tiff + cd ${STAGEDIR}${PREFIX}/man/man3 && ${LN} -sf TIFFOpen.3tiff TIFFClientOpen.3tiff + cd ${STAGEDIR}${PREFIX}/man/man3 && ${LN} -sf TIFFRGBAImage.3tiff TIFFRGBAImageOK.3tiff + cd ${STAGEDIR}${PREFIX}/man/man3 && ${LN} -sf TIFFRGBAImage.3tiff TIFFRGBAImageBegin.3tiff + cd ${STAGEDIR}${PREFIX}/man/man3 && ${LN} -sf TIFFRGBAImage.3tiff TIFFRGBAImageGet.3tiff + cd ${STAGEDIR}${PREFIX}/man/man3 && ${LN} -sf TIFFRGBAImage.3tiff TIFFRGBAImageEnd.3tiff + cd ${STAGEDIR}${PREFIX}/man/man3 && ${LN} -sf TIFFRGBAImage.3tiff TIFFReadRGBAImageOriented.3tiff + cd ${STAGEDIR}${PREFIX}/man/man3 && ${LN} -sf TIFFSetDirectory.3tiff TIFFSetSubDirectory.3tiff + cd ${STAGEDIR}${PREFIX}/man/man3 && ${LN} -sf TIFFSetField.3tiff TIFFVSetField.3tiff + cd ${STAGEDIR}${PREFIX}/man/man3 && ${LN} -sf TIFFWarning.3tiff TIFFSetWarningHandler.3tiff + cd ${STAGEDIR}${PREFIX}/man/man3 && ${LN} -sf TIFFWriteDirectory.3tiff TIFFRewriteDirectory.3tiff + cd ${STAGEDIR}${PREFIX}/man/man3 && ${LN} -sf TIFFbuffer.3tiff TIFFReadBufferSetup.3tiff + cd ${STAGEDIR}${PREFIX}/man/man3 && ${LN} -sf TIFFbuffer.3tiff TIFFWriteBufferSetup.3tiff + cd ${STAGEDIR}${PREFIX}/man/man3 && ${LN} -sf TIFFcodec.3tiff TIFFFindCODEC.3tiff + cd ${STAGEDIR}${PREFIX}/man/man3 && ${LN} -sf TIFFcodec.3tiff TIFFRegisterCODEC.3tiff + cd ${STAGEDIR}${PREFIX}/man/man3 && ${LN} -sf TIFFcodec.3tiff TIFFUnRegisterCODEC.3tiff + cd ${STAGEDIR}${PREFIX}/man/man3 && ${LN} -sf TIFFmemory.3tiff TIFFfree.3tiff + cd ${STAGEDIR}${PREFIX}/man/man3 && ${LN} -sf TIFFmemory.3tiff TIFFmalloc.3tiff + cd ${STAGEDIR}${PREFIX}/man/man3 && ${LN} -sf TIFFmemory.3tiff TIFFmemcmp.3tiff + cd ${STAGEDIR}${PREFIX}/man/man3 && ${LN} -sf TIFFmemory.3tiff TIFFmemcpy.3tiff + cd ${STAGEDIR}${PREFIX}/man/man3 && ${LN} -sf TIFFmemory.3tiff TIFFmemset.3tiff + cd ${STAGEDIR}${PREFIX}/man/man3 && ${LN} -sf TIFFmemory.3tiff TIFFrealloc.3tiff + cd ${STAGEDIR}${PREFIX}/man/man3 && ${LN} -sf TIFFquery.3tiff TIFFCurrentDirectory.3tiff + cd ${STAGEDIR}${PREFIX}/man/man3 && ${LN} -sf TIFFquery.3tiff TIFFCurrentRow.3tiff + cd ${STAGEDIR}${PREFIX}/man/man3 && ${LN} -sf TIFFquery.3tiff TIFFCurrentStrip.3tiff + cd ${STAGEDIR}${PREFIX}/man/man3 && ${LN} -sf TIFFquery.3tiff TIFFCurrentTile.3tiff + cd ${STAGEDIR}${PREFIX}/man/man3 && ${LN} -sf TIFFquery.3tiff TIFFFileName.3tiff + cd ${STAGEDIR}${PREFIX}/man/man3 && ${LN} -sf TIFFquery.3tiff TIFFFileno.3tiff + cd ${STAGEDIR}${PREFIX}/man/man3 && ${LN} -sf TIFFquery.3tiff TIFFGetMode.3tiff + cd ${STAGEDIR}${PREFIX}/man/man3 && ${LN} -sf TIFFquery.3tiff TIFFIsTiled.3tiff + cd ${STAGEDIR}${PREFIX}/man/man3 && ${LN} -sf TIFFquery.3tiff TIFFIsByteSwapped.3tiff + cd ${STAGEDIR}${PREFIX}/man/man3 && ${LN} -sf TIFFquery.3tiff TIFFIsUpSampled.3tiff + cd ${STAGEDIR}${PREFIX}/man/man3 && ${LN} -sf TIFFquery.3tiff TIFFIsMSB2LSB.3tiff + cd ${STAGEDIR}${PREFIX}/man/man3 && ${LN} -sf TIFFquery.3tiff TIFFLastDirectory.3tiff + cd ${STAGEDIR}${PREFIX}/man/man3 && ${LN} -sf TIFFsize.3tiff TIFFScanlineSize.3tiff + cd ${STAGEDIR}${PREFIX}/man/man3 && ${LN} -sf TIFFstrip.3tiff TIFFComputeStrip.3tiff + cd ${STAGEDIR}${PREFIX}/man/man3 && ${LN} -sf TIFFstrip.3tiff TIFFDefaultStripSize.3tiff + cd ${STAGEDIR}${PREFIX}/man/man3 && ${LN} -sf TIFFstrip.3tiff TIFFNumberOfStrips.3tiff + cd ${STAGEDIR}${PREFIX}/man/man3 && ${LN} -sf TIFFstrip.3tiff TIFFStripSize.3tiff + cd ${STAGEDIR}${PREFIX}/man/man3 && ${LN} -sf TIFFstrip.3tiff TIFFVStripSize.3tiff + cd ${STAGEDIR}${PREFIX}/man/man3 && ${LN} -sf TIFFswab.3tiff TIFFReverseBits.3tiff + cd ${STAGEDIR}${PREFIX}/man/man3 && ${LN} -sf TIFFswab.3tiff TIFFSwabArrayOfLong.3tiff + cd ${STAGEDIR}${PREFIX}/man/man3 && ${LN} -sf TIFFswab.3tiff TIFFSwabArrayOfShort.3tiff + cd ${STAGEDIR}${PREFIX}/man/man3 && ${LN} -sf TIFFswab.3tiff TIFFSwabLong.3tiff + cd ${STAGEDIR}${PREFIX}/man/man3 && ${LN} -sf TIFFswab.3tiff TIFFSwabShort.3tiff + cd ${STAGEDIR}${PREFIX}/man/man3 && ${LN} -sf TIFFtile.3tiff TIFFCheckTile.3tiff + cd ${STAGEDIR}${PREFIX}/man/man3 && ${LN} -sf TIFFtile.3tiff TIFFComputeTile.3tiff + cd ${STAGEDIR}${PREFIX}/man/man3 && ${LN} -sf TIFFtile.3tiff TIFFDefaultTileSize.3tiff + cd ${STAGEDIR}${PREFIX}/man/man3 && ${LN} -sf TIFFtile.3tiff TIFFNumberOfTiles.3tiff + cd ${STAGEDIR}${PREFIX}/man/man3 && ${LN} -sf TIFFtile.3tiff TIFFTileSize.3tiff + cd ${STAGEDIR}${PREFIX}/man/man3 && ${LN} -sf TIFFtile.3tiff TIFFTileRowSize.3tiff + cd ${STAGEDIR}${PREFIX}/man/man3 && ${LN} -sf TIFFtile.3tiff TIFFVTileSize.3tiff + + +.include +#EOF diff --git a/graph/libtiff/distinfo b/graph/libtiff/distinfo new file mode 100644 index 00000000..7fb248cf --- /dev/null +++ b/graph/libtiff/distinfo @@ -0,0 +1,2 @@ +SHA256 (tiff-4.0.6.tar.gz) = 4d57a50907b510e3049a4bba0d7888930fdfc16ce49f1bf693e5b6247370d68c +SIZE (tiff-4.0.6.tar.gz) = 2192991 diff --git a/graph/libtiff/files/patch-CVE-2015-8665_8683 b/graph/libtiff/files/patch-CVE-2015-8665_8683 new file mode 100644 index 00000000..e6b7de80 --- /dev/null +++ b/graph/libtiff/files/patch-CVE-2015-8665_8683 @@ -0,0 +1,118 @@ +revision 1.94 +date: 2015-12-26 17:32:03 +0000; author: erouault; state: Exp; lines: +23 -14; commitid: ohB9uRxvIWq9YtOy; +* libtiff/tif_getimage.c: fix out-of-bound reads in TIFFRGBAImage +interface in case of unsupported values of SamplesPerPixel/ExtraSamples +for LogLUV / CIELab. Add explicit call to TIFFRGBAImageOK() in +TIFFRGBAImageBegin(). Fix CVE-2015-8665 reported by limingxing and +CVE-2015-8683 reported by zzf of Alibaba. + +Index: libtiff/tif_getimage.c +=================================================================== +RCS file: /cvs/maptools/cvsroot/libtiff/libtiff/tif_getimage.c,v +retrieving revision 1.93 +retrieving revision 1.94 +diff -u -r1.93 -r1.94 +--- libtiff/tif_getimage.c 22 Nov 2015 15:31:03 -0000 1.93 ++++ libtiff/tif_getimage.c 26 Dec 2015 17:32:03 -0000 1.94 +@@ -1,4 +1,4 @@ +-/* $Id: tif_getimage.c,v 1.93 2015-11-22 15:31:03 erouault Exp $ */ ++/* $Id: tif_getimage.c,v 1.94 2015-12-26 17:32:03 erouault Exp $ */ + + /* + * Copyright (c) 1991-1997 Sam Leffler +@@ -182,20 +182,22 @@ + "Planarconfiguration", td->td_planarconfig); + return (0); + } +- if( td->td_samplesperpixel != 3 ) ++ if( td->td_samplesperpixel != 3 || colorchannels != 3 ) + { + sprintf(emsg, +- "Sorry, can not handle image with %s=%d", +- "Samples/pixel", td->td_samplesperpixel); ++ "Sorry, can not handle image with %s=%d, %s=%d", ++ "Samples/pixel", td->td_samplesperpixel, ++ "colorchannels", colorchannels); + return 0; + } + break; + case PHOTOMETRIC_CIELAB: +- if( td->td_samplesperpixel != 3 || td->td_bitspersample != 8 ) ++ if( td->td_samplesperpixel != 3 || colorchannels != 3 || td->td_bitspersample != 8 ) + { + sprintf(emsg, +- "Sorry, can not handle image with %s=%d and %s=%d", ++ "Sorry, can not handle image with %s=%d, %s=%d and %s=%d", + "Samples/pixel", td->td_samplesperpixel, ++ "colorchannels", colorchannels, + "Bits/sample", td->td_bitspersample); + return 0; + } +@@ -255,6 +257,9 @@ + int colorchannels; + uint16 *red_orig, *green_orig, *blue_orig; + int n_color; ++ ++ if( !TIFFRGBAImageOK(tif, emsg) ) ++ return 0; + + /* Initialize to normal values */ + img->row_offset = 0; +@@ -2509,29 +2514,33 @@ + case PHOTOMETRIC_RGB: + switch (img->bitspersample) { + case 8: +- if (img->alpha == EXTRASAMPLE_ASSOCALPHA) ++ if (img->alpha == EXTRASAMPLE_ASSOCALPHA && ++ img->samplesperpixel >= 4) + img->put.contig = putRGBAAcontig8bittile; +- else if (img->alpha == EXTRASAMPLE_UNASSALPHA) ++ else if (img->alpha == EXTRASAMPLE_UNASSALPHA && ++ img->samplesperpixel >= 4) + { + if (BuildMapUaToAa(img)) + img->put.contig = putRGBUAcontig8bittile; + } +- else ++ else if( img->samplesperpixel >= 3 ) + img->put.contig = putRGBcontig8bittile; + break; + case 16: +- if (img->alpha == EXTRASAMPLE_ASSOCALPHA) ++ if (img->alpha == EXTRASAMPLE_ASSOCALPHA && ++ img->samplesperpixel >=4 ) + { + if (BuildMapBitdepth16To8(img)) + img->put.contig = putRGBAAcontig16bittile; + } +- else if (img->alpha == EXTRASAMPLE_UNASSALPHA) ++ else if (img->alpha == EXTRASAMPLE_UNASSALPHA && ++ img->samplesperpixel >=4 ) + { + if (BuildMapBitdepth16To8(img) && + BuildMapUaToAa(img)) + img->put.contig = putRGBUAcontig16bittile; + } +- else ++ else if( img->samplesperpixel >=3 ) + { + if (BuildMapBitdepth16To8(img)) + img->put.contig = putRGBcontig16bittile; +@@ -2540,7 +2549,7 @@ + } + break; + case PHOTOMETRIC_SEPARATED: +- if (buildMap(img)) { ++ if (img->samplesperpixel >=4 && buildMap(img)) { + if (img->bitspersample == 8) { + if (!img->Map) + img->put.contig = putRGBcontig8bitCMYKtile; +@@ -2636,7 +2645,7 @@ + } + break; + case PHOTOMETRIC_CIELAB: +- if (buildMap(img)) { ++ if (img->samplesperpixel == 3 && buildMap(img)) { + if (img->bitspersample == 8) + img->put.contig = initCIELabConversion(img); + break; diff --git a/graph/libtiff/files/patch-Makefile.in b/graph/libtiff/files/patch-Makefile.in new file mode 100644 index 00000000..8da105df --- /dev/null +++ b/graph/libtiff/files/patch-Makefile.in @@ -0,0 +1,22 @@ +--- Makefile.in.orig 2015-09-12 19:48:44 UTC ++++ Makefile.in +@@ -494,19 +494,6 @@ distclean-libtool: + -rm -f libtool config.lt + install-dist_docDATA: $(dist_doc_DATA) + @$(NORMAL_INSTALL) +- @list='$(dist_doc_DATA)'; test -n "$(docdir)" || list=; \ +- if test -n "$$list"; then \ +- echo " $(MKDIR_P) '$(DESTDIR)$(docdir)'"; \ +- $(MKDIR_P) "$(DESTDIR)$(docdir)" || exit 1; \ +- fi; \ +- for p in $$list; do \ +- if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ +- echo "$$d$$p"; \ +- done | $(am__base_list) | \ +- while read files; do \ +- echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(docdir)'"; \ +- $(INSTALL_DATA) $$files "$(DESTDIR)$(docdir)" || exit $$?; \ +- done + + uninstall-dist_docDATA: + @$(NORMAL_UNINSTALL) diff --git a/graph/libtiff/files/patch-libtiff_tif__luv.c b/graph/libtiff/files/patch-libtiff_tif__luv.c new file mode 100644 index 00000000..47327c81 --- /dev/null +++ b/graph/libtiff/files/patch-libtiff_tif__luv.c @@ -0,0 +1,176 @@ +revision 1.41 +date: 2015-12-27 16:25:11 +0000; author: erouault; state: Exp; lines: +45 -12; commitid: gXczlJDfVlBdzBOy; +* libtiff/tif_luv.c: fix potential out-of-bound writes in decode +functions in non debug builds by replacing assert()s by regular if +checks (bugzilla #2522). +Fix potential out-of-bound reads in case of short input data. + +Index: libtiff/tif_luv.c +=================================================================== +RCS file: /cvs/maptools/cvsroot/libtiff/libtiff/tif_luv.c,v +retrieving revision 1.40 +retrieving revision 1.41 +diff -u -r1.40 -r1.41 +--- libtiff/tif_luv.c 21 Jun 2015 01:09:09 -0000 1.40 ++++ libtiff/tif_luv.c 27 Dec 2015 16:25:11 -0000 1.41 +@@ -1,4 +1,4 @@ +-/* $Id: tif_luv.c,v 1.40 2015-06-21 01:09:09 bfriesen Exp $ */ ++/* $Id: tif_luv.c,v 1.41 2015-12-27 16:25:11 erouault Exp $ */ + + /* + * Copyright (c) 1997 Greg Ward Larson +@@ -202,7 +202,11 @@ + if (sp->user_datafmt == SGILOGDATAFMT_16BIT) + tp = (int16*) op; + else { +- assert(sp->tbuflen >= npixels); ++ if(sp->tbuflen < npixels) { ++ TIFFErrorExt(tif->tif_clientdata, module, ++ "Translation buffer too short"); ++ return (0); ++ } + tp = (int16*) sp->tbuf; + } + _TIFFmemset((void*) tp, 0, npixels*sizeof (tp[0])); +@@ -211,9 +215,11 @@ + cc = tif->tif_rawcc; + /* get each byte string */ + for (shft = 2*8; (shft -= 8) >= 0; ) { +- for (i = 0; i < npixels && cc > 0; ) ++ for (i = 0; i < npixels && cc > 0; ) { + if (*bp >= 128) { /* run */ +- rc = *bp++ + (2-128); /* TODO: potential input buffer overrun when decoding corrupt or truncated data */ ++ if( cc < 2 ) ++ break; ++ rc = *bp++ + (2-128); + b = (int16)(*bp++ << shft); + cc -= 2; + while (rc-- && i < npixels) +@@ -223,6 +229,7 @@ + while (--cc && rc-- && i < npixels) + tp[i++] |= (int16)*bp++ << shft; + } ++ } + if (i != npixels) { + #if defined(__WIN32__) && (defined(_MSC_VER) || defined(__MINGW32__)) + TIFFErrorExt(tif->tif_clientdata, module, +@@ -268,13 +275,17 @@ + if (sp->user_datafmt == SGILOGDATAFMT_RAW) + tp = (uint32 *)op; + else { +- assert(sp->tbuflen >= npixels); ++ if(sp->tbuflen < npixels) { ++ TIFFErrorExt(tif->tif_clientdata, module, ++ "Translation buffer too short"); ++ return (0); ++ } + tp = (uint32 *) sp->tbuf; + } + /* copy to array of uint32 */ + bp = (unsigned char*) tif->tif_rawcp; + cc = tif->tif_rawcc; +- for (i = 0; i < npixels && cc > 0; i++) { ++ for (i = 0; i < npixels && cc >= 3; i++) { + tp[i] = bp[0] << 16 | bp[1] << 8 | bp[2]; + bp += 3; + cc -= 3; +@@ -325,7 +336,11 @@ + if (sp->user_datafmt == SGILOGDATAFMT_RAW) + tp = (uint32*) op; + else { +- assert(sp->tbuflen >= npixels); ++ if(sp->tbuflen < npixels) { ++ TIFFErrorExt(tif->tif_clientdata, module, ++ "Translation buffer too short"); ++ return (0); ++ } + tp = (uint32*) sp->tbuf; + } + _TIFFmemset((void*) tp, 0, npixels*sizeof (tp[0])); +@@ -334,11 +349,13 @@ + cc = tif->tif_rawcc; + /* get each byte string */ + for (shft = 4*8; (shft -= 8) >= 0; ) { +- for (i = 0; i < npixels && cc > 0; ) ++ for (i = 0; i < npixels && cc > 0; ) { + if (*bp >= 128) { /* run */ ++ if( cc < 2 ) ++ break; + rc = *bp++ + (2-128); + b = (uint32)*bp++ << shft; +- cc -= 2; /* TODO: potential input buffer overrun when decoding corrupt or truncated data */ ++ cc -= 2; + while (rc-- && i < npixels) + tp[i++] |= b; + } else { /* non-run */ +@@ -346,6 +363,7 @@ + while (--cc && rc-- && i < npixels) + tp[i++] |= (uint32)*bp++ << shft; + } ++ } + if (i != npixels) { + #if defined(__WIN32__) && (defined(_MSC_VER) || defined(__MINGW32__)) + TIFFErrorExt(tif->tif_clientdata, module, +@@ -413,6 +431,7 @@ + static int + LogL16Encode(TIFF* tif, uint8* bp, tmsize_t cc, uint16 s) + { ++ static const char module[] = "LogL16Encode"; + LogLuvState* sp = EncoderState(tif); + int shft; + tmsize_t i; +@@ -433,7 +452,11 @@ + tp = (int16*) bp; + else { + tp = (int16*) sp->tbuf; +- assert(sp->tbuflen >= npixels); ++ if(sp->tbuflen < npixels) { ++ TIFFErrorExt(tif->tif_clientdata, module, ++ "Translation buffer too short"); ++ return (0); ++ } + (*sp->tfunc)(sp, bp, npixels); + } + /* compress each byte string */ +@@ -506,6 +529,7 @@ + static int + LogLuvEncode24(TIFF* tif, uint8* bp, tmsize_t cc, uint16 s) + { ++ static const char module[] = "LogLuvEncode24"; + LogLuvState* sp = EncoderState(tif); + tmsize_t i; + tmsize_t npixels; +@@ -521,7 +545,11 @@ + tp = (uint32*) bp; + else { + tp = (uint32*) sp->tbuf; +- assert(sp->tbuflen >= npixels); ++ if(sp->tbuflen < npixels) { ++ TIFFErrorExt(tif->tif_clientdata, module, ++ "Translation buffer too short"); ++ return (0); ++ } + (*sp->tfunc)(sp, bp, npixels); + } + /* write out encoded pixels */ +@@ -553,6 +581,7 @@ + static int + LogLuvEncode32(TIFF* tif, uint8* bp, tmsize_t cc, uint16 s) + { ++ static const char module[] = "LogLuvEncode32"; + LogLuvState* sp = EncoderState(tif); + int shft; + tmsize_t i; +@@ -574,7 +603,11 @@ + tp = (uint32*) bp; + else { + tp = (uint32*) sp->tbuf; +- assert(sp->tbuflen >= npixels); ++ if(sp->tbuflen < npixels) { ++ TIFFErrorExt(tif->tif_clientdata, module, ++ "Translation buffer too short"); ++ return (0); ++ } + (*sp->tfunc)(sp, bp, npixels); + } + /* compress each byte string */ diff --git a/graph/libtiff/files/patch-libtiff_tif__next.c b/graph/libtiff/files/patch-libtiff_tif__next.c new file mode 100644 index 00000000..de0f4287 --- /dev/null +++ b/graph/libtiff/files/patch-libtiff_tif__next.c @@ -0,0 +1,54 @@ +revision 1.17 +date: 2015-12-27 16:55:20 +0000; author: erouault; state: Exp; lines: +9 -3; commitid: 4yLOaM0uFVPyJBOy; +* libtiff/tif_next.c: fix potential out-of-bound write in NeXTDecode() +triggered by http://lcamtuf.coredump.cx/afl/vulns/libtiff5.tif +(bugzilla #2508) + +Index: libtiff/tif_next.c +=================================================================== +RCS file: /cvs/maptools/cvsroot/libtiff/libtiff/tif_next.c,v +retrieving revision 1.16 +retrieving revision 1.17 +diff -u -r1.16 -r1.17 +--- libtiff/tif_next.c 29 Dec 2014 12:09:11 -0000 1.16 ++++ libtiff/tif_next.c 27 Dec 2015 16:55:20 -0000 1.17 +@@ -1,4 +1,4 @@ +-/* $Id: tif_next.c,v 1.16 2014-12-29 12:09:11 erouault Exp $ */ ++/* $Id: tif_next.c,v 1.17 2015-12-27 16:55:20 erouault Exp $ */ + + /* + * Copyright (c) 1988-1997 Sam Leffler +@@ -37,7 +37,7 @@ + case 0: op[0] = (unsigned char) ((v) << 6); break; \ + case 1: op[0] |= (v) << 4; break; \ + case 2: op[0] |= (v) << 2; break; \ +- case 3: *op++ |= (v); break; \ ++ case 3: *op++ |= (v); op_offset++; break; \ + } \ + } + +@@ -106,6 +106,7 @@ + uint32 imagewidth = tif->tif_dir.td_imagewidth; + if( isTiled(tif) ) + imagewidth = tif->tif_dir.td_tilewidth; ++ tmsize_t op_offset = 0; + + /* + * The scanline is composed of a sequence of constant +@@ -122,10 +123,15 @@ + * bounds, potentially resulting in a security + * issue. + */ +- while (n-- > 0 && npixels < imagewidth) ++ while (n-- > 0 && npixels < imagewidth && op_offset < scanline) + SETPIXEL(op, grey); + if (npixels >= imagewidth) + break; ++ if (op_offset >= scanline ) { ++ TIFFErrorExt(tif->tif_clientdata, module, "Invalid data for scanline %ld", ++ (long) tif->tif_row); ++ return (0); ++ } + if (cc == 0) + goto bad; + n = *bp++, cc--; diff --git a/graph/libtiff/files/patch-tiffcrop.1 b/graph/libtiff/files/patch-tiffcrop.1 new file mode 100644 index 00000000..12ff4a1f --- /dev/null +++ b/graph/libtiff/files/patch-tiffcrop.1 @@ -0,0 +1,10 @@ +--- man/tiffcrop.1.orig 2010-12-14 01:45:44 UTC ++++ man/tiffcrop.1 +@@ -496,7 +496,6 @@ the portrait or landscape option. The pa + the image. It breaks each original image into a series of smaller images + that will fit on the target paper size at the specified resolution. + .fi +-.RE + .PP + Extract two regions 2048 pixels wide by 2048 pixels high from each page of + a multi\-page input file and write each region to a separate output file. diff --git a/graph/libtiff/files/patch-x-config-ltmain.sh b/graph/libtiff/files/patch-x-config-ltmain.sh new file mode 100644 index 00000000..70593e76 --- /dev/null +++ b/graph/libtiff/files/patch-x-config-ltmain.sh @@ -0,0 +1,39 @@ +--- ./config/ltmain.sh.orig 2015-02-08 00:35:46.118491243 +0200 ++++ ./config/ltmain.sh 2016-02-07 07:53:38.539524000 +0200 +@@ -8746,17 +8746,12 @@ + # + case $version_type in + # correct linux to gnu/linux during the next big refactor +- darwin|freebsd-elf|linux|osf|windows|none) ++ darwin|freebsd*|linux|osf|windows|none) + func_arith $number_major + $number_minor + current=$func_arith_result + age=$number_minor + revision=$number_revision + ;; +- freebsd-aout|qnx|sunos) +- current=$number_major +- revision=$number_minor +- age=0 +- ;; + irix|nonstopux) + func_arith $number_major + $number_minor + current=$func_arith_result +@@ -8832,15 +8827,10 @@ + esac + ;; + +- freebsd-aout) +- major=.$current +- versuffix=.$current.$revision +- ;; +- +- freebsd-elf) ++ freebsd*) + func_arith $current - $age + major=.$func_arith_result +- versuffix=$major.$age.$revision ++ versuffix=$major + ;; + + irix | nonstopux) diff --git a/graph/libtiff/files/patch-x-configure b/graph/libtiff/files/patch-x-configure new file mode 100644 index 00000000..4fa15ded --- /dev/null +++ b/graph/libtiff/files/patch-x-configure @@ -0,0 +1,11 @@ +--- ./configure.orig 2015-09-12 21:48:45.894304311 +0200 ++++ ./configure 2016-02-07 08:22:21.771612000 +0200 +@@ -3589,7 +3589,7 @@ + LIBTIFF_VERSION=$LIBTIFF_MAJOR_VERSION.$LIBTIFF_MINOR_VERSION.$LIBTIFF_MICRO_VERSION$LIBTIFF_ALPHA_VERSION + LIBTIFF_RELEASE_DATE=`date +"%Y%m%d"` + +-LIBTIFF_CURRENT=7 ++LIBTIFF_CURRENT=5 + LIBTIFF_REVISION=4 + LIBTIFF_AGE=2 + LIBTIFF_VERSION_INFO=$LIBTIFF_CURRENT:$LIBTIFF_REVISION:$LIBTIFF_AGE diff --git a/graph/libtiff/pkg-descr b/graph/libtiff/pkg-descr new file mode 100644 index 00000000..7e73e03b --- /dev/null +++ b/graph/libtiff/pkg-descr @@ -0,0 +1,17 @@ +This software provides support for the Tag Image File Format (TIFF), +a widely used format for storing image data. + +Included in this software distribution is a library, libtiff, for +reading and writing TIFF, a small collection of tools for doing +simple manipulations of TIFF images on UNIX systems, and documentation +on the library and tools. A small assortment of TIFF-related software +for UNIX that has been contributed by others is also included. + +The library is capable of dealing with images that are written to +follow the 5.0 or 6.0 TIFF spec. There is also considerable support +for some of the more esoteric portions of the 6.0 TIFF spec. + +Unless NOPORTDOCS is defined, the html documentations is also +installed locally in /usr/local/share/doc/tiff. + +WWW: http://www.libtiff.org/ diff --git a/graph/libtiff/pkg-plist b/graph/libtiff/pkg-plist new file mode 100644 index 00000000..2f7a0abd --- /dev/null +++ b/graph/libtiff/pkg-plist @@ -0,0 +1,164 @@ +bin/bmp2tiff +bin/fax2ps +bin/fax2tiff +bin/gif2tiff +bin/pal2rgb +bin/ppm2tiff +bin/ras2tiff +bin/raw2tiff +bin/rgb2ycbcr +bin/thumbnail +bin/tiff2bw +bin/tiff2pdf +bin/tiff2ps +bin/tiff2rgba +bin/tiffcmp +bin/tiffcp +bin/tiffcrop +bin/tiffdither +bin/tiffdump +bin/tiffinfo +bin/tiffmedian +bin/tiffset +bin/tiffsplit +include/tiff.h +include/tiffconf.h +include/tiffio.h +include/tiffio.hxx +include/tiffvers.h +lib/libtiff.a +lib/libtiff.la +lib/libtiff.so +lib/libtiff.so.3 +lib/libtiffxx.a +lib/libtiffxx.la +lib/libtiffxx.so +lib/libtiffxx.so.3 +@comment lib/pkgconfig/libtiff-4.pc +man/man1/bmp2tiff.1.gz +man/man1/fax2ps.1.gz +man/man1/fax2tiff.1.gz +man/man1/gif2tiff.1.gz +man/man1/pal2rgb.1.gz +man/man1/ppm2tiff.1.gz +man/man1/ras2tiff.1.gz +man/man1/raw2tiff.1.gz +man/man1/rgb2ycbcr.1.gz +man/man1/sgi2tiff.1.gz +man/man1/thumbnail.1.gz +man/man1/tiff2bw.1.gz +man/man1/tiff2pdf.1.gz +man/man1/tiff2ps.1.gz +man/man1/tiff2rgba.1.gz +man/man1/tiffcmp.1.gz +man/man1/tiffcp.1.gz +man/man1/tiffcrop.1.gz +man/man1/tiffdither.1.gz +man/man1/tiffdump.1.gz +man/man1/tiffgt.1.gz +man/man1/tiffinfo.1.gz +man/man1/tiffmedian.1.gz +man/man1/tiffset.1.gz +man/man1/tiffsplit.1.gz +man/man1/tiffsv.1.gz +man/man3/libtiff.3tiff.gz +man/man3/TIFFbuffer.3tiff.gz +man/man3/TIFFCheckTile.3tiff.gz +man/man3/TIFFClientOpen.3tiff.gz +man/man3/TIFFClose.3tiff.gz +man/man3/TIFFcodec.3tiff.gz +man/man3/TIFFcolor.3tiff.gz +man/man3/TIFFComputeStrip.3tiff.gz +man/man3/TIFFComputeTile.3tiff.gz +man/man3/TIFFCurrentDirectory.3tiff.gz +man/man3/TIFFCurrentRow.3tiff.gz +man/man3/TIFFCurrentStrip.3tiff.gz +man/man3/TIFFCurrentTile.3tiff.gz +man/man3/TIFFDataWidth.3tiff.gz +man/man3/TIFFDefaultStripSize.3tiff.gz +man/man3/TIFFDefaultTileSize.3tiff.gz +man/man3/TIFFError.3tiff.gz +man/man3/TIFFFdOpen.3tiff.gz +man/man3/TIFFFieldDataType.3tiff.gz +man/man3/TIFFFieldName.3tiff.gz +man/man3/TIFFFieldPassCount.3tiff.gz +man/man3/TIFFFieldReadCount.3tiff.gz +man/man3/TIFFFieldTag.3tiff.gz +man/man3/TIFFFieldWriteCount.3tiff.gz +man/man3/TIFFFileName.3tiff.gz +man/man3/TIFFFileno.3tiff.gz +man/man3/TIFFFindCODEC.3tiff.gz +man/man3/TIFFFlush.3tiff.gz +man/man3/TIFFFlushData.3tiff.gz +man/man3/TIFFfree.3tiff.gz +man/man3/TIFFGetField.3tiff.gz +man/man3/TIFFGetFieldDefaulted.3tiff.gz +man/man3/TIFFGetMode.3tiff.gz +man/man3/TIFFIsByteSwapped.3tiff.gz +man/man3/TIFFIsMSB2LSB.3tiff.gz +man/man3/TIFFIsTiled.3tiff.gz +man/man3/TIFFIsUpSampled.3tiff.gz +man/man3/TIFFLastDirectory.3tiff.gz +man/man3/TIFFmalloc.3tiff.gz +man/man3/TIFFmemcmp.3tiff.gz +man/man3/TIFFmemcpy.3tiff.gz +man/man3/TIFFmemory.3tiff.gz +man/man3/TIFFmemset.3tiff.gz +man/man3/TIFFNumberOfStrips.3tiff.gz +man/man3/TIFFNumberOfTiles.3tiff.gz +man/man3/TIFFOpen.3tiff.gz +man/man3/TIFFPrintDirectory.3tiff.gz +man/man3/TIFFquery.3tiff.gz +man/man3/TIFFReadBufferSetup.3tiff.gz +man/man3/TIFFReadDirectory.3tiff.gz +man/man3/TIFFReadEncodedStrip.3tiff.gz +man/man3/TIFFReadEncodedTile.3tiff.gz +man/man3/TIFFReadRawStrip.3tiff.gz +man/man3/TIFFReadRawTile.3tiff.gz +man/man3/TIFFReadRGBAImage.3tiff.gz +man/man3/TIFFReadRGBAImageOriented.3tiff.gz +man/man3/TIFFReadRGBAStrip.3tiff.gz +man/man3/TIFFReadRGBATile.3tiff.gz +man/man3/TIFFReadScanline.3tiff.gz +man/man3/TIFFReadTile.3tiff.gz +man/man3/TIFFrealloc.3tiff.gz +man/man3/TIFFRegisterCODEC.3tiff.gz +man/man3/TIFFReverseBits.3tiff.gz +man/man3/TIFFRewriteDirectory.3tiff.gz +man/man3/TIFFRGBAImage.3tiff.gz +man/man3/TIFFRGBAImageBegin.3tiff.gz +man/man3/TIFFRGBAImageEnd.3tiff.gz +man/man3/TIFFRGBAImageGet.3tiff.gz +man/man3/TIFFRGBAImageOK.3tiff.gz +man/man3/TIFFScanlineSize.3tiff.gz +man/man3/TIFFSetDirectory.3tiff.gz +man/man3/TIFFSetErrorHandler.3tiff.gz +man/man3/TIFFSetField.3tiff.gz +man/man3/TIFFSetSubDirectory.3tiff.gz +man/man3/TIFFSetWarningHandler.3tiff.gz +man/man3/TIFFsize.3tiff.gz +man/man3/TIFFstrip.3tiff.gz +man/man3/TIFFStripSize.3tiff.gz +man/man3/TIFFswab.3tiff.gz +man/man3/TIFFSwabArrayOfLong.3tiff.gz +man/man3/TIFFSwabArrayOfShort.3tiff.gz +man/man3/TIFFSwabLong.3tiff.gz +man/man3/TIFFSwabShort.3tiff.gz +man/man3/TIFFtile.3tiff.gz +man/man3/TIFFTileRowSize.3tiff.gz +man/man3/TIFFTileSize.3tiff.gz +man/man3/TIFFUnRegisterCODEC.3tiff.gz +man/man3/TIFFVGetField.3tiff.gz +man/man3/TIFFVGetFieldDefaulted.3tiff.gz +man/man3/TIFFVSetField.3tiff.gz +man/man3/TIFFVStripSize.3tiff.gz +man/man3/TIFFVTileSize.3tiff.gz +man/man3/TIFFWarning.3tiff.gz +man/man3/TIFFWriteBufferSetup.3tiff.gz +man/man3/TIFFWriteDirectory.3tiff.gz +man/man3/TIFFWriteEncodedStrip.3tiff.gz +man/man3/TIFFWriteEncodedTile.3tiff.gz +man/man3/TIFFWriteRawStrip.3tiff.gz +man/man3/TIFFWriteRawTile.3tiff.gz +man/man3/TIFFWriteScanline.3tiff.gz +man/man3/TIFFWriteTile.3tiff.gz diff --git a/graph/libwebp/Makefile b/graph/libwebp/Makefile new file mode 100644 index 00000000..e5c65ead --- /dev/null +++ b/graph/libwebp/Makefile @@ -0,0 +1,38 @@ +# +# $Id$ +# +PORTNAME= webp +PORTVERSION= 0.4.2 +CATEGORIES= graphics +MASTER_SITES= http://downloads.webmproject.org/releases/webp/ +DISTNAME= lib${PORTNAME}-${PORTVERSION} +PKGNAMEPREFIX= lib + +MAINTAINER= onborodin@gmail.com +COMMENT= Google WebP image format conversion tool + +LIB_DEPENDS+= libgif.so:graph/libgif +LIB_DEPENDS+= libjpeg.so:graph/libjpeg +LIB_DEPENDS+= libpng.so:graph/libpng +LIB_DEPENDS+= libtiff.so:graph/libtiff + + +CPPFLAGS+= -I${LOCALBASE}/include +GNU_CONFIGURE= yes +USES+= gmake +LDFLAGS+= -L${LOCALBASE}/lib +CONFIGURE_ARGS+= --enable-libwebpdecoder +CONFIGURE_ARGS+= --enable-libwebpdemux +CONFIGURE_ARGS+= --enable-libwebpmux +CONFIGURE_ARGS+= --with-pkgconfigdir=${PREFIX}/lib/pkgconfig +USE_LDCONFIG= yes + + +post-patch: + ${REINPLACE_CMD} '/build_vwebp=yes/d' ${WRKSRC}/configure + +post-install: + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libwebp*.so + +.include +#EOF diff --git a/graph/libwebp/distinfo b/graph/libwebp/distinfo new file mode 100644 index 00000000..b53745f0 --- /dev/null +++ b/graph/libwebp/distinfo @@ -0,0 +1,2 @@ +SHA256 (libwebp-0.4.2.tar.gz) = 14d825d7c2ef7d49621bcb6b83466be455585e671ae0a2ebc1f2e07775a1722d +SIZE (libwebp-0.4.2.tar.gz) = 977801 diff --git a/graph/libwebp/pkg-descr b/graph/libwebp/pkg-descr new file mode 100644 index 00000000..2e81d020 --- /dev/null +++ b/graph/libwebp/pkg-descr @@ -0,0 +1,12 @@ +WebP is a new image format that provides lossless and lossy compression for +images on the web. WebP lossless images are 26% smaller in size compared to +PNGs. WebP lossy images are 25-34% smaller in size compared to JPEG images at +equivalent SSIM index. WebP supports lossless transparency (also known as alpha +channel) with just 22% additional bytes. Transparency is also supported with +lossy compression and typically provides 3x smaller file sizes compared to PNG +when lossy compression is acceptable for the red/green/blue color channels. + +Webmasters and web developers can use the WebP image format to create smaller +and richer images that can help make the web faster. + +WWW: https://developers.google.com/speed/webp/ diff --git a/graph/libwebp/pkg-plist b/graph/libwebp/pkg-plist new file mode 100644 index 00000000..d535df10 --- /dev/null +++ b/graph/libwebp/pkg-plist @@ -0,0 +1,35 @@ +bin/cwebp +bin/dwebp +bin/gif2webp +bin/webpmux +include/webp/decode.h +include/webp/demux.h +include/webp/encode.h +include/webp/mux.h +include/webp/mux_types.h +include/webp/types.h +lib/libwebp.a +lib/libwebp.la +lib/libwebp.so +lib/libwebp.so.5 +lib/libwebpdecoder.a +lib/libwebpdecoder.la +lib/libwebpdecoder.so +lib/libwebpdecoder.so.1 +lib/libwebpdemux.a +lib/libwebpdemux.la +lib/libwebpdemux.so +lib/libwebpdemux.so.1 +lib/libwebpmux.a +lib/libwebpmux.la +lib/libwebpmux.so +lib/libwebpmux.so.1 +lib/pkgconfig/libwebp.pc +lib/pkgconfig/libwebpdecoder.pc +lib/pkgconfig/libwebpdemux.pc +lib/pkgconfig/libwebpmux.pc +man/man1/cwebp.1.gz +man/man1/dwebp.1.gz +man/man1/gif2webp.1.gz +man/man1/webpmux.1.gz +@dir include/webp diff --git a/lang/php74/Makefile b/lang/php74/Makefile new file mode 100644 index 00000000..f454ebb0 --- /dev/null +++ b/lang/php74/Makefile @@ -0,0 +1,117 @@ +# +# $Id: Makefile 2636 2009-09-30 12:09:37Z root $ +# +PORTNAME= php +PORTVERSION= 7.4.33 +CATEGORIES= lang devel www +MASTER_SITES= ${MASTER_SITE_PHP} +MASTER_SITE_SUBDIR= distributions +DISTNAME= php-${PORTVERSION} + +MASTER_SITES+= http://dk.php.net/%SUBDIR%/ +MASTER_SITES+= http://de.php.net/%SUBDIR%/ +MASTER_SITES+= http://es.php.net/%SUBDIR%/ +MASTER_SITES+= http://fi.php.net/%SUBDIR%/ +MASTER_SITES+= http://fr.php.net/%SUBDIR%/ +MASTER_SITES+= http://gr.php.net/%SUBDIR%/ +MASTER_SITES+= http://it.php.net/%SUBDIR%/ +MASTER_SITES+= http://jp.php.net/%SUBDIR%/ +MASTER_SITES+= http://se.php.net/%SUBDIR%/ +MASTER_SITES+= http://uk.php.net/%SUBDIR%/ +MASTER_SITES+= http://us2.php.net/%SUBDIR%/ +MASTER_SITES+= http://br.php.net/%SUBDIR%/ +MASTER_SITES+= http://cn.php.net/%SUBDIR%/ +MASTER_SITE_SUBDIR= distributions + + +MAINTAINER= onborodin@gmail.com +COMMENT= PHP Scripting Language (Apache Module and CLI) + +#_APXS= ${LOCALBASE}/sbin/apxs +#BUILD_DEPENDS+= ${_APXS}:net/apache + +LIB_DEPENDS+= libpcre.so:text/libpcre +LIB_DEPENDS+= libxml2.so:text/libxml2 +LIB_DEPENDS+= libiconv.so:text/libiconv + + +USES+= tar:xz gmake +GNU_CONFIGURE= yes + +CPPFLAGS+= -I${LOCALBASE}/include +LDFLAGS= -L${LOCALBASE}/lib -lz + + +#APACHE_LIBEXEC_DIR= ${LOCALBASE}/libexec/apache +#PLIST_SUB+= APACHE_LIBEXEC_DIR="libexec/apache" +#SUB_LIST+= APACHE_LIBEXEC_DIR="${APACHE_LIBEXEC_DIR}" +#SUB_LIST+= APXS="${APXS}" + +CONFIGURE_ARGS+= --enable-cli +CONFIGURE_ARGS+= --with-readline +CONFIGURE_ARGS+= --without-pear + +CONFIGURE_ARGS+= --without-apxs2 +#CONFIGURE_ARGS+= --with-apxs2=${_APXS} + +CONFIGURE_ARGS+= --with-zlib-dir=/usr +CONFIGURE_ARGS+= --enable-ipv6 + +CONFIGURE_ARGS+= --with-layout=GNU +CONFIGURE_ARGS+= --with-config-file-scan-dir=${PREFIX}/etc/php +CONFIGURE_ARGS+= --with-config-file-path=${PREFIX}/etc:${LOCALBASE}/etc/apache +CONFIGURE_ARGS+= --with-config-file-scan-dir=${PREFIX}/etc/php +CONFIGURE_ARGS+= --disable-all + +CONFIGURE_ARGS+= --enable-libxml +CONFIGURE_ARGS+= --enable-xml +CONFIGURE_ARGS+= --with-libxml=${LOCALBASE} +CONFIGURE_ARGS+= --enable-mysqlnd +CONFIGURE_ARGS+= --with-libxml-dir=${LOCALBASE} +CONFIGURE_ARGS+= --with-pcre-regex=${LOCALBASE} +CONFIGURE_ARGS+= --program-prefix="" + +#CONFIGURE_ARGS+= --enable-maintainer-zts +CONFIGURE_ENV+= pthreads_working="yes" +CONFIGURE_ENV+= ac_cv_decimal_fp_supported="no" +CONFIGURE_ENV+= lt_cv_path_SED="sed" + + +USE_RC_SUBR+= php-fpm + +CONFIGURE_ARGS+= --enable-fpm +CONFIGURE_ARGS+= --with-fpm-user=${WWWOWN} +CONFIGURE_ARGS+= --with-fpm-group=${WWWGRP} + +CONFIGURE_ARGS+= --enable-embed=shared + +DESTDIRNAME= INSTALL_ROOT + +post-patch: + ${TOUCH} ${WRKSRC}/ext/php_config.h + cd ${WRKSRC} && autoreconf + +#pre-install: +# ${MKDIR} ${STAGEDIR}${PREFIX}/etc/apache +# echo "" >> ${STAGEDIR}${PREFIX}/etc/apache/apache.conf +# echo "LoadModule some_module libexec/apache/mod_some.so" >> \ +# ${STAGEDIR}${PREFIX}/etc/apache/apache.conf +# echo "" >> ${STAGEDIR}${PREFIX}/etc/apache/apache.conf + +post-install: + ${MKDIR} -p ${EXAMPLESDIR} + ${INSTALL_DATA} ${WRKSRC}/php.ini-development ${EXAMPLESDIR} + ${INSTALL_DATA} ${WRKSRC}/php.ini-production ${EXAMPLESDIR} + cd ${STAGEDIR}${PREFIX}/man/man1 && ${LN} -sf php.1 php-cgi.1 + ${INSTALL_DATA} ${WRKSRC}/ext/php_config.h ${STAGEDIR}${PREFIX}/include/php/ext/ + +.include + +.if (${OSVERSION} > 1100000) +LIB_DEPENDS+= libreadline.so:devel/libreadline +CFLAGS+= -I${LOCALBASE}/include +LDFLAGS+= -L${LOCALBASE}/lib +.endif + +.include +#EOF diff --git a/lang/php74/configure.help b/lang/php74/configure.help new file mode 100644 index 00000000..090ffa75 --- /dev/null +++ b/lang/php74/configure.help @@ -0,0 +1,444 @@ +#`configure' configures PHP 7.4.33 to adapt to many kinds of systems. +# +#Usage: ./configure [OPTION]... [VAR=VALUE]... +# +#To assign environment variables (e.g., CC, CFLAGS...), specify them as +#VAR=VALUE. See below for descriptions of some of the useful variables. +# +#Defaults for the options are specified in brackets. +# +#Configuration: +# -h,CONFIGURE_ARGS+= --help display this help and exit +# CONFIGURE_ARGS+= --help=short display options specific to this package +# CONFIGURE_ARGS+= --help=recursive display the short help of all the included packages +# -V,CONFIGURE_ARGS+= --version display version information and exit +# -q,CONFIGURE_ARGS+= --quiet, --silent do not print `checking ...' messages +# CONFIGURE_ARGS+= --cache-file=FILE cache test results in FILE [disabled] +# -C,CONFIGURE_ARGS+= --config-cache alias for `--cache-file=config.cache' +# -n,CONFIGURE_ARGS+= --no-create do not create output files +# CONFIGURE_ARGS+= --srcdir=DIR find the sources in DIR [configure dir or `..'] +# +#Installation directories: +# CONFIGURE_ARGS+= --prefix=PREFIX install architecture-independent files in PREFIX +# [/usr/local] +# CONFIGURE_ARGS+= --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX +# [PREFIX] +# +#By default, `make install' will install all the files in +#`/usr/local/bin', `/usr/local/lib' etc. You can specify +#an installation prefix other than `/usr/local' using `--prefix', +#for instance `--prefix=$HOME'. +# +#For better control, use the options below. +# +#Fine tuning of the installation directories: +# CONFIGURE_ARGS+= --bindir=DIR user executables [EPREFIX/bin] +# CONFIGURE_ARGS+= --sbindir=DIR system admin executables [EPREFIX/sbin] +# CONFIGURE_ARGS+= --libexecdir=DIR program executables [EPREFIX/libexec] +# CONFIGURE_ARGS+= --sysconfdir=DIR read-only single-machine data [PREFIX/etc] +# CONFIGURE_ARGS+= --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com] +# CONFIGURE_ARGS+= --localstatedir=DIR modifiable single-machine data [PREFIX/var] +# CONFIGURE_ARGS+= --runstatedir=DIR modifiable per-process data [LOCALSTATEDIR/run] +# CONFIGURE_ARGS+= --libdir=DIR object code libraries [EPREFIX/lib] +# CONFIGURE_ARGS+= --includedir=DIR C header files [PREFIX/include] +# CONFIGURE_ARGS+= --oldincludedir=DIR C header files for non-gcc [/usr/include] +# CONFIGURE_ARGS+= --datarootdir=DIR read-only arch.-independent data root [PREFIX/share] +# CONFIGURE_ARGS+= --datadir=DIR read-only architecture-independent data [DATAROOTDIR] +# CONFIGURE_ARGS+= --infodir=DIR info documentation [DATAROOTDIR/info] +# CONFIGURE_ARGS+= --localedir=DIR locale-dependent data [DATAROOTDIR/locale] +# CONFIGURE_ARGS+= --mandir=DIR man documentation [DATAROOTDIR/man] +# CONFIGURE_ARGS+= --docdir=DIR documentation root [DATAROOTDIR/doc/php] +# CONFIGURE_ARGS+= --htmldir=DIR html documentation [DOCDIR] +# CONFIGURE_ARGS+= --dvidir=DIR dvi documentation [DOCDIR] +# CONFIGURE_ARGS+= --pdfdir=DIR pdf documentation [DOCDIR] +# CONFIGURE_ARGS+= --psdir=DIR ps documentation [DOCDIR] +# +#Program names: +# CONFIGURE_ARGS+= --program-prefix=PREFIX prepend PREFIX to installed program names +# CONFIGURE_ARGS+= --program-suffix=SUFFIX append SUFFIX to installed program names +# CONFIGURE_ARGS+= --program-transform-name=PROGRAM run sed PROGRAM on installed program names +# +#System types: +# CONFIGURE_ARGS+= --build=BUILD configure for building on BUILD [guessed] +# CONFIGURE_ARGS+= --host=HOST cross-compile to build programs to run on HOST [BUILD] +# CONFIGURE_ARGS+= --target=TARGET configure for building compilers for TARGET [HOST] +# +#Optional Features and Packages: +# CONFIGURE_ARGS+= --disable-option-checking ignore unrecognized --enable/--with options +# CONFIGURE_ARGS+= --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) +# CONFIGURE_ARGS+= --enable-FEATURE[=ARG] include FEATURE [ARG=yes] +# CONFIGURE_ARGS+= --with-PACKAGE[=ARG] use PACKAGE [ARG=yes] +# CONFIGURE_ARGS+= --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no) +# CONFIGURE_ARGS+= --with-libdir=NAME Look for libraries in .../NAME rather than .../lib +# CONFIGURE_ARGS+= --disable-rpath Disable passing additional runtime library search +# paths +# CONFIGURE_ARGS+= --enable-re2c-cgoto Enable -g flag to re2c to use computed goto gcc +# extension +# CONFIGURE_ARGS+= --disable-gcc-global-regs +# whether to enable GCC global register variables +# +#SAPI modules: +# +# CONFIGURE_ARGS+= --with-apxs2[=FILE] Build shared Apache 2 handler module. FILE is the +# optional pathname to the Apache apxs tool [apxs] +# CONFIGURE_ARGS+= --disable-cli Disable building CLI version of PHP (this forces +# CONFIGURE_ARGS+= --without-pear) +# CONFIGURE_ARGS+= --enable-embed[=TYPE] EXPERIMENTAL: Enable building of embedded SAPI +# library TYPE is either 'shared' or 'static'. +# [TYPE=shared] +# CONFIGURE_ARGS+= --enable-fpm Enable building of the fpm SAPI executable +# CONFIGURE_ARGS+= --with-fpm-user[=USER] Set the user for php-fpm to run as. (default: +# nobody) +# CONFIGURE_ARGS+= --with-fpm-group[=GRP] Set the group for php-fpm to run as. For a system +# user, this should usually be set to match the fpm +# username (default: nobody) +# CONFIGURE_ARGS+= --with-fpm-systemd Activate systemd integration +# CONFIGURE_ARGS+= --with-fpm-acl Use POSIX Access Control Lists +# CONFIGURE_ARGS+= --enable-litespeed Build PHP as litespeed module +# CONFIGURE_ARGS+= --enable-phpdbg Build phpdbg +# CONFIGURE_ARGS+= --enable-phpdbg-webhelper +# Build phpdbg web SAPI support +# CONFIGURE_ARGS+= --enable-phpdbg-debug Build phpdbg in debug mode +# CONFIGURE_ARGS+= --enable-phpdbg-readline +# Enable readline support in phpdbg (depends on static +# ext/readline) +# CONFIGURE_ARGS+= --disable-cgi Disable building CGI version of PHP +# CONFIGURE_ARGS+= --with-valgrind Enable valgrind support +# +#General settings: +# +# CONFIGURE_ARGS+= --enable-gcov Enable GCOV code coverage - FOR DEVELOPERS ONLY!! +# CONFIGURE_ARGS+= --enable-debug Compile with debugging symbols +# CONFIGURE_ARGS+= --enable-rtld-now Use dlopen with RTLD_NOW instead of RTLD_LAZY +# CONFIGURE_ARGS+= --with-layout=TYPE Set how installed files will be laid out. Type can +# be either PHP or GNU [PHP] +# CONFIGURE_ARGS+= --with-config-file-path=PATH +# Set the path in which to look for php.ini +# [PREFIX/lib] +# CONFIGURE_ARGS+= --with-config-file-scan-dir=PATH +# Set the path where to scan for configuration files +# CONFIGURE_ARGS+= --enable-sigchild Enable PHP's own SIGCHLD handler +# CONFIGURE_ARGS+= --enable-libgcc Enable explicitly linking against libgcc +# CONFIGURE_ARGS+= --disable-short-tags Disable the short-form = 1.0.1) +# CONFIGURE_ARGS+= --with-kerberos OPENSSL: Include Kerberos support +# CONFIGURE_ARGS+= --with-system-ciphers OPENSSL: Use system default cipher list instead of +# hardcoded value +# CONFIGURE_ARGS+= --with-external-pcre Use external library for PCRE support +# CONFIGURE_ARGS+= --with-pcre-jit Enable PCRE JIT functionality +# CONFIGURE_ARGS+= --without-sqlite3 Do not include SQLite3 support. +# CONFIGURE_ARGS+= --with-zlib Include ZLIB support (requires zlib >= 1.2.0.4) +# CONFIGURE_ARGS+= --enable-bcmath Enable bc style precision math functions +# CONFIGURE_ARGS+= --with-bz2[=DIR] Include BZip2 support +# CONFIGURE_ARGS+= --enable-calendar Enable support for calendar conversion +# CONFIGURE_ARGS+= --disable-ctype Disable ctype functions +# CONFIGURE_ARGS+= --with-curl Include cURL support +# CONFIGURE_ARGS+= --enable-dba Build DBA with bundled modules. To build shared DBA +# extension useCONFIGURE_ARGS+= --enable-dba=shared +# CONFIGURE_ARGS+= --with-qdbm[=DIR] DBA: QDBM support +# CONFIGURE_ARGS+= --with-gdbm[=DIR] DBA: GDBM support +# CONFIGURE_ARGS+= --with-ndbm[=DIR] DBA: NDBM support +# CONFIGURE_ARGS+= --with-db4[=DIR] DBA: Oracle Berkeley DB 4.x or 5.x support +# CONFIGURE_ARGS+= --with-db3[=DIR] DBA: Oracle Berkeley DB 3.x support +# CONFIGURE_ARGS+= --with-db2[=DIR] DBA: Oracle Berkeley DB 2.x support +# CONFIGURE_ARGS+= --with-db1[=DIR] DBA: Oracle Berkeley DB 1.x support/emulation +# CONFIGURE_ARGS+= --with-dbm[=DIR] DBA: DBM support +# CONFIGURE_ARGS+= --with-tcadb[=DIR] DBA: Tokyo Cabinet abstract DB support +# CONFIGURE_ARGS+= --with-lmdb[=DIR] DBA: Lightning memory-mapped database support +# CONFIGURE_ARGS+= --without-cdb[=DIR] DBA: CDB support (bundled) +# CONFIGURE_ARGS+= --disable-inifile DBA: INI support (bundled) +# CONFIGURE_ARGS+= --disable-flatfile DBA: FlatFile support (bundled) +# CONFIGURE_ARGS+= --disable-dom Disable DOM support +# CONFIGURE_ARGS+= --with-enchant Include Enchant support +# CONFIGURE_ARGS+= --enable-exif Enable EXIF (metadata from images) support +# CONFIGURE_ARGS+= --with-ffi Include FFI support +# CONFIGURE_ARGS+= --disable-fileinfo Disable fileinfo support +# CONFIGURE_ARGS+= --disable-filter Disable input filter support +# CONFIGURE_ARGS+= --enable-ftp Enable FTP support +# CONFIGURE_ARGS+= --with-openssl-dir FTP: Whether to enable FTP SSL support without +# ext/openssl +# CONFIGURE_ARGS+= --enable-gd Include GD support +# CONFIGURE_ARGS+= --with-external-gd Use external libgd +# CONFIGURE_ARGS+= --with-webp GD: Enable WEBP support (only for bundled libgd) +# CONFIGURE_ARGS+= --with-jpeg GD: Enable JPEG support (only for bundled libgd) +# CONFIGURE_ARGS+= --with-xpm GD: Enable XPM support (only for bundled libgd) +# CONFIGURE_ARGS+= --with-freetype GD: Enable FreeType 2 support (only for bundled +# libgd) +# CONFIGURE_ARGS+= --enable-gd-jis-conv GD: Enable JIS-mapped Japanese font support (only +# for bundled libgd) +# CONFIGURE_ARGS+= --with-gettext[=DIR] Include GNU gettext support +# CONFIGURE_ARGS+= --with-gmp[=DIR] Include GNU MP support +# CONFIGURE_ARGS+= --with-mhash Include mhash support +# CONFIGURE_ARGS+= --without-iconv[=DIR] Exclude iconv support +# CONFIGURE_ARGS+= --with-imap[=DIR] Include IMAP support. DIR is the c-client install +# prefix +# CONFIGURE_ARGS+= --with-kerberos IMAP: Include Kerberos support +# CONFIGURE_ARGS+= --with-imap-ssl IMAP: Include SSL support +# CONFIGURE_ARGS+= --enable-intl Enable internationalization support +# CONFIGURE_ARGS+= --disable-json Disable JavaScript Object Serialization support +# CONFIGURE_ARGS+= --with-ldap[=DIR] Include LDAP support +# CONFIGURE_ARGS+= --with-ldap-sasl LDAP: Build with Cyrus SASL support +# CONFIGURE_ARGS+= --enable-mbstring Enable multibyte string support +# CONFIGURE_ARGS+= --disable-mbregex MBSTRING: Disable multibyte regex support +# CONFIGURE_ARGS+= --with-mysqli[=FILE] Include MySQLi support. FILE is the path to +# mysql_config. If no value or mysqlnd is passed as +# FILE, the MySQL native driver will be used +# CONFIGURE_ARGS+= --with-mysql-sock[=SOCKPATH] +# MySQLi/PDO_MYSQL: Location of the MySQL unix socket +# pointer. If unspecified, the default locations are +# searched +# CONFIGURE_ARGS+= --with-oci8[=DIR] Include Oracle Database OCI8 support. DIR defaults +# to $ORACLE_HOME. Use +# CONFIGURE_ARGS+= --with-oci8=instantclient,/path/to/instant/client/lib +# to use an Oracle Instant Client installation +# CONFIGURE_ARGS+= --with-odbcver[=HEX] Force support for the passed ODBC version. A hex +# number is expected, default 0x0350. Use the special +# value of 0 to prevent an explicit ODBCVER to be +# defined. +# CONFIGURE_ARGS+= --with-adabas[=DIR] Include Adabas D support [/usr/local] +# CONFIGURE_ARGS+= --with-sapdb[=DIR] Include SAP DB support [/usr/local] +# CONFIGURE_ARGS+= --with-solid[=DIR] Include Solid support [/usr/local/solid] +# CONFIGURE_ARGS+= --with-ibm-db2[=DIR] Include IBM DB2 support [/home/db2inst1/sqllib] +# CONFIGURE_ARGS+= --with-empress[=DIR] Include Empress support $EMPRESSPATH (Empress +# Version >= 8.60 required) +# CONFIGURE_ARGS+= --with-empress-bcs[=DIR] +# Include Empress Local Access support $EMPRESSPATH +# (Empress Version >= 8.60 required) +# CONFIGURE_ARGS+= --with-custom-odbc[=DIR] +# Include user defined ODBC support. DIR is ODBC +# install base directory [/usr/local]. Make sure to +# define CUSTOM_ODBC_LIBS and have some odbc.h in your +# include dirs. For example, you should define +# following for Sybase SQL Anywhere 5.5.00 on QNX, +# prior to running this configure script: +# CPPFLAGS="-DODBC_QNX -DSQLANY_BUG" LDFLAGS=-lunix +# CUSTOM_ODBC_LIBS="-ldblib -lodbc" +# CONFIGURE_ARGS+= --with-iodbc Include iODBC support +# CONFIGURE_ARGS+= --with-esoob[=DIR] Include Easysoft OOB support +# [/usr/local/easysoft/oob/client] +# CONFIGURE_ARGS+= --with-unixODBC Include unixODBC support +# CONFIGURE_ARGS+= --with-dbmaker[=DIR] Include DBMaker support +# CONFIGURE_ARGS+= --disable-opcache Disable Zend OPcache support +# CONFIGURE_ARGS+= --disable-huge-code-pages +# Disable copying PHP CODE pages into HUGE PAGES +# CONFIGURE_ARGS+= --enable-pcntl Enable pcntl support (CLI/CGI only) +# CONFIGURE_ARGS+= --disable-pdo Disable PHP Data Objects support +# CONFIGURE_ARGS+= --with-pdo-dblib[=DIR] PDO: DBLIB-DB support. DIR is the FreeTDS home +# directory +# CONFIGURE_ARGS+= --with-pdo-firebird[=DIR] +# PDO: Firebird support. DIR is the Firebird base +# install directory [/opt/firebird] +# CONFIGURE_ARGS+= --with-pdo-mysql[=DIR] PDO: MySQL support. DIR is the MySQL base directory. +# If no value or mysqlnd is passed as DIR, the MySQL +# native driver will be used +# CONFIGURE_ARGS+= --with-zlib-dir[=DIR] PDO_MySQL: Set the path to libz install prefix +# CONFIGURE_ARGS+= --with-pdo-oci[=DIR] PDO: Oracle OCI support. DIR defaults to +# $ORACLE_HOME. Use +# CONFIGURE_ARGS+= --with-pdo-oci=instantclient,/path/to/instant/client/lib +# for an Oracle Instant Client installation. +# CONFIGURE_ARGS+= --with-pdo-odbc=flavour,dir +# PDO: Support for 'flavour' ODBC driver. The include +# and lib dirs are looked for under 'dir'. The +# 'flavour' can be one of: ibm-db2, iODBC, unixODBC, +# generic. If ',dir' part is omitted, default for the +# flavour you have selected will be used. e.g.: +# CONFIGURE_ARGS+= --with-pdo-odbc=unixODBC will check for unixODBC +# under /usr/local. You may attempt to use an +# otherwise unsupported driver using the 'generic' +# flavour. The syntax for generic ODBC support is: +# CONFIGURE_ARGS+= --with-pdo-odbc=generic,dir,libname,ldflags,cflags. +# When built as 'shared' the extension filename is +# always pdo_odbc.so +# CONFIGURE_ARGS+= --with-pdo-pgsql[=DIR] PDO: PostgreSQL support. DIR is the PostgreSQL base +# install directory or the path to pg_config +# CONFIGURE_ARGS+= --without-pdo-sqlite PDO: sqlite 3 support. +# CONFIGURE_ARGS+= --with-pgsql[=DIR] Include PostgreSQL support. DIR is the PostgreSQL +# base install directory or the path to pg_config +# CONFIGURE_ARGS+= --disable-phar Disable phar support +# CONFIGURE_ARGS+= --disable-posix Disable POSIX-like functions +# CONFIGURE_ARGS+= --with-pspell[=DIR] Include PSPELL support. GNU Aspell version 0.50.0 or +# higher required +# CONFIGURE_ARGS+= --with-libedit Include libedit readline replacement (CLI/CGI only) +# CONFIGURE_ARGS+= --with-readline[=DIR] Include readline support (CLI/CGI only) +# CONFIGURE_ARGS+= --disable-session Disable session support +# CONFIGURE_ARGS+= --with-mm[=DIR] SESSION: Include mm support for session storage +# CONFIGURE_ARGS+= --enable-shmop Enable shmop support +# CONFIGURE_ARGS+= --disable-simplexml Disable SimpleXML support +# CONFIGURE_ARGS+= --with-snmp[=DIR] Include SNMP support +# CONFIGURE_ARGS+= --enable-soap Enable SOAP support +# CONFIGURE_ARGS+= --enable-sockets Enable sockets support +# CONFIGURE_ARGS+= --with-sodium Include sodium support +# CONFIGURE_ARGS+= --with-password-argon2[=DIR] +# Include Argon2 support in password_*. DIR is the +# Argon2 shared library path +# CONFIGURE_ARGS+= --enable-sysvmsg Enable sysvmsg support +# CONFIGURE_ARGS+= --enable-sysvsem Enable System V semaphore support +# CONFIGURE_ARGS+= --enable-sysvshm Enable the System V shared memory support +# CONFIGURE_ARGS+= --with-tidy[=DIR] Include TIDY support +# CONFIGURE_ARGS+= --disable-tokenizer Disable tokenizer support +# CONFIGURE_ARGS+= --disable-xml Disable XML support +# CONFIGURE_ARGS+= --with-expat XML: use expat instead of libxml2 +# CONFIGURE_ARGS+= --disable-xmlreader Disable XMLReader support +# CONFIGURE_ARGS+= --with-xmlrpc[=DIR] Include XMLRPC-EPI support +# CONFIGURE_ARGS+= --with-expat XMLRPC-EPI: use expat instead of libxml2 +# CONFIGURE_ARGS+= --with-iconv-dir=DIR XMLRPC-EPI: iconv dir for XMLRPC-EPI +# CONFIGURE_ARGS+= --disable-xmlwriter Disable XMLWriter support +# CONFIGURE_ARGS+= --with-xsl Build with XSL support +# CONFIGURE_ARGS+= --enable-zend-test Enable zend-test extension +# CONFIGURE_ARGS+= --with-zip Include Zip read/write support +# CONFIGURE_ARGS+= --enable-mysqlnd Enable mysqlnd explicitly, will be done implicitly +# when required by other extensions +# CONFIGURE_ARGS+= --disable-mysqlnd-compression-support +# Disable support for the MySQL compressed protocol in +# mysqlnd +# +#PEAR: +# +# CONFIGURE_ARGS+= --with-pear[=DIR] Install PEAR in DIR [PREFIX/lib/php] +# +#Zend: +# +# CONFIGURE_ARGS+= --enable-maintainer-zts Enable thread safety - for code maintainers only!! +# CONFIGURE_ARGS+= --disable-inline-optimization +# If building zend_execute.lo fails, try this switch +# CONFIGURE_ARGS+= --disable-zend-signals whether to enable zend signal handling +# +#TSRM: +# +# CONFIGURE_ARGS+= --with-tsrm-pth[=pth-config] +# Use GNU Pth +# CONFIGURE_ARGS+= --with-tsrm-st Use SGI's State Threads +# CONFIGURE_ARGS+= --with-tsrm-pthreads Use POSIX threads (default) +# +#Libtool: +# +# CONFIGURE_ARGS+= --enable-shared=PKGS Build shared libraries default=yes +# CONFIGURE_ARGS+= --enable-static=PKGS Build static libraries default=yes +# CONFIGURE_ARGS+= --enable-fast-install=PKGS +# Optimize for fast installation default=yes +# CONFIGURE_ARGS+= --with-gnu-ld Assume the C compiler uses GNU ld default=no +# CONFIGURE_ARGS+= --disable-libtool-lock Avoid locking (might break parallel builds) +# CONFIGURE_ARGS+= --with-pic Try to use only PIC/non-PIC objects default=use both +# CONFIGURE_ARGS+= --with-tags=TAGS Include additional configurations automatic +# +# +#Some influential environment variables: +# PKG_CONFIG path to pkg-config utility +# PKG_CONFIG_PATH +# directories to add to pkg-config's search path +# PKG_CONFIG_LIBDIR +# path overriding pkg-config's built-in search path +# CC C compiler command +# CFLAGS C compiler flags +# LDFLAGS linker flags, e.g. -L if you have libraries in a +# nonstandard directory +# LIBS libraries to pass to the linker, e.g. -l +# CPPFLAGS (Objective) C/C++ preprocessor flags, e.g. -I if +# you have headers in a nonstandard directory +# CPP C preprocessor +# SYSTEMD_CFLAGS +# C compiler flags for SYSTEMD, overriding pkg-config +# SYSTEMD_LIBS +# linker flags for SYSTEMD, overriding pkg-config +# VALGRIND_CFLAGS +# C compiler flags for VALGRIND, overriding pkg-config +# VALGRIND_LIBS +# linker flags for VALGRIND, overriding pkg-config +# LIBXML_CFLAGS +# C compiler flags for LIBXML, overriding pkg-config +# LIBXML_LIBS linker flags for LIBXML, overriding pkg-config +# KERBEROS_CFLAGS +# C compiler flags for KERBEROS, overriding pkg-config +# KERBEROS_LIBS +# linker flags for KERBEROS, overriding pkg-config +# OPENSSL_CFLAGS +# C compiler flags for OPENSSL, overriding pkg-config +# OPENSSL_LIBS +# linker flags for OPENSSL, overriding pkg-config +# PCRE2_CFLAGS +# C compiler flags for PCRE2, overriding pkg-config +# PCRE2_LIBS linker flags for PCRE2, overriding pkg-config +# SQLITE_CFLAGS +# C compiler flags for SQLITE, overriding pkg-config +# SQLITE_LIBS linker flags for SQLITE, overriding pkg-config +# ZLIB_CFLAGS C compiler flags for ZLIB, overriding pkg-config +# ZLIB_LIBS linker flags for ZLIB, overriding pkg-config +# CURL_CFLAGS C compiler flags for CURL, overriding pkg-config +# CURL_LIBS linker flags for CURL, overriding pkg-config +# CURL_FEATURES +# value of supported_features for libcurl, overriding pkg-config +# ENCHANT_CFLAGS +# C compiler flags for ENCHANT, overriding pkg-config +# ENCHANT_LIBS +# linker flags for ENCHANT, overriding pkg-config +# FFI_CFLAGS C compiler flags for FFI, overriding pkg-config +# FFI_LIBS linker flags for FFI, overriding pkg-config +# PNG_CFLAGS C compiler flags for PNG, overriding pkg-config +# PNG_LIBS linker flags for PNG, overriding pkg-config +# WEBP_CFLAGS C compiler flags for WEBP, overriding pkg-config +# WEBP_LIBS linker flags for WEBP, overriding pkg-config +# JPEG_CFLAGS C compiler flags for JPEG, overriding pkg-config +# JPEG_LIBS linker flags for JPEG, overriding pkg-config +# XPM_CFLAGS C compiler flags for XPM, overriding pkg-config +# XPM_LIBS linker flags for XPM, overriding pkg-config +# FREETYPE2_CFLAGS +# C compiler flags for FREETYPE2, overriding pkg-config +# FREETYPE2_LIBS +# linker flags for FREETYPE2, overriding pkg-config +# GDLIB_CFLAGS +# C compiler flags for GDLIB, overriding pkg-config +# GDLIB_LIBS linker flags for GDLIB, overriding pkg-config +# ICU_CFLAGS C compiler flags for ICU, overriding pkg-config +# ICU_LIBS linker flags for ICU, overriding pkg-config +# CXX C++ compiler command +# CXXFLAGS C++ compiler flags +# CXXCPP C++ preprocessor +# SASL_CFLAGS C compiler flags for SASL, overriding pkg-config +# SASL_LIBS linker flags for SASL, overriding pkg-config +# ONIG_CFLAGS C compiler flags for ONIG, overriding pkg-config +# ONIG_LIBS linker flags for ONIG, overriding pkg-config +# ODBC_CFLAGS C compiler flags for ODBC, overriding pkg-config +# ODBC_LIBS linker flags for ODBC, overriding pkg-config +# EDIT_CFLAGS C compiler flags for EDIT, overriding pkg-config +# EDIT_LIBS linker flags for EDIT, overriding pkg-config +# LIBSODIUM_CFLAGS +# C compiler flags for LIBSODIUM, overriding pkg-config +# LIBSODIUM_LIBS +# linker flags for LIBSODIUM, overriding pkg-config +# EXPAT_CFLAGS +# C compiler flags for EXPAT, overriding pkg-config +# EXPAT_LIBS linker flags for EXPAT, overriding pkg-config +# XSL_CFLAGS C compiler flags for XSL, overriding pkg-config +# XSL_LIBS linker flags for XSL, overriding pkg-config +# EXSLT_CFLAGS +# C compiler flags for EXSLT, overriding pkg-config +# EXSLT_LIBS linker flags for EXSLT, overriding pkg-config +# LIBZIP_CFLAGS +# C compiler flags for LIBZIP, overriding pkg-config +# LIBZIP_LIBS linker flags for LIBZIP, overriding pkg-config +# +#Use these variables to override the choices made by `configure' or to help +#it to find libraries and programs with nonstandard names/locations. +# +#Report bugs to . +#PHP home page: . diff --git a/lang/php74/distinfo b/lang/php74/distinfo new file mode 100644 index 00000000..a65b4be6 --- /dev/null +++ b/lang/php74/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1756204397 +SHA256 (php-7.4.33.tar.xz) = 924846abf93bc613815c55dd3f5809377813ac62a9ec4eb3778675b82a27b927 +SIZE (php-7.4.33.tar.xz) = 10420144 diff --git a/lang/php74/files/patch-build_Makefile.global b/lang/php74/files/patch-build_Makefile.global new file mode 100644 index 00000000..4b838d15 --- /dev/null +++ b/lang/php74/files/patch-build_Makefile.global @@ -0,0 +1,19 @@ +--- build/Makefile.global.orig 2019-08-06 06:54:07 UTC ++++ build/Makefile.global +@@ -89,14 +89,14 @@ test: all + @if test ! -z "$(PHP_EXECUTABLE)" && test -x "$(PHP_EXECUTABLE)"; then \ + INI_FILE=`$(PHP_EXECUTABLE) -d 'display_errors=stderr' -r 'echo php_ini_loaded_file();' 2> /dev/null`; \ + if test "$$INI_FILE"; then \ +- $(EGREP) -h -v $(PHP_DEPRECATED_DIRECTIVES_REGEX) "$$INI_FILE" > $(top_builddir)/tmp-php.ini; \ ++ $(EGREP) -h -v $(PHP_DEPRECATED_DIRECTIVES_REGEX) "$$INI_FILE" > $(top_builddir)/tmp-php.ini || :; \ + else \ + echo > $(top_builddir)/tmp-php.ini; \ + fi; \ + INI_SCANNED_PATH=`$(PHP_EXECUTABLE) -d 'display_errors=stderr' -r '$$a = explode(",\n", trim(php_ini_scanned_files())); echo $$a[0];' 2> /dev/null`; \ + if test "$$INI_SCANNED_PATH"; then \ + INI_SCANNED_PATH=`$(top_srcdir)/build/shtool path -d $$INI_SCANNED_PATH`; \ +- $(EGREP) -h -v $(PHP_DEPRECATED_DIRECTIVES_REGEX) "$$INI_SCANNED_PATH"/*.ini >> $(top_builddir)/tmp-php.ini; \ ++ $(EGREP) -h -v $(PHP_DEPRECATED_DIRECTIVES_REGEX) "$$INI_SCANNED_PATH"/*.ini >> $(top_builddir)/tmp-php.ini || :; \ + fi; \ + TEST_PHP_EXECUTABLE=$(PHP_EXECUTABLE) \ + TEST_PHP_SRCDIR=$(top_srcdir) \ diff --git a/lang/php74/files/patch-configure.ac b/lang/php74/files/patch-configure.ac new file mode 100644 index 00000000..d213622d --- /dev/null +++ b/lang/php74/files/patch-configure.ac @@ -0,0 +1,45 @@ +--- configure.ac.orig 2019-08-06 06:54:06 UTC ++++ configure.ac +@@ -105,6 +105,7 @@ extern "C++" { + #endif + #endif /* ifndef ZEND_ACCONFIG_H_NO_C_PROTOS */ + ++#include + #endif /* PHP_CONFIG_H */ + ]) + +@@ -313,7 +314,6 @@ sinclude(Zend/Zend.m4) + + dnl ---------------------------------------------------------------------------- + +-PTHREADS_CHECK + PHP_HELP_SEPARATOR([SAPI modules:]) + PHP_SHLIB_SUFFIX_NAMES + PHP_BUILD_PROGRAM +@@ -654,7 +654,7 @@ memmem \ + AX_FUNC_WHICH_GETHOSTBYNAME_R + + dnl Some systems (like OpenSolaris) do not have nanosleep in libc. +-PHP_CHECK_FUNC_LIB(nanosleep, rt) ++PHP_CHECK_FUNC(nanosleep, rt) + + dnl Check for getaddrinfo, should be a better way, but... Also check for working + dnl getaddrinfo. +@@ -1308,7 +1308,7 @@ EXPANDED_SYSCONFDIR=`eval echo $sysconfd + EXPANDED_DATADIR=$datadir + EXPANDED_PHP_CONFIG_FILE_PATH=`eval echo "$PHP_CONFIG_FILE_PATH"` + EXPANDED_PHP_CONFIG_FILE_SCAN_DIR=`eval echo "$PHP_CONFIG_FILE_SCAN_DIR"` +-INCLUDE_PATH=.:$EXPANDED_PEAR_INSTALLDIR ++INCLUDE_PATH=.:${prefix}/share/pear + + exec_prefix=$old_exec_prefix + libdir=$old_libdir +@@ -1493,7 +1493,7 @@ PHP_SUBST(all_targets) + PHP_SUBST(install_targets) + PHP_SUBST(install_binary_targets) + +-PHP_INSTALL_HEADERS([Zend/ TSRM/ include/ main/ main/streams/]) ++PHP_INSTALL_HEADERS([Zend/ TSRM/ main/ main/streams/]) + + PHP_ADD_SOURCES(TSRM, TSRM.c, -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1) + diff --git a/lang/php74/files/patch-ext_mysqli_mysqli__api.c b/lang/php74/files/patch-ext_mysqli_mysqli__api.c new file mode 100644 index 00000000..f97d9f40 --- /dev/null +++ b/lang/php74/files/patch-ext_mysqli_mysqli__api.c @@ -0,0 +1,13 @@ +--- ext/mysqli/mysqli_api.c.orig 2019-12-17 10:29:23 UTC ++++ ext/mysqli/mysqli_api.c +@@ -31,8 +31,9 @@ + #include "zend_smart_str.h" + #include "php_mysqli_structs.h" + #include "mysqli_priv.h" ++#if defined(MYSQLI_USE_MYSQLND) + #include "ext/mysqlnd/mysql_float_to_double.h" +- ++#endif + + #if !defined(MYSQLI_USE_MYSQLND) + /* {{{ mysqli_tx_cor_options_to_string */ diff --git a/lang/php74/files/patch-ext_mysqli_mysqli__nonapi.c b/lang/php74/files/patch-ext_mysqli_mysqli__nonapi.c new file mode 100644 index 00000000..9baa0421 --- /dev/null +++ b/lang/php74/files/patch-ext_mysqli_mysqli__nonapi.c @@ -0,0 +1,12 @@ +--- ext/mysqli/mysqli_nonapi.c.orig 2020-01-09 11:40:57 UTC ++++ ext/mysqli/mysqli_nonapi.c +@@ -28,7 +28,9 @@ + #include "php_ini.h" + #include "ext/standard/info.h" + #include "zend_smart_str.h" ++#if defined(MYSQLI_USE_MYSQLND) + #include "php_mysqli_structs.h" ++#endif + #include "mysqli_priv.h" + + #define SAFE_STR(a) ((a)?a:"") diff --git a/lang/php74/files/patch-ext_mysqli_mysqli__prop.c b/lang/php74/files/patch-ext_mysqli_mysqli__prop.c new file mode 100644 index 00000000..37d47a30 --- /dev/null +++ b/lang/php74/files/patch-ext_mysqli_mysqli__prop.c @@ -0,0 +1,12 @@ +--- ext/mysqli/mysqli_prop.c.orig 2020-01-09 11:40:11 UTC ++++ ext/mysqli/mysqli_prop.c +@@ -26,7 +26,9 @@ + #include "php.h" + #include "php_ini.h" + #include "ext/standard/info.h" ++#if defined(MYSQLI_USE_MYSQLND) + #include "php_mysqli_structs.h" ++#endif + #include "mysqli_priv.h" + + #define CHECK_STATUS(value) \ diff --git a/lang/php74/files/patch-ext_mysqli_php__mysqli__structs.h b/lang/php74/files/patch-ext_mysqli_php__mysqli__structs.h new file mode 100644 index 00000000..f0e33efd --- /dev/null +++ b/lang/php74/files/patch-ext_mysqli_php__mysqli__structs.h @@ -0,0 +1,11 @@ +--- ext/mysqli/php_mysqli_structs.h.orig 2019-12-17 10:29:23 UTC ++++ ext/mysqli/php_mysqli_structs.h +@@ -36,7 +36,7 @@ + #define FALSE 0 + #endif + +-#ifdef MYSQLI_USE_MYSQLND ++#if defined(MYSQLI_USE_MYSQLND) + #include "ext/mysqlnd/mysqlnd.h" + #include "mysqli_mysqlnd.h" + #else diff --git a/lang/php74/files/patch-ext_pcre_pcre2lib_sljit_sljitConfigInternal.h b/lang/php74/files/patch-ext_pcre_pcre2lib_sljit_sljitConfigInternal.h new file mode 100644 index 00000000..9a75bc3e --- /dev/null +++ b/lang/php74/files/patch-ext_pcre_pcre2lib_sljit_sljitConfigInternal.h @@ -0,0 +1,11 @@ +--- ext/pcre/pcre2lib/sljit/sljitConfigInternal.h.orig 2022-03-25 09:54:56 UTC ++++ ext/pcre/pcre2lib/sljit/sljitConfigInternal.h +@@ -283,7 +283,7 @@ + /* Instruction cache flush. */ + /****************************/ + +-#if (!defined SLJIT_CACHE_FLUSH && defined __has_builtin) ++#if (!defined SLJIT_CACHE_FLUSH && defined __has_builtin && !defined SLJIT_CONFIG_PPC_32) + #if __has_builtin(__builtin___clear_cache) + + #define SLJIT_CACHE_FLUSH(from, to) \ diff --git a/lang/php74/files/patch-sapi_apache2handler_config.m4 b/lang/php74/files/patch-sapi_apache2handler_config.m4 new file mode 100644 index 00000000..5b0cfb9d --- /dev/null +++ b/lang/php74/files/patch-sapi_apache2handler_config.m4 @@ -0,0 +1,11 @@ +--- sapi/apache2handler/config.m4.orig 2018-08-14 11:39:14 UTC ++++ sapi/apache2handler/config.m4 +@@ -65,7 +65,7 @@ if test "$PHP_APXS2" != "no"; then + fi + + APXS_LIBEXECDIR='$(INSTALL_ROOT)'`$APXS -q LIBEXECDIR` +- if test -z `$APXS -q SYSCONFDIR`; then ++ if true; then + INSTALL_IT="\$(mkinstalldirs) '$APXS_LIBEXECDIR' && \ + $APXS -S LIBEXECDIR='$APXS_LIBEXECDIR' \ + -i -n php7" diff --git a/lang/php74/files/patch-sapi_fpm_config.m4 b/lang/php74/files/patch-sapi_fpm_config.m4 new file mode 100644 index 00000000..e88c2043 --- /dev/null +++ b/lang/php74/files/patch-sapi_fpm_config.m4 @@ -0,0 +1,11 @@ +--- sapi/fpm/config.m4.orig 2018-08-14 11:39:14 UTC ++++ sapi/fpm/config.m4 +@@ -319,7 +319,7 @@ AC_DEFUN([AC_FPM_LQ], + AC_MSG_RESULT([no]) + ]) + +- if test "$have_lq" = "tcp_info"; then ++ if test "$have_lq" = "so_listenq"; then + AC_DEFINE([HAVE_LQ_TCP_INFO], 1, [do we have TCP_INFO?]) + fi + diff --git a/lang/php74/files/patch-sapi_fpm_www.conf.in b/lang/php74/files/patch-sapi_fpm_www.conf.in new file mode 100644 index 00000000..c7e7fe39 --- /dev/null +++ b/lang/php74/files/patch-sapi_fpm_www.conf.in @@ -0,0 +1,17 @@ +--- sapi/fpm/www.conf.in.orig 2019-01-26 15:54:27 UTC ++++ sapi/fpm/www.conf.in +@@ -27,10 +27,14 @@ group = @php_fpm_group@ + ; Valid syntaxes are: + ; 'ip.add.re.ss:port' - to listen on a TCP socket to a specific IPv4 address on + ; a specific port; ++; '0.0.0.0:port' - to listen on a TCP socket to all IPv4 addresses on ++; a specific port; + ; '[ip:6:addr:ess]:port' - to listen on a TCP socket to a specific IPv6 address on + ; a specific port; + ; 'port' - to listen on a TCP socket to all addresses + ; (IPv6 and IPv4-mapped) on a specific port; ++; Note: IPv4-mapped addresses are disabled by-default in ++; FreeBSD for security reasons; + ; '/path/to/unix/socket' - to listen on a unix socket. + ; Note: This value is mandatory. + listen = 127.0.0.1:9000 diff --git a/lang/php74/files/patch-x-build-php.m4 b/lang/php74/files/patch-x-build-php.m4 new file mode 100644 index 00000000..04fe62b4 --- /dev/null +++ b/lang/php74/files/patch-x-build-php.m4 @@ -0,0 +1,11 @@ +--- ./build/php.m4.orig 2022-10-31 12:36:05.000000000 +0200 ++++ ./build/php.m4 2025-08-26 20:19:41.430005000 +0200 +@@ -2034,7 +2034,7 @@ + dnl Common setup macro for libxml. + dnl + AC_DEFUN([PHP_SETUP_LIBXML], [ +- PKG_CHECK_MODULES([LIBXML], [libxml-2.0 >= 2.7.6]) ++ PKG_CHECK_MODULES([LIBXML], [libxml2 >= 2.7.6]) + + PHP_EVAL_INCLINE($LIBXML_CFLAGS) + PHP_EVAL_LIBLINE($LIBXML_LIBS, $1) diff --git a/lang/php74/files/php-fpm.in b/lang/php74/files/php-fpm.in new file mode 100644 index 00000000..a2ab3624 --- /dev/null +++ b/lang/php74/files/php-fpm.in @@ -0,0 +1,44 @@ +#!/bin/sh +# +# $FreeBSD: head/lang/php5/files/php-fpm.in 340872 2014-01-24 00:14:07Z mat $ +# + +# PROVIDE: php-fpm +# REQUIRE: LOGIN +# KEYWORD: shutdown + +# +# Add the following line to /etc/rc.conf to enable php-fpm: +# php_fpm_enable="YES" +# + +. /etc/rc.subr + +name="php_fpm" +rcvar=php_fpm_enable + +load_rc_config "$name" + +: ${php_fpm_enable="NO"} + +extra_commands="reload logrotate" + +command="%%PREFIX%%/sbin/php-fpm" +pidfile="/var/run/php-fpm.pid" +sig_stop="QUIT" +sig_reload="USR2" +logrotate_cmd="php_fpm_logrotate" + +required_files="%%PREFIX%%/etc/php-fpm.conf" + +php_fpm_logrotate() { + if [ -z "$rc_pid" ]; then + _run_rc_notrunning + return 1 + fi + echo "Rotating logs $name." + kill -USR1 $rc_pid +} + +run_rc_command "$1" +#EOF diff --git a/lang/php74/files/pkg-deinstall.in b/lang/php74/files/pkg-deinstall.in new file mode 100644 index 00000000..4caba0b0 --- /dev/null +++ b/lang/php74/files/pkg-deinstall.in @@ -0,0 +1,9 @@ +#!/bin/sh + +case $2 in + DEINSTALL) + ;; + POST-DEINSTALL) + ;; +esac +#EOF diff --git a/lang/php74/files/pkg-install.in b/lang/php74/files/pkg-install.in new file mode 100644 index 00000000..b1f36293 --- /dev/null +++ b/lang/php74/files/pkg-install.in @@ -0,0 +1,10 @@ +#!/bin/sh + +case $2 in + PRE-INSTALL) + ;; + POST-INSTALL) + ;; +esac +#EOF + diff --git a/lang/php74/files/pkg-message.in b/lang/php74/files/pkg-message.in new file mode 100644 index 00000000..555f5b05 --- /dev/null +++ b/lang/php74/files/pkg-message.in @@ -0,0 +1,10 @@ +*************************************************************** + +Make sure index.php is part of your DirectoryIndex. + +You should add the following to your Apache configuration file: + +AddType application/x-httpd-php .php +AddType application/x-httpd-php-source .phps + +*************************************************************** diff --git a/lang/php74/pkg-descr b/lang/php74/pkg-descr new file mode 100644 index 00000000..d6e42932 --- /dev/null +++ b/lang/php74/pkg-descr @@ -0,0 +1,9 @@ +PHP, which stands for "PHP: Hypertext Preprocessor" is a widely-used Open +Source general-purpose scripting language that is especially suited for +Web development and can be embedded into HTML. Its syntax draws upon C, +Java, and Perl, and is easy to learn. The main goal of the language is to +allow web developers to write dynamically generated webpages quickly, but +you can do much more with PHP. + +WWW: http://www.php.net/ + diff --git a/lang/php74/pkg-plist b/lang/php74/pkg-plist new file mode 100644 index 00000000..966c3465 --- /dev/null +++ b/lang/php74/pkg-plist @@ -0,0 +1,303 @@ +bin/php +bin/php-cgi +bin/php-config +bin/phpdbg +bin/phpize +@config etc/php-fpm.conf.default +@config etc/php-fpm.d/www.conf.default +include/php/ext/date/lib/timelib_config.h +include/php/ext/date/lib/timelib.h +include/php/ext/date/php_date.h +include/php/ext/hash/php_hash_adler32.h +include/php/ext/hash/php_hash_crc32.h +include/php/ext/hash/php_hash_fnv.h +include/php/ext/hash/php_hash_gost.h +include/php/ext/hash/php_hash_haval.h +include/php/ext/hash/php_hash_joaat.h +include/php/ext/hash/php_hash_md.h +include/php/ext/hash/php_hash_ripemd.h +include/php/ext/hash/php_hash_sha.h +include/php/ext/hash/php_hash_sha3.h +include/php/ext/hash/php_hash_snefru.h +include/php/ext/hash/php_hash_tiger.h +include/php/ext/hash/php_hash_whirlpool.h +include/php/ext/hash/php_hash.h +include/php/ext/libxml/php_libxml.h +include/php/ext/mysqlnd/config-win.h +include/php/ext/mysqlnd/mysql_float_to_double.h +include/php/ext/mysqlnd/mysqlnd_alloc.h +include/php/ext/mysqlnd/mysqlnd_auth.h +include/php/ext/mysqlnd/mysqlnd_block_alloc.h +include/php/ext/mysqlnd/mysqlnd_charset.h +include/php/ext/mysqlnd/mysqlnd_commands.h +include/php/ext/mysqlnd/mysqlnd_connection.h +include/php/ext/mysqlnd/mysqlnd_debug.h +include/php/ext/mysqlnd/mysqlnd_enum_n_def.h +include/php/ext/mysqlnd/mysqlnd_ext_plugin.h +include/php/ext/mysqlnd/mysqlnd_libmysql_compat.h +include/php/ext/mysqlnd/mysqlnd_plugin.h +include/php/ext/mysqlnd/mysqlnd_portability.h +include/php/ext/mysqlnd/mysqlnd_priv.h +include/php/ext/mysqlnd/mysqlnd_protocol_frame_codec.h +include/php/ext/mysqlnd/mysqlnd_ps.h +include/php/ext/mysqlnd/mysqlnd_read_buffer.h +include/php/ext/mysqlnd/mysqlnd_result_meta.h +include/php/ext/mysqlnd/mysqlnd_result.h +include/php/ext/mysqlnd/mysqlnd_reverse_api.h +include/php/ext/mysqlnd/mysqlnd_statistics.h +include/php/ext/mysqlnd/mysqlnd_structs.h +include/php/ext/mysqlnd/mysqlnd_vio.h +include/php/ext/mysqlnd/mysqlnd_wireprotocol.h +include/php/ext/mysqlnd/mysqlnd.h +include/php/ext/mysqlnd/php_mysqlnd.h +include/php/ext/pcre/pcre2lib/config.h +include/php/ext/pcre/pcre2lib/pcre2_internal.h +include/php/ext/pcre/pcre2lib/pcre2_intmodedep.h +include/php/ext/pcre/pcre2lib/pcre2_jit_neon_inc.h +include/php/ext/pcre/pcre2lib/pcre2_jit_simd_inc.h +include/php/ext/pcre/pcre2lib/pcre2_ucp.h +include/php/ext/pcre/pcre2lib/pcre2.h +include/php/ext/pcre/php_pcre.h +include/php/ext/php_config.h +include/php/ext/spl/php_spl.h +include/php/ext/spl/spl_array.h +include/php/ext/spl/spl_directory.h +include/php/ext/spl/spl_dllist.h +include/php/ext/spl/spl_engine.h +include/php/ext/spl/spl_exceptions.h +include/php/ext/spl/spl_fixedarray.h +include/php/ext/spl/spl_functions.h +include/php/ext/spl/spl_heap.h +include/php/ext/spl/spl_iterators.h +include/php/ext/spl/spl_observer.h +include/php/ext/standard/base64.h +include/php/ext/standard/basic_functions.h +include/php/ext/standard/crc32.h +include/php/ext/standard/credits_ext.h +include/php/ext/standard/credits_sapi.h +include/php/ext/standard/credits.h +include/php/ext/standard/crypt_blowfish.h +include/php/ext/standard/crypt_freesec.h +include/php/ext/standard/css.h +include/php/ext/standard/cyr_convert.h +include/php/ext/standard/datetime.h +include/php/ext/standard/dl.h +include/php/ext/standard/exec.h +include/php/ext/standard/file.h +include/php/ext/standard/flock_compat.h +include/php/ext/standard/fsock.h +include/php/ext/standard/head.h +include/php/ext/standard/hrtime.h +include/php/ext/standard/html_tables.h +include/php/ext/standard/html.h +include/php/ext/standard/info.h +include/php/ext/standard/md5.h +include/php/ext/standard/microtime.h +include/php/ext/standard/pack.h +include/php/ext/standard/pageinfo.h +include/php/ext/standard/php_array.h +include/php/ext/standard/php_assert.h +include/php/ext/standard/php_browscap.h +include/php/ext/standard/php_crypt_r.h +include/php/ext/standard/php_crypt.h +include/php/ext/standard/php_dir.h +include/php/ext/standard/php_dns.h +include/php/ext/standard/php_ext_syslog.h +include/php/ext/standard/php_filestat.h +include/php/ext/standard/php_fopen_wrappers.h +include/php/ext/standard/php_ftok.h +include/php/ext/standard/php_http.h +include/php/ext/standard/php_image.h +include/php/ext/standard/php_incomplete_class.h +include/php/ext/standard/php_iptc.h +include/php/ext/standard/php_lcg.h +include/php/ext/standard/php_link.h +include/php/ext/standard/php_mail.h +include/php/ext/standard/php_math.h +include/php/ext/standard/php_metaphone.h +include/php/ext/standard/php_mt_rand.h +include/php/ext/standard/php_net.h +include/php/ext/standard/php_password.h +include/php/ext/standard/php_rand.h +include/php/ext/standard/php_random.h +include/php/ext/standard/php_smart_string_public.h +include/php/ext/standard/php_smart_string.h +include/php/ext/standard/php_standard.h +include/php/ext/standard/php_string.h +include/php/ext/standard/php_type.h +include/php/ext/standard/php_uuencode.h +include/php/ext/standard/php_var.h +include/php/ext/standard/php_versioning.h +include/php/ext/standard/proc_open.h +include/php/ext/standard/quot_print.h +include/php/ext/standard/scanf.h +include/php/ext/standard/sha1.h +include/php/ext/standard/streamsfuncs.h +include/php/ext/standard/uniqid.h +include/php/ext/standard/url_scanner_ex.h +include/php/ext/standard/url.h +include/php/ext/standard/winver.h +include/php/ext/xml/expat_compat.h +include/php/ext/xml/php_xml.h +include/php/main/build-defs.h +include/php/main/fastcgi.h +include/php/main/fopen_wrappers.h +include/php/main/http_status_codes.h +include/php/main/php_compat.h +include/php/main/php_config.h +include/php/main/php_content_types.h +include/php/main/php_getopt.h +include/php/main/php_globals.h +include/php/main/php_ini.h +include/php/main/php_main.h +include/php/main/php_memory_streams.h +include/php/main/php_network.h +include/php/main/php_open_temporary_file.h +include/php/main/php_output.h +include/php/main/php_reentrancy.h +include/php/main/php_scandir.h +include/php/main/php_stdint.h +include/php/main/php_streams.h +include/php/main/php_syslog.h +include/php/main/php_ticks.h +include/php/main/php_variables.h +include/php/main/php_version.h +include/php/main/php.h +include/php/main/rfc1867.h +include/php/main/SAPI.h +include/php/main/snprintf.h +include/php/main/spprintf.h +include/php/main/streams/php_stream_context.h +include/php/main/streams/php_stream_filter_api.h +include/php/main/streams/php_stream_glob_wrapper.h +include/php/main/streams/php_stream_mmap.h +include/php/main/streams/php_stream_plain_wrapper.h +include/php/main/streams/php_stream_transport.h +include/php/main/streams/php_stream_userspace.h +include/php/main/streams/php_streams_int.h +include/php/sapi/cli/cli.h +include/php/sapi/embed/php_embed.h +include/php/TSRM/tsrm_win32.h +include/php/TSRM/TSRM.h +include/php/Zend/zend_alloc_sizes.h +include/php/Zend/zend_alloc.h +include/php/Zend/zend_API.h +include/php/Zend/zend_arena.h +include/php/Zend/zend_ast.h +include/php/Zend/zend_bitset.h +include/php/Zend/zend_build.h +include/php/Zend/zend_builtin_functions.h +include/php/Zend/zend_closures.h +include/php/Zend/zend_compile.h +include/php/Zend/zend_config.h +include/php/Zend/zend_config.w32.h +include/php/Zend/zend_constants.h +include/php/Zend/zend_cpuinfo.h +include/php/Zend/zend_dtrace.h +include/php/Zend/zend_errors.h +include/php/Zend/zend_exceptions.h +include/php/Zend/zend_execute.h +include/php/Zend/zend_extensions.h +include/php/Zend/zend_float.h +include/php/Zend/zend_gc.h +include/php/Zend/zend_generators.h +include/php/Zend/zend_globals_macros.h +include/php/Zend/zend_globals.h +include/php/Zend/zend_hash.h +include/php/Zend/zend_highlight.h +include/php/Zend/zend_inheritance.h +include/php/Zend/zend_ini_parser.h +include/php/Zend/zend_ini_scanner_defs.h +include/php/Zend/zend_ini_scanner.h +include/php/Zend/zend_ini.h +include/php/Zend/zend_interfaces.h +include/php/Zend/zend_istdiostream.h +include/php/Zend/zend_iterators.h +include/php/Zend/zend_language_parser.h +include/php/Zend/zend_language_scanner_defs.h +include/php/Zend/zend_language_scanner.h +include/php/Zend/zend_list.h +include/php/Zend/zend_llist.h +include/php/Zend/zend_long.h +include/php/Zend/zend_map_ptr.h +include/php/Zend/zend_modules.h +include/php/Zend/zend_multibyte.h +include/php/Zend/zend_multiply.h +include/php/Zend/zend_object_handlers.h +include/php/Zend/zend_objects_API.h +include/php/Zend/zend_objects.h +include/php/Zend/zend_operators.h +include/php/Zend/zend_portability.h +include/php/Zend/zend_ptr_stack.h +include/php/Zend/zend_range_check.h +include/php/Zend/zend_signal.h +include/php/Zend/zend_smart_str_public.h +include/php/Zend/zend_smart_str.h +include/php/Zend/zend_smart_string_public.h +include/php/Zend/zend_smart_string.h +include/php/Zend/zend_sort.h +include/php/Zend/zend_stack.h +include/php/Zend/zend_stream.h +include/php/Zend/zend_string.h +include/php/Zend/zend_strtod_int.h +include/php/Zend/zend_strtod.h +include/php/Zend/zend_ts_hash.h +include/php/Zend/zend_type_info.h +include/php/Zend/zend_types.h +include/php/Zend/zend_variables.h +include/php/Zend/zend_virtual_cwd.h +include/php/Zend/zend_vm_def.h +include/php/Zend/zend_vm_execute.h +include/php/Zend/zend_vm_handlers.h +include/php/Zend/zend_vm_opcodes.h +include/php/Zend/zend_vm_trace_handlers.h +include/php/Zend/zend_vm_trace_map.h +include/php/Zend/zend_vm.h +include/php/Zend/zend_weakrefs.h +include/php/Zend/zend.h +lib/libphp7.so +lib/php/build/ax_check_compile_flag.m4 +lib/php/build/ax_gcc_func_attribute.m4 +lib/php/build/config.guess +lib/php/build/config.sub +lib/php/build/libtool.m4 +lib/php/build/ltmain.sh +lib/php/build/Makefile.global +lib/php/build/php_cxx_compile_stdcxx.m4 +lib/php/build/php.m4 +lib/php/build/phpize.m4 +lib/php/build/pkg.m4 +lib/php/build/run-tests.php +lib/php/build/shtool +man/man1/php-cgi.1.gz +man/man1/php-config.1.gz +man/man1/php.1.gz +man/man1/phpdbg.1.gz +man/man1/phpize.1.gz +man/man8/php-fpm.8.gz +sbin/php-fpm +share/php/fpm/status.html +@dir etc/php-fpm.d +@dir include/php/ext/date/lib +@dir include/php/ext/date +@dir include/php/ext/hash +@dir include/php/ext/libxml +@dir include/php/ext/mysqlnd +@dir include/php/ext/pcre/pcre2lib +@dir include/php/ext/pcre +@dir include/php/ext/spl +@dir include/php/ext/standard +@dir include/php/ext/xml +@dir include/php/ext +@dir include/php/main/streams +@dir include/php/main +@dir include/php/sapi/cli +@dir include/php/sapi/embed +@dir include/php/sapi +@dir include/php/TSRM +@dir include/php/Zend +@dir include/php +@dir lib/php/build +@dir lib/php +@dir share/php/fpm +@dir share/php diff --git a/lang/php74/pkg-plist.new b/lang/php74/pkg-plist.new new file mode 100644 index 00000000..966c3465 --- /dev/null +++ b/lang/php74/pkg-plist.new @@ -0,0 +1,303 @@ +bin/php +bin/php-cgi +bin/php-config +bin/phpdbg +bin/phpize +@config etc/php-fpm.conf.default +@config etc/php-fpm.d/www.conf.default +include/php/ext/date/lib/timelib_config.h +include/php/ext/date/lib/timelib.h +include/php/ext/date/php_date.h +include/php/ext/hash/php_hash_adler32.h +include/php/ext/hash/php_hash_crc32.h +include/php/ext/hash/php_hash_fnv.h +include/php/ext/hash/php_hash_gost.h +include/php/ext/hash/php_hash_haval.h +include/php/ext/hash/php_hash_joaat.h +include/php/ext/hash/php_hash_md.h +include/php/ext/hash/php_hash_ripemd.h +include/php/ext/hash/php_hash_sha.h +include/php/ext/hash/php_hash_sha3.h +include/php/ext/hash/php_hash_snefru.h +include/php/ext/hash/php_hash_tiger.h +include/php/ext/hash/php_hash_whirlpool.h +include/php/ext/hash/php_hash.h +include/php/ext/libxml/php_libxml.h +include/php/ext/mysqlnd/config-win.h +include/php/ext/mysqlnd/mysql_float_to_double.h +include/php/ext/mysqlnd/mysqlnd_alloc.h +include/php/ext/mysqlnd/mysqlnd_auth.h +include/php/ext/mysqlnd/mysqlnd_block_alloc.h +include/php/ext/mysqlnd/mysqlnd_charset.h +include/php/ext/mysqlnd/mysqlnd_commands.h +include/php/ext/mysqlnd/mysqlnd_connection.h +include/php/ext/mysqlnd/mysqlnd_debug.h +include/php/ext/mysqlnd/mysqlnd_enum_n_def.h +include/php/ext/mysqlnd/mysqlnd_ext_plugin.h +include/php/ext/mysqlnd/mysqlnd_libmysql_compat.h +include/php/ext/mysqlnd/mysqlnd_plugin.h +include/php/ext/mysqlnd/mysqlnd_portability.h +include/php/ext/mysqlnd/mysqlnd_priv.h +include/php/ext/mysqlnd/mysqlnd_protocol_frame_codec.h +include/php/ext/mysqlnd/mysqlnd_ps.h +include/php/ext/mysqlnd/mysqlnd_read_buffer.h +include/php/ext/mysqlnd/mysqlnd_result_meta.h +include/php/ext/mysqlnd/mysqlnd_result.h +include/php/ext/mysqlnd/mysqlnd_reverse_api.h +include/php/ext/mysqlnd/mysqlnd_statistics.h +include/php/ext/mysqlnd/mysqlnd_structs.h +include/php/ext/mysqlnd/mysqlnd_vio.h +include/php/ext/mysqlnd/mysqlnd_wireprotocol.h +include/php/ext/mysqlnd/mysqlnd.h +include/php/ext/mysqlnd/php_mysqlnd.h +include/php/ext/pcre/pcre2lib/config.h +include/php/ext/pcre/pcre2lib/pcre2_internal.h +include/php/ext/pcre/pcre2lib/pcre2_intmodedep.h +include/php/ext/pcre/pcre2lib/pcre2_jit_neon_inc.h +include/php/ext/pcre/pcre2lib/pcre2_jit_simd_inc.h +include/php/ext/pcre/pcre2lib/pcre2_ucp.h +include/php/ext/pcre/pcre2lib/pcre2.h +include/php/ext/pcre/php_pcre.h +include/php/ext/php_config.h +include/php/ext/spl/php_spl.h +include/php/ext/spl/spl_array.h +include/php/ext/spl/spl_directory.h +include/php/ext/spl/spl_dllist.h +include/php/ext/spl/spl_engine.h +include/php/ext/spl/spl_exceptions.h +include/php/ext/spl/spl_fixedarray.h +include/php/ext/spl/spl_functions.h +include/php/ext/spl/spl_heap.h +include/php/ext/spl/spl_iterators.h +include/php/ext/spl/spl_observer.h +include/php/ext/standard/base64.h +include/php/ext/standard/basic_functions.h +include/php/ext/standard/crc32.h +include/php/ext/standard/credits_ext.h +include/php/ext/standard/credits_sapi.h +include/php/ext/standard/credits.h +include/php/ext/standard/crypt_blowfish.h +include/php/ext/standard/crypt_freesec.h +include/php/ext/standard/css.h +include/php/ext/standard/cyr_convert.h +include/php/ext/standard/datetime.h +include/php/ext/standard/dl.h +include/php/ext/standard/exec.h +include/php/ext/standard/file.h +include/php/ext/standard/flock_compat.h +include/php/ext/standard/fsock.h +include/php/ext/standard/head.h +include/php/ext/standard/hrtime.h +include/php/ext/standard/html_tables.h +include/php/ext/standard/html.h +include/php/ext/standard/info.h +include/php/ext/standard/md5.h +include/php/ext/standard/microtime.h +include/php/ext/standard/pack.h +include/php/ext/standard/pageinfo.h +include/php/ext/standard/php_array.h +include/php/ext/standard/php_assert.h +include/php/ext/standard/php_browscap.h +include/php/ext/standard/php_crypt_r.h +include/php/ext/standard/php_crypt.h +include/php/ext/standard/php_dir.h +include/php/ext/standard/php_dns.h +include/php/ext/standard/php_ext_syslog.h +include/php/ext/standard/php_filestat.h +include/php/ext/standard/php_fopen_wrappers.h +include/php/ext/standard/php_ftok.h +include/php/ext/standard/php_http.h +include/php/ext/standard/php_image.h +include/php/ext/standard/php_incomplete_class.h +include/php/ext/standard/php_iptc.h +include/php/ext/standard/php_lcg.h +include/php/ext/standard/php_link.h +include/php/ext/standard/php_mail.h +include/php/ext/standard/php_math.h +include/php/ext/standard/php_metaphone.h +include/php/ext/standard/php_mt_rand.h +include/php/ext/standard/php_net.h +include/php/ext/standard/php_password.h +include/php/ext/standard/php_rand.h +include/php/ext/standard/php_random.h +include/php/ext/standard/php_smart_string_public.h +include/php/ext/standard/php_smart_string.h +include/php/ext/standard/php_standard.h +include/php/ext/standard/php_string.h +include/php/ext/standard/php_type.h +include/php/ext/standard/php_uuencode.h +include/php/ext/standard/php_var.h +include/php/ext/standard/php_versioning.h +include/php/ext/standard/proc_open.h +include/php/ext/standard/quot_print.h +include/php/ext/standard/scanf.h +include/php/ext/standard/sha1.h +include/php/ext/standard/streamsfuncs.h +include/php/ext/standard/uniqid.h +include/php/ext/standard/url_scanner_ex.h +include/php/ext/standard/url.h +include/php/ext/standard/winver.h +include/php/ext/xml/expat_compat.h +include/php/ext/xml/php_xml.h +include/php/main/build-defs.h +include/php/main/fastcgi.h +include/php/main/fopen_wrappers.h +include/php/main/http_status_codes.h +include/php/main/php_compat.h +include/php/main/php_config.h +include/php/main/php_content_types.h +include/php/main/php_getopt.h +include/php/main/php_globals.h +include/php/main/php_ini.h +include/php/main/php_main.h +include/php/main/php_memory_streams.h +include/php/main/php_network.h +include/php/main/php_open_temporary_file.h +include/php/main/php_output.h +include/php/main/php_reentrancy.h +include/php/main/php_scandir.h +include/php/main/php_stdint.h +include/php/main/php_streams.h +include/php/main/php_syslog.h +include/php/main/php_ticks.h +include/php/main/php_variables.h +include/php/main/php_version.h +include/php/main/php.h +include/php/main/rfc1867.h +include/php/main/SAPI.h +include/php/main/snprintf.h +include/php/main/spprintf.h +include/php/main/streams/php_stream_context.h +include/php/main/streams/php_stream_filter_api.h +include/php/main/streams/php_stream_glob_wrapper.h +include/php/main/streams/php_stream_mmap.h +include/php/main/streams/php_stream_plain_wrapper.h +include/php/main/streams/php_stream_transport.h +include/php/main/streams/php_stream_userspace.h +include/php/main/streams/php_streams_int.h +include/php/sapi/cli/cli.h +include/php/sapi/embed/php_embed.h +include/php/TSRM/tsrm_win32.h +include/php/TSRM/TSRM.h +include/php/Zend/zend_alloc_sizes.h +include/php/Zend/zend_alloc.h +include/php/Zend/zend_API.h +include/php/Zend/zend_arena.h +include/php/Zend/zend_ast.h +include/php/Zend/zend_bitset.h +include/php/Zend/zend_build.h +include/php/Zend/zend_builtin_functions.h +include/php/Zend/zend_closures.h +include/php/Zend/zend_compile.h +include/php/Zend/zend_config.h +include/php/Zend/zend_config.w32.h +include/php/Zend/zend_constants.h +include/php/Zend/zend_cpuinfo.h +include/php/Zend/zend_dtrace.h +include/php/Zend/zend_errors.h +include/php/Zend/zend_exceptions.h +include/php/Zend/zend_execute.h +include/php/Zend/zend_extensions.h +include/php/Zend/zend_float.h +include/php/Zend/zend_gc.h +include/php/Zend/zend_generators.h +include/php/Zend/zend_globals_macros.h +include/php/Zend/zend_globals.h +include/php/Zend/zend_hash.h +include/php/Zend/zend_highlight.h +include/php/Zend/zend_inheritance.h +include/php/Zend/zend_ini_parser.h +include/php/Zend/zend_ini_scanner_defs.h +include/php/Zend/zend_ini_scanner.h +include/php/Zend/zend_ini.h +include/php/Zend/zend_interfaces.h +include/php/Zend/zend_istdiostream.h +include/php/Zend/zend_iterators.h +include/php/Zend/zend_language_parser.h +include/php/Zend/zend_language_scanner_defs.h +include/php/Zend/zend_language_scanner.h +include/php/Zend/zend_list.h +include/php/Zend/zend_llist.h +include/php/Zend/zend_long.h +include/php/Zend/zend_map_ptr.h +include/php/Zend/zend_modules.h +include/php/Zend/zend_multibyte.h +include/php/Zend/zend_multiply.h +include/php/Zend/zend_object_handlers.h +include/php/Zend/zend_objects_API.h +include/php/Zend/zend_objects.h +include/php/Zend/zend_operators.h +include/php/Zend/zend_portability.h +include/php/Zend/zend_ptr_stack.h +include/php/Zend/zend_range_check.h +include/php/Zend/zend_signal.h +include/php/Zend/zend_smart_str_public.h +include/php/Zend/zend_smart_str.h +include/php/Zend/zend_smart_string_public.h +include/php/Zend/zend_smart_string.h +include/php/Zend/zend_sort.h +include/php/Zend/zend_stack.h +include/php/Zend/zend_stream.h +include/php/Zend/zend_string.h +include/php/Zend/zend_strtod_int.h +include/php/Zend/zend_strtod.h +include/php/Zend/zend_ts_hash.h +include/php/Zend/zend_type_info.h +include/php/Zend/zend_types.h +include/php/Zend/zend_variables.h +include/php/Zend/zend_virtual_cwd.h +include/php/Zend/zend_vm_def.h +include/php/Zend/zend_vm_execute.h +include/php/Zend/zend_vm_handlers.h +include/php/Zend/zend_vm_opcodes.h +include/php/Zend/zend_vm_trace_handlers.h +include/php/Zend/zend_vm_trace_map.h +include/php/Zend/zend_vm.h +include/php/Zend/zend_weakrefs.h +include/php/Zend/zend.h +lib/libphp7.so +lib/php/build/ax_check_compile_flag.m4 +lib/php/build/ax_gcc_func_attribute.m4 +lib/php/build/config.guess +lib/php/build/config.sub +lib/php/build/libtool.m4 +lib/php/build/ltmain.sh +lib/php/build/Makefile.global +lib/php/build/php_cxx_compile_stdcxx.m4 +lib/php/build/php.m4 +lib/php/build/phpize.m4 +lib/php/build/pkg.m4 +lib/php/build/run-tests.php +lib/php/build/shtool +man/man1/php-cgi.1.gz +man/man1/php-config.1.gz +man/man1/php.1.gz +man/man1/phpdbg.1.gz +man/man1/phpize.1.gz +man/man8/php-fpm.8.gz +sbin/php-fpm +share/php/fpm/status.html +@dir etc/php-fpm.d +@dir include/php/ext/date/lib +@dir include/php/ext/date +@dir include/php/ext/hash +@dir include/php/ext/libxml +@dir include/php/ext/mysqlnd +@dir include/php/ext/pcre/pcre2lib +@dir include/php/ext/pcre +@dir include/php/ext/spl +@dir include/php/ext/standard +@dir include/php/ext/xml +@dir include/php/ext +@dir include/php/main/streams +@dir include/php/main +@dir include/php/sapi/cli +@dir include/php/sapi/embed +@dir include/php/sapi +@dir include/php/TSRM +@dir include/php/Zend +@dir include/php +@dir lib/php/build +@dir lib/php +@dir share/php/fpm +@dir share/php diff --git a/mail/panda-cclient/Makefile b/mail/panda-cclient/Makefile new file mode 100644 index 00000000..fcfef156 --- /dev/null +++ b/mail/panda-cclient/Makefile @@ -0,0 +1,104 @@ +PORTNAME= cclient +PORTVERSION= 20130621 +CATEGORIES= mail devel +PKGNAMEPREFIX= panda- + +MAINTAINER= thierry@FreeBSD.org +COMMENT= Mark Crispin's C-client mail access routines forked from UW +WWW= https://github.com/jonabbey/panda-imap + +USE_GITHUB= yes +GH_ACCOUNT= jonabbey +GH_PROJECT= panda-imap +GH_TAGNAME= 3452f1598a8b4eeb44b38aead1c1598e379b05de + +CONFLICTS_INSTALL= cclient-20* + +#OPTIONS_DEFINE= SSL SSL_AND_PLAINTEXT IPV6 MBX_DEFAULT +#OPTIONS_DEFAULT= SSL +#SSL_AND_PLAINTEXT_DESC= Allow plain text passwords and SSL +#MBX_DEFAULT_DESC= Use MBX as default mailbox format + +MAKE_JOBS_UNSAFE= yes + +.include + +.if ${PORT_OPTIONS:MSSL} +USES+= ssl +PKGMESSAGE= pkg-message-ssl +.endif + +USE_LDCONFIG= yes +ALL_TARGET= bsf +.if ! ${PORT_OPTIONS:MSSL} +MAKE_ARGS+= SSLTYPE=none SSLDIR=${OPENSSLBASE} +.else +.if ${PORT_OPTIONS:MSSL_AND_PLAINTEXT} +MAKE_ARGS+= SSLTYPE=unix SSLDIR=${OPENSSLDIR} +.else +MAKE_ARGS+= SSLTYPE=unix.nopwd SSLDIR=${OPENSSLDIR} +.endif +.endif + +MAKE_ARGS+= EXTRACFLAGS="${CFLAGS}" + +SHLIBBASE= c-client +SHLIBMAJ= 2010 +SHLIBNAME= lib${SHLIBBASE}.so.${SHLIBMAJ} +PLIST_SUB+= SHLIBNAME=${SHLIBNAME} SHLIBBASE=${SHLIBBASE} + +pre-configure: +.for file in Makefile src/osdep/unix/Makefile src/osdep/unix/Makefile.gss + ${REINPLACE_CMD} -e "s|/usr/local|${PREFIX}|g" ${WRKSRC}/${file} +.endfor + ${REINPLACE_CMD} -e "s:/etc/ssl/certs:${PREFIX}/certs:g; \ + s:/etc/ssl/private:${PREFIX}/certs:g" ${WRKSRC}/Makefile + ${REINPLACE_CMD} -e "s:/etc/c-client.cf:${PREFIX}/etc/c-client.cf:" \ + ${WRKSRC}/src/osdep/unix/env_unix.h +.if ${PORT_OPTIONS:MSSL} + ${REINPLACE_CMD} -e " \ + s:SSLINCLUDE=/usr/include/openssl SSLLIB=/usr/lib:SSLINCLUDE=${OPENSSLINC} SSLLIB=${OPENSSLLIB}: \ + " ${WRKSRC}/Makefile +.endif +.if ${PORT_OPTIONS:MIPV6} + ${REINPLACE_CMD} -e "s|^IP=4|IP=6|" ${WRKSRC}/Makefile \ + ${WRKSRC}/src/osdep/unix/Makefile +.endif +.if ${PORT_OPTIONS:MMBX_DEFAULT} + ${REINPLACE_CMD} -e "s|^CREATEPROTO=unixproto|CREATEPROTO=mbxproto|" \ + ${WRKSRC}/src/osdep/unix/Makefile +.endif + +post-configure: + @${ECHO_MSG} ">> The c-client shared library will be named ${SHLIBNAME}" + +HEADERS= c-client.h dummy.h env.h env_unix.h fdstring.h flockcyg.h \ + flocksim.h flstring.h fs.h ftl.h imap4r1.h linkage.c linkage.h \ + mail.h misc.h netmsg.h newsrc.h nl.h nntp.h osdep.h pseudo.h \ + rfc822.h smtp.h sslio.h tcp.h tcp_unix.h unix.h utf8.h \ + utf8aux.h +PORTREV_H= ${WRKDIR}/portrevision.h + +post-build: + @${ECHO_CMD} "#define CCLIENT_PORTVERSION \"${PORTVERSION}\"" >${PORTREV_H} +.if ${PORT_OPTIONS:MSSL} + @${ECHO_CMD} "#define CCLIENT_SSLENABLED \"yes\"" >>${PORTREV_H} +.else + @${ECHO_CMD} "#define CCLIENT_SSLENABLED \"no\"" >>${PORTREV_H} +.endif + +do-install: + ${MKDIR} ${STAGEDIR}${PREFIX}/include/c-client +.for f in ${HEADERS} + ${INSTALL_DATA} ${WRKSRC}/c-client/${f} ${STAGEDIR}${PREFIX}/include/c-client +.endfor + ${INSTALL_LIB} ${WRKSRC}/c-client/${SHLIBNAME} ${STAGEDIR}${PREFIX}/lib + ${LN} -sf ${SHLIBNAME} ${STAGEDIR}${PREFIX}/lib/lib${SHLIBBASE}.so + ${INSTALL_DATA} ${WRKSRC}/c-client/c-client.a \ + ${STAGEDIR}${PREFIX}/lib/lib${SHLIBBASE}.a + ${INSTALL_DATA} ${WRKSRC}/c-client/CFLAGS ${STAGEDIR}${PREFIX}/include/c-client + ${INSTALL_DATA} ${WRKSRC}/c-client/LDFLAGS ${STAGEDIR}${PREFIX}/include/c-client + ${INSTALL_DATA} ${WRKSRC}/c-client/OSCFLAGS ${STAGEDIR}${PREFIX}/include/c-client + ${INSTALL_DATA} ${PORTREV_H} ${STAGEDIR}${PREFIX}/include/c-client + +.include diff --git a/mail/panda-cclient/distinfo b/mail/panda-cclient/distinfo new file mode 100644 index 00000000..0ff789e4 --- /dev/null +++ b/mail/panda-cclient/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1650390380 +SHA256 (jonabbey-panda-imap-20130621-3452f1598a8b4eeb44b38aead1c1598e379b05de_GH0.tar.gz) = e65063633743065848ce0b594acda52b5d149ae426104a7fc1742de9e042c233 +SIZE (jonabbey-panda-imap-20130621-3452f1598a8b4eeb44b38aead1c1598e379b05de_GH0.tar.gz) = 2066879 diff --git a/mail/panda-cclient/files/patch-Makefile b/mail/panda-cclient/files/patch-Makefile new file mode 100644 index 00000000..b2e15274 --- /dev/null +++ b/mail/panda-cclient/files/patch-Makefile @@ -0,0 +1,50 @@ +--- Makefile.orig 2013-06-21 21:29:17 UTC ++++ Makefile +@@ -295,7 +295,7 @@ BUILD=$(MAKE) build EXTRACFLAGS='$(EXTRA + + # Make the IMAP Toolkit + +-all: c-client SPECIALS rebuild bundled ++all: c-client SPECIALS rebuild + + c-client: + @echo Not processed yet. In a first-time build, you must specify +@@ -587,9 +587,6 @@ sslunix sslsco: + @echo + In order to rectify this problem, you MUST build with: + @echo ++ SSLTYPE=$(SSLTYPE).nopwd + @echo +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +- @echo +- @echo Do you want to continue this build anyway? Type y or n please: +- @$(SH) -c 'read x; case "$$x" in y) exit 0;; *) (make nounenc;exit 1);; esac' + + nounenc: + @echo +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +@@ -610,9 +607,6 @@ sslnone: + @echo ++ SSLTYPE=nopwd + @echo + You must also have OpenSSL or equivalent installed. + @echo +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +- @echo +- @echo Do you want to continue this build anyway? Type y or n please: +- @$(SH) -c 'read x; case "$$x" in y) exit 0;; *) (make nonossl;exit 1);; esac' + + nonossl: + @echo +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +@@ -687,7 +681,7 @@ an ua: + $(TOOLS)/$@ "$(LN)" src/tmail tmail + $(LN) $(TOOLS)/$@ . + +-build: OSTYPE rebuild rebuildclean bundled ++build: OSTYPE rebuild rebuildclean + + OSTYPE: + @$(MAKE) ip$(IP) +@@ -707,8 +701,7 @@ rebuild: + @$(SH) -c '(test $(BUILDTYPE) = rebuild -o $(BUILDTYPE) = `$(CAT) OSTYPE`) || (echo Already built for `$(CAT) OSTYPE` -- you must do \"make clean\" first && exit 1)' + @echo Rebuilding c-client for `$(CAT) OSTYPE`... + @$(TOUCH) SPECIALS +- $(CD) c-client;$(MAKE) all CC=`$(CAT) CCTYPE` \ +- CFLAGS="`$(CAT) CFLAGS`" `$(CAT) SPECIALS` ++ $(CD) c-client;$(MAKE) all CFLAGS="`$(CAT) CFLAGS`" `$(CAT) SPECIALS` + + rebuildclean: + $(SH) -c '$(RM) rebuild || true' diff --git a/mail/panda-cclient/files/patch-src_osdep_unix_Makefile b/mail/panda-cclient/files/patch-src_osdep_unix_Makefile new file mode 100644 index 00000000..56993e1d --- /dev/null +++ b/mail/panda-cclient/files/patch-src_osdep_unix_Makefile @@ -0,0 +1,105 @@ +--- src/osdep/unix/Makefile.orig 2022-04-17 00:12:02 UTC ++++ src/osdep/unix/Makefile +@@ -30,9 +30,9 @@ + + EXTRAAUTHENTICATORS= + EXTRADRIVERS=mbox +-PASSWDTYPE=std +-SSLTYPE=nopwd +-IP=4 ++PASSWDTYPE=pam ++SSLTYPE=unix.nopwd ++IP=6 + + + # The optimization level here for GCC ports is set here for a reason. It's +@@ -56,13 +56,13 @@ GCC4CFLAGS= $(GCCCFLAGS) -Wno-pointer-sign + + # Extended flags needed for SSL. You may need to modify. + +-SSLDIR=/usr/local/ssl +-SSLCERTS=$(SSLDIR)/certs ++#SSLDIR=/usr/local/ssl ++SSLCERTS=$(PREFIX)/certs + SSLKEYS=$(SSLCERTS) + SSLINCLUDE=$(SSLDIR)/include + SSLLIB=$(SSLDIR)/lib + +-SSLCRYPTO=-lcrypto ++SSLCRYPTO=-lcrypto -lcrypt + + # Older versions of MIT Kerberos also have a libcrypto. If so, you may need + # to use this instead +@@ -89,7 +89,7 @@ AFSLDFLAGS=-L$(AFSLIB)/afs -L$(AFSLIB) -L$(AFSDIR)/dom + # AFSLDFLAGS may also need -L/usr/ucblib -lucb + DCECFLAGS= -DDCE_MINIMAL -DPASSWD_OVERRIDE=\"/opt/pop3/passwd/passwd\" + DCELDFLAGS= -ldce +-PAMLDFLAGS= -lpam -ldl ++PAMLDFLAGS= # -lpam -lcrypt + + + # Build parameters normally set by the individual port +@@ -132,7 +132,7 @@ EMPTYPROTO=unixproto + # Commands possibly overriden by the individual port + + ARRC=ar rc +-CC=cc ++#CC=cc + LN=ln -s + RANLIB=ranlib + +@@ -156,7 +156,7 @@ BINARIES=osdep.o mail.o misc.o newsrc.o smanager.o utf + dummy.o pseudo.o netmsg.o flstring.o fdstring.o \ + rfc822.o nntp.o smtp.o imap4r1.o pop3.o \ + unix.o mbx.o mmdf.o tenex.o mtx.o news.o phile.o mh.o mx.o mix.o +-CFLAGS=-g ++CFLAGS+=$(BASECFLAGS) $(EXTRACFLAGS) + + CAT=cat + MAKE=make +@@ -177,6 +177,10 @@ BUILD=$(MAKE) build EXTRACFLAGS='$(EXTRACFLAGS)'\ + SOFILES=${BINARIES:.o=.so} + + ++# Need this for the shared library rule to work correctly ++.SUFFIXES: .o .so ++SOFILES=${BINARIES:.o=.so} ++ + # Here if no make argument established + + missing: osdep.h +@@ -265,13 +269,14 @@ bsd: # BSD UNIX + BASECFLAGS="-g -Dconst=" + + bsf: # FreeBSD +- $(BUILD) `$(CAT) SPECIALS` OS=$@ \ ++ $(BUILD) `$(CAT) SPECIALS` OS=$@ CHECKPW=pam \ + SIGTYPE=psx CRXTYPE=nfs \ + SPOOLDIR=/var \ + ACTIVEFILE=/usr/local/news/lib/active \ + RSHPATH=/usr/bin/rsh \ ++ LOCKPGM=$(PREFIX)/libexec/mlock \ + BASECFLAGS="$(GCCCFLAGS)" \ +- BASELDFLAGS="-lcrypt" ++ BASELDFLAGS="-lpam" + + bsi: # BSD/i386 + $(BUILD) `$(CAT) SPECIALS` OS=$@ \ +@@ -867,7 +872,7 @@ vu2: # VAX Ultrix 2.3, etc. + + # Build it! + +-build: clean once all ++build: clean once all `$(CAT) SHLIBNAME` + + all: $(ARCHIVE) `$(CAT) SHLIBNAME` + +@@ -881,7 +886,7 @@ $(ARCHIVE): $(BINARIES) + ln -fs `$(CAT) SHLIBNAME` libc-client.so + + .c.so: osdep.h +- `$(CAT) CCTYPE` `$(CAT) SHLIBFLAGS` -c `$(CAT) CFLAGS` ${@:.so=.c} -o $@ ++ `$(CAT) CCTYPE` -fPIC -DPIC -c `$(CAT) SHLIBFLAGS` -c `$(CAT) CFLAGS` ${@:.so=.c} -o $@ + + .c.o: + `$(CAT) CCTYPE` `$(CAT) SHLIBFLAGS` -c `$(CAT) CFLAGS` $*.c diff --git a/mail/panda-cclient/files/patch-src_osdep_unix_mh.c b/mail/panda-cclient/files/patch-src_osdep_unix_mh.c new file mode 100644 index 00000000..c321fa22 --- /dev/null +++ b/mail/panda-cclient/files/patch-src_osdep_unix_mh.c @@ -0,0 +1,35 @@ +--- src/osdep/unix/mh.c.orig 2022-04-17 00:12:02 UTC ++++ src/osdep/unix/mh.c +@@ -100,8 +100,8 @@ long mh_append (MAILSTREAM *stream,char *mailbox,appen + long options); + long mh_append (MAILSTREAM *stream,char *mailbox,append_t af,void *data); + +-int mh_select (struct direct *name); +-int mh_numsort (const void *d1,const void *d2); ++int mh_select (const struct direct *name); ++int mh_numsort (const struct direct **d1,const struct direct **d2); + char *mh_file (char *dst,char *name); + long mh_canonicalize (char *pattern,char *ref,char *pat); + void mh_setdate (char *file,MESSAGECACHE *elt); +@@ -1191,7 +1191,7 @@ long mh_append (MAILSTREAM *stream,char *mailbox,appen + * Returns: T to use file name, NIL to skip it + */ + +-int mh_select (struct direct *name) ++int mh_select (const struct direct *name) + { + char c; + char *s = name->d_name; +@@ -1206,10 +1206,9 @@ int mh_select (struct direct *name) + * Returns: negative if d1 < d2, 0 if d1 == d2, postive if d1 > d2 + */ + +-int mh_numsort (const void *d1,const void *d2) ++int mh_numsort (const struct direct **d1,const struct direct **d2) + { +- return atoi ((*(struct direct **) d1)->d_name) - +- atoi ((*(struct direct **) d2)->d_name); ++ return atoi ((*d1)->d_name) - atoi ((*d2)->d_name); + } + + diff --git a/mail/panda-cclient/files/patch-src_osdep_unix_mix.c b/mail/panda-cclient/files/patch-src_osdep_unix_mix.c new file mode 100644 index 00000000..f227c245 --- /dev/null +++ b/mail/panda-cclient/files/patch-src_osdep_unix_mix.c @@ -0,0 +1,54 @@ +--- src/osdep/unix/mix.c.orig 2022-04-17 00:12:02 UTC ++++ src/osdep/unix/mix.c +@@ -123,7 +123,7 @@ long mix_rename (MAILSTREAM *stream,char *old,char *ne + long mix_create (MAILSTREAM *stream,char *mailbox); + long mix_delete (MAILSTREAM *stream,char *mailbox); + long mix_rename (MAILSTREAM *stream,char *old,char *newname); +-int mix_rselect (struct direct *name); ++int mix_rselect (const struct direct *name); + MAILSTREAM *mix_open (MAILSTREAM *stream); + void mix_close (MAILSTREAM *stream,long options); + void mix_abort (MAILSTREAM *stream); +@@ -138,8 +138,8 @@ long mix_expunge (MAILSTREAM *stream,char *sequence,lo + long mix_ping (MAILSTREAM *stream); + void mix_check (MAILSTREAM *stream); + long mix_expunge (MAILSTREAM *stream,char *sequence,long options); +-int mix_select (struct direct *name); +-int mix_msgfsort (const void *d1,const void *d2); ++int mix_select (const struct direct *name); ++int mix_msgfsort (const struct direct **d1,const struct direct **d2); + long mix_addset (SEARCHSET **set,unsigned long start,unsigned long size); + long mix_burp (MAILSTREAM *stream,MIXBURP *burp,unsigned long *reclaimed); + long mix_burp_check (SEARCHSET *set,size_t size,char *file); +@@ -585,7 +585,7 @@ long mix_rename (MAILSTREAM *stream,char *old,char *ne + * Returns: T if mix file name, NIL otherwise + */ + +-int mix_rselect (struct direct *name) ++int mix_rselect (const struct direct *name) + { + return mix_dirfmttest (name->d_name); + } +@@ -1150,7 +1150,7 @@ long mix_expunge (MAILSTREAM *stream,char *sequence,lo + * ".mix" with no suffix was used by experimental versions + */ + +-int mix_select (struct direct *name) ++int mix_select (const struct direct *name) + { + char c,*s; + /* make sure name has prefix */ +@@ -1169,10 +1169,10 @@ int mix_select (struct direct *name) + * Returns: -1 if d1 < d2, 0 if d1 == d2, 1 d1 > d2 + */ + +-int mix_msgfsort (const void *d1,const void *d2) ++int mix_msgfsort (const struct direct **d1,const struct direct **d2) + { +- char *n1 = (*(struct direct **) d1)->d_name + sizeof (MIXNAME) - 1; +- char *n2 = (*(struct direct **) d2)->d_name + sizeof (MIXNAME) - 1; ++ char *n1 = (*d1)->d_name + sizeof (MIXNAME) - 1; ++ char *n2 = (*d2)->d_name + sizeof (MIXNAME) - 1; + return compare_ulong (*n1 ? strtoul (n1,NIL,16) : 0, + *n2 ? strtoul (n2,NIL,16) : 0); + } diff --git a/mail/panda-cclient/files/patch-src_osdep_unix_mx.c b/mail/panda-cclient/files/patch-src_osdep_unix_mx.c new file mode 100644 index 00000000..99ccd1c0 --- /dev/null +++ b/mail/panda-cclient/files/patch-src_osdep_unix_mx.c @@ -0,0 +1,35 @@ +--- src/osdep/unix/mx.c.orig 2022-04-17 00:12:02 UTC ++++ src/osdep/unix/mx.c +@@ -98,8 +98,8 @@ long mx_append_msg (MAILSTREAM *stream,char *flags,MES + long mx_append_msg (MAILSTREAM *stream,char *flags,MESSAGECACHE *elt, + STRING *st,SEARCHSET *set); + +-int mx_select (struct direct *name); +-int mx_numsort (const void *d1,const void *d2); ++int mx_select (const struct direct *name); ++int mx_numsort (const struct direct **d1,const struct direct **d2); + char *mx_file (char *dst,char *name); + long mx_lockindex (MAILSTREAM *stream); + void mx_unlockindex (MAILSTREAM *stream); +@@ -1110,7 +1110,7 @@ long mx_append_msg (MAILSTREAM *stream,char *flags,MES + * Returns: T to use file name, NIL to skip it + */ + +-int mx_select (struct direct *name) ++int mx_select (const struct direct *name) + { + char c; + char *s = name->d_name; +@@ -1125,10 +1125,9 @@ int mx_select (struct direct *name) + * Returns: negative if d1 < d2, 0 if d1 == d2, postive if d1 > d2 + */ + +-int mx_numsort (const void *d1,const void *d2) ++int mx_numsort (const struct direct **d1,const struct direct **d2) + { +- return atoi ((*(struct direct **) d1)->d_name) - +- atoi ((*(struct direct **) d2)->d_name); ++ return atoi ((*d1)->d_name) - atoi ((*d2)->d_name); + } + + diff --git a/mail/panda-cclient/files/patch-src_osdep_unix_news.c b/mail/panda-cclient/files/patch-src_osdep_unix_news.c new file mode 100644 index 00000000..56491bae --- /dev/null +++ b/mail/panda-cclient/files/patch-src_osdep_unix_news.c @@ -0,0 +1,35 @@ +--- src/osdep/unix/news.c.orig 2022-04-17 00:12:02 UTC ++++ src/osdep/unix/news.c +@@ -76,8 +76,8 @@ MAILSTREAM *news_open (MAILSTREAM *stream); + long news_delete (MAILSTREAM *stream,char *mailbox); + long news_rename (MAILSTREAM *stream,char *old,char *newname); + MAILSTREAM *news_open (MAILSTREAM *stream); +-int news_select (struct direct *name); +-int news_numsort (const void *d1,const void *d2); ++int news_select (const struct direct *name); ++int news_numsort (const struct direct **d1,const struct direct **d2); + void news_close (MAILSTREAM *stream,long options); + void news_fast (MAILSTREAM *stream,char *sequence,long flags); + void news_flags (MAILSTREAM *stream,char *sequence,long flags); +@@ -402,7 +402,7 @@ MAILSTREAM *news_open (MAILSTREAM *stream) + * Returns: T to use file name, NIL to skip it + */ + +-int news_select (struct direct *name) ++int news_select (const struct direct *name) + { + char c; + char *s = name->d_name; +@@ -417,10 +417,9 @@ int news_select (struct direct *name) + * Returns: negative if d1 < d2, 0 if d1 == d2, postive if d1 > d2 + */ + +-int news_numsort (const void *d1,const void *d2) ++int news_numsort (const struct direct **d1,const struct direct **d2) + { +- return atoi ((*(struct direct **) d1)->d_name) - +- atoi ((*(struct direct **) d2)->d_name); ++ return atoi ((*d1)->d_name) - atoi ((*d2)->d_name); + } + + diff --git a/mail/panda-cclient/files/patch-src_osdep_unix_os__bsi.h b/mail/panda-cclient/files/patch-src_osdep_unix_os__bsi.h new file mode 100644 index 00000000..ade4d128 --- /dev/null +++ b/mail/panda-cclient/files/patch-src_osdep_unix_os__bsi.h @@ -0,0 +1,21 @@ +--- src/osdep/unix/os_bsi.h.orig Wed Apr 11 10:53:03 2001 ++++ src/osdep/unix/os_bsi.h Wed Apr 11 10:55:32 2001 +@@ -22,7 +22,18 @@ + #include + #include + #include ++ ++/* ++ * FreeBSD v3.x and onward whines about being obsolete, so switch ++ * to POSIX semantics. ++ */ ++#if __FreeBSD__ >= 3 ++#include ++#define direct dirent ++#else + #include ++#endif ++ + #include + #include + #include diff --git a/mail/panda-cclient/pkg-descr b/mail/panda-cclient/pkg-descr new file mode 100644 index 00000000..15f033a4 --- /dev/null +++ b/mail/panda-cclient/pkg-descr @@ -0,0 +1,7 @@ +C-client is a common API for accessing mailboxes. It is used internally by +the popular PINE mail reader as well as the University of Washington's IMAP +server. + +This is the version forked from UW by the original author Mark Crispin. + +For more information, please see the repository homepage: diff --git a/mail/panda-cclient/pkg-message-ssl b/mail/panda-cclient/pkg-message-ssl new file mode 100644 index 00000000..52bc3ebf --- /dev/null +++ b/mail/panda-cclient/pkg-message-ssl @@ -0,0 +1,9 @@ +[ +{ type: install + message: < +# $FreeBSD: head/multimedia/libvpx/Makefile 437439 2017-04-01 15:23:30Z gerald $ + +PORTNAME= libvpx +DISTVERSIONPREFIX= v +DISTVERSION= 1.15.0 +CATEGORIES= multimedia + +MAINTAINER= jbeich@FreeBSD.org +COMMENT= VP8/VP9 Codec SDK + +BUILD_DEPENDS= yasm:devel/yasm + +USE_GITHUB= yes +GH_ACCOUNT= webmproject + +USES= compiler:c11 cpe gmake perl5 shebangfix +HAS_CONFIGURE= yes +USE_PERL5= build +USE_LDCONFIG= yes +SHEBANG_FILES= build/make/ads2gas.pl +CONFIGURE_ENV= ASFLAGS="${ASFLAGS}" +# Only explicitly list ARCHs with SIMD optimizations +CONFIGURE_ARGS_aarch64= --target=arm64-linux-gcc +CONFIGURE_ARGS_amd64= --target=x86_64-linux-gcc +CONFIGURE_ARGS_i386= --target=x86-linux-gcc + +.if ${CFLAGS:M-march=armv[78]*} +CONFIGURE_ARGS+= --target=armv7-linux-gcc +ASFLAGS+= -meabi=5 +.endif + +CONFIGURE_ARGS+=${CONFIGURE_ARGS_${ARCH}} +CONFIGURE_ARGS+= --prefix=${PREFIX} +CONFIGURE_ARGS+= --disable-install-docs +CONFIGURE_ARGS+= --disable-install-srcs +CONFIGURE_ARGS+= --enable-pic +CONFIGURE_ARGS+= --enable-vp8 +CONFIGURE_ARGS+= --enable-vp9 +MAKE_ARGS+= verbose=yes +ALL_TARGET= # empty + +#CONFIGURE_ARGS+= --disable-multithread +CONFIGURE_ARGS+= --disable-unit-tests +#CONFIGURE_ARGS+= --enable-debug +CONFIGURE_ARGS+= --enable-multi-res-encoding +CONFIGURE_ARGS+= --enable-postproc --enable-vp9-postproc --enable-vp9-temporal-denoising +CONFIGURE_ARGS+= --disable-runtime-cpu-detect +CONFIGURE_ARGS+= --enable-shared + +post-patch: + ${REINPLACE_CMD} 's|\(link_with_cc\)=gcc|\1=$${CC}|' \ + ${WRKSRC}/build/make/configure.sh + +post-install: + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/vpx* + +.include diff --git a/media/libvpx/distinfo b/media/libvpx/distinfo new file mode 100644 index 00000000..7fbb38c2 --- /dev/null +++ b/media/libvpx/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1756194247 +SHA256 (webmproject-libvpx-v1.15.0_GH0.tar.gz) = e935eded7d81631a538bfae703fd1e293aad1c7fd3407ba00440c95105d2011e +SIZE (webmproject-libvpx-v1.15.0_GH0.tar.gz) = 5629622 diff --git a/media/libvpx/files/patch-vpx__ports_aarch32__cpudetect.c b/media/libvpx/files/patch-vpx__ports_aarch32__cpudetect.c new file mode 100644 index 00000000..e1819f05 --- /dev/null +++ b/media/libvpx/files/patch-vpx__ports_aarch32__cpudetect.c @@ -0,0 +1,40 @@ +- Assume NEON is enabled on armv7 +- Implement runtime detection on FreeBSD + +--- vpx_ports/aarch32_cpudetect.c.orig 2024-10-23 18:24:57 UTC ++++ vpx_ports/aarch32_cpudetect.c +@@ -12,7 +12,7 @@ + #include "./vpx_config.h" + #include "arm_cpudetect.h" + +-#if !CONFIG_RUNTIME_CPU_DETECT ++#if !CONFIG_RUNTIME_CPU_DETECT || defined(__ARM_NEON) + + static int arm_get_cpu_caps(void) { + // This function should actually be a no-op. There is no way to adjust any of +@@ -57,10 +57,24 @@ static int arm_get_cpu_caps(void) { + return flags; + } + +-#elif defined(__linux__) // end defined(VPX_USE_ANDROID_CPU_FEATURES) ++#elif defined(__linux__) || defined(__FreeBSD__) // end defined(VPX_USE_ANDROID_CPU_FEATURES) + + #include + ++#if defined(__FreeBSD__) ++static unsigned long getauxval(unsigned long type) ++{ ++ /* Only AT_HWCAP* return unsigned long */ ++ if (type != AT_HWCAP && type != AT_HWCAP2) { ++ return 0; ++ } ++ ++ unsigned long ret = 0; ++ elf_aux_info(type, &ret, sizeof(ret)); ++ return ret; ++} ++#endif ++ + // Define hwcap values ourselves: building with an old auxv header where these + // hwcap values are not defined should not prevent features from being enabled. + #define VPX_AARCH32_HWCAP_NEON (1 << 12) diff --git a/media/libvpx/files/patch-vpx__ports_aarch64__cpudetect.c b/media/libvpx/files/patch-vpx__ports_aarch64__cpudetect.c new file mode 100644 index 00000000..440a7a55 --- /dev/null +++ b/media/libvpx/files/patch-vpx__ports_aarch64__cpudetect.c @@ -0,0 +1,29 @@ +- Implement runtime detection on FreeBSD + +--- vpx_ports/aarch64_cpudetect.c.orig 2024-01-09 21:12:22 UTC ++++ vpx_ports/aarch64_cpudetect.c +@@ -91,9 +91,23 @@ static int arm_get_cpu_caps(void) { + return flags; + } + +-#elif defined(__linux__) // end defined(VPX_USE_ANDROID_CPU_FEATURES) ++#elif defined(__linux__) || defined(__FreeBSD__) // end defined(VPX_USE_ANDROID_CPU_FEATURES) + + #include ++ ++#if defined(__FreeBSD__) ++static unsigned long getauxval(unsigned long type) ++{ ++ /* Only AT_HWCAP* return unsigned long */ ++ if (type != AT_HWCAP && type != AT_HWCAP2) { ++ return 0; ++ } ++ ++ unsigned long ret = 0; ++ elf_aux_info(type, &ret, sizeof(ret)); ++ return ret; ++} ++#endif + + // Define hwcap values ourselves: building with an old auxv header where these + // hwcap values are not defined should not prevent features from being enabled. diff --git a/media/libvpx/files/patch-vpx__ports_ppc__cpudetect.c b/media/libvpx/files/patch-vpx__ports_ppc__cpudetect.c new file mode 100644 index 00000000..bb36e30c --- /dev/null +++ b/media/libvpx/files/patch-vpx__ports_ppc__cpudetect.c @@ -0,0 +1,64 @@ +--- vpx_ports/ppc_cpudetect.c.orig 2021-03-18 19:59:46 UTC ++++ vpx_ports/ppc_cpudetect.c +@@ -8,12 +8,6 @@ + * be found in the AUTHORS file in the root of the source tree. + */ + +-#include +-#include +-#include +-#include +-#include +- + #include "./vpx_config.h" + #include "vpx_ports/ppc.h" + +@@ -35,6 +29,13 @@ static int cpu_env_mask(void) { + return env && *env ? (int)strtol(env, NULL, 0) : ~0; + } + ++#if defined(__linux__) ++#include ++#include ++#include ++#include ++#include ++ + int ppc_simd_caps(void) { + int flags; + int mask; +@@ -73,6 +74,34 @@ out_close: + close(fd); + return flags & mask; + } ++#elif defined(__FreeBSD__) ++#include ++#include ++ ++int ppc_simd_caps(void) { ++ int flags; ++ int mask; ++ u_long hwcap = 0; ++ ++ // If VPX_SIMD_CAPS is set then allow only those capabilities. ++ if (!cpu_env_flags(&flags)) { ++ return flags; ++ } ++ ++ mask = cpu_env_mask(); ++ ++ elf_aux_info(AT_HWCAP, &hwcap, sizeof(hwcap)); ++#if HAVE_VSX ++ if (hwcap & PPC_FEATURE_HAS_VSX) flags |= HAS_VSX; ++#endif ++ ++ return flags & mask; ++} ++#else ++#error \ ++ "--enable-runtime-cpu-detect selected, but no CPU detection method " \ ++"available for your platform. Reconfigure with --disable-runtime-cpu-detect." ++#endif /* end __FreeBSD__ */ + #else + // If there is no RTCD the function pointers are not used and can not be + // changed. diff --git a/media/libvpx/files/patch-x-build-make-Makefile b/media/libvpx/files/patch-x-build-make-Makefile new file mode 100644 index 00000000..799166fc --- /dev/null +++ b/media/libvpx/files/patch-x-build-make-Makefile @@ -0,0 +1,22 @@ +--- ./build/make/Makefile.orig 2024-10-23 20:24:57.000000000 +0200 ++++ ./build/make/Makefile 2025-08-26 09:44:23.222343000 +0200 +@@ -301,8 +301,8 @@ + define install_map_template + $(DIST_DIR)/$(1): $(2) + $(if $(quiet),@echo " [INSTALL] $$@") +- $(qexec)mkdir -p $$(dir $$@) +- $(qexec)cp -p $$< $$@ ++ $(qexec)install -d $$(dir $$@) ++ $(qexec)install -p $$< $$(dir $$@) + endef + + define archive_template +@@ -422,7 +422,7 @@ + .libs: $(LIBS) + @touch $@ + $(foreach lib,$(filter %_g.a,$(LIBS)),$(eval $(call archive_template,$(lib)))) +-$(foreach lib,$(filter %so.$(SO_VERSION_MAJOR).$(SO_VERSION_MINOR).$(SO_VERSION_PATCH),$(LIBS)),$(eval $(call so_template,$(lib)))) ++$(foreach lib,$(filter %so.$(SO_VERSION_MAJOR),$(LIBS)),$(eval $(call so_template,$(lib)))) + $(foreach lib,$(filter %$(SO_VERSION_MAJOR).dylib,$(LIBS)),$(eval $(call dl_template,$(lib)))) + $(foreach lib,$(filter %$(SO_VERSION_MAJOR).dll,$(LIBS)),$(eval $(call dll_template,$(lib)))) + diff --git a/media/libvpx/files/patch-x-build-make-configure.sh b/media/libvpx/files/patch-x-build-make-configure.sh new file mode 100644 index 00000000..0a7384b4 --- /dev/null +++ b/media/libvpx/files/patch-x-build-make-configure.sh @@ -0,0 +1,11 @@ +--- ./build/make/configure.sh.orig 2024-10-23 20:24:57.000000000 +0200 ++++ ./build/make/configure.sh 2025-08-26 09:44:23.221334000 +0200 +@@ -1592,7 +1592,7 @@ + if enabled rvct; then + enabled small && check_add_cflags -Ospace || check_add_cflags -Otime + else +- enabled small && check_add_cflags -O2 || check_add_cflags -O3 ++ enabled small && check_add_cflags -O2 || check_add_cflags -O2 + fi + fi + diff --git a/media/libvpx/files/patch-x-libs.mk b/media/libvpx/files/patch-x-libs.mk new file mode 100644 index 00000000..66dd7737 --- /dev/null +++ b/media/libvpx/files/patch-x-libs.mk @@ -0,0 +1,56 @@ +--- ./libs.mk.orig 2024-10-23 20:24:57.000000000 +0200 ++++ ./libs.mk 2025-08-26 09:45:52.826673000 +0200 +@@ -336,12 +336,10 @@ + LIBVPX_SO_SYMLINKS := + LIBVPX_SO_IMPLIB := libvpx_dll.a + else +-LIBVPX_SO := libvpx.so.$(SO_VERSION_MAJOR).$(SO_VERSION_MINOR).$(SO_VERSION_PATCH) ++LIBVPX_SO := libvpx.so.$(SO_VERSION_MAJOR) + SHARED_LIB_SUF := .so + EXPORT_FILE := libvpx.ver +-LIBVPX_SO_SYMLINKS := $(addprefix $(LIBSUBDIR)/, \ +- libvpx.so libvpx.so.$(SO_VERSION_MAJOR) \ +- libvpx.so.$(SO_VERSION_MAJOR).$(SO_VERSION_MINOR)) ++LIBVPX_SO_SYMLINKS := $(addprefix $(LIBSUBDIR)/, libvpx.so) + endif + endif + endif +@@ -369,19 +367,19 @@ + + define libvpx_symlink_template + $(1): $(2) +- @echo " [LN] $(2) $$@" +- $(qexec)mkdir -p $$(dir $$@) +- $(qexec)ln -sf $(2) $$@ ++ echo " [LN] $(2) $$@" ++ mkdir -p $$(dir $$@) ++ ln -sf $(2) $$@ + endef + + $(eval $(call libvpx_symlink_template,\ + $(addprefix $(BUILD_PFX),$(notdir $(LIBVPX_SO_SYMLINKS))),\ + $(BUILD_PFX)$(LIBVPX_SO))) ++ + $(eval $(call libvpx_symlink_template,\ + $(addprefix $(DIST_DIR)/,$(LIBVPX_SO_SYMLINKS)),\ + $(LIBVPX_SO))) + +- + INSTALL-LIBS-$(CONFIG_SHARED) += $(LIBVPX_SO_SYMLINKS) + INSTALL-LIBS-$(CONFIG_SHARED) += $(LIBSUBDIR)/$(LIBVPX_SO) + INSTALL-LIBS-$(CONFIG_SHARED) += $(if $(LIBVPX_SO_IMPLIB),$(LIBSUBDIR)/$(LIBVPX_SO_IMPLIB)) +@@ -398,12 +396,12 @@ + $(qexec)echo '' >> $@ + $(qexec)echo 'Name: vpx' >> $@ + $(qexec)echo 'Description: WebM Project VPx codec implementation' >> $@ +- $(qexec)echo 'Version: $(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_PATCH)' >> $@ ++ $(qexec)echo 'Version: $(VERSION_MAJOR)' >> $@ + $(qexec)echo 'Requires:' >> $@ + $(qexec)echo 'Conflicts:' >> $@ + $(qexec)echo 'Libs: -L$${libdir} -lvpx -lm' >> $@ + ifeq ($(HAVE_PTHREAD_H),yes) +- $(qexec)echo 'Libs.private: -lm -lpthread' >> $@ ++ $(qexec)echo 'Libs.private: -lm -pthread' >> $@ + else + $(qexec)echo 'Libs.private: -lm' >> $@ + endif diff --git a/media/libvpx/pkg-descr b/media/libvpx/pkg-descr new file mode 100644 index 00000000..73ce32a0 --- /dev/null +++ b/media/libvpx/pkg-descr @@ -0,0 +1,3 @@ +libvpx is the VP8/VP9 Codec SDK. + +WWW: http://www.webmproject.org/ diff --git a/media/libvpx/pkg-plist b/media/libvpx/pkg-plist new file mode 100644 index 00000000..08d8bd8f --- /dev/null +++ b/media/libvpx/pkg-plist @@ -0,0 +1,18 @@ +bin/vpxdec +bin/vpxenc +include/vpx/vp8.h +include/vpx/vp8cx.h +include/vpx/vp8dx.h +include/vpx/vpx_codec.h +include/vpx/vpx_decoder.h +include/vpx/vpx_encoder.h +include/vpx/vpx_ext_ratectrl.h +include/vpx/vpx_frame_buffer.h +include/vpx/vpx_image.h +include/vpx/vpx_integer.h +include/vpx/vpx_tpl.h +lib/libvpx.a +lib/libvpx.so +lib/libvpx.so.9 +lib/pkgconfig/vpx.pc +@dir include/vpx diff --git a/net/apache/Makefile b/net/apache/Makefile new file mode 100644 index 00000000..07211692 --- /dev/null +++ b/net/apache/Makefile @@ -0,0 +1,178 @@ +# +# $Id: Makefile 2602 2009-09-25 23:13:23Z root $ +# +PORTNAME= apache +PORTVERSION= 2.4.34 +CATEGORIES= www net +MASTER_SITES+= http://www.apache.org/dist/httpd/ http://archive.apache.org/dist/httpd/ +DISTNAME= httpd-${PORTVERSION} + +COMMENT= The extremely popular Apache http server. Very fast, very clean +MAINTAINER= onborodin@gmail.com + +LIB_DEPENDS+= libapr.so:devel/libapr +LIB_DEPENDS+= libaprutil.so:devel/libapr-utils +LIB_DEPENDS+= libexpat.so:text/libexpat +LIB_DEPENDS+= libiconv.so:text/libiconv +LIB_DEPENDS+= libpcre.so:text/libpcre + +OWNER= ${PORTNAME} +GROUP= ${PORTNAME} +OWNER_ID= 170 +GROUP_ID= 170 + +USES+= tar:bzip2 +USES+= gmake perl5 +GNU_CONFIGURE= yes +CPPFLAGS+= -I${LOCALBASE}/include +LDFLAGS+= -L${LOCALBASE}/lib +CONFIGURE_ENV= LDFLAGS="${LDFLAGS}" +CONFIGURE_ENV+= CPPFLAGS="${CPPFLAGS}" +CONFIGURE_ENV+= CFLAGS="${CFLAGS} ${CPPFLAGS}" + +CONFIGURE_ARGS= --prefix=${PREFIX} + +CONFIGURE_ARGS= --with-program-name=apache + +#CONFIGURE_ARGS+= --with-mpm=prefork +CONFIGURE_ARGS+= --with-mpm=worker + + +CONFIGURE_ARGS+= --disable-authn-dbm +CONFIGURE_ARGS+= --disable-authnz-ldap +CONFIGURE_ARGS+= --disable-authz-dbm +CONFIGURE_ARGS+= --disable-authz-groupfile +CONFIGURE_ARGS+= --disable-cgid +CONFIGURE_ARGS+= --disable-ldap +CONFIGURE_ARGS+= --disable-proxy-ajp + +CONFIGURE_ARGS+= --disable-dbd +CONFIGURE_ARGS+= --disable-ldap +CONFIGURE_ARGS+= --disable-userdir + +CONFIGURE_ARGS+= --enable-auth-digest +CONFIGURE_ARGS+= --enable-buffer +CONFIGURE_ARGS+= --enable-cgi +#CONFIGURE_ARGS+= --enable-cgid +CONFIGURE_ARGS+= --enable-dav +CONFIGURE_ARGS+= --enable-deflate +CONFIGURE_ARGS+= --enable-expires +CONFIGURE_ARGS+= --enable-http +CONFIGURE_ARGS+= --enable-info +CONFIGURE_ARGS+= --enable-logio +CONFIGURE_ARGS+= --enable-mime-magic +CONFIGURE_ARGS+= --enable-negotiation +CONFIGURE_ARGS+= --enable-pie +CONFIGURE_ARGS+= --enable-remoteip +CONFIGURE_ARGS+= --enable-request +CONFIGURE_ARGS+= --enable-rewrite +CONFIGURE_ARGS+= --enable-so +CONFIGURE_ARGS+= --enable-ssl +CONFIGURE_ARGS+= --enable-unique-id +CONFIGURE_ARGS+= --enable-unixd +CONFIGURE_ARGS+= --enable-vhost-alias +CONFIGURE_ARGS+= --enable-so + +CONFIGURE_ARGS+= --enable-imagemap +CONFIGURE_ARGS+= --enable-include +CONFIGURE_ARGS+= --enable-log-debug +CONFIGURE_ARGS+= --enable-log-forensic + +CONFIGURE_ARGS+= --disable-http2 + +CONFIGURE_ARGS+= --with-jansson=${LOCALBASE} +CONFIGURE_ARGS+= --with-libxml2=${LOCALBASE} +#CONFIGURE_ARGS+= --with-nghttp2=${LOCALBASE} + +CONFIGURE_ARGS+= --with-apr-util=${LOCALBASE}/bin/apu-config +CONFIGURE_ARGS+= --with-apr=${LOCALBASE}/bin/apr-config +CONFIGURE_ARGS+= --with-pcre=${LOCALBASE} + +CONFIGURE_ARGS+= --with-port=80 +CONFIGURE_ARGS+= --with-ssl=/usr +CONFIGURE_ARGS+= --with-z=/usr + +PKGDEINSTALL= ${WRKDIR}/pkg-deinstall +PKGINSTALL= ${WRKDIR}/pkg-install +USE_RC_SUBR= apache.sh +SUB_FILES+= pkg-install pkg-deinstall + +SUB_LIST+= OWNER=${OWNER} +SUB_LIST+= GROUP=${GROUP} +SUB_LIST+= OWNER_ID=${OWNER_ID} +SUB_LIST+= GROUP_ID=${GROUP_ID} + +PLIST_SUB+= LOCALSTATEDIR=${LOCALSTATEDIR} +PLIST_SUB+= PREFIX=${PREFIX} + +SUB_LIST+= LOCALSTATEDIR=${LOCALSTATEDIR} +SUB_LIST+= PREFIX=${PREFIX} + +LOCALSTATEDIR= /var +LAYOUT_FILE= ${WRKSRC}/config.layout + + +post-patch: + ${REINPLACE_CMD} -e '/INSTALL_TARGETS/s,install-conf ,,' ${WRKSRC}/Makefile.in + ${REINPLACE_CMD} -e 's,-$${apr_version},,g' ${WRKSRC}/configure + ${REINPLACE_CMD} -e 's,-$$apr_temp_major,,g' ${WRKSRC}/configure + ${REINPLACE_CMD} -e 's,-$$apr_bundled_major,,g' ${WRKSRC}/configure + + ${REINPLACE_CMD} -e 's,-$${apu_version},,g' ${WRKSRC}/configure + ${REINPLACE_CMD} -e 's,-$$apu_temp_major,,g' ${WRKSRC}/configure + ${REINPLACE_CMD} -e 's,-$$apu_bundled_major,,g' ${WRKSRC}/configure + + ${REINPLACE_CMD} -e 's,^APU_CONFIG=.*,APU_CONFIG="$$APU_BINDIR/apu-config",' ${WRKSRC}/configure + ${REINPLACE_CMD} -e 's,^APR_CONFIG=.*,APR_CONFIG="$$APR_BINDIR/apr-config",' ${WRKSRC}/configure + + ${REINPLACE_CMD} -e 's|freebsd5|freebsd|' ${WRKSRC}/configure + ${REINPLACE_CMD} -e 's," PLATFORM ",FreeBSD,' ${WRKSRC}/server/core.c + + +pre-configure: + ${RM} -f ${LAYOUT_FILE} + + echo '' >> ${LAYOUT_FILE} + echo ' prefix: ${PREFIX}' >> ${LAYOUT_FILE} + echo ' exec_prefix: $${prefix}' >> ${LAYOUT_FILE} + echo ' bindir: $${exec_prefix}/bin' >> ${LAYOUT_FILE} + echo ' sbindir: $${exec_prefix}/sbin' >> ${LAYOUT_FILE} + echo ' libdir: $${exec_prefix}/lib' >> ${LAYOUT_FILE} + echo ' libexecdir: $${exec_prefix}/libexec/apache' >> ${LAYOUT_FILE} + echo ' includedir: $${prefix}/include/apache' >> ${LAYOUT_FILE} + echo ' mandir: $${prefix}/man' >> ${LAYOUT_FILE} + echo ' sysconfdir: $${prefix}/etc/apache' >> ${LAYOUT_FILE} + echo ' installbuilddir: $${prefix}/share/apache/build' >> ${LAYOUT_FILE} + + echo ' manualdir: $${prefix}/share/doc/apache' >> ${LAYOUT_FILE} + + echo ' localstatedir: ${LOCALSTATEDIR}' >> ${LAYOUT_FILE} + echo ' runtimedir: $${localstatedir}/run/apache' >> ${LAYOUT_FILE} + echo ' logfiledir: $${localstatedir}/log/apache' >> ${LAYOUT_FILE} + echo ' proxycachedir: $${localstatedir}/cache/apache' >> ${LAYOUT_FILE} + echo ' datadir: $${localstatedir}/www/apache' >> ${LAYOUT_FILE} + + echo ' errordir: $${datadir}/error' >> ${LAYOUT_FILE} + echo ' iconsdir: $${datadir}/icons' >> ${LAYOUT_FILE} + echo ' cgidir: $${datadir}/cgi-bin' >> ${LAYOUT_FILE} + echo ' htdocsdir: $${datadir}/web' >> ${LAYOUT_FILE} + echo '' >> ${LAYOUT_FILE} + +CONF+= charset.conv +CONF+= httpd.conf +CONF+= magic +CONF+= mime.types + +post-install: + ${MKDIR} ${STAGEDIR}/${EXAMPLESDIR} +.for file in ${CONF} + ${INSTALL_DATA} ${WRKSRC}/docs/conf/${file} ${STAGEDIR}/${EXAMPLESDIR}/ +.endfor + ${INSTALL_DATA} ${WRKSRC}/docs/conf/extra/*.conf ${STAGEDIR}/${EXAMPLESDIR}/ + ${INSTALL_DATA} ${WRKSRC}/support/envvars-std ${STAGEDIR}/${EXAMPLESDIR}/envvars + cd ${STAGEDIR}${PREFIX}/man/man8 && ${LN} -sf httpd.8 apache.8 + +PORTEXAMPLES= * + +.include +#EOF diff --git a/net/apache/distinfo b/net/apache/distinfo new file mode 100644 index 00000000..f4eda28a --- /dev/null +++ b/net/apache/distinfo @@ -0,0 +1,2 @@ +SHA256 (httpd-2.4.34.tar.bz2) = fa53c95631febb08a9de41fd2864cfff815cf62d9306723ab0d4b8d7aa1638f0 +SIZE (httpd-2.4.34.tar.bz2) = 6942969 diff --git a/net/apache/files/_patch-modules_md_md__crypt.c b/net/apache/files/_patch-modules_md_md__crypt.c new file mode 100644 index 00000000..9cc62c8c --- /dev/null +++ b/net/apache/files/_patch-modules_md_md__crypt.c @@ -0,0 +1,11 @@ +--- modules/md/md_crypt.c.orig 2018-01-30 10:20:50 UTC ++++ modules/md/md_crypt.c +@@ -471,7 +471,7 @@ apr_status_t md_pkey_gen(md_pkey_t **ppk + } + } + +-#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER) ++#if OPENSSL_VERSION_NUMBER < 0x10100000L || (defined(LIBRESSL_VERSION_NUMBER) && LIBRESSL_VERSION_NUMBER < 0x20700000L) + + #ifndef NID_tlsfeature + #define NID_tlsfeature 1020 diff --git a/net/apache/files/apache.sh.in b/net/apache/files/apache.sh.in new file mode 100755 index 00000000..dccbe553 --- /dev/null +++ b/net/apache/files/apache.sh.in @@ -0,0 +1,22 @@ +#!/bin/sh +# +# PROVIDE: apache +# REQUIRE: DAEMON + +. /etc/rc.subr + +name="apache" +bin_name="apache" +rcvar="apache_enable" + +command="%%PREFIX%%/sbin/${bin_name}" +pidfile="/var/run/apache/httpd.pid" +required_files="%%PREFIX%%/etc/apache/${bin_name}.conf %%PREFIX%%/etc/apache/magic %%PREFIX%%/etc/apache/mime.types" +procname="${command}" + +load_rc_config $name + +: ${apache_enable="NO"} + +run_rc_command "$1" +#EOF diff --git a/net/apache/files/patch-Makefile.in b/net/apache/files/patch-Makefile.in new file mode 100644 index 00000000..e749f55f --- /dev/null +++ b/net/apache/files/patch-Makefile.in @@ -0,0 +1,106 @@ +--- Makefile.in.orig 2016-03-20 15:51:49 UTC ++++ Makefile.in +@@ -32,12 +32,9 @@ include $(top_srcdir)/build/program.mk + install-conf: + @echo Installing configuration files + @$(MKINSTALLDIRS) $(DESTDIR)$(sysconfdir) $(DESTDIR)$(sysconfdir)/extra +- @$(MKINSTALLDIRS) $(DESTDIR)$(sysconfdir)/original/extra + @cd $(top_srcdir)/docs/conf; \ + for i in mime.types magic; do \ +- if test ! -f $(DESTDIR)$(sysconfdir)/$$i; then \ +- $(INSTALL_DATA) $$i $(DESTDIR)$(sysconfdir); \ +- fi; \ ++ $(INSTALL_DATA) $$i $(DESTDIR)$(sysconfdir)/$${i}.sample; \ + done; \ + for j in $(top_srcdir)/docs/conf $(top_builddir)/docs/conf ; do \ + cd $$j ; \ +@@ -98,15 +95,12 @@ install-conf: + -e 's#@@SSLPort@@#$(SSLPORT)#g' \ + < $$i; \ + fi \ +- ) > $(DESTDIR)$(sysconfdir)/original/$$i; \ +- chmod 0644 $(DESTDIR)$(sysconfdir)/original/$$i; \ ++ ) > $(DESTDIR)$(sysconfdir)/$${i}.sample; \ ++ chmod 0644 $(DESTDIR)$(sysconfdir)/$${i}.sample; \ + file=$$i; \ + if [ "$$i" = "httpd.conf" ]; then \ + file=`echo $$i|sed s/.*.conf/$(PROGRAM_NAME).conf/`; \ + fi; \ +- if test ! -f $(DESTDIR)$(sysconfdir)/$$file; then \ +- $(INSTALL_DATA) $(DESTDIR)$(sysconfdir)/original/$$i $(DESTDIR)$(sysconfdir)/$$file; \ +- fi; \ + fi; \ + done ; \ + done ; \ +@@ -157,48 +151,25 @@ dox: + doxygen $(top_srcdir)/docs/doxygen.conf + + install-htdocs: +- -@if [ -d $(DESTDIR)$(htdocsdir) ]; then \ +- echo "[PRESERVING EXISTING HTDOCS SUBDIR: $(DESTDIR)$(htdocsdir)]"; \ +- else \ +- echo Installing HTML documents ; \ ++ @echo Installing HTML documents ; \ + $(MKINSTALLDIRS) $(DESTDIR)$(htdocsdir) ; \ +- if test -d $(htdocs-srcdir) && test "x$(RSYNC)" != "x" && test -x $(RSYNC) ; then \ +- $(RSYNC) --exclude .svn -rlpt --numeric-ids $(htdocs-srcdir)/ $(DESTDIR)$(htdocsdir)/; \ +- else \ +- test -d $(htdocs-srcdir) && (cd $(htdocs-srcdir) && cp -rp * $(DESTDIR)$(htdocsdir)) ; \ +- cd $(DESTDIR)$(htdocsdir) && find . -name ".svn" -type d -print | xargs rm -rf 2>/dev/null || true; \ +- fi; \ +- fi ++ $(MKINSTALLDIRS) $(DESTDIR)$(DATADIR)/misc ; \ ++ test -d $(htdocs-srcdir) && (cd $(htdocs-srcdir) && cp -rp index.html $(DESTDIR)$(DATADIR)/misc) || true + + install-error: +- -@if [ -d $(DESTDIR)$(errordir) ]; then \ +- echo "[PRESERVING EXISTING ERROR SUBDIR: $(DESTDIR)$(errordir)]"; \ +- else \ +- echo Installing error documents ; \ ++ @echo Installing error documents ; \ + $(MKINSTALLDIRS) $(DESTDIR)$(errordir) ; \ +- cd $(top_srcdir)/docs/error && cp -rp * $(DESTDIR)$(errordir) ; \ +- test "x$(errordir)" != "x" && cd $(DESTDIR)$(errordir) && find . -name ".svn" -type d -print | xargs rm -rf 2>/dev/null || true; \ +- fi ++ cd $(top_srcdir)/docs/error && cp -rp * $(DESTDIR)$(errordir) ; + + install-icons: +- -@if [ -d $(DESTDIR)$(iconsdir) ]; then \ +- echo "[PRESERVING EXISTING ICONS SUBDIR: $(DESTDIR)$(iconsdir)]"; \ +- else \ +- echo Installing icons ; \ ++ @echo Installing icons ; \ + $(MKINSTALLDIRS) $(DESTDIR)$(iconsdir) ; \ +- cd $(top_srcdir)/docs/icons && cp -rp * $(DESTDIR)$(iconsdir) ; \ +- test "x$(iconsdir)" != "x" && cd $(DESTDIR)$(iconsdir) && find . -name ".svn" -type d -print | xargs rm -rf 2>/dev/null || true; \ +- fi ++ cd $(top_srcdir)/docs/icons && cp -rp * $(DESTDIR)$(iconsdir) ; + + install-cgi: +- -@if [ -d $(DESTDIR)$(cgidir) ];then \ +- echo "[PRESERVING EXISTING CGI SUBDIR: $(DESTDIR)$(cgidir)]"; \ +- else \ +- echo Installing CGIs ; \ ++ @echo Installing CGIs ; \ + $(MKINSTALLDIRS) $(DESTDIR)$(cgidir) ; \ +- cd $(top_srcdir)/docs/cgi-examples && cp -rp * $(DESTDIR)$(cgidir) ; \ +- test "x$(cgidir)" != "x" && cd $(DESTDIR)$(cgidir) && find . -name ".svn" -type d -print | xargs rm -rf 2>/dev/null || true; \ +- fi ++ cd $(top_srcdir)/docs/cgi-examples && cp -rp * $(DESTDIR)$(cgidir) ; + + install-other: + @test -d $(DESTDIR)$(logfiledir) || $(MKINSTALLDIRS) $(DESTDIR)$(logfiledir) +@@ -252,12 +223,7 @@ install-man: + @test -d $(DESTDIR)$(manualdir) || $(MKINSTALLDIRS) $(DESTDIR)$(manualdir) + @cp -p $(top_srcdir)/docs/man/*.1 $(DESTDIR)$(mandir)/man1 + @cp -p $(top_srcdir)/docs/man/*.8 $(DESTDIR)$(mandir)/man8 +- @if test "x$(RSYNC)" != "x" && test -x $(RSYNC) ; then \ +- $(RSYNC) --exclude .svn -rlpt --numeric-ids $(top_srcdir)/docs/manual/ $(DESTDIR)$(manualdir)/; \ +- else \ +- cd $(top_srcdir)/docs/manual && cp -rp * $(DESTDIR)$(manualdir); \ +- cd $(DESTDIR)$(manualdir) && find . -name ".svn" -type d -print | xargs rm -rf 2>/dev/null || true; \ +- fi ++ cd $(top_srcdir)/docs/manual && cp -rp * $(DESTDIR)$(manualdir) + + install-suexec: + @if test -f $(builddir)/support/suexec; then \ diff --git a/net/apache/files/patch-config.layout b/net/apache/files/patch-config.layout new file mode 100644 index 00000000..919134c4 --- /dev/null +++ b/net/apache/files/patch-config.layout @@ -0,0 +1,26 @@ +--- config.layout.orig 2012-04-17 14:01:41 UTC ++++ config.layout +@@ -257,17 +257,17 @@ + bindir: ${exec_prefix}/bin + sbindir: ${exec_prefix}/sbin + libdir: ${exec_prefix}/lib +- libexecdir: ${exec_prefix}/libexec/apache2 ++ libexecdir: ${exec_prefix}/libexec/apache24 + mandir: ${prefix}/man +- sysconfdir: ${prefix}/etc/apache2 +- datadir: ${prefix}/www +- installbuilddir: ${prefix}/share/apache2/build ++ sysconfdir: ${prefix}/etc/apache24 ++ datadir: ${prefix}/www/apache24 ++ installbuilddir: ${prefix}/share/apache24/build + errordir: ${datadir}/error + iconsdir: ${datadir}/icons + htdocsdir: ${datadir}/data +- manualdir: ${prefix}/share/doc/apache2 ++ manualdir: ${prefix}/share/doc/apache24 + cgidir: ${datadir}/cgi-bin +- includedir: ${prefix}/include/apache2 ++ includedir: ${prefix}/include/apache24 + localstatedir: /var + runtimedir: ${localstatedir}/run + logfiledir: ${localstatedir}/log diff --git a/net/apache/files/patch-docs__conf__extra__httpd-autoindex.conf.in b/net/apache/files/patch-docs__conf__extra__httpd-autoindex.conf.in new file mode 100644 index 00000000..120c05f0 --- /dev/null +++ b/net/apache/files/patch-docs__conf__extra__httpd-autoindex.conf.in @@ -0,0 +1,9 @@ +--- docs/conf/extra/httpd-autoindex.conf.in.orig 2010-06-15 11:05:13 UTC ++++ docs/conf/extra/httpd-autoindex.conf.in +@@ -89,5 +89,5 @@ HeaderName HEADER.html + # IndexIgnore is a set of filenames which directory indexing should ignore + # and not include in the listing. Shell-style wildcarding is permitted. + # +-IndexIgnore .??* *~ *# HEADER* README* RCS CVS *,v *,t ++IndexIgnore .??* *~ *# HEADER* README* RCS CVS *,v *,t *.bak *.orig + diff --git a/net/apache/files/patch-docs__conf__extra__httpd-ssl.conf.in b/net/apache/files/patch-docs__conf__extra__httpd-ssl.conf.in new file mode 100644 index 00000000..6b4158e3 --- /dev/null +++ b/net/apache/files/patch-docs__conf__extra__httpd-ssl.conf.in @@ -0,0 +1,22 @@ +--- docs/conf/extra/httpd-ssl.conf.in.orig 2015-05-27 18:59:59 UTC ++++ docs/conf/extra/httpd-ssl.conf.in +@@ -124,8 +124,8 @@ SSLSessionCacheTimeout 300 + DocumentRoot "@exp_htdocsdir@" + ServerName www.example.com:@@SSLPort@@ + ServerAdmin you@example.com +-ErrorLog "@exp_logfiledir@/error_log" +-TransferLog "@exp_logfiledir@/access_log" ++ErrorLog "@exp_logfiledir@/error.log" ++TransferLog "@exp_logfiledir@/access.log" + + # SSL Engine Switch: + # Enable/Disable SSL for this virtual host. +@@ -284,7 +284,7 @@ BrowserMatch "MSIE [2-5]" \ + # Per-Server Logging: + # The home of a custom SSL log file. Use this when you want a + # compact non-error SSL logfile on a virtual host basis. +-CustomLog "@exp_logfiledir@/ssl_request_log" \ ++CustomLog "@exp_logfiledir@/ssl_request.log" \ + "%t %h %{SSL_PROTOCOL}x %{SSL_CIPHER}x \"%r\" %b" + + diff --git a/net/apache/files/patch-docs__conf__extra__httpd-userdir.conf.in b/net/apache/files/patch-docs__conf__extra__httpd-userdir.conf.in new file mode 100644 index 00000000..b9a7c424 --- /dev/null +++ b/net/apache/files/patch-docs__conf__extra__httpd-userdir.conf.in @@ -0,0 +1,11 @@ +--- docs/conf/extra/httpd-userdir.conf.in.orig 2011-06-06 21:40:41 UTC ++++ docs/conf/extra/httpd-userdir.conf.in +@@ -9,6 +9,8 @@ + # + UserDir public_html + ++UserDir disabled ftp ++ + # + # Control access to UserDir directories. The following is an example + # for a site where these directories are restricted to read-only. diff --git a/net/apache/files/patch-docs__conf__httpd.conf.in b/net/apache/files/patch-docs__conf__httpd.conf.in new file mode 100644 index 00000000..a6119fa2 --- /dev/null +++ b/net/apache/files/patch-docs__conf__httpd.conf.in @@ -0,0 +1,54 @@ +--- docs/conf/httpd.conf.in.orig 2015-11-03 11:58:58 UTC ++++ docs/conf/httpd.conf.in +@@ -65,6 +65,9 @@ Listen @@Port@@ + # + @@LoadModule@@ + ++# Third party modules ++IncludeOptional @rel_sysconfdir@/modules.d/[0-9][0-9][0-9]_*.conf ++ + + # + # If you wish httpd to run as a different user or group, you must run +@@ -74,8 +77,8 @@ Listen @@Port@@ + # It is usually good practice to create a dedicated user and group for + # running httpd, as with most system services. + # +-User daemon +-Group daemon ++User www ++Group www + + + +@@ -181,7 +184,7 @@ DocumentRoot "@exp_htdocsdir@" + # logged here. If you *do* define an error logfile for a + # container, that host's errors will be logged there and not here. + # +-ErrorLog "@rel_logfiledir@/error_log" ++ErrorLog "@rel_logfiledir@/error.log" + + # + # LogLevel: Control the number of messages logged to the error_log. +@@ -210,13 +213,13 @@ LogLevel warn + # define per- access logfiles, transactions will be + # logged therein and *not* in this file. + # +- CustomLog "@rel_logfiledir@/access_log" common ++ CustomLog "@rel_logfiledir@/access.log" common + + # + # If you prefer a logfile with access, agent, and referer information + # (Combined Logfile Format) you can use the following directive. + # +- #CustomLog "@rel_logfiledir@/access_log" combined ++ #CustomLog "@rel_logfiledir@/access.log" combined + + + +@@ -407,3 +410,5 @@ SSLRandomSeed startup builtin + SSLRandomSeed connect builtin + + ++Include @rel_sysconfdir@/Includes/*.conf ++ diff --git a/net/apache/files/patch-modules_ssl_mod__ssl.c b/net/apache/files/patch-modules_ssl_mod__ssl.c new file mode 100644 index 00000000..42e793e9 --- /dev/null +++ b/net/apache/files/patch-modules_ssl_mod__ssl.c @@ -0,0 +1,11 @@ +--- modules/ssl/mod_ssl.c.orig 2018-02-13 23:43:36 UTC ++++ modules/ssl/mod_ssl.c +@@ -398,7 +398,7 @@ static int ssl_hook_pre_config(apr_pool_ + /* We must register the library in full, to ensure our configuration + * code can successfully test the SSL environment. + */ +-#if MODSSL_USE_OPENSSL_PRE_1_1_API ++#if MODSSL_USE_OPENSSL_PRE_1_1_API || defined(LIBRESSL_VERSION_NUMBER) + (void)CRYPTO_malloc_init(); + #else + OPENSSL_malloc_init(); diff --git a/net/apache/files/patch-modules_ssl_ssl__engine__init.c b/net/apache/files/patch-modules_ssl_ssl__engine__init.c new file mode 100644 index 00000000..1341e4d5 --- /dev/null +++ b/net/apache/files/patch-modules_ssl_ssl__engine__init.c @@ -0,0 +1,12 @@ +--- modules/ssl/ssl_engine_init.c.orig 2018-02-13 23:43:36 UTC ++++ modules/ssl/ssl_engine_init.c +@@ -546,7 +546,7 @@ static apr_status_t ssl_init_ctx_protoco + char *cp; + int protocol = mctx->protocol; + SSLSrvConfigRec *sc = mySrvConfig(s); +-#if OPENSSL_VERSION_NUMBER >= 0x10100000L ++#if OPENSSL_VERSION_NUMBER >= 0x10100000L && !(defined(LIBRESSL_VERSION_NUMBER) && LIBRESSL_VERSION_NUMBER < 0x20700000L) + int prot; + #endif + + diff --git a/net/apache/files/patch-modules_ssl_ssl__private.h b/net/apache/files/patch-modules_ssl_ssl__private.h new file mode 100644 index 00000000..4b46f8c4 --- /dev/null +++ b/net/apache/files/patch-modules_ssl_ssl__private.h @@ -0,0 +1,11 @@ +--- modules/ssl/ssl_private.h.orig 2018-03-23 14:22:26 UTC ++++ modules/ssl/ssl_private.h +@@ -123,7 +123,7 @@ + #define MODSSL_SSL_METHOD_CONST + #endif + +-#if defined(LIBRESSL_VERSION_NUMBER) ++#if defined(LIBRESSL_VERSION_NUMBER) && LIBRESSL_VERSION_NUMBER < 0x20700000L + /* Missing from LibreSSL */ + #if LIBRESSL_VERSION_NUMBER < 0x2060000f + #define SSL_CTRL_SET_MIN_PROTO_VERSION 123 diff --git a/net/apache/files/patch-modules_ssl_ssl__util__stapling.c b/net/apache/files/patch-modules_ssl_ssl__util__stapling.c new file mode 100644 index 00000000..5dcf5977 --- /dev/null +++ b/net/apache/files/patch-modules_ssl_ssl__util__stapling.c @@ -0,0 +1,11 @@ +--- modules/ssl/ssl_util_stapling.c.orig 2017-07-06 21:11:28 UTC ++++ modules/ssl/ssl_util_stapling.c +@@ -91,7 +91,7 @@ static X509 *stapling_get_issuer(modssl_ + for (i = 0; i < sk_X509_num(extra_certs); i++) { + issuer = sk_X509_value(extra_certs, i); + if (X509_check_issued(issuer, x) == X509_V_OK) { +-#if OPENSSL_VERSION_NUMBER < 0x10100000L ++#if OPENSSL_VERSION_NUMBER < 0x10100000L || (defined(LIBRESSL_VERSION_NUMBER) && LIBRESSL_VERSION_NUMBER < 0x2050000fL) + CRYPTO_add(&issuer->references, 1, CRYPTO_LOCK_X509); + #else + X509_up_ref(issuer); diff --git a/net/apache/files/patch-support__Makefile.in b/net/apache/files/patch-support__Makefile.in new file mode 100644 index 00000000..8dca75c3 --- /dev/null +++ b/net/apache/files/patch-support__Makefile.in @@ -0,0 +1,28 @@ +--- support/Makefile.in.orig 2012-12-11 10:37:25 UTC ++++ support/Makefile.in +@@ -17,10 +17,10 @@ install: + @test -d $(DESTDIR)$(sbindir) || $(MKINSTALLDIRS) $(DESTDIR)$(sbindir) + @test -d $(DESTDIR)$(libexecdir) || $(MKINSTALLDIRS) $(DESTDIR)$(libexecdir) + @cp -p $(top_builddir)/server/httpd.exp $(DESTDIR)$(libexecdir) +- @for i in apxs dbmmanage; do \ ++ @for i in apxs dbmmanage split-logfile; do \ + if test -f "$(builddir)/$$i"; then \ +- cp -p $$i $(DESTDIR)$(bindir); \ +- chmod 755 $(DESTDIR)$(bindir)/$$i; \ ++ cp -p $$i $(DESTDIR)$(sbindir); \ ++ chmod 755 $(DESTDIR)$(sbindir)/$$i; \ + fi ; \ + done + @for i in apachectl; do \ +@@ -30,10 +30,7 @@ install: + fi ; \ + done + @if test -f "$(builddir)/envvars-std"; then \ +- cp -p envvars-std $(DESTDIR)$(sbindir); \ +- if test ! -f $(DESTDIR)$(sbindir)/envvars; then \ +- cp -p envvars-std $(DESTDIR)$(sbindir)/envvars ; \ +- fi ; \ ++ cp -p envvars-std $(DESTDIR)$(sbindir)/envvars; \ + fi + + htpasswd.lo: passwd_common.h diff --git a/net/apache/files/patch-support__apachectl.in b/net/apache/files/patch-support__apachectl.in new file mode 100644 index 00000000..b093f49a --- /dev/null +++ b/net/apache/files/patch-support__apachectl.in @@ -0,0 +1,52 @@ +--- support/apachectl.in.orig 2012-02-01 03:47:28 UTC ++++ support/apachectl.in +@@ -43,6 +43,7 @@ ARGV="$@" + # + # the path to your httpd binary, including options if necessary + HTTPD='@exp_sbindir@/@progname@' ++SERVICE='/usr/sbin/service apache24' + # + # pick up any necessary environment variables + if test -f @exp_sbindir@/envvars; then +@@ -66,19 +67,21 @@ ULIMIT_MAX_FILES="@APACHECTL_ULIMIT@" + # -------------------- -------------------- + # |||||||||||||||||||| END CONFIGURATION SECTION |||||||||||||||||||| + ++eval `limits -e -C daemon` >/dev/null 2>&1 + # Set the maximum number of file descriptors allowed per child process. + if [ "x$ULIMIT_MAX_FILES" != "x" ] ; then + $ULIMIT_MAX_FILES + fi + + ERROR=0 +-if [ "x$ARGV" = "x" ] ; then +- ARGV="-h" ++if [ "x$ACMD" = "x" ] ; then ++ ACMD="-h" + fi + + case $ACMD in +-start|stop|restart|graceful|graceful-stop) +- $HTTPD -k $ARGV ++start|stop|restart|rcvar|reload|graceful|gracefulstop|graceful-stop) ++# $HTTPD -k $ARGV ++ $SERVICE $( echo $ACMD | tr -d '-' ) + ERROR=$? + ;; + startssl|sslstart|start-SSL) +@@ -88,11 +91,13 @@ startssl|sslstart|start-SSL) + ERROR=2 + ;; + configtest) +- $HTTPD -t ++# $HTTPD -t ++ $SERVICE $ACMD + ERROR=$? + ;; + status) +- $LYNX $STATUSURL | awk ' /process$/ { print; exit } { print } ' ++# $LYNX $STATUSURL | awk ' /process$/ { print; exit } { print } ' ++ $SERVICE $ACMD + ;; + fullstatus) + $LYNX $STATUSURL diff --git a/net/apache/files/patch-support__envvars-std.in b/net/apache/files/patch-support__envvars-std.in new file mode 100644 index 00000000..0fcfc8d4 --- /dev/null +++ b/net/apache/files/patch-support__envvars-std.in @@ -0,0 +1,13 @@ +--- support/envvars-std.in.orig 2012-03-08 16:10:51 UTC ++++ support/envvars-std.in +@@ -26,3 +26,10 @@ fi + export @SHLIBPATH_VAR@ + # + @OS_SPECIFIC_VARS@ ++ ++ENVVARS_DIR=%%PREFIX%%/etc/apache/envvars.d ++ ++for envvars_file in $(ls ${ENVVARS_DIR}/*.env 2>/dev/null) ++do ++ . ${envvars_file} ++done diff --git a/net/apache/files/patch-support__log_server_status.in b/net/apache/files/patch-support__log_server_status.in new file mode 100644 index 00000000..9853c52a --- /dev/null +++ b/net/apache/files/patch-support__log_server_status.in @@ -0,0 +1,20 @@ +--- support/log_server_status.in.orig 2012-04-28 23:08:09 UTC ++++ support/log_server_status.in +@@ -29,7 +29,7 @@ use IO::Socket; + use strict; + use warnings; + +-my $wherelog = "@exp_logfiledir@/"; # Logs will be like "@exp_logfiledir@/19960312" ++my $wherelog = "@exp_logfiledir@/httpd-status-"; # Logs will be like "@exp_logfiledir@/httpd-status-19960312" + my $server = "localhost"; # Name of server, could be "www.foo.com" + my $port = "@PORT@"; # Port on server + my $request = "/server-status/?auto"; # Request to send +@@ -46,7 +46,7 @@ my $time = + . sprintf( "%02d", $ltime[1] ) + . sprintf( "%02d", $ltime[0] ); + +-open(OUT,">>$wherelog$day"); ++open(OUT,">>$wherelog$day.log"); + + my $socket = new IO::Socket::INET( + PeerAddr => $server, diff --git a/net/apache/files/patch-support_ab.c b/net/apache/files/patch-support_ab.c new file mode 100644 index 00000000..c5d57f0c --- /dev/null +++ b/net/apache/files/patch-support_ab.c @@ -0,0 +1,17 @@ +--- support/ab.c.orig 2017-05-28 21:15:41 UTC ++++ support/ab.c +@@ -197,6 +197,14 @@ typedef STACK_OF(X509) X509_STACK_TYPE; + #if !defined(OPENSSL_NO_TLSEXT) && defined(SSL_set_tlsext_host_name) + #define HAVE_TLSEXT + #endif ++#if defined(LIBRESSL_VERSION_NUMBER) && LIBRESSL_VERSION_NUMBER < 0x2060000f ++# define SSL_CTRL_SET_MIN_PROTO_VERSION 123 ++# define SSL_CTRL_SET_MAX_PROTO_VERSION 124 ++#define SSL_CTX_set_min_proto_version(ctx, version) \ ++ SSL_CTX_ctrl(ctx, SSL_CTRL_SET_MIN_PROTO_VERSION, version, NULL) ++#define SSL_CTX_set_max_proto_version(ctx, version) \ ++ SSL_CTX_ctrl(ctx, SSL_CTRL_SET_MAX_PROTO_VERSION, version, NULL) ++#endif + #endif + + #include diff --git a/net/apache/files/patch-x-configure b/net/apache/files/patch-x-configure new file mode 100644 index 00000000..02cc79a2 --- /dev/null +++ b/net/apache/files/patch-x-configure @@ -0,0 +1,20 @@ +--- ./configure.orig 2018-07-09 14:49:21.239799000 +0200 ++++ ./configure 2018-07-09 14:55:10.969461000 +0200 +@@ -4951,7 +4951,7 @@ + + AP_BUILD_SRCLIB_DIRS="$AP_BUILD_SRCLIB_DIRS apr-util" + AP_CLEAN_SRCLIB_DIRS="apr-util $AP_CLEAN_SRCLIB_DIRS" +- apu_config="./srclib/apr-util/apu-${apr_major_version}-config" ++ apu_config="./srclib/apr-util/apu-config" + fi + + if test "$apu_found" = "obsolete"; then +@@ -4983,7 +4983,7 @@ + APU_INCLUDEDIR=`$apu_config --includedir` + APU_INCLUDES=`$apu_config --includes` + APU_VERSION=`$apu_config --version` +- APU_CONFIG="$APU_BINDIR/apu-`echo ${APU_VERSION} | sed 's,\..*,,'`-config" ++ APU_CONFIG="$APU_BINDIR/apu-config" + fi + + ac_ext=c diff --git a/net/apache/files/patch-x-configure.in b/net/apache/files/patch-x-configure.in new file mode 100644 index 00000000..45883f59 --- /dev/null +++ b/net/apache/files/patch-x-configure.in @@ -0,0 +1,35 @@ +--- ./configure.in.orig 2017-10-17 20:48:24.000000000 +0200 ++++ ./configure.in 2018-07-09 14:44:38.714235000 +0200 +@@ -183,7 +183,7 @@ + AP_BUILD_SRCLIB_DIRS="$AP_BUILD_SRCLIB_DIRS apr-util" + AP_CLEAN_SRCLIB_DIRS="apr-util $AP_CLEAN_SRCLIB_DIRS" + dnl APR and APR-Util major versions must match +- apu_config="./srclib/apr-util/apu-${apr_major_version}-config" ++ apu_config="./srclib/apr-util/apu-config" + fi + + if test "$apu_found" = "obsolete"; then +@@ -194,7 +194,7 @@ + APU_INCLUDEDIR=`$apu_config --includedir` + APU_INCLUDES=`$apu_config --includes` + APU_VERSION=`$apu_config --version` +- APU_CONFIG="$APU_BINDIR/apu-`echo ${APU_VERSION} | sed 's,\..*,,'`-config" ++ APU_CONFIG="$APU_BINDIR/apu-config" + fi + + dnl In case we picked up CC and CPP from APR, get that info into the +@@ -847,8 +847,14 @@ + [Root directory of the Apache install area]) + AC_DEFINE_UNQUOTED(SERVER_CONFIG_FILE, "${rel_sysconfdir}/${progname}.conf", + [Location of the config file, relative to the Apache root directory]) ++AC_DEFINE_UNQUOTED(DEFAULT_ERRORLOG, "${rel_logfiledir}/httpd-error.log", ++ [Location of error log file]) ++AC_DEFINE_UNQUOTED(DEFAULT_SCOREBOARD, "${rel_runtimedir}/apache_runtime_status", ++ [Location of ScoreBoard file]) + AC_DEFINE_UNQUOTED(AP_TYPES_CONFIG_FILE, "${rel_sysconfdir}/mime.types", + [Location of the MIME types config file, relative to the Apache root directory]) ++AC_DEFINE_UNQUOTED(DOCUMENT_LOCATION, "${rel_htdocsdir}", ++ [Location of document root]) + + perlbin=`$ac_aux_dir/PrintPath perl` + if test "x$perlbin" = "x"; then diff --git a/net/apache/files/patch-x-support-apxs.in b/net/apache/files/patch-x-support-apxs.in new file mode 100644 index 00000000..02f79ec1 --- /dev/null +++ b/net/apache/files/patch-x-support-apxs.in @@ -0,0 +1,33 @@ +--- ./support/apxs.in.orig 2013-12-26 21:01:53.000000000 +0300 ++++ ./support/apxs.in 2018-07-09 14:37:29.652448000 +0200 +@@ -1,4 +1,4 @@ +-#!@perlbin@ -w ++#!@perlbin@ + # + # Licensed to the Apache Software Foundation (ASF) under one or more + # contributor license agreements. See the NOTICE file distributed with +@@ -636,7 +636,13 @@ + } + } else { + # replace already existing LoadModule line +- $content =~ s|^(.*\n)#?\s*$lmd_re[^\n]*\n|$1$c$lmd\n|s; ++ # Custom FreeBSD mod ++ if ($opt_A) { ++ $content =~ s|^(.*\n)#?\s*$lmd_re[^\n]*\n|$1|s; ++ } ++ else { ++ $content =~ s|^(.*\n)#?\s*$lmd_re[^\n]*\n|$1$c$lmd\n|s; ++ } + } + $lmd =~ m|LoadModule\s+(.+?)_module.*|; + notice("[$what module `$1' in $CFG_SYSCONFDIR/$CFG_TARGET.conf]"); +@@ -645,8 +651,7 @@ + if (open(FP, ">$CFG_SYSCONFDIR/$CFG_TARGET.conf.new")) { + print FP $content; + close(FP); +- system("cp $CFG_SYSCONFDIR/$CFG_TARGET.conf $CFG_SYSCONFDIR/$CFG_TARGET.conf.bak && " . +- "cp $CFG_SYSCONFDIR/$CFG_TARGET.conf.new $CFG_SYSCONFDIR/$CFG_TARGET.conf && " . ++ system("cp $CFG_SYSCONFDIR/$CFG_TARGET.conf.new $CFG_SYSCONFDIR/$CFG_TARGET.conf && " . + "rm $CFG_SYSCONFDIR/$CFG_TARGET.conf.new"); + } else { + notice("unable to open configuration file"); diff --git a/net/apache/files/pkg-deinstall.in b/net/apache/files/pkg-deinstall.in new file mode 100644 index 00000000..fc010d1e --- /dev/null +++ b/net/apache/files/pkg-deinstall.in @@ -0,0 +1,12 @@ +#!/bin/sh + +set -x + +case $2 in + DEINSTALL) + ;; + POST-DEINSTALL) + ;; +esac +exit 0 +#EOF diff --git a/net/apache/files/pkg-install.in b/net/apache/files/pkg-install.in new file mode 100644 index 00000000..27dca65f --- /dev/null +++ b/net/apache/files/pkg-install.in @@ -0,0 +1,45 @@ +#!/bin/sh + +set -x + + +case $2 in + PRE-INSTALL) + + GROUP="%%GROUP%%" + OWNER="%%OWNER%%" + GROUP_ID="%%GROUP_ID%%" + OWNER_ID="%%OWNER_ID%%" + + PKG_PREFIX="%%PREFIX%%" + LOCALSTATEDIR="%%LOCALSTATEDIR%%" + + PROXYDIR="%%LOCALSTATEDIR%%/cache/apache" + RUNDIR="%%LOCALSTATEDIR%%/run/apache" + LOGDIR="%%LOCALSTATEDIR%%/log/apache" + DATADIR="%%LOCALSTATEDIR%%/www/apache" + + NAME="apache" + SHELL="/usr/sbin/nologin" + + + pw group add ${GROUP} -g ${GROUP_ID} + pw group show ${GROUP} + pw user add ${OWNER} -u ${OWNER_ID} \ + -g ${GROUP} \ + -d ${PKG_PREFIX} \ + -s "${SHELL}" -u ${OWNER_ID} \ + -c "${NAME}" + pw group mod ${GROUP} -M ${OWNER} + pw user show ${OWNER} + pw group show ${GROUP} + for dir in ${LOGDIR} ${PROXYDIR} ${RUNDIR}; do + install -d -o ${OWNER} -g ${GROUP} -m 0750 ${dir} + done + install -d -o root -g wheel -m 0755 ${DATADIR} + ;; + POST-INSTALL) + ;; +esac +exit 0 +#EOF diff --git a/net/apache/pkg-descr b/net/apache/pkg-descr new file mode 100644 index 00000000..edb36c91 --- /dev/null +++ b/net/apache/pkg-descr @@ -0,0 +1,6 @@ +Apache is an HTTP server designed as a plug-in replacement for the NCSA +server version 1.3 (or 1.4). It fixes numerous bugs in the NCSA server and +includes many frequently requested new features, and has an API which +allows it to be extended to meet users' needs more easily. + +WWW: http://www.apache.org/ diff --git a/net/apache/pkg-plist b/net/apache/pkg-plist new file mode 100644 index 00000000..07668a81 --- /dev/null +++ b/net/apache/pkg-plist @@ -0,0 +1,1600 @@ +bin/ab +bin/htdbm +bin/htdigest +bin/htpasswd +bin/httxt2dbm +bin/logresolve +include/apache/ap_compat.h +include/apache/ap_config_auto.h +include/apache/ap_config_layout.h +include/apache/ap_config.h +include/apache/ap_expr.h +include/apache/ap_hooks.h +include/apache/ap_listen.h +include/apache/ap_mmn.h +include/apache/ap_mpm.h +include/apache/ap_provider.h +include/apache/ap_regex.h +include/apache/ap_regkey.h +include/apache/ap_release.h +include/apache/ap_slotmem.h +include/apache/ap_socache.h +include/apache/apache_noprobes.h +include/apache/cache_common.h +include/apache/heartbeat.h +include/apache/http_config.h +include/apache/http_connection.h +include/apache/http_core.h +include/apache/http_log.h +include/apache/http_main.h +include/apache/http_protocol.h +include/apache/http_request.h +include/apache/http_vhost.h +include/apache/httpd.h +include/apache/mod_auth.h +include/apache/mod_cache.h +include/apache/mod_cgi.h +include/apache/mod_core.h +include/apache/mod_dav.h +include/apache/mod_dbd.h +include/apache/mod_include.h +include/apache/mod_log_config.h +include/apache/mod_proxy.h +include/apache/mod_request.h +include/apache/mod_rewrite.h +include/apache/mod_session.h +include/apache/mod_so.h +include/apache/mod_ssl_openssl.h +include/apache/mod_ssl.h +include/apache/mod_status.h +include/apache/mod_unixd.h +include/apache/mod_watchdog.h +include/apache/mod_xml2enc.h +include/apache/mpm_common.h +include/apache/os.h +include/apache/scoreboard.h +include/apache/unixd.h +include/apache/util_cfgtree.h +include/apache/util_charset.h +include/apache/util_cookies.h +include/apache/util_ebcdic.h +include/apache/util_fcgi.h +include/apache/util_filter.h +include/apache/util_ldap.h +include/apache/util_md5.h +include/apache/util_mutex.h +include/apache/util_script.h +include/apache/util_time.h +include/apache/util_varbuf.h +include/apache/util_xml.h +libexec/apache/httpd.exp +libexec/apache/mod_access_compat.so +libexec/apache/mod_actions.so +libexec/apache/mod_alias.so +libexec/apache/mod_allowmethods.so +libexec/apache/mod_auth_basic.so +libexec/apache/mod_auth_digest.so +libexec/apache/mod_auth_form.so +libexec/apache/mod_authn_anon.so +libexec/apache/mod_authn_core.so +libexec/apache/mod_authn_dbd.so +libexec/apache/mod_authn_file.so +libexec/apache/mod_authn_socache.so +libexec/apache/mod_authz_core.so +libexec/apache/mod_authz_dbd.so +libexec/apache/mod_authz_host.so +libexec/apache/mod_authz_owner.so +libexec/apache/mod_authz_user.so +libexec/apache/mod_autoindex.so +libexec/apache/mod_buffer.so +libexec/apache/mod_cache_disk.so +libexec/apache/mod_cache_socache.so +libexec/apache/mod_cache.so +libexec/apache/mod_cgi.so +libexec/apache/mod_dav_fs.so +libexec/apache/mod_dav.so +libexec/apache/mod_deflate.so +libexec/apache/mod_dir.so +libexec/apache/mod_dumpio.so +libexec/apache/mod_env.so +libexec/apache/mod_expires.so +libexec/apache/mod_ext_filter.so +libexec/apache/mod_file_cache.so +libexec/apache/mod_filter.so +libexec/apache/mod_headers.so +@comment libexec/apache/mod_http2.so +libexec/apache/mod_imagemap.so +libexec/apache/mod_include.so +libexec/apache/mod_info.so +libexec/apache/mod_lbmethod_bybusyness.so +libexec/apache/mod_lbmethod_byrequests.so +libexec/apache/mod_lbmethod_bytraffic.so +libexec/apache/mod_lbmethod_heartbeat.so +libexec/apache/mod_log_config.so +libexec/apache/mod_log_debug.so +libexec/apache/mod_log_forensic.so +libexec/apache/mod_logio.so +libexec/apache/mod_macro.so +libexec/apache/mod_mime_magic.so +libexec/apache/mod_mime.so +libexec/apache/mod_negotiation.so +libexec/apache/mod_proxy_balancer.so +libexec/apache/mod_proxy_connect.so +libexec/apache/mod_proxy_express.so +libexec/apache/mod_proxy_fcgi.so +libexec/apache/mod_proxy_fdpass.so +libexec/apache/mod_proxy_ftp.so +libexec/apache/mod_proxy_hcheck.so +libexec/apache/mod_proxy_http.so +libexec/apache/mod_proxy_scgi.so +libexec/apache/mod_proxy_uwsgi.so +libexec/apache/mod_proxy_wstunnel.so +libexec/apache/mod_proxy.so +libexec/apache/mod_ratelimit.so +libexec/apache/mod_remoteip.so +libexec/apache/mod_reqtimeout.so +libexec/apache/mod_request.so +libexec/apache/mod_rewrite.so +libexec/apache/mod_sed.so +libexec/apache/mod_session_cookie.so +libexec/apache/mod_session_crypto.so +libexec/apache/mod_session_dbd.so +libexec/apache/mod_session.so +libexec/apache/mod_setenvif.so +libexec/apache/mod_slotmem_shm.so +libexec/apache/mod_socache_dbm.so +libexec/apache/mod_socache_memcache.so +libexec/apache/mod_socache_shmcb.so +libexec/apache/mod_speling.so +libexec/apache/mod_ssl.so +libexec/apache/mod_status.so +libexec/apache/mod_substitute.so +libexec/apache/mod_unique_id.so +libexec/apache/mod_unixd.so +libexec/apache/mod_version.so +libexec/apache/mod_vhost_alias.so +libexec/apache/mod_watchdog.so +man/man1/ab.1.gz +man/man1/apxs.1.gz +man/man1/dbmmanage.1.gz +man/man1/htdbm.1.gz +man/man1/htdigest.1.gz +man/man1/htpasswd.1.gz +man/man1/httxt2dbm.1.gz +man/man1/logresolve.1.gz +man/man8/apache.8.gz +man/man8/apachectl.8.gz +man/man8/fcgistarter.8.gz +man/man8/htcacheclean.8.gz +man/man8/httpd.8.gz +man/man8/rotatelogs.8.gz +man/man8/suexec.8.gz +sbin/apache +sbin/apachectl +sbin/apxs +sbin/checkgid +sbin/dbmmanage +sbin/envvars +sbin/fcgistarter +sbin/htcacheclean +sbin/rotatelogs +sbin/split-logfile +share/apache/build/config_vars.mk +share/apache/build/config.nice +share/apache/build/instdso.sh +share/apache/build/library.mk +share/apache/build/ltlib.mk +share/apache/build/mkdir.sh +share/apache/build/program.mk +share/apache/build/rules.mk +share/apache/build/special.mk +share/doc/apache/bind.html +share/doc/apache/bind.html.de +share/doc/apache/bind.html.en +share/doc/apache/bind.html.fr +share/doc/apache/bind.html.ja.utf8 +share/doc/apache/bind.html.ko.euc-kr +share/doc/apache/bind.html.tr.utf8 +share/doc/apache/BUILDING +share/doc/apache/caching.html +share/doc/apache/caching.html.en +share/doc/apache/caching.html.fr +share/doc/apache/caching.html.tr.utf8 +share/doc/apache/configuring.html +share/doc/apache/configuring.html.de +share/doc/apache/configuring.html.en +share/doc/apache/configuring.html.fr +share/doc/apache/configuring.html.ja.utf8 +share/doc/apache/configuring.html.ko.euc-kr +share/doc/apache/configuring.html.tr.utf8 +share/doc/apache/content-negotiation.html +share/doc/apache/content-negotiation.html.en +share/doc/apache/content-negotiation.html.fr +share/doc/apache/content-negotiation.html.ja.utf8 +share/doc/apache/content-negotiation.html.ko.euc-kr +share/doc/apache/content-negotiation.html.tr.utf8 +share/doc/apache/convenience.map +share/doc/apache/custom-error.html +share/doc/apache/custom-error.html.en +share/doc/apache/custom-error.html.es +share/doc/apache/custom-error.html.fr +share/doc/apache/custom-error.html.ja.utf8 +share/doc/apache/custom-error.html.ko.euc-kr +share/doc/apache/custom-error.html.tr.utf8 +share/doc/apache/developer/API.html +share/doc/apache/developer/API.html.en +share/doc/apache/developer/debugging.html +share/doc/apache/developer/debugging.html.en +share/doc/apache/developer/documenting.html +share/doc/apache/developer/documenting.html.en +share/doc/apache/developer/documenting.html.zh-cn.utf8 +share/doc/apache/developer/filters.html +share/doc/apache/developer/filters.html.en +share/doc/apache/developer/hooks.html +share/doc/apache/developer/hooks.html.en +share/doc/apache/developer/index.html +share/doc/apache/developer/index.html.en +share/doc/apache/developer/index.html.zh-cn.utf8 +share/doc/apache/developer/modguide.html +share/doc/apache/developer/modguide.html.en +share/doc/apache/developer/modules.html +share/doc/apache/developer/modules.html.en +share/doc/apache/developer/modules.html.ja.utf8 +share/doc/apache/developer/new_api_2_4.html +share/doc/apache/developer/new_api_2_4.html.en +share/doc/apache/developer/output-filters.html +share/doc/apache/developer/output-filters.html.en +share/doc/apache/developer/request.html +share/doc/apache/developer/request.html.en +share/doc/apache/developer/thread_safety.html +share/doc/apache/developer/thread_safety.html.en +share/doc/apache/dns-caveats.html +share/doc/apache/dns-caveats.html.en +share/doc/apache/dns-caveats.html.fr +share/doc/apache/dns-caveats.html.ja.utf8 +share/doc/apache/dns-caveats.html.ko.euc-kr +share/doc/apache/dns-caveats.html.tr.utf8 +share/doc/apache/dso.html +share/doc/apache/dso.html.en +share/doc/apache/dso.html.fr +share/doc/apache/dso.html.ja.utf8 +share/doc/apache/dso.html.ko.euc-kr +share/doc/apache/dso.html.tr.utf8 +share/doc/apache/env.html +share/doc/apache/env.html.en +share/doc/apache/env.html.fr +share/doc/apache/env.html.ja.utf8 +share/doc/apache/env.html.ko.euc-kr +share/doc/apache/env.html.tr.utf8 +share/doc/apache/expr.html +share/doc/apache/expr.html.en +share/doc/apache/expr.html.fr +share/doc/apache/faq/index.html +share/doc/apache/faq/index.html.en +share/doc/apache/faq/index.html.es +share/doc/apache/faq/index.html.fr +share/doc/apache/faq/index.html.tr.utf8 +share/doc/apache/faq/index.html.zh-cn.utf8 +share/doc/apache/filter.html +share/doc/apache/filter.html.en +share/doc/apache/filter.html.es +share/doc/apache/filter.html.fr +share/doc/apache/filter.html.ja.utf8 +share/doc/apache/filter.html.ko.euc-kr +share/doc/apache/filter.html.tr.utf8 +share/doc/apache/getting-started.html +share/doc/apache/getting-started.html.en +share/doc/apache/getting-started.html.fr +share/doc/apache/glossary.html +share/doc/apache/glossary.html.de +share/doc/apache/glossary.html.en +share/doc/apache/glossary.html.es +share/doc/apache/glossary.html.fr +share/doc/apache/glossary.html.ja.utf8 +share/doc/apache/glossary.html.ko.euc-kr +share/doc/apache/glossary.html.tr.utf8 +share/doc/apache/handler.html +share/doc/apache/handler.html.en +share/doc/apache/handler.html.es +share/doc/apache/handler.html.fr +share/doc/apache/handler.html.ja.utf8 +share/doc/apache/handler.html.ko.euc-kr +share/doc/apache/handler.html.tr.utf8 +share/doc/apache/handler.html.zh-cn.utf8 +share/doc/apache/howto/access.html +share/doc/apache/howto/access.html.en +share/doc/apache/howto/access.html.es +share/doc/apache/howto/access.html.fr +share/doc/apache/howto/auth.html +share/doc/apache/howto/auth.html.en +share/doc/apache/howto/auth.html.es +share/doc/apache/howto/auth.html.fr +share/doc/apache/howto/auth.html.ja.utf8 +share/doc/apache/howto/auth.html.ko.euc-kr +share/doc/apache/howto/auth.html.tr.utf8 +share/doc/apache/howto/cgi.html +share/doc/apache/howto/cgi.html.en +share/doc/apache/howto/cgi.html.es +share/doc/apache/howto/cgi.html.fr +share/doc/apache/howto/cgi.html.ja.utf8 +share/doc/apache/howto/cgi.html.ko.euc-kr +share/doc/apache/howto/htaccess.html +share/doc/apache/howto/htaccess.html.en +share/doc/apache/howto/htaccess.html.es +share/doc/apache/howto/htaccess.html.fr +share/doc/apache/howto/htaccess.html.ja.utf8 +share/doc/apache/howto/htaccess.html.ko.euc-kr +share/doc/apache/howto/htaccess.html.pt-br +share/doc/apache/howto/http2.html +share/doc/apache/howto/http2.html.en +share/doc/apache/howto/http2.html.es +share/doc/apache/howto/http2.html.fr +share/doc/apache/howto/index.html +share/doc/apache/howto/index.html.en +share/doc/apache/howto/index.html.es +share/doc/apache/howto/index.html.fr +share/doc/apache/howto/index.html.ja.utf8 +share/doc/apache/howto/index.html.ko.euc-kr +share/doc/apache/howto/index.html.zh-cn.utf8 +share/doc/apache/howto/public_html.html +share/doc/apache/howto/public_html.html.en +share/doc/apache/howto/public_html.html.es +share/doc/apache/howto/public_html.html.fr +share/doc/apache/howto/public_html.html.ja.utf8 +share/doc/apache/howto/public_html.html.ko.euc-kr +share/doc/apache/howto/public_html.html.tr.utf8 +share/doc/apache/howto/reverse_proxy.html +share/doc/apache/howto/reverse_proxy.html.en +share/doc/apache/howto/ssi.html +share/doc/apache/howto/ssi.html.en +share/doc/apache/howto/ssi.html.fr +share/doc/apache/howto/ssi.html.ja.utf8 +share/doc/apache/howto/ssi.html.ko.euc-kr +share/doc/apache/images/apache_header.gif +share/doc/apache/images/bal-man-b.png +share/doc/apache/images/bal-man-w.png +share/doc/apache/images/bal-man.png +share/doc/apache/images/build_a_mod_2.png +share/doc/apache/images/build_a_mod_3.png +share/doc/apache/images/build_a_mod_4.png +share/doc/apache/images/caching_fig1.gif +share/doc/apache/images/caching_fig1.png +share/doc/apache/images/caching_fig1.tr.png +share/doc/apache/images/custom_errordocs.png +share/doc/apache/images/down.gif +share/doc/apache/images/favicon.ico +share/doc/apache/images/feather.gif +share/doc/apache/images/feather.png +share/doc/apache/images/filter_arch.png +share/doc/apache/images/filter_arch.tr.png +share/doc/apache/images/home.gif +share/doc/apache/images/index.gif +share/doc/apache/images/left.gif +share/doc/apache/images/mod_filter_new.gif +share/doc/apache/images/mod_filter_new.png +share/doc/apache/images/mod_filter_new.tr.png +share/doc/apache/images/mod_filter_old.gif +share/doc/apache/images/mod_filter_old.png +share/doc/apache/images/mod_rewrite_fig1.gif +share/doc/apache/images/mod_rewrite_fig1.png +share/doc/apache/images/mod_rewrite_fig2.gif +share/doc/apache/images/mod_rewrite_fig2.png +share/doc/apache/images/pixel.gif +share/doc/apache/images/reverse-proxy-arch.png +share/doc/apache/images/rewrite_backreferences.png +share/doc/apache/images/rewrite_process_uri.png +share/doc/apache/images/rewrite_rule_flow.png +share/doc/apache/images/right.gif +share/doc/apache/images/ssl_intro_fig1.gif +share/doc/apache/images/ssl_intro_fig1.png +share/doc/apache/images/ssl_intro_fig2.gif +share/doc/apache/images/ssl_intro_fig2.png +share/doc/apache/images/ssl_intro_fig3.gif +share/doc/apache/images/ssl_intro_fig3.png +share/doc/apache/images/sub.gif +share/doc/apache/images/syntax_rewritecond.png +share/doc/apache/images/syntax_rewriterule.png +share/doc/apache/images/up.gif +share/doc/apache/index.html +share/doc/apache/index.html.da +share/doc/apache/index.html.de +share/doc/apache/index.html.en +share/doc/apache/index.html.es +share/doc/apache/index.html.fr +share/doc/apache/index.html.ja.utf8 +share/doc/apache/index.html.ko.euc-kr +share/doc/apache/index.html.pt-br +share/doc/apache/index.html.tr.utf8 +share/doc/apache/index.html.zh-cn.utf8 +share/doc/apache/install.html +share/doc/apache/install.html.de +share/doc/apache/install.html.en +share/doc/apache/install.html.es +share/doc/apache/install.html.fr +share/doc/apache/install.html.ja.utf8 +share/doc/apache/install.html.ko.euc-kr +share/doc/apache/install.html.tr.utf8 +share/doc/apache/invoking.html +share/doc/apache/invoking.html.de +share/doc/apache/invoking.html.en +share/doc/apache/invoking.html.es +share/doc/apache/invoking.html.fr +share/doc/apache/invoking.html.ja.utf8 +share/doc/apache/invoking.html.ko.euc-kr +share/doc/apache/invoking.html.tr.utf8 +share/doc/apache/LICENSE +share/doc/apache/license.html +share/doc/apache/license.html.en +share/doc/apache/logs.html +share/doc/apache/logs.html.en +share/doc/apache/logs.html.fr +share/doc/apache/logs.html.ja.utf8 +share/doc/apache/logs.html.ko.euc-kr +share/doc/apache/logs.html.tr.utf8 +share/doc/apache/misc/index.html +share/doc/apache/misc/index.html.en +share/doc/apache/misc/index.html.fr +share/doc/apache/misc/index.html.ko.euc-kr +share/doc/apache/misc/index.html.tr.utf8 +share/doc/apache/misc/index.html.zh-cn.utf8 +share/doc/apache/misc/password_encryptions.html +share/doc/apache/misc/password_encryptions.html.en +share/doc/apache/misc/password_encryptions.html.fr +share/doc/apache/misc/perf-tuning.html +share/doc/apache/misc/perf-tuning.html.en +share/doc/apache/misc/perf-tuning.html.fr +share/doc/apache/misc/perf-tuning.html.ko.euc-kr +share/doc/apache/misc/perf-tuning.html.tr.utf8 +share/doc/apache/misc/relevant_standards.html +share/doc/apache/misc/relevant_standards.html.en +share/doc/apache/misc/relevant_standards.html.fr +share/doc/apache/misc/relevant_standards.html.ko.euc-kr +share/doc/apache/misc/security_tips.html +share/doc/apache/misc/security_tips.html.en +share/doc/apache/misc/security_tips.html.fr +share/doc/apache/misc/security_tips.html.ko.euc-kr +share/doc/apache/misc/security_tips.html.tr.utf8 +share/doc/apache/mod/core.html +share/doc/apache/mod/core.html.de +share/doc/apache/mod/core.html.en +share/doc/apache/mod/core.html.es +share/doc/apache/mod/core.html.fr +share/doc/apache/mod/core.html.ja.utf8 +share/doc/apache/mod/core.html.tr.utf8 +share/doc/apache/mod/directive-dict.html +share/doc/apache/mod/directive-dict.html.en +share/doc/apache/mod/directive-dict.html.es +share/doc/apache/mod/directive-dict.html.fr +share/doc/apache/mod/directive-dict.html.ja.utf8 +share/doc/apache/mod/directive-dict.html.ko.euc-kr +share/doc/apache/mod/directive-dict.html.tr.utf8 +share/doc/apache/mod/directives.html +share/doc/apache/mod/directives.html.de +share/doc/apache/mod/directives.html.en +share/doc/apache/mod/directives.html.es +share/doc/apache/mod/directives.html.fr +share/doc/apache/mod/directives.html.ja.utf8 +share/doc/apache/mod/directives.html.ko.euc-kr +share/doc/apache/mod/directives.html.tr.utf8 +share/doc/apache/mod/directives.html.zh-cn.utf8 +share/doc/apache/mod/event.html +share/doc/apache/mod/event.html.en +share/doc/apache/mod/event.html.fr +share/doc/apache/mod/index.html +share/doc/apache/mod/index.html.de +share/doc/apache/mod/index.html.en +share/doc/apache/mod/index.html.es +share/doc/apache/mod/index.html.fr +share/doc/apache/mod/index.html.ja.utf8 +share/doc/apache/mod/index.html.ko.euc-kr +share/doc/apache/mod/index.html.tr.utf8 +share/doc/apache/mod/index.html.zh-cn.utf8 +share/doc/apache/mod/mod_access_compat.html +share/doc/apache/mod/mod_access_compat.html.en +share/doc/apache/mod/mod_access_compat.html.fr +share/doc/apache/mod/mod_access_compat.html.ja.utf8 +share/doc/apache/mod/mod_actions.html +share/doc/apache/mod/mod_actions.html.de +share/doc/apache/mod/mod_actions.html.en +share/doc/apache/mod/mod_actions.html.fr +share/doc/apache/mod/mod_actions.html.ja.utf8 +share/doc/apache/mod/mod_actions.html.ko.euc-kr +share/doc/apache/mod/mod_alias.html +share/doc/apache/mod/mod_alias.html.en +share/doc/apache/mod/mod_alias.html.fr +share/doc/apache/mod/mod_alias.html.ja.utf8 +share/doc/apache/mod/mod_alias.html.ko.euc-kr +share/doc/apache/mod/mod_alias.html.tr.utf8 +share/doc/apache/mod/mod_allowmethods.html +share/doc/apache/mod/mod_allowmethods.html.en +share/doc/apache/mod/mod_allowmethods.html.fr +share/doc/apache/mod/mod_asis.html +share/doc/apache/mod/mod_asis.html.en +share/doc/apache/mod/mod_asis.html.fr +share/doc/apache/mod/mod_asis.html.ja.utf8 +share/doc/apache/mod/mod_asis.html.ko.euc-kr +share/doc/apache/mod/mod_auth_basic.html +share/doc/apache/mod/mod_auth_basic.html.en +share/doc/apache/mod/mod_auth_basic.html.fr +share/doc/apache/mod/mod_auth_basic.html.ja.utf8 +share/doc/apache/mod/mod_auth_basic.html.ko.euc-kr +share/doc/apache/mod/mod_auth_digest.html +share/doc/apache/mod/mod_auth_digest.html.en +share/doc/apache/mod/mod_auth_digest.html.fr +share/doc/apache/mod/mod_auth_digest.html.ko.euc-kr +share/doc/apache/mod/mod_auth_form.html +share/doc/apache/mod/mod_auth_form.html.en +share/doc/apache/mod/mod_auth_form.html.fr +share/doc/apache/mod/mod_authn_anon.html +share/doc/apache/mod/mod_authn_anon.html.en +share/doc/apache/mod/mod_authn_anon.html.fr +share/doc/apache/mod/mod_authn_anon.html.ja.utf8 +share/doc/apache/mod/mod_authn_anon.html.ko.euc-kr +share/doc/apache/mod/mod_authn_core.html +share/doc/apache/mod/mod_authn_core.html.en +share/doc/apache/mod/mod_authn_core.html.fr +share/doc/apache/mod/mod_authn_dbd.html +share/doc/apache/mod/mod_authn_dbd.html.en +share/doc/apache/mod/mod_authn_dbd.html.fr +share/doc/apache/mod/mod_authn_dbm.html +share/doc/apache/mod/mod_authn_dbm.html.en +share/doc/apache/mod/mod_authn_dbm.html.fr +share/doc/apache/mod/mod_authn_dbm.html.ja.utf8 +share/doc/apache/mod/mod_authn_dbm.html.ko.euc-kr +share/doc/apache/mod/mod_authn_file.html +share/doc/apache/mod/mod_authn_file.html.en +share/doc/apache/mod/mod_authn_file.html.fr +share/doc/apache/mod/mod_authn_file.html.ja.utf8 +share/doc/apache/mod/mod_authn_file.html.ko.euc-kr +share/doc/apache/mod/mod_authn_socache.html +share/doc/apache/mod/mod_authn_socache.html.en +share/doc/apache/mod/mod_authn_socache.html.fr +share/doc/apache/mod/mod_authnz_fcgi.html +share/doc/apache/mod/mod_authnz_fcgi.html.en +share/doc/apache/mod/mod_authnz_ldap.html +share/doc/apache/mod/mod_authnz_ldap.html.en +share/doc/apache/mod/mod_authnz_ldap.html.fr +share/doc/apache/mod/mod_authz_core.html +share/doc/apache/mod/mod_authz_core.html.en +share/doc/apache/mod/mod_authz_core.html.fr +share/doc/apache/mod/mod_authz_dbd.html +share/doc/apache/mod/mod_authz_dbd.html.en +share/doc/apache/mod/mod_authz_dbd.html.fr +share/doc/apache/mod/mod_authz_dbm.html +share/doc/apache/mod/mod_authz_dbm.html.en +share/doc/apache/mod/mod_authz_dbm.html.fr +share/doc/apache/mod/mod_authz_dbm.html.ko.euc-kr +share/doc/apache/mod/mod_authz_groupfile.html +share/doc/apache/mod/mod_authz_groupfile.html.en +share/doc/apache/mod/mod_authz_groupfile.html.fr +share/doc/apache/mod/mod_authz_groupfile.html.ja.utf8 +share/doc/apache/mod/mod_authz_groupfile.html.ko.euc-kr +share/doc/apache/mod/mod_authz_host.html +share/doc/apache/mod/mod_authz_host.html.en +share/doc/apache/mod/mod_authz_host.html.fr +share/doc/apache/mod/mod_authz_owner.html +share/doc/apache/mod/mod_authz_owner.html.en +share/doc/apache/mod/mod_authz_owner.html.fr +share/doc/apache/mod/mod_authz_owner.html.ja.utf8 +share/doc/apache/mod/mod_authz_owner.html.ko.euc-kr +share/doc/apache/mod/mod_authz_user.html +share/doc/apache/mod/mod_authz_user.html.en +share/doc/apache/mod/mod_authz_user.html.fr +share/doc/apache/mod/mod_authz_user.html.ja.utf8 +share/doc/apache/mod/mod_authz_user.html.ko.euc-kr +share/doc/apache/mod/mod_autoindex.html +share/doc/apache/mod/mod_autoindex.html.en +share/doc/apache/mod/mod_autoindex.html.fr +share/doc/apache/mod/mod_autoindex.html.ja.utf8 +share/doc/apache/mod/mod_autoindex.html.ko.euc-kr +share/doc/apache/mod/mod_autoindex.html.tr.utf8 +share/doc/apache/mod/mod_brotli.html +share/doc/apache/mod/mod_brotli.html.en +share/doc/apache/mod/mod_buffer.html +share/doc/apache/mod/mod_buffer.html.en +share/doc/apache/mod/mod_buffer.html.fr +share/doc/apache/mod/mod_cache_disk.html +share/doc/apache/mod/mod_cache_disk.html.en +share/doc/apache/mod/mod_cache_disk.html.fr +share/doc/apache/mod/mod_cache_disk.html.ja.utf8 +share/doc/apache/mod/mod_cache_disk.html.ko.euc-kr +share/doc/apache/mod/mod_cache_socache.html +share/doc/apache/mod/mod_cache_socache.html.en +share/doc/apache/mod/mod_cache_socache.html.fr +share/doc/apache/mod/mod_cache.html +share/doc/apache/mod/mod_cache.html.en +share/doc/apache/mod/mod_cache.html.fr +share/doc/apache/mod/mod_cache.html.ja.utf8 +share/doc/apache/mod/mod_cache.html.ko.euc-kr +share/doc/apache/mod/mod_cern_meta.html +share/doc/apache/mod/mod_cern_meta.html.en +share/doc/apache/mod/mod_cern_meta.html.fr +share/doc/apache/mod/mod_cern_meta.html.ko.euc-kr +share/doc/apache/mod/mod_cgi.html +share/doc/apache/mod/mod_cgi.html.en +share/doc/apache/mod/mod_cgi.html.fr +share/doc/apache/mod/mod_cgi.html.ja.utf8 +share/doc/apache/mod/mod_cgi.html.ko.euc-kr +share/doc/apache/mod/mod_cgid.html +share/doc/apache/mod/mod_cgid.html.en +share/doc/apache/mod/mod_cgid.html.fr +share/doc/apache/mod/mod_cgid.html.ja.utf8 +share/doc/apache/mod/mod_cgid.html.ko.euc-kr +share/doc/apache/mod/mod_charset_lite.html +share/doc/apache/mod/mod_charset_lite.html.en +share/doc/apache/mod/mod_charset_lite.html.fr +share/doc/apache/mod/mod_charset_lite.html.ko.euc-kr +share/doc/apache/mod/mod_data.html +share/doc/apache/mod/mod_data.html.en +share/doc/apache/mod/mod_data.html.fr +share/doc/apache/mod/mod_dav_fs.html +share/doc/apache/mod/mod_dav_fs.html.en +share/doc/apache/mod/mod_dav_fs.html.fr +share/doc/apache/mod/mod_dav_fs.html.ja.utf8 +share/doc/apache/mod/mod_dav_fs.html.ko.euc-kr +share/doc/apache/mod/mod_dav_lock.html +share/doc/apache/mod/mod_dav_lock.html.en +share/doc/apache/mod/mod_dav_lock.html.fr +share/doc/apache/mod/mod_dav_lock.html.ja.utf8 +share/doc/apache/mod/mod_dav.html +share/doc/apache/mod/mod_dav.html.en +share/doc/apache/mod/mod_dav.html.fr +share/doc/apache/mod/mod_dav.html.ja.utf8 +share/doc/apache/mod/mod_dav.html.ko.euc-kr +share/doc/apache/mod/mod_dbd.html +share/doc/apache/mod/mod_dbd.html.en +share/doc/apache/mod/mod_dbd.html.fr +share/doc/apache/mod/mod_deflate.html +share/doc/apache/mod/mod_deflate.html.en +share/doc/apache/mod/mod_deflate.html.fr +share/doc/apache/mod/mod_deflate.html.ja.utf8 +share/doc/apache/mod/mod_deflate.html.ko.euc-kr +share/doc/apache/mod/mod_dialup.html +share/doc/apache/mod/mod_dialup.html.en +share/doc/apache/mod/mod_dialup.html.fr +share/doc/apache/mod/mod_dir.html +share/doc/apache/mod/mod_dir.html.en +share/doc/apache/mod/mod_dir.html.fr +share/doc/apache/mod/mod_dir.html.ja.utf8 +share/doc/apache/mod/mod_dir.html.ko.euc-kr +share/doc/apache/mod/mod_dir.html.tr.utf8 +share/doc/apache/mod/mod_dumpio.html +share/doc/apache/mod/mod_dumpio.html.en +share/doc/apache/mod/mod_dumpio.html.fr +share/doc/apache/mod/mod_dumpio.html.ja.utf8 +share/doc/apache/mod/mod_echo.html +share/doc/apache/mod/mod_echo.html.en +share/doc/apache/mod/mod_echo.html.fr +share/doc/apache/mod/mod_echo.html.ja.utf8 +share/doc/apache/mod/mod_echo.html.ko.euc-kr +share/doc/apache/mod/mod_env.html +share/doc/apache/mod/mod_env.html.en +share/doc/apache/mod/mod_env.html.fr +share/doc/apache/mod/mod_env.html.ja.utf8 +share/doc/apache/mod/mod_env.html.ko.euc-kr +share/doc/apache/mod/mod_env.html.tr.utf8 +share/doc/apache/mod/mod_example_hooks.html +share/doc/apache/mod/mod_example_hooks.html.en +share/doc/apache/mod/mod_example_hooks.html.fr +share/doc/apache/mod/mod_example_hooks.html.ko.euc-kr +share/doc/apache/mod/mod_expires.html +share/doc/apache/mod/mod_expires.html.en +share/doc/apache/mod/mod_expires.html.fr +share/doc/apache/mod/mod_expires.html.ja.utf8 +share/doc/apache/mod/mod_expires.html.ko.euc-kr +share/doc/apache/mod/mod_ext_filter.html +share/doc/apache/mod/mod_ext_filter.html.en +share/doc/apache/mod/mod_ext_filter.html.fr +share/doc/apache/mod/mod_ext_filter.html.ja.utf8 +share/doc/apache/mod/mod_ext_filter.html.ko.euc-kr +share/doc/apache/mod/mod_file_cache.html +share/doc/apache/mod/mod_file_cache.html.en +share/doc/apache/mod/mod_file_cache.html.fr +share/doc/apache/mod/mod_file_cache.html.ko.euc-kr +share/doc/apache/mod/mod_filter.html +share/doc/apache/mod/mod_filter.html.en +share/doc/apache/mod/mod_filter.html.fr +share/doc/apache/mod/mod_headers.html +share/doc/apache/mod/mod_headers.html.en +share/doc/apache/mod/mod_headers.html.fr +share/doc/apache/mod/mod_headers.html.ja.utf8 +share/doc/apache/mod/mod_headers.html.ko.euc-kr +share/doc/apache/mod/mod_heartbeat.html +share/doc/apache/mod/mod_heartbeat.html.en +share/doc/apache/mod/mod_heartbeat.html.fr +share/doc/apache/mod/mod_heartmonitor.html +share/doc/apache/mod/mod_heartmonitor.html.en +share/doc/apache/mod/mod_heartmonitor.html.fr +share/doc/apache/mod/mod_http2.html +share/doc/apache/mod/mod_http2.html.en +share/doc/apache/mod/mod_ident.html +share/doc/apache/mod/mod_ident.html.en +share/doc/apache/mod/mod_ident.html.fr +share/doc/apache/mod/mod_ident.html.ja.utf8 +share/doc/apache/mod/mod_ident.html.ko.euc-kr +share/doc/apache/mod/mod_imagemap.html +share/doc/apache/mod/mod_imagemap.html.en +share/doc/apache/mod/mod_imagemap.html.fr +share/doc/apache/mod/mod_imagemap.html.ko.euc-kr +share/doc/apache/mod/mod_include.html +share/doc/apache/mod/mod_include.html.en +share/doc/apache/mod/mod_include.html.fr +share/doc/apache/mod/mod_include.html.ja.utf8 +share/doc/apache/mod/mod_info.html +share/doc/apache/mod/mod_info.html.en +share/doc/apache/mod/mod_info.html.fr +share/doc/apache/mod/mod_info.html.ja.utf8 +share/doc/apache/mod/mod_info.html.ko.euc-kr +share/doc/apache/mod/mod_isapi.html +share/doc/apache/mod/mod_isapi.html.en +share/doc/apache/mod/mod_isapi.html.fr +share/doc/apache/mod/mod_isapi.html.ko.euc-kr +share/doc/apache/mod/mod_lbmethod_bybusyness.html +share/doc/apache/mod/mod_lbmethod_bybusyness.html.en +share/doc/apache/mod/mod_lbmethod_bybusyness.html.fr +share/doc/apache/mod/mod_lbmethod_byrequests.html +share/doc/apache/mod/mod_lbmethod_byrequests.html.en +share/doc/apache/mod/mod_lbmethod_byrequests.html.fr +share/doc/apache/mod/mod_lbmethod_bytraffic.html +share/doc/apache/mod/mod_lbmethod_bytraffic.html.en +share/doc/apache/mod/mod_lbmethod_bytraffic.html.fr +share/doc/apache/mod/mod_lbmethod_heartbeat.html +share/doc/apache/mod/mod_lbmethod_heartbeat.html.en +share/doc/apache/mod/mod_lbmethod_heartbeat.html.fr +share/doc/apache/mod/mod_ldap.html +share/doc/apache/mod/mod_ldap.html.en +share/doc/apache/mod/mod_ldap.html.fr +share/doc/apache/mod/mod_log_config.html +share/doc/apache/mod/mod_log_config.html.en +share/doc/apache/mod/mod_log_config.html.fr +share/doc/apache/mod/mod_log_config.html.ja.utf8 +share/doc/apache/mod/mod_log_config.html.ko.euc-kr +share/doc/apache/mod/mod_log_config.html.tr.utf8 +share/doc/apache/mod/mod_log_debug.html +share/doc/apache/mod/mod_log_debug.html.en +share/doc/apache/mod/mod_log_debug.html.fr +share/doc/apache/mod/mod_log_forensic.html +share/doc/apache/mod/mod_log_forensic.html.en +share/doc/apache/mod/mod_log_forensic.html.fr +share/doc/apache/mod/mod_log_forensic.html.ja.utf8 +share/doc/apache/mod/mod_log_forensic.html.tr.utf8 +share/doc/apache/mod/mod_logio.html +share/doc/apache/mod/mod_logio.html.en +share/doc/apache/mod/mod_logio.html.fr +share/doc/apache/mod/mod_logio.html.ja.utf8 +share/doc/apache/mod/mod_logio.html.ko.euc-kr +share/doc/apache/mod/mod_logio.html.tr.utf8 +share/doc/apache/mod/mod_lua.html +share/doc/apache/mod/mod_lua.html.en +share/doc/apache/mod/mod_lua.html.fr +share/doc/apache/mod/mod_macro.html +share/doc/apache/mod/mod_macro.html.en +share/doc/apache/mod/mod_macro.html.fr +share/doc/apache/mod/mod_md.html +share/doc/apache/mod/mod_md.html.en +share/doc/apache/mod/mod_mime_magic.html +share/doc/apache/mod/mod_mime_magic.html.en +share/doc/apache/mod/mod_mime_magic.html.fr +share/doc/apache/mod/mod_mime.html +share/doc/apache/mod/mod_mime.html.en +share/doc/apache/mod/mod_mime.html.fr +share/doc/apache/mod/mod_mime.html.ja.utf8 +share/doc/apache/mod/mod_negotiation.html +share/doc/apache/mod/mod_negotiation.html.en +share/doc/apache/mod/mod_negotiation.html.fr +share/doc/apache/mod/mod_negotiation.html.ja.utf8 +share/doc/apache/mod/mod_nw_ssl.html +share/doc/apache/mod/mod_nw_ssl.html.en +share/doc/apache/mod/mod_nw_ssl.html.fr +share/doc/apache/mod/mod_privileges.html +share/doc/apache/mod/mod_privileges.html.en +share/doc/apache/mod/mod_privileges.html.fr +share/doc/apache/mod/mod_proxy_ajp.html +share/doc/apache/mod/mod_proxy_ajp.html.en +share/doc/apache/mod/mod_proxy_ajp.html.fr +share/doc/apache/mod/mod_proxy_ajp.html.ja.utf8 +share/doc/apache/mod/mod_proxy_balancer.html +share/doc/apache/mod/mod_proxy_balancer.html.en +share/doc/apache/mod/mod_proxy_balancer.html.fr +share/doc/apache/mod/mod_proxy_balancer.html.ja.utf8 +share/doc/apache/mod/mod_proxy_connect.html +share/doc/apache/mod/mod_proxy_connect.html.en +share/doc/apache/mod/mod_proxy_connect.html.fr +share/doc/apache/mod/mod_proxy_connect.html.ja.utf8 +share/doc/apache/mod/mod_proxy_express.html +share/doc/apache/mod/mod_proxy_express.html.en +share/doc/apache/mod/mod_proxy_express.html.fr +share/doc/apache/mod/mod_proxy_fcgi.html +share/doc/apache/mod/mod_proxy_fcgi.html.en +share/doc/apache/mod/mod_proxy_fcgi.html.fr +share/doc/apache/mod/mod_proxy_fdpass.html +share/doc/apache/mod/mod_proxy_fdpass.html.en +share/doc/apache/mod/mod_proxy_fdpass.html.fr +share/doc/apache/mod/mod_proxy_ftp.html +share/doc/apache/mod/mod_proxy_ftp.html.en +share/doc/apache/mod/mod_proxy_ftp.html.fr +share/doc/apache/mod/mod_proxy_hcheck.html +share/doc/apache/mod/mod_proxy_hcheck.html.en +share/doc/apache/mod/mod_proxy_html.html +share/doc/apache/mod/mod_proxy_html.html.en +share/doc/apache/mod/mod_proxy_html.html.fr +share/doc/apache/mod/mod_proxy_http.html +share/doc/apache/mod/mod_proxy_http.html.en +share/doc/apache/mod/mod_proxy_http.html.fr +share/doc/apache/mod/mod_proxy_http2.html +share/doc/apache/mod/mod_proxy_http2.html.en +share/doc/apache/mod/mod_proxy_scgi.html +share/doc/apache/mod/mod_proxy_scgi.html.en +share/doc/apache/mod/mod_proxy_scgi.html.fr +share/doc/apache/mod/mod_proxy_uwsgi.html +share/doc/apache/mod/mod_proxy_uwsgi.html.en +share/doc/apache/mod/mod_proxy_wstunnel.html +share/doc/apache/mod/mod_proxy_wstunnel.html.en +share/doc/apache/mod/mod_proxy.html +share/doc/apache/mod/mod_proxy.html.en +share/doc/apache/mod/mod_proxy.html.fr +share/doc/apache/mod/mod_proxy.html.ja.utf8 +share/doc/apache/mod/mod_ratelimit.html +share/doc/apache/mod/mod_ratelimit.html.en +share/doc/apache/mod/mod_ratelimit.html.fr +share/doc/apache/mod/mod_reflector.html +share/doc/apache/mod/mod_reflector.html.en +share/doc/apache/mod/mod_reflector.html.fr +share/doc/apache/mod/mod_remoteip.html +share/doc/apache/mod/mod_remoteip.html.en +share/doc/apache/mod/mod_remoteip.html.fr +share/doc/apache/mod/mod_reqtimeout.html +share/doc/apache/mod/mod_reqtimeout.html.en +share/doc/apache/mod/mod_reqtimeout.html.fr +share/doc/apache/mod/mod_request.html +share/doc/apache/mod/mod_request.html.en +share/doc/apache/mod/mod_request.html.fr +share/doc/apache/mod/mod_request.html.tr.utf8 +share/doc/apache/mod/mod_rewrite.html +share/doc/apache/mod/mod_rewrite.html.en +share/doc/apache/mod/mod_rewrite.html.fr +share/doc/apache/mod/mod_sed.html +share/doc/apache/mod/mod_sed.html.en +share/doc/apache/mod/mod_sed.html.fr +share/doc/apache/mod/mod_session_cookie.html +share/doc/apache/mod/mod_session_cookie.html.en +share/doc/apache/mod/mod_session_cookie.html.fr +share/doc/apache/mod/mod_session_crypto.html +share/doc/apache/mod/mod_session_crypto.html.en +share/doc/apache/mod/mod_session_crypto.html.fr +share/doc/apache/mod/mod_session_dbd.html +share/doc/apache/mod/mod_session_dbd.html.en +share/doc/apache/mod/mod_session_dbd.html.fr +share/doc/apache/mod/mod_session.html +share/doc/apache/mod/mod_session.html.en +share/doc/apache/mod/mod_session.html.fr +share/doc/apache/mod/mod_setenvif.html +share/doc/apache/mod/mod_setenvif.html.en +share/doc/apache/mod/mod_setenvif.html.fr +share/doc/apache/mod/mod_setenvif.html.ja.utf8 +share/doc/apache/mod/mod_setenvif.html.ko.euc-kr +share/doc/apache/mod/mod_setenvif.html.tr.utf8 +share/doc/apache/mod/mod_slotmem_plain.html +share/doc/apache/mod/mod_slotmem_plain.html.en +share/doc/apache/mod/mod_slotmem_plain.html.fr +share/doc/apache/mod/mod_slotmem_shm.html +share/doc/apache/mod/mod_slotmem_shm.html.en +share/doc/apache/mod/mod_slotmem_shm.html.fr +share/doc/apache/mod/mod_so.html +share/doc/apache/mod/mod_so.html.en +share/doc/apache/mod/mod_so.html.fr +share/doc/apache/mod/mod_so.html.ja.utf8 +share/doc/apache/mod/mod_so.html.ko.euc-kr +share/doc/apache/mod/mod_so.html.tr.utf8 +share/doc/apache/mod/mod_socache_dbm.html +share/doc/apache/mod/mod_socache_dbm.html.en +share/doc/apache/mod/mod_socache_dbm.html.fr +share/doc/apache/mod/mod_socache_dc.html +share/doc/apache/mod/mod_socache_dc.html.en +share/doc/apache/mod/mod_socache_dc.html.fr +share/doc/apache/mod/mod_socache_memcache.html +share/doc/apache/mod/mod_socache_memcache.html.en +share/doc/apache/mod/mod_socache_memcache.html.fr +share/doc/apache/mod/mod_socache_shmcb.html +share/doc/apache/mod/mod_socache_shmcb.html.en +share/doc/apache/mod/mod_socache_shmcb.html.fr +share/doc/apache/mod/mod_speling.html +share/doc/apache/mod/mod_speling.html.en +share/doc/apache/mod/mod_speling.html.fr +share/doc/apache/mod/mod_speling.html.ja.utf8 +share/doc/apache/mod/mod_speling.html.ko.euc-kr +share/doc/apache/mod/mod_ssl.html +share/doc/apache/mod/mod_ssl.html.en +share/doc/apache/mod/mod_ssl.html.fr +share/doc/apache/mod/mod_status.html +share/doc/apache/mod/mod_status.html.en +share/doc/apache/mod/mod_status.html.fr +share/doc/apache/mod/mod_status.html.ja.utf8 +share/doc/apache/mod/mod_status.html.ko.euc-kr +share/doc/apache/mod/mod_status.html.tr.utf8 +share/doc/apache/mod/mod_substitute.html +share/doc/apache/mod/mod_substitute.html.en +share/doc/apache/mod/mod_substitute.html.fr +share/doc/apache/mod/mod_suexec.html +share/doc/apache/mod/mod_suexec.html.en +share/doc/apache/mod/mod_suexec.html.fr +share/doc/apache/mod/mod_suexec.html.ja.utf8 +share/doc/apache/mod/mod_suexec.html.ko.euc-kr +share/doc/apache/mod/mod_suexec.html.tr.utf8 +share/doc/apache/mod/mod_unique_id.html +share/doc/apache/mod/mod_unique_id.html.en +share/doc/apache/mod/mod_unique_id.html.fr +share/doc/apache/mod/mod_unique_id.html.ja.utf8 +share/doc/apache/mod/mod_unique_id.html.ko.euc-kr +share/doc/apache/mod/mod_unixd.html +share/doc/apache/mod/mod_unixd.html.en +share/doc/apache/mod/mod_unixd.html.fr +share/doc/apache/mod/mod_unixd.html.tr.utf8 +share/doc/apache/mod/mod_userdir.html +share/doc/apache/mod/mod_userdir.html.en +share/doc/apache/mod/mod_userdir.html.fr +share/doc/apache/mod/mod_userdir.html.ja.utf8 +share/doc/apache/mod/mod_userdir.html.ko.euc-kr +share/doc/apache/mod/mod_userdir.html.tr.utf8 +share/doc/apache/mod/mod_usertrack.html +share/doc/apache/mod/mod_usertrack.html.en +share/doc/apache/mod/mod_usertrack.html.fr +share/doc/apache/mod/mod_version.html +share/doc/apache/mod/mod_version.html.en +share/doc/apache/mod/mod_version.html.ja.utf8 +share/doc/apache/mod/mod_version.html.ko.euc-kr +share/doc/apache/mod/mod_vhost_alias.html +share/doc/apache/mod/mod_vhost_alias.html.en +share/doc/apache/mod/mod_vhost_alias.html.fr +share/doc/apache/mod/mod_vhost_alias.html.tr.utf8 +share/doc/apache/mod/mod_watchdog.html +share/doc/apache/mod/mod_watchdog.html.en +share/doc/apache/mod/mod_xml2enc.html +share/doc/apache/mod/mod_xml2enc.html.en +share/doc/apache/mod/mod_xml2enc.html.fr +share/doc/apache/mod/module-dict.html +share/doc/apache/mod/module-dict.html.en +share/doc/apache/mod/module-dict.html.fr +share/doc/apache/mod/module-dict.html.ja.utf8 +share/doc/apache/mod/module-dict.html.ko.euc-kr +share/doc/apache/mod/module-dict.html.tr.utf8 +share/doc/apache/mod/mpm_common.html +share/doc/apache/mod/mpm_common.html.de +share/doc/apache/mod/mpm_common.html.en +share/doc/apache/mod/mpm_common.html.fr +share/doc/apache/mod/mpm_common.html.ja.utf8 +share/doc/apache/mod/mpm_common.html.tr.utf8 +share/doc/apache/mod/mpm_netware.html +share/doc/apache/mod/mpm_netware.html.en +share/doc/apache/mod/mpm_netware.html.fr +share/doc/apache/mod/mpm_winnt.html +share/doc/apache/mod/mpm_winnt.html.de +share/doc/apache/mod/mpm_winnt.html.en +share/doc/apache/mod/mpm_winnt.html.fr +share/doc/apache/mod/mpm_winnt.html.ja.utf8 +share/doc/apache/mod/mpmt_os2.html +share/doc/apache/mod/mpmt_os2.html.en +share/doc/apache/mod/mpmt_os2.html.fr +share/doc/apache/mod/overrides.html +share/doc/apache/mod/overrides.html.en +share/doc/apache/mod/prefork.html +share/doc/apache/mod/prefork.html.de +share/doc/apache/mod/prefork.html.en +share/doc/apache/mod/prefork.html.fr +share/doc/apache/mod/prefork.html.ja.utf8 +share/doc/apache/mod/prefork.html.tr.utf8 +share/doc/apache/mod/quickreference.html +share/doc/apache/mod/quickreference.html.de +share/doc/apache/mod/quickreference.html.en +share/doc/apache/mod/quickreference.html.es +share/doc/apache/mod/quickreference.html.fr +share/doc/apache/mod/quickreference.html.ja.utf8 +share/doc/apache/mod/quickreference.html.ko.euc-kr +share/doc/apache/mod/quickreference.html.tr.utf8 +share/doc/apache/mod/quickreference.html.zh-cn.utf8 +share/doc/apache/mod/worker.html +share/doc/apache/mod/worker.html.de +share/doc/apache/mod/worker.html.en +share/doc/apache/mod/worker.html.fr +share/doc/apache/mod/worker.html.ja.utf8 +share/doc/apache/mod/worker.html.tr.utf8 +share/doc/apache/mpm.html +share/doc/apache/mpm.html.de +share/doc/apache/mpm.html.en +share/doc/apache/mpm.html.es +share/doc/apache/mpm.html.fr +share/doc/apache/mpm.html.ja.utf8 +share/doc/apache/mpm.html.ko.euc-kr +share/doc/apache/mpm.html.tr.utf8 +share/doc/apache/mpm.html.zh-cn.utf8 +share/doc/apache/new_features_2_0.html +share/doc/apache/new_features_2_0.html.de +share/doc/apache/new_features_2_0.html.en +share/doc/apache/new_features_2_0.html.fr +share/doc/apache/new_features_2_0.html.ja.utf8 +share/doc/apache/new_features_2_0.html.ko.euc-kr +share/doc/apache/new_features_2_0.html.pt-br +share/doc/apache/new_features_2_0.html.ru.koi8-r +share/doc/apache/new_features_2_0.html.tr.utf8 +share/doc/apache/new_features_2_2.html +share/doc/apache/new_features_2_2.html.en +share/doc/apache/new_features_2_2.html.fr +share/doc/apache/new_features_2_2.html.ko.euc-kr +share/doc/apache/new_features_2_2.html.pt-br +share/doc/apache/new_features_2_2.html.tr.utf8 +share/doc/apache/new_features_2_4.html +share/doc/apache/new_features_2_4.html.en +share/doc/apache/new_features_2_4.html.fr +share/doc/apache/new_features_2_4.html.tr.utf8 +share/doc/apache/platform/ebcdic.html +share/doc/apache/platform/ebcdic.html.en +share/doc/apache/platform/ebcdic.html.ko.euc-kr +share/doc/apache/platform/index.html +share/doc/apache/platform/index.html.en +share/doc/apache/platform/index.html.fr +share/doc/apache/platform/index.html.ko.euc-kr +share/doc/apache/platform/index.html.zh-cn.utf8 +share/doc/apache/platform/netware.html +share/doc/apache/platform/netware.html.en +share/doc/apache/platform/netware.html.fr +share/doc/apache/platform/netware.html.ko.euc-kr +share/doc/apache/platform/perf-hp.html +share/doc/apache/platform/perf-hp.html.en +share/doc/apache/platform/perf-hp.html.fr +share/doc/apache/platform/perf-hp.html.ko.euc-kr +share/doc/apache/platform/rpm.html +share/doc/apache/platform/rpm.html.en +share/doc/apache/platform/win_compiling.html +share/doc/apache/platform/win_compiling.html.en +share/doc/apache/platform/win_compiling.html.fr +share/doc/apache/platform/win_compiling.html.ko.euc-kr +share/doc/apache/platform/windows.html +share/doc/apache/platform/windows.html.en +share/doc/apache/platform/windows.html.fr +share/doc/apache/platform/windows.html.ko.euc-kr +share/doc/apache/programs/ab.html +share/doc/apache/programs/ab.html.en +share/doc/apache/programs/ab.html.fr +share/doc/apache/programs/ab.html.ko.euc-kr +share/doc/apache/programs/ab.html.tr.utf8 +share/doc/apache/programs/apachectl.html +share/doc/apache/programs/apachectl.html.en +share/doc/apache/programs/apachectl.html.fr +share/doc/apache/programs/apachectl.html.ko.euc-kr +share/doc/apache/programs/apachectl.html.tr.utf8 +share/doc/apache/programs/apxs.html +share/doc/apache/programs/apxs.html.en +share/doc/apache/programs/apxs.html.fr +share/doc/apache/programs/apxs.html.ko.euc-kr +share/doc/apache/programs/apxs.html.tr.utf8 +share/doc/apache/programs/configure.html +share/doc/apache/programs/configure.html.en +share/doc/apache/programs/configure.html.fr +share/doc/apache/programs/configure.html.ko.euc-kr +share/doc/apache/programs/configure.html.tr.utf8 +share/doc/apache/programs/dbmmanage.html +share/doc/apache/programs/dbmmanage.html.en +share/doc/apache/programs/dbmmanage.html.fr +share/doc/apache/programs/dbmmanage.html.ko.euc-kr +share/doc/apache/programs/dbmmanage.html.tr.utf8 +share/doc/apache/programs/fcgistarter.html +share/doc/apache/programs/fcgistarter.html.en +share/doc/apache/programs/fcgistarter.html.fr +share/doc/apache/programs/fcgistarter.html.tr.utf8 +share/doc/apache/programs/htcacheclean.html +share/doc/apache/programs/htcacheclean.html.en +share/doc/apache/programs/htcacheclean.html.fr +share/doc/apache/programs/htcacheclean.html.ko.euc-kr +share/doc/apache/programs/htcacheclean.html.tr.utf8 +share/doc/apache/programs/htdbm.html +share/doc/apache/programs/htdbm.html.en +share/doc/apache/programs/htdbm.html.fr +share/doc/apache/programs/htdbm.html.tr.utf8 +share/doc/apache/programs/htdigest.html +share/doc/apache/programs/htdigest.html.en +share/doc/apache/programs/htdigest.html.fr +share/doc/apache/programs/htdigest.html.ko.euc-kr +share/doc/apache/programs/htdigest.html.tr.utf8 +share/doc/apache/programs/htpasswd.html +share/doc/apache/programs/htpasswd.html.en +share/doc/apache/programs/htpasswd.html.fr +share/doc/apache/programs/htpasswd.html.ko.euc-kr +share/doc/apache/programs/htpasswd.html.tr.utf8 +share/doc/apache/programs/httpd.html +share/doc/apache/programs/httpd.html.en +share/doc/apache/programs/httpd.html.fr +share/doc/apache/programs/httpd.html.ko.euc-kr +share/doc/apache/programs/httpd.html.tr.utf8 +share/doc/apache/programs/httxt2dbm.html +share/doc/apache/programs/httxt2dbm.html.en +share/doc/apache/programs/httxt2dbm.html.fr +share/doc/apache/programs/httxt2dbm.html.tr.utf8 +share/doc/apache/programs/index.html +share/doc/apache/programs/index.html.en +share/doc/apache/programs/index.html.es +share/doc/apache/programs/index.html.fr +share/doc/apache/programs/index.html.ko.euc-kr +share/doc/apache/programs/index.html.tr.utf8 +share/doc/apache/programs/index.html.zh-cn.utf8 +share/doc/apache/programs/log_server_status.html +share/doc/apache/programs/log_server_status.html.en +share/doc/apache/programs/logresolve.html +share/doc/apache/programs/logresolve.html.en +share/doc/apache/programs/logresolve.html.fr +share/doc/apache/programs/logresolve.html.ko.euc-kr +share/doc/apache/programs/logresolve.html.tr.utf8 +share/doc/apache/programs/other.html +share/doc/apache/programs/other.html.en +share/doc/apache/programs/other.html.fr +share/doc/apache/programs/other.html.ko.euc-kr +share/doc/apache/programs/other.html.tr.utf8 +share/doc/apache/programs/rotatelogs.html +share/doc/apache/programs/rotatelogs.html.en +share/doc/apache/programs/rotatelogs.html.fr +share/doc/apache/programs/rotatelogs.html.ko.euc-kr +share/doc/apache/programs/rotatelogs.html.tr.utf8 +share/doc/apache/programs/split-logfile.html +share/doc/apache/programs/split-logfile.html.en +share/doc/apache/programs/suexec.html +share/doc/apache/programs/suexec.html.en +share/doc/apache/programs/suexec.html.ko.euc-kr +share/doc/apache/programs/suexec.html.tr.utf8 +share/doc/apache/rewrite/access.html +share/doc/apache/rewrite/access.html.en +share/doc/apache/rewrite/access.html.fr +share/doc/apache/rewrite/advanced.html +share/doc/apache/rewrite/advanced.html.en +share/doc/apache/rewrite/advanced.html.fr +share/doc/apache/rewrite/avoid.html +share/doc/apache/rewrite/avoid.html.en +share/doc/apache/rewrite/avoid.html.fr +share/doc/apache/rewrite/flags.html +share/doc/apache/rewrite/flags.html.en +share/doc/apache/rewrite/flags.html.fr +share/doc/apache/rewrite/htaccess.html +share/doc/apache/rewrite/htaccess.html.en +share/doc/apache/rewrite/htaccess.html.fr +share/doc/apache/rewrite/index.html +share/doc/apache/rewrite/index.html.en +share/doc/apache/rewrite/index.html.fr +share/doc/apache/rewrite/index.html.tr.utf8 +share/doc/apache/rewrite/index.html.zh-cn.utf8 +share/doc/apache/rewrite/intro.html +share/doc/apache/rewrite/intro.html.en +share/doc/apache/rewrite/intro.html.fr +share/doc/apache/rewrite/proxy.html +share/doc/apache/rewrite/proxy.html.en +share/doc/apache/rewrite/proxy.html.fr +share/doc/apache/rewrite/remapping.html +share/doc/apache/rewrite/remapping.html.en +share/doc/apache/rewrite/remapping.html.fr +share/doc/apache/rewrite/rewritemap.html +share/doc/apache/rewrite/rewritemap.html.en +share/doc/apache/rewrite/rewritemap.html.fr +share/doc/apache/rewrite/tech.html +share/doc/apache/rewrite/tech.html.en +share/doc/apache/rewrite/tech.html.fr +share/doc/apache/rewrite/vhosts.html +share/doc/apache/rewrite/vhosts.html.en +share/doc/apache/rewrite/vhosts.html.fr +share/doc/apache/sections.html +share/doc/apache/sections.html.en +share/doc/apache/sections.html.fr +share/doc/apache/sections.html.ja.utf8 +share/doc/apache/sections.html.ko.euc-kr +share/doc/apache/sections.html.tr.utf8 +share/doc/apache/server-wide.html +share/doc/apache/server-wide.html.en +share/doc/apache/server-wide.html.fr +share/doc/apache/server-wide.html.ja.utf8 +share/doc/apache/server-wide.html.ko.euc-kr +share/doc/apache/server-wide.html.tr.utf8 +share/doc/apache/sitemap.html +share/doc/apache/sitemap.html.de +share/doc/apache/sitemap.html.en +share/doc/apache/sitemap.html.es +share/doc/apache/sitemap.html.fr +share/doc/apache/sitemap.html.ja.utf8 +share/doc/apache/sitemap.html.ko.euc-kr +share/doc/apache/sitemap.html.tr.utf8 +share/doc/apache/sitemap.html.zh-cn.utf8 +share/doc/apache/socache.html +share/doc/apache/socache.html.en +share/doc/apache/socache.html.fr +share/doc/apache/ssl/index.html +share/doc/apache/ssl/index.html.en +share/doc/apache/ssl/index.html.fr +share/doc/apache/ssl/index.html.ja.utf8 +share/doc/apache/ssl/index.html.tr.utf8 +share/doc/apache/ssl/index.html.zh-cn.utf8 +share/doc/apache/ssl/ssl_compat.html +share/doc/apache/ssl/ssl_compat.html.en +share/doc/apache/ssl/ssl_compat.html.fr +share/doc/apache/ssl/ssl_faq.html +share/doc/apache/ssl/ssl_faq.html.en +share/doc/apache/ssl/ssl_faq.html.fr +share/doc/apache/ssl/ssl_howto.html +share/doc/apache/ssl/ssl_howto.html.en +share/doc/apache/ssl/ssl_howto.html.fr +share/doc/apache/ssl/ssl_intro.html +share/doc/apache/ssl/ssl_intro.html.en +share/doc/apache/ssl/ssl_intro.html.fr +share/doc/apache/ssl/ssl_intro.html.ja.utf8 +share/doc/apache/stopping.html +share/doc/apache/stopping.html.de +share/doc/apache/stopping.html.en +share/doc/apache/stopping.html.es +share/doc/apache/stopping.html.fr +share/doc/apache/stopping.html.ja.utf8 +share/doc/apache/stopping.html.ko.euc-kr +share/doc/apache/stopping.html.tr.utf8 +share/doc/apache/style/build.properties +share/doc/apache/style/common.dtd +share/doc/apache/style/css/manual-chm.css +share/doc/apache/style/css/manual-loose-100pc.css +share/doc/apache/style/css/manual-print.css +share/doc/apache/style/css/manual-zip-100pc.css +share/doc/apache/style/css/manual-zip.css +share/doc/apache/style/css/manual.css +share/doc/apache/style/css/prettify.css +share/doc/apache/style/faq.dtd +share/doc/apache/style/lang.dtd +share/doc/apache/style/latex/atbeginend.sty +share/doc/apache/style/manualpage.dtd +share/doc/apache/style/modulesynopsis.dtd +share/doc/apache/style/scripts/MINIFY +share/doc/apache/style/scripts/prettify.js +share/doc/apache/style/scripts/prettify.min.js +share/doc/apache/style/sitemap.dtd +share/doc/apache/style/version.ent +share/doc/apache/suexec.html +share/doc/apache/suexec.html.en +share/doc/apache/suexec.html.fr +share/doc/apache/suexec.html.ja.utf8 +share/doc/apache/suexec.html.ko.euc-kr +share/doc/apache/suexec.html.tr.utf8 +share/doc/apache/upgrading.html +share/doc/apache/upgrading.html.en +share/doc/apache/upgrading.html.fr +share/doc/apache/urlmapping.html +share/doc/apache/urlmapping.html.en +share/doc/apache/urlmapping.html.fr +share/doc/apache/urlmapping.html.ja.utf8 +share/doc/apache/urlmapping.html.ko.euc-kr +share/doc/apache/urlmapping.html.tr.utf8 +share/doc/apache/vhosts/details.html +share/doc/apache/vhosts/details.html.en +share/doc/apache/vhosts/details.html.fr +share/doc/apache/vhosts/details.html.ko.euc-kr +share/doc/apache/vhosts/details.html.tr.utf8 +share/doc/apache/vhosts/examples.html +share/doc/apache/vhosts/examples.html.en +share/doc/apache/vhosts/examples.html.fr +share/doc/apache/vhosts/examples.html.ja.utf8 +share/doc/apache/vhosts/examples.html.ko.euc-kr +share/doc/apache/vhosts/examples.html.tr.utf8 +share/doc/apache/vhosts/fd-limits.html +share/doc/apache/vhosts/fd-limits.html.en +share/doc/apache/vhosts/fd-limits.html.fr +share/doc/apache/vhosts/fd-limits.html.ja.utf8 +share/doc/apache/vhosts/fd-limits.html.ko.euc-kr +share/doc/apache/vhosts/fd-limits.html.tr.utf8 +share/doc/apache/vhosts/index.html +share/doc/apache/vhosts/index.html.de +share/doc/apache/vhosts/index.html.en +share/doc/apache/vhosts/index.html.fr +share/doc/apache/vhosts/index.html.ja.utf8 +share/doc/apache/vhosts/index.html.ko.euc-kr +share/doc/apache/vhosts/index.html.tr.utf8 +share/doc/apache/vhosts/index.html.zh-cn.utf8 +share/doc/apache/vhosts/ip-based.html +share/doc/apache/vhosts/ip-based.html.en +share/doc/apache/vhosts/ip-based.html.fr +share/doc/apache/vhosts/ip-based.html.ja.utf8 +share/doc/apache/vhosts/ip-based.html.ko.euc-kr +share/doc/apache/vhosts/ip-based.html.tr.utf8 +share/doc/apache/vhosts/mass.html +share/doc/apache/vhosts/mass.html.en +share/doc/apache/vhosts/mass.html.fr +share/doc/apache/vhosts/mass.html.ko.euc-kr +share/doc/apache/vhosts/mass.html.tr.utf8 +share/doc/apache/vhosts/name-based.html +share/doc/apache/vhosts/name-based.html.de +share/doc/apache/vhosts/name-based.html.en +share/doc/apache/vhosts/name-based.html.fr +share/doc/apache/vhosts/name-based.html.ja.utf8 +share/doc/apache/vhosts/name-based.html.ko.euc-kr +share/doc/apache/vhosts/name-based.html.tr.utf8 +@dir include/apache +@dir libexec/apache +@dir share/apache/build +@dir share/doc/apache/developer +@dir share/doc/apache/faq +@dir share/doc/apache/howto +@dir share/doc/apache/images +@dir share/doc/apache/misc +@dir share/doc/apache/mod +@dir share/doc/apache/platform +@dir share/doc/apache/programs +@dir share/doc/apache/rewrite +@dir share/doc/apache/ssl +@dir share/doc/apache/style/css +@dir share/doc/apache/style/latex +@dir share/doc/apache/style/scripts +@dir share/doc/apache/style +@dir share/doc/apache/vhosts +@dir share/doc/apache + +@cwd /var/www + +apache/cgi-bin/printenv +apache/cgi-bin/test-cgi +apache/error/contact.html.var +apache/error/HTTP_BAD_GATEWAY.html.var +apache/error/HTTP_BAD_REQUEST.html.var +apache/error/HTTP_FORBIDDEN.html.var +apache/error/HTTP_GONE.html.var +apache/error/HTTP_INTERNAL_SERVER_ERROR.html.var +apache/error/HTTP_LENGTH_REQUIRED.html.var +apache/error/HTTP_METHOD_NOT_ALLOWED.html.var +apache/error/HTTP_NOT_FOUND.html.var +apache/error/HTTP_NOT_IMPLEMENTED.html.var +apache/error/HTTP_PRECONDITION_FAILED.html.var +apache/error/HTTP_REQUEST_ENTITY_TOO_LARGE.html.var +apache/error/HTTP_REQUEST_TIME_OUT.html.var +apache/error/HTTP_REQUEST_URI_TOO_LARGE.html.var +apache/error/HTTP_SERVICE_UNAVAILABLE.html.var +apache/error/HTTP_UNAUTHORIZED.html.var +apache/error/HTTP_UNSUPPORTED_MEDIA_TYPE.html.var +apache/error/HTTP_VARIANT_ALSO_VARIES.html.var +apache/error/include/bottom.html +apache/error/include/spacer.html +apache/error/include/top.html +apache/error/README +apache/icons/a.gif +apache/icons/a.png +apache/icons/alert.black.gif +apache/icons/alert.black.png +apache/icons/alert.red.gif +apache/icons/alert.red.png +apache/icons/apache_pb.gif +apache/icons/apache_pb.png +apache/icons/apache_pb.svg +apache/icons/apache_pb2.gif +apache/icons/apache_pb2.png +apache/icons/back.gif +apache/icons/back.png +apache/icons/ball.gray.gif +apache/icons/ball.gray.png +apache/icons/ball.red.gif +apache/icons/ball.red.png +apache/icons/binary.gif +apache/icons/binary.png +apache/icons/binhex.gif +apache/icons/binhex.png +apache/icons/blank.gif +apache/icons/blank.png +apache/icons/bomb.gif +apache/icons/bomb.png +apache/icons/box1.gif +apache/icons/box1.png +apache/icons/box2.gif +apache/icons/box2.png +apache/icons/broken.gif +apache/icons/broken.png +apache/icons/burst.gif +apache/icons/burst.png +apache/icons/c.gif +apache/icons/c.png +apache/icons/comp.blue.gif +apache/icons/comp.blue.png +apache/icons/comp.gray.gif +apache/icons/comp.gray.png +apache/icons/compressed.gif +apache/icons/compressed.png +apache/icons/continued.gif +apache/icons/continued.png +apache/icons/dir.gif +apache/icons/dir.png +apache/icons/diskimg.gif +apache/icons/diskimg.png +apache/icons/down.gif +apache/icons/down.png +apache/icons/dvi.gif +apache/icons/dvi.png +apache/icons/f.gif +apache/icons/f.png +apache/icons/folder.gif +apache/icons/folder.open.gif +apache/icons/folder.open.png +apache/icons/folder.png +apache/icons/folder.sec.gif +apache/icons/folder.sec.png +apache/icons/forward.gif +apache/icons/forward.png +apache/icons/generic.gif +apache/icons/generic.png +apache/icons/generic.red.gif +apache/icons/generic.red.png +apache/icons/generic.sec.gif +apache/icons/generic.sec.png +apache/icons/hand.right.gif +apache/icons/hand.right.png +apache/icons/hand.up.gif +apache/icons/hand.up.png +apache/icons/icon.sheet.gif +apache/icons/icon.sheet.png +apache/icons/image1.gif +apache/icons/image1.png +apache/icons/image2.gif +apache/icons/image2.png +apache/icons/image3.gif +apache/icons/image3.png +apache/icons/index.gif +apache/icons/index.png +apache/icons/layout.gif +apache/icons/layout.png +apache/icons/left.gif +apache/icons/left.png +apache/icons/link.gif +apache/icons/link.png +apache/icons/movie.gif +apache/icons/movie.png +apache/icons/odf6odb.png +apache/icons/odf6odc.png +apache/icons/odf6odf.png +apache/icons/odf6odg.png +apache/icons/odf6odi.png +apache/icons/odf6odm.png +apache/icons/odf6odp.png +apache/icons/odf6ods.png +apache/icons/odf6odt.png +apache/icons/odf6otc.png +apache/icons/odf6otf.png +apache/icons/odf6otg.png +apache/icons/odf6oth.png +apache/icons/odf6oti.png +apache/icons/odf6otp.png +apache/icons/odf6ots.png +apache/icons/odf6ott.png +apache/icons/p.gif +apache/icons/p.png +apache/icons/patch.gif +apache/icons/patch.png +apache/icons/pdf.gif +apache/icons/pdf.png +apache/icons/pie0.gif +apache/icons/pie0.png +apache/icons/pie1.gif +apache/icons/pie1.png +apache/icons/pie2.gif +apache/icons/pie2.png +apache/icons/pie3.gif +apache/icons/pie3.png +apache/icons/pie4.gif +apache/icons/pie4.png +apache/icons/pie5.gif +apache/icons/pie5.png +apache/icons/pie6.gif +apache/icons/pie6.png +apache/icons/pie7.gif +apache/icons/pie7.png +apache/icons/pie8.gif +apache/icons/pie8.png +apache/icons/portal.gif +apache/icons/portal.png +apache/icons/ps.gif +apache/icons/ps.png +apache/icons/quill.gif +apache/icons/quill.png +apache/icons/README +apache/icons/README.html +apache/icons/right.gif +apache/icons/right.png +apache/icons/screw1.gif +apache/icons/screw1.png +apache/icons/screw2.gif +apache/icons/screw2.png +apache/icons/script.gif +apache/icons/script.png +apache/icons/small/back.gif +apache/icons/small/back.png +apache/icons/small/binary.gif +apache/icons/small/binary.png +apache/icons/small/binhex.gif +apache/icons/small/binhex.png +apache/icons/small/blank.gif +apache/icons/small/blank.png +apache/icons/small/broken.gif +apache/icons/small/broken.png +apache/icons/small/burst.gif +apache/icons/small/burst.png +apache/icons/small/comp1.gif +apache/icons/small/comp1.png +apache/icons/small/comp2.gif +apache/icons/small/comp2.png +apache/icons/small/compressed.gif +apache/icons/small/compressed.png +apache/icons/small/continued.gif +apache/icons/small/continued.png +apache/icons/small/doc.gif +apache/icons/small/doc.png +apache/icons/small/folder.gif +apache/icons/small/folder.png +apache/icons/small/folder2.gif +apache/icons/small/folder2.png +apache/icons/small/forward.gif +apache/icons/small/forward.png +apache/icons/small/generic.gif +apache/icons/small/generic.png +apache/icons/small/generic2.gif +apache/icons/small/generic2.png +apache/icons/small/generic3.gif +apache/icons/small/generic3.png +apache/icons/small/image.gif +apache/icons/small/image.png +apache/icons/small/image2.gif +apache/icons/small/image2.png +apache/icons/small/index.gif +apache/icons/small/index.png +apache/icons/small/key.gif +apache/icons/small/key.png +apache/icons/small/movie.gif +apache/icons/small/movie.png +apache/icons/small/patch.gif +apache/icons/small/patch.png +apache/icons/small/ps.gif +apache/icons/small/ps.png +apache/icons/small/rainbow.gif +apache/icons/small/rainbow.png +apache/icons/small/sound.gif +apache/icons/small/sound.png +apache/icons/small/sound2.gif +apache/icons/small/sound2.png +apache/icons/small/tar.gif +apache/icons/small/tar.png +apache/icons/small/text.gif +apache/icons/small/text.png +apache/icons/small/transfer.gif +apache/icons/small/transfer.png +apache/icons/small/unknown.gif +apache/icons/small/unknown.png +apache/icons/small/uu.gif +apache/icons/small/uu.png +apache/icons/sound1.gif +apache/icons/sound1.png +apache/icons/sound2.gif +apache/icons/sound2.png +apache/icons/sphere1.gif +apache/icons/sphere1.png +apache/icons/sphere2.gif +apache/icons/sphere2.png +apache/icons/svg.png +apache/icons/tar.gif +apache/icons/tar.png +apache/icons/tex.gif +apache/icons/tex.png +apache/icons/text.gif +apache/icons/text.png +apache/icons/transfer.gif +apache/icons/transfer.png +apache/icons/unknown.gif +apache/icons/unknown.png +apache/icons/up.gif +apache/icons/up.png +apache/icons/uu.gif +apache/icons/uu.png +apache/icons/uuencoded.gif +apache/icons/uuencoded.png +apache/icons/world1.gif +apache/icons/world1.png +apache/icons/world2.gif +apache/icons/world2.png +apache/icons/xml.png + +@dir apache/cgi-bin +@dir apache/error/include +@dir apache/error +@dir apache/icons/small +@dir apache/icons +@dir apache diff --git a/net/bind/Makefile b/net/bind/Makefile new file mode 100644 index 00000000..ddbe8130 --- /dev/null +++ b/net/bind/Makefile @@ -0,0 +1,75 @@ +# +# $Id$ +# +PORTNAME= bind +ISCVERSION= 9.14.4 +PORTVERSION= ${ISCVERSION:S/-P/./} +CATEGORIES= dns net +MASTER_SITES= ${MASTER_SITE_ISC} +MASTER_SITE_SUBDIR= bind9/${ISCVERSION} +DISTNAME= bind-${ISCVERSION} + +MAINTAINER= onborodin@gmail.com +COMMENT= BIND DNS suite with updated DNSSEC and DNS64 + +GNU_CONFIGURE= yes +USES+= gmake +CONFIGURE_ARGS+= --includedir=${PREFIX}/include/bind +CONFIGURE_ARGS+= --sysconfdir=${BIND_SYSCONFDIR} +CONFIGURE_ARGS+= --localstatedir=/var +CONFIGURE_ARGS+= --disable-linux-caps +CONFIGURE_ARGS+= --disable-symtable +CONFIGURE_ARGS+= --with-openssl=/usr +CONFIGURE_ARGS+= --without-libxml2 +CONFIGURE_ARGS+= --without-python + +CONFIGURE_ARGS+= --with-libidn2=${LOCALBASE} + +LIB_DEPENDS+= libidn2.so:net/libidn2 + +BIND_OWNER= bind +BIND_OWNERID= 53 +BIND_GROUP= bind +BIND_GROUPID= 53 + +BIND_RUNDIR= /var/run/named +#BIND_CHROOTDIR= /var/named +BIND_SYSCONFDIR= ${PREFIX}/etc/named + +SUB_LIST+= BIND_PREFIX=${PREFIX} +SUB_LIST+= BIND_OWNER=${BIND_OWNER} +SUB_LIST+= BIND_GROUP=${BIND_GROUP} +SUB_LIST+= BIND_OWNERID=${BIND_OWNERID} +SUB_LIST+= BIND_GROUPID=${BIND_GROUPID} +SUB_LIST+= BIND_RUNDIR=${BIND_RUNDIR} +SUB_LIST+= BIND_CHROOTDIR=${BIND_CHROOTDIR} +SUB_LIST+= BIND_SYSCONFDIR=${BIND_SYSCONFDIR} + +USE_RC_SUBR+= bind.sh + +SUB_FILES+= pkg-deinstall pkg-install named.conf + +PORTEXAMPLES= * + +post-patch: +.for FILE in check/named-checkconf.8 named/named.8 nsupdate/nsupdate.1 \ + rndc/rndc.8 + ${REINPLACE_CMD} -e 's#/etc/named.conf#${BIND_SYSCONFDIR}/named.conf#g' \ + -e 's#/etc/rndc.conf#${BIND_SYSCONFDIR}/rndc.conf#g' \ + -e "s#/var\/run\/named\/named.pid#/var/run/named/pid#" \ + ${WRKSRC}/bin/${FILE} +.endfor + + +post-install: + ${MKDIR} ${STAGEDIR}${EXAMPLESDIR} + ${INSTALL_DATA} ${WRKDIR}/named.conf ${STAGEDIR}${EXAMPLESDIR}/named.conf.sample + ${INSTALL_DATA} ${FILESDIR}/named.root ${STAGEDIR}${EXAMPLESDIR} + ${INSTALL_DATA} ${FILESDIR}/empty.db ${STAGEDIR}${EXAMPLESDIR} + ${INSTALL_DATA} ${FILESDIR}/localhost-forward.db ${STAGEDIR}${EXAMPLESDIR} + ${INSTALL_DATA} ${FILESDIR}/localhost-reverse.db ${STAGEDIR}${EXAMPLESDIR} + ${INSTALL_DATA} ${WRKSRC}/bin/rndc/rndc.conf \ + ${STAGEDIR}${EXAMPLESDIR}/rndc.conf.sample + +.include +#EOF diff --git a/net/bind/distinfo b/net/bind/distinfo new file mode 100644 index 00000000..84fb745b --- /dev/null +++ b/net/bind/distinfo @@ -0,0 +1,2 @@ +SHA256 (bind-9.14.4.tar.gz) = 312efb82a6889074f31ef2849af498b3ec97ca69acd5c4e5e4b4045a8fe6b83f +SIZE (bind-9.14.4.tar.gz) = 6295768 diff --git a/net/bind/files/bind.sh.in b/net/bind/files/bind.sh.in new file mode 100755 index 00000000..9507c563 --- /dev/null +++ b/net/bind/files/bind.sh.in @@ -0,0 +1,47 @@ +#!/bin/sh +# +# PROVIDE: named bind +# REQUIRE: NETWORKING +# AFTER: NETWORKING +# KEYWORD: shutdown + +. "/etc/rc.subr" + +name="bind" +command="%%PREFIX%%/sbin/named" +procname="${command}" +rcvar=bind_enable + +load_rc_config "$name" + +: ${bind_enable="NO"} + +#: ${bind_changeroot="YES"} +#: ${bind_root="%%BIND_CHROOTDIR%%"} + +: ${bind_changeowner="YES"} +: ${bind_owner="%%BIND_OWNER%%"} + +: ${bind_conf="%%BIND_SYSCONFDIR%%/named.conf"} +: ${bind_args=""} + +#if checkyesno bind_changeroot; then +# bind_args="${bind_args} -t ${bind_root}" +#else +# bind_root=""; +#fi + +#if checkyesno bind_changeowner; then +# bind_args="${bind_args} -u ${bind_owner}" +#fi + +bind_args="${bind_args} -u ${bind_owner}" +#rcvar="${rcvar} bind_changeroot bind_root bind_changeowner bind_owner bind_conf" + + +required_dirs="${bind_root}%%BIND_RUNDIR%%" +required_files="${bind_root}/${bind_conf}" +command_args="${bind_args} -c ${bind_conf}" + +run_rc_command "$1" +#EOF diff --git a/net/bind/files/empty.db b/net/bind/files/empty.db new file mode 100644 index 00000000..50f32b56 --- /dev/null +++ b/net/bind/files/empty.db @@ -0,0 +1,11 @@ + +; $FreeBSD: head/dns/bind913/files/empty.db 340872 2014-01-24 00:14:07Z mat $ + +$TTL 3h +@ SOA @ nobody.localhost. 42 1d 12h 1w 3h + ; Serial, Refresh, Retry, Expire, Neg. cache TTL + +@ NS @ + +; Silence a BIND warning +@ A 127.0.0.1 diff --git a/net/bind/files/extrapatch-bind-min-override-ttl b/net/bind/files/extrapatch-bind-min-override-ttl new file mode 100644 index 00000000..3cf1c096 --- /dev/null +++ b/net/bind/files/extrapatch-bind-min-override-ttl @@ -0,0 +1,59 @@ +--- bin/named/config.c.orig 2018-12-07 18:44:21 UTC ++++ bin/named/config.c +@@ -179,6 +179,7 @@ options {\n\ + notify-source *;\n\ + notify-source-v6 *;\n\ + nsec3-test-zone no;\n\ ++ override-cache-ttl 0; /* do not override */\n\ + provide-ixfr true;\n\ + qname-minimization relaxed;\n\ + query-source address *;\n\ +--- bin/named/server.c.orig 2018-12-07 18:44:21 UTC ++++ bin/named/server.c +@@ -4154,6 +4154,11 @@ configure_view(dns_view_t *view, dns_vie + } + + obj = NULL; ++ result = named_config_get(maps, "override-cache-ttl", &obj); ++ INSIST(result == ISC_R_SUCCESS); ++ view->overridecachettl = cfg_obj_asuint32(obj); ++ ++ obj = NULL; + result = named_config_get(maps, "max-cache-ttl", &obj); + INSIST(result == ISC_R_SUCCESS); + view->maxcachettl = cfg_obj_asuint32(obj); +--- lib/dns/include/dns/view.h.orig 2018-12-07 18:44:21 UTC ++++ lib/dns/include/dns/view.h +@@ -153,6 +153,7 @@ struct dns_view { + bool requestnsid; + bool sendcookie; + dns_ttl_t maxcachettl; ++ dns_ttl_t overridecachettl; + dns_ttl_t maxncachettl; + dns_ttl_t mincachettl; + dns_ttl_t minncachettl; +--- lib/dns/resolver.c.orig 2018-12-07 18:44:21 UTC ++++ lib/dns/resolver.c +@@ -5967,6 +5967,12 @@ cache_name(fetchctx_t *fctx, dns_name_t + } + + /* ++ * Enforce the configure cache TTL override. ++ */ ++ if (res->view->overridecachettl) ++ rdataset->ttl = res->view->overridecachettl; ++ ++ /* + * Enforce the configure maximum cache TTL. + */ + if (rdataset->ttl > res->view->maxcachettl) { +--- lib/isccfg/namedconf.c.orig 2018-12-07 18:44:21 UTC ++++ lib/isccfg/namedconf.c +@@ -1900,6 +1900,7 @@ view_clauses[] = { + { "max-acache-size", &cfg_type_sizenodefault, + CFG_CLAUSEFLAG_OBSOLETE }, + { "max-cache-size", &cfg_type_sizeorpercent, 0 }, ++ { "override-cache-ttl", &cfg_type_ttlval, 0 }, + { "max-cache-ttl", &cfg_type_ttlval, 0 }, + { "max-clients-per-query", &cfg_type_uint32, 0 }, + { "max-ncache-ttl", &cfg_type_ttlval, 0 }, diff --git a/net/bind/files/localhost-forward.db b/net/bind/files/localhost-forward.db new file mode 100644 index 00000000..553729ad --- /dev/null +++ b/net/bind/files/localhost-forward.db @@ -0,0 +1,11 @@ + +; $FreeBSD: head/dns/bind913/files/localhost-forward.db 340872 2014-01-24 00:14:07Z mat $ + +$TTL 3h +localhost. SOA localhost. nobody.localhost. 42 1d 12h 1w 3h + ; Serial, Refresh, Retry, Expire, Neg. cache TTL + + NS localhost. + + A 127.0.0.1 + AAAA ::1 diff --git a/net/bind/files/localhost-reverse.db b/net/bind/files/localhost-reverse.db new file mode 100644 index 00000000..f72c0975 --- /dev/null +++ b/net/bind/files/localhost-reverse.db @@ -0,0 +1,13 @@ + +; $FreeBSD: head/dns/bind913/files/localhost-reverse.db 340872 2014-01-24 00:14:07Z mat $ + +$TTL 3h +@ SOA localhost. nobody.localhost. 42 1d 12h 1w 3h + ; Serial, Refresh, Retry, Expire, Neg. cache TTL + + NS localhost. + +1.0.0 PTR localhost. + +1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 PTR localhost. + diff --git a/net/bind/files/named.conf.in b/net/bind/files/named.conf.in new file mode 100644 index 00000000..0b24e002 --- /dev/null +++ b/net/bind/files/named.conf.in @@ -0,0 +1,380 @@ +// $FreeBSD: head/dns/bind913/files/named.conf.in 443607 2017-06-14 22:54:43Z mat $ +// +// Refer to the named.conf(5) and named(8) man pages, and the documentation +// in /usr/local/share/doc/bind for more details. +// +// If you are going to set up an authoritative server, make sure you +// understand the hairy details of how DNS works. Even with +// simple mistakes, you can break connectivity for affected parties, +// or cause huge amounts of useless Internet traffic. + +options { + // All file and path names are relative to the chroot directory, + // if any, and should be fully qualified. + directory "%%ETCDIR%%/working"; + pid-file "/var/run/named/pid"; + dump-file "/var/dump/named_dump.db"; + statistics-file "/var/stats/named.stats"; + +// If named is being used only as a local resolver, this is a safe default. +// For named to be accessible to the network, comment this option, specify +// the proper IP address, or delete this option. + listen-on { 127.0.0.1; }; + +// If you have IPv6 enabled on this system, uncomment this option for +// use as a local resolver. To give access to the network, specify +// an IPv6 address, or the keyword "any". +// listen-on-v6 { ::1; }; + +// These zones are already covered by the empty zones listed below. +// If you remove the related empty zones below, comment these lines out. + disable-empty-zone "255.255.255.255.IN-ADDR.ARPA"; + disable-empty-zone "0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA"; + disable-empty-zone "1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA"; + +// If you've got a DNS server around at your upstream provider, enter +// its IP address here, and enable the line below. This will make you +// benefit from its cache, thus reduce overall DNS traffic in the Internet. +/* + forwarders { + 127.0.0.1; + }; +*/ + +// If the 'forwarders' clause is not empty the default is to 'forward first' +// which will fall back to sending a query from your local server if the name +// servers in 'forwarders' do not have the answer. Alternatively you can +// force your name server to never initiate queries of its own by enabling the +// following line: +// forward only; + +// If you wish to have forwarding configured automatically based on +// the entries in /etc/resolv.conf, uncomment the following line and +// set named_auto_forward=yes in /etc/rc.conf. You can also enable +// named_auto_forward_only (the effect of which is described above). +// include "%%ETCDIR%%/auto_forward.conf"; + + /* + Modern versions of BIND use a random UDP port for each outgoing + query by default in order to dramatically reduce the possibility + of cache poisoning. All users are strongly encouraged to utilize + this feature, and to configure their firewalls to accommodate it. + + AS A LAST RESORT in order to get around a restrictive firewall + policy you can try enabling the option below. Use of this option + will significantly reduce your ability to withstand cache poisoning + attacks, and should be avoided if at all possible. + + Replace NNNNN in the example with a number between 49160 and 65530. + */ + // query-source address * port NNNNN; +}; + +// If you enable a local name server, don't forget to enter 127.0.0.1 +// first in your /etc/resolv.conf so this server will be queried. +// Also, make sure to enable it in /etc/rc.conf. + +// The traditional root hints mechanism. Use this, OR the slave zones below. +zone "." { type hint; file "%%ETCDIR%%/named.root"; }; + +/* Slaving the following zones from the root name servers has some + significant advantages: + 1. Faster local resolution for your users + 2. No spurious traffic will be sent from your network to the roots + 3. Greater resilience to any potential root server failure/DDoS + + On the other hand, this method requires more monitoring than the + hints file to be sure that an unexpected failure mode has not + incapacitated your server. Name servers that are serving a lot + of clients will benefit more from this approach than individual + hosts. Use with caution. + + To use this mechanism, uncomment the entries below, and comment + the hint zone above. + + As documented at http://dns.icann.org/services/axfr/ these zones: + "." (the root), ARPA, IN-ADDR.ARPA, IP6.ARPA, and a few others + are available for AXFR from these servers on IPv4 and IPv6: + xfr.lax.dns.icann.org, xfr.cjr.dns.icann.org +*/ +/* +zone "." { + type slave; + file "%%ETCDIR%%/slave/root.slave"; + masters { + 192.0.32.132; // lax.xfr.dns.icann.org + 2620:0:2d0:202::132; // lax.xfr.dns.icann.org + 192.0.47.132; // iad.xfr.dns.icann.org + 2620:0:2830:202::132; // iad.xfr.dns.icann.org + }; + notify no; +}; +zone "arpa" { + type slave; + file "%%ETCDIR%%/slave/arpa.slave"; + masters { + 192.0.32.132; // lax.xfr.dns.icann.org + 2620:0:2d0:202::132; // lax.xfr.dns.icann.org + 192.0.47.132; // iad.xfr.dns.icann.org + 2620:0:2830:202::132; // iad.xfr.dns.icann.org + }; + notify no; +}; +zone "in-addr.arpa" { + type slave; + file "%%ETCDIR%%/slave/in-addr.arpa.slave"; + masters { + 192.0.32.132; // lax.xfr.dns.icann.org + 2620:0:2d0:202::132; // lax.xfr.dns.icann.org + 192.0.47.132; // iad.xfr.dns.icann.org + 2620:0:2830:202::132; // iad.xfr.dns.icann.org + }; + notify no; +}; +zone "ip6.arpa" { + type slave; + file "%%ETCDIR%%/slave/ip6.arpa.slave"; + masters { + 192.0.32.132; // lax.xfr.dns.icann.org + 2620:0:2d0:202::132; // lax.xfr.dns.icann.org + 192.0.47.132; // iad.xfr.dns.icann.org + 2620:0:2830:202::132; // iad.xfr.dns.icann.org + }; + notify no; +}; +*/ + +/* Serving the following zones locally will prevent any queries + for these zones leaving your network and going to the root + name servers. This has two significant advantages: + 1. Faster local resolution for your users + 2. No spurious traffic will be sent from your network to the roots +*/ +// RFCs 1912, 5735 and 6303 (and BCP 32 for localhost) +zone "localhost" { type master; file "%%ETCDIR%%/master/localhost-forward.db"; }; +zone "127.in-addr.arpa" { type master; file "%%ETCDIR%%/master/localhost-reverse.db"; }; +zone "255.in-addr.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; + +// RFC 1912-style zone for IPv6 localhost address (RFC 6303) +zone "0.ip6.arpa" { type master; file "%%ETCDIR%%/master/localhost-reverse.db"; }; + +// "This" Network (RFCs 1912, 5735 and 6303) +zone "0.in-addr.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; + +// Private Use Networks (RFCs 1918, 5735 and 6303) +zone "10.in-addr.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "16.172.in-addr.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "17.172.in-addr.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "18.172.in-addr.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "19.172.in-addr.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "20.172.in-addr.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "21.172.in-addr.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "22.172.in-addr.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "23.172.in-addr.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "24.172.in-addr.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "25.172.in-addr.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "26.172.in-addr.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "27.172.in-addr.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "28.172.in-addr.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "29.172.in-addr.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "30.172.in-addr.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "31.172.in-addr.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "168.192.in-addr.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; + +// Shared Address Space (RFC 6598) +zone "64.100.in-addr.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "65.100.in-addr.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "66.100.in-addr.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "67.100.in-addr.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "68.100.in-addr.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "69.100.in-addr.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "70.100.in-addr.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "71.100.in-addr.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "72.100.in-addr.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "73.100.in-addr.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "74.100.in-addr.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "75.100.in-addr.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "76.100.in-addr.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "77.100.in-addr.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "78.100.in-addr.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "79.100.in-addr.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "80.100.in-addr.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "81.100.in-addr.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "82.100.in-addr.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "83.100.in-addr.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "84.100.in-addr.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "85.100.in-addr.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "86.100.in-addr.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "87.100.in-addr.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "88.100.in-addr.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "89.100.in-addr.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "90.100.in-addr.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "91.100.in-addr.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "92.100.in-addr.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "93.100.in-addr.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "94.100.in-addr.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "95.100.in-addr.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "96.100.in-addr.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "97.100.in-addr.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "98.100.in-addr.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "99.100.in-addr.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "100.100.in-addr.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "101.100.in-addr.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "102.100.in-addr.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "103.100.in-addr.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "104.100.in-addr.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "105.100.in-addr.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "106.100.in-addr.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "107.100.in-addr.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "108.100.in-addr.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "109.100.in-addr.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "110.100.in-addr.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "111.100.in-addr.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "112.100.in-addr.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "113.100.in-addr.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "114.100.in-addr.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "115.100.in-addr.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "116.100.in-addr.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "117.100.in-addr.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "118.100.in-addr.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "119.100.in-addr.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "120.100.in-addr.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "121.100.in-addr.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "122.100.in-addr.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "123.100.in-addr.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "124.100.in-addr.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "125.100.in-addr.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "126.100.in-addr.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "127.100.in-addr.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; + +// Link-local/APIPA (RFCs 3927, 5735 and 6303) +zone "254.169.in-addr.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; + +// IETF protocol assignments (RFCs 5735 and 5736) +zone "0.0.192.in-addr.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; + +// TEST-NET-[1-3] for Documentation (RFCs 5735, 5737 and 6303) +zone "2.0.192.in-addr.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "100.51.198.in-addr.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "113.0.203.in-addr.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; + +// IPv6 Example Range for Documentation (RFCs 3849 and 6303) +zone "8.b.d.0.1.0.0.2.ip6.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; + +// Router Benchmark Testing (RFCs 2544 and 5735) +zone "18.198.in-addr.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "19.198.in-addr.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; + +// IANA Reserved - Old Class E Space (RFC 5735) +zone "240.in-addr.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "241.in-addr.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "242.in-addr.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "243.in-addr.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "244.in-addr.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "245.in-addr.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "246.in-addr.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "247.in-addr.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "248.in-addr.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "249.in-addr.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "250.in-addr.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "251.in-addr.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "252.in-addr.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "253.in-addr.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "254.in-addr.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; + +// IPv6 Unassigned Addresses (RFC 4291) +zone "1.ip6.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "3.ip6.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "4.ip6.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "5.ip6.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "6.ip6.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "7.ip6.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "8.ip6.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "9.ip6.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "a.ip6.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "b.ip6.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "c.ip6.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "d.ip6.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "e.ip6.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "0.f.ip6.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "1.f.ip6.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "2.f.ip6.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "3.f.ip6.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "4.f.ip6.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "5.f.ip6.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "6.f.ip6.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "7.f.ip6.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "8.f.ip6.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "9.f.ip6.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "a.f.ip6.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "b.f.ip6.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "0.e.f.ip6.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "1.e.f.ip6.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "2.e.f.ip6.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "3.e.f.ip6.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "4.e.f.ip6.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "5.e.f.ip6.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "6.e.f.ip6.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "7.e.f.ip6.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; + +// IPv6 ULA (RFCs 4193 and 6303) +zone "c.f.ip6.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "d.f.ip6.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; + +// IPv6 Link Local (RFCs 4291 and 6303) +zone "8.e.f.ip6.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "9.e.f.ip6.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "a.e.f.ip6.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "b.e.f.ip6.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; + +// IPv6 Deprecated Site-Local Addresses (RFCs 3879 and 6303) +zone "c.e.f.ip6.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "d.e.f.ip6.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "e.e.f.ip6.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; +zone "f.e.f.ip6.arpa" { type master; file "%%ETCDIR%%/master/empty.db"; }; + +// IP6.INT is Deprecated (RFC 4159) +zone "ip6.int" { type master; file "%%ETCDIR%%/master/empty.db"; }; + +// NB: Do not use the IP addresses below, they are faked, and only +// serve demonstration/documentation purposes! +// +// Example slave zone config entries. It can be convenient to become +// a slave at least for the zone your own domain is in. Ask +// your network administrator for the IP address of the responsible +// master name server. +// +// Do not forget to include the reverse lookup zone! +// This is named after the first bytes of the IP address, in reverse +// order, with ".IN-ADDR.ARPA" appended, or ".IP6.ARPA" for IPv6. +// +// Before starting to set up a master zone, make sure you fully +// understand how DNS and BIND work. There are sometimes +// non-obvious pitfalls. Setting up a slave zone is usually simpler. +// +// NB: Don't blindly enable the examples below. :-) Use actual names +// and addresses instead. + +/* An example dynamic zone +key "exampleorgkey" { + algorithm hmac-md5; + secret "sf87HJqjkqh8ac87a02lla=="; +}; +zone "example.org" { + type master; + allow-update { + key "exampleorgkey"; + }; + file "%%ETCDIR%%/dynamic/example.org"; +}; +*/ + +/* Example of a slave reverse zone +zone "1.168.192.in-addr.arpa" { + type slave; + file "%%ETCDIR%%/slave/1.168.192.in-addr.arpa"; + masters { + 192.168.1.1; + }; +}; +*/ diff --git a/net/bind/files/named.in b/net/bind/files/named.in new file mode 100644 index 00000000..1b28e23e --- /dev/null +++ b/net/bind/files/named.in @@ -0,0 +1,451 @@ +#!/bin/sh +# +# $FreeBSD: head/dns/bind913/files/named.in 487359 2018-12-13 09:06:50Z mat $ +# + +# PROVIDE: named +# REQUIRE: %%NAMED_REQUIRE%% +# BEFORE: %%NAMED_BEFORE%% +# KEYWORD: shutdown + +# +# Add the following lines to /etc/rc.conf to enable BIND: +# named_enable (bool): Run named, the DNS server (or NO). +# named_program (str): Path to named, if you want a different one. +# named_conf (str): Path to the configuration file +# named_flags (str): Use this for flags OTHER than -u and -c +# named_uid (str): User to run named as +# named_chrootdir (str): Chroot directory (or "" not to auto-chroot it) +# Historically, was /var/named +# named_chroot_autoupdate (bool): Automatically install/update chrooted +# components of named. +# named_symlink_enable (bool): Symlink the chrooted pid file +# named_wait (bool): Wait for working name service before exiting +# named_wait_host (str): Hostname to check if named_wait is enabled +# named_auto_forward (str): Set up forwarders from /etc/resolv.conf +# named_auto_forward_only (str): Do "forward only" instead of "forward first" +%%NATIVE_PKCS11%%# named_pkcs11_engine (str): Path to the PKCS#11 library to use. +# + +. /etc/rc.subr + +name=named +desc="named BIND startup script" +rcvar=named_enable + +load_rc_config ${name} + +extra_commands=reload + +start_precmd=named_prestart +start_postcmd=named_poststart +reload_cmd=named_reload +stop_cmd=named_stop +stop_postcmd=named_poststop + +named_enable=${named_enable:-"NO"} +named_program=${named_program:-"%%PREFIX%%/sbin/named"} +named_conf=${named_conf:-"%%ETCDIR%%/named.conf"} +named_flags=${named_flags:-""} +named_uid=${named_uid:-"bind"} +named_chrootdir=${named_chrootdir:-""} +named_chroot_autoupdate=${named_chroot_autoupdate:-"YES"} +named_symlink_enable=${named_symlink_enable:-"YES"} +named_wait=${named_wait:-"NO"} +named_wait_host=${named_wait_host:-"localhost"} +named_auto_forward=${named_auto_forward:-"NO"} +named_auto_forward_only=${named_auto_forward_only:-"NO"} +%%NATIVE_PKCS11%%named_pkcs11_engine=${named_pkcs11_engine:-""} + +# Not configuration variables but having them here keeps rclint happy +required_dirs="${named_chrootdir}" +_named_confdirroot="${named_conf%/*}" +_named_confdir="${named_chrootdir}${_named_confdirroot}" +_named_program_root="${named_program%/sbin/named}" +_openssl_engines="%%ENGINES%%" + +# Needed if named.conf and rndc.conf are moved or if rndc.conf is used +rndc_conf=${rndc_conf:-"$_named_confdir/rndc.conf"} +rndc_key=${rndc_key:-"$_named_confdir/rndc.key"} + +# If running in a chroot cage, ensure that the appropriate files +# exist inside the cage, as well as helper symlinks into the cage +# from outside. +# +# As this is called after the is_running and required_dir checks +# are made in run_rc_command(), we can safely assume ${named_chrootdir} +# exists and named isn't running at this point (unless forcestart +# is used). +# +chroot_autoupdate() +{ + local file + + # If it's the first time around, fiddle with things and move the + # current configuration to the chroot. + if [ -d ${_named_confdirroot} -a ! -d ${_named_confdir} ]; then + warn "named chroot: Moving current configuration in the chroot!" + install -d ${_named_confdir%/*} + mv ${_named_confdirroot} ${_named_confdir} + fi + + # Create (or update) the chroot directory structure + # + if [ -r %%PREFIX%%/etc/mtree/BIND.chroot.dist ]; then + mtree -deU -f %%PREFIX%%/etc/mtree/BIND.chroot.dist \ + -p ${named_chrootdir} + else + warn "%%PREFIX%%/etc/mtree/BIND.chroot.dist missing," + warn "${named_chrootdir} directory structure not updated" + fi + if [ -r %%PREFIX%%/etc/mtree/BIND.chroot.local.dist ]; then + mkdir -p ${named_chrootdir}%%PREFIX%% + mtree -deU -f %%PREFIX%%/etc/mtree/BIND.chroot.local.dist \ + -p ${named_chrootdir}%%PREFIX%% + else + warn "%%PREFIX%%/etc/mtree/BIND.chroot.local.dist missing," + warn "${named_chrootdir}%%PREFIX%% directory structure not updated" + fi + + # Create (or update) the configuration directory symlink + # + if [ ! -L "${_named_confdirroot}" ]; then + if [ -d "${_named_confdirroot}" ]; then + warn "named chroot: ${_named_confdirroot} is a directory!" + elif [ -e "${_named_confdirroot}" ]; then + warn "named chroot: ${_named_confdirroot} exists!" + else + ln -s ${_named_confdir} ${_named_confdirroot} + fi + else + # Make sure it points to the right place. + ln -shf ${_named_confdir} ${_named_confdirroot} + fi + + # Mount a devfs in the chroot directory if needed + # + if [ `${SYSCTL_N} security.jail.jailed` -eq 0 ]; then + umount ${named_chrootdir}/dev 2>/dev/null + devfs_domount ${named_chrootdir}/dev devfsrules_hide_all + devfs -m ${named_chrootdir}/dev rule apply path null unhide + devfs -m ${named_chrootdir}/dev rule apply path random unhide + else + if [ -c ${named_chrootdir}/dev/null -a \ + -c ${named_chrootdir}/dev/random ]; then + info "named chroot: using pre-mounted devfs." + else + err 1 "named chroot: devfs cannot be mounted from " \ + "within a jail. Thus a chrooted named cannot " \ + "be run from within a jail. Either mount the " \ + "devfs with null and random from the host, or " \ + "run named without chrooting it, set " \ + "named_chrootdir=\"\" in /etc/rc.conf." + fi + fi + + # The OpenSSL engines should be present in the chroot, named loads them + # after chrooting. + if [ -d ${_openssl_engines} ]; then + mkdir -p ${named_chrootdir}${_openssl_engines} + if can_mount nullfs ; then + mount -t nullfs ${_openssl_engines} ${named_chrootdir}${_openssl_engines} + else + warn "named chroot: cannot nullfs mount OpenSSL" \ + "engines into the chroot, will copy the shared" \ + "libraries instead." + cp -f ${_openssl_engines}/*.so ${named_chrootdir}${_openssl_engines} + fi + fi + + # Copy and/or update key files to the chroot /etc + # + for file in localtime protocols services; do + if [ -r /etc/${file} ] && \ + ! cmp -s /etc/${file} "${named_chrootdir}/etc/${file}"; then + cp -p /etc/${file} "${named_chrootdir}/etc/${file}" + fi + done +} + +# Make symlinks to the correct pid file +# +make_symlinks() +{ + checkyesno named_symlink_enable && + ln -fs "${named_chrootdir}${pidfile}" ${pidfile} && + ln -fs "${named_chrootdir}${sessionkeyfile}" ${sessionkeyfile} +} + +named_poststart() +{ + make_symlinks + + if checkyesno named_wait; then + until ${_named_program_root}/bin/host ${named_wait_host} >/dev/null 2>&1; do + echo " Waiting for nameserver to resolve ${named_wait_host}" + sleep 1 + done + fi +} + +named_reload() +{ + # This is a one line function, but ${named_program} is not defined early + # enough to be there when the reload_cmd variable is defined up there. + rndc reload +} + +find_pidfile() +{ + if get_pidfile_from_conf pid-file ${named_conf}; then + pidfile="${_pidfile_from_conf}" + else + pidfile="/var/run/named/pid" + fi +} + +find_sessionkeyfile() +{ + if get_pidfile_from_conf session-keyfile ${named_conf}; then + sessionkeyfile="${_pidfile_from_conf}" + else + sessionkeyfile="/var/run/named/session.key" + fi +} + +named_stop() +{ + find_pidfile + + # This duplicates an undesirably large amount of code from the stop + # routine in rc.subr in order to use rndc to shut down the process, + # and to give it a second chance in case rndc fails. + rc_pid=$(check_pidfile ${pidfile} ${command}) + if [ -z "${rc_pid}" ]; then + [ -n "${rc_fast}" ] && return 0 + _run_rc_notrunning + return 1 + fi + echo 'Stopping named.' + if rndc stop; then + wait_for_pids ${rc_pid} + else + echo -n 'rndc failed, trying kill: ' + kill -TERM ${rc_pid} + wait_for_pids ${rc_pid} + fi +} + +named_poststop() +{ + if [ -n "${named_chrootdir}" ]; then + # if using OpenSSL from ports, unmount OpenSSL engines, if they + # were not mounted but only copied, do nothing. + if [ -d ${_openssl_engines} ]; then + if can_mount nullfs; then + umount ${named_chrootdir}${_openssl_engines} + fi + fi + if [ -c ${named_chrootdir}/dev/null ]; then + # unmount /dev + if [ `${SYSCTL_N} security.jail.jailed` -eq 0 ]; then + umount ${named_chrootdir}/dev 2>/dev/null || true + else + warn "named chroot:" \ + "cannot unmount devfs from inside jail!" + fi + fi + fi +} + +can_mount() +{ + local kld + kld=$1 + if ! load_kld $kld; then + return 1 + fi + if [ `${SYSCTL_N} security.jail.jailed` -eq 0 ] || + [ `${SYSCTL_N} security.jail.mount_allowed` -eq 1 ] || + [ `${SYSCTL_N} security.jail.mount_${kld}_allowed` -eq 1 ] ; then + return 0 + fi + return 1 +} + +create_file() +{ + if [ -e "$1" ]; then + unlink $1 + fi + install -o root -g wheel -m 0644 /dev/null $1 +} + +rndc() +{ + if [ -z "${rndc_flags}" ]; then + if [ -s "${rndc_conf}" ] ; then + rndc_flags="-c ${rndc_conf}" + elif [ -s "${rndc_key}" ] ; then + rndc_flags="-k ${rndc_key}" + else + rndc_flags="" + fi + fi + + ${_named_program_root}/sbin/rndc ${rndc_flags} "$@" +} + +named_prestart() +{ + find_pidfile + find_sessionkeyfile + + if [ -n "${named_pidfile}" ]; then + warn 'named_pidfile: now determined from the conf file' + fi + + if [ -n "${named_sessionkeyfile}" ]; then + warn 'named_sessionkeyfile: now determined from the conf file' + fi + + piddir=`/usr/bin/dirname ${pidfile}` + if [ ! -d ${piddir} ]; then + install -d -o ${named_uid} -g ${named_uid} ${piddir} + fi + + sessionkeydir=`/usr/bin/dirname ${sessionkeyfile}` + if [ ! -d ${sessionkeydir} ]; then + install -d -o ${named_uid} -g ${named_uid} ${sessionkeydir} + fi + + command_args="-u ${named_uid:=root} -c ${named_conf} ${command_args}" + +%%NATIVE_PKCS11%% if [ -z "${named_pkcs11_engine}"]; then +%%NATIVE_PKCS11%% err 3 "named_pkcs11_engine has to be set to the PKCS#11 engine's library you want to use" +%%NATIVE_PKCS11%% elif [ ! -f ${named_pkcs11_engine} ]; then +%%NATIVE_PKCS11%% err 3 "named_pkcs11_engine the PKCS#11 engine's library you want to use doesn't exist" +%%NATIVE_PKCS11%% else +%%NATIVE_PKCS11%% mkdir -p ${named_chrootdir}${named_pkcs11_engine%/*} +%%NATIVE_PKCS11%% cp -p ${named_pkcs11_engine} ${named_chrootdir}${named_pkcs11_engine} +%%NATIVE_PKCS11%% command_args="-E ${named_pkcs11_engine} ${command_args}" +%%NATIVE_PKCS11%% fi + + local line nsip firstns + + # Is the user using a sandbox? + # + if [ -n "${named_chrootdir}" ]; then + rc_flags="${rc_flags} -t ${named_chrootdir}" + checkyesno named_chroot_autoupdate && chroot_autoupdate + + case "${altlog_proglist}" in + *named*) + ;; + *) + warn 'Using chroot without setting altlog_proglist, logging may not' + warn 'work correctly. Run sysrc altlog_proglist+=named' + ;; + esac + else + named_symlink_enable=NO + fi + + # Create an rndc.key file for the user if none exists + # + confgen_command="${_named_program_root}/sbin/rndc-confgen -a -b256 -u ${named_uid} \ + -c ${_named_confdir}/rndc.key" + if [ -s "${_named_confdir}/rndc.conf" ]; then + unset confgen_command + fi + if [ -s "${_named_confdir}/rndc.key" ]; then + case `stat -f%Su ${_named_confdir}/rndc.key` in + root|${named_uid}) ;; + *) ${confgen_command} ;; + esac + else + ${confgen_command} + fi + + local checkconf + + checkconf="${_named_program_root}/sbin/named-checkconf" + if ! checkyesno named_chroot_autoupdate && [ -n "${named_chrootdir}" ]; then + checkconf="${checkconf} -t ${named_chrootdir}" + fi + + # Create a forwarder configuration based on /etc/resolv.conf + if checkyesno named_auto_forward; then + if [ ! -s /etc/resolv.conf ]; then + warn "named_auto_forward enabled, but no /etc/resolv.conf" + + # Empty the file in case it is included in named.conf + [ -s "${_named_confdir}/auto_forward.conf" ] && + create_file ${_named_confdir}/auto_forward.conf + + ${checkconf} ${named_conf} || + err 3 'named-checkconf for ${named_conf} failed' + return + fi + + create_file /var/run/naf-resolv.conf + create_file /var/run/auto_forward.conf + + echo ' forwarders {' > /var/run/auto_forward.conf + + while read line; do + case "${line}" in + 'nameserver '*|'nameserver '*) + nsip=${line##nameserver[ ]} + + if [ -z "${firstns}" ]; then + if [ ! "${nsip}" = '127.0.0.1' ]; then + echo 'nameserver 127.0.0.1' + echo " ${nsip};" >> /var/run/auto_forward.conf + fi + + firstns=1 + else + [ "${nsip}" = '127.0.0.1' ] && continue + echo " ${nsip};" >> /var/run/auto_forward.conf + fi + ;; + esac + + echo ${line} + done < /etc/resolv.conf > /var/run/naf-resolv.conf + + echo ' };' >> /var/run/auto_forward.conf + echo '' >> /var/run/auto_forward.conf + if checkyesno named_auto_forward_only; then + echo " forward only;" >> /var/run/auto_forward.conf + else + echo " forward first;" >> /var/run/auto_forward.conf + fi + + if cmp -s /etc/resolv.conf /var/run/naf-resolv.conf; then + unlink /var/run/naf-resolv.conf + else + [ -e /etc/resolv.conf ] && unlink /etc/resolv.conf + mv /var/run/naf-resolv.conf /etc/resolv.conf + fi + + if cmp -s ${_named_confdir}/auto_forward.conf \ + /var/run/auto_forward.conf; then + unlink /var/run/auto_forward.conf + else + [ -e "${_named_confdir}/auto_forward.conf" ] && + unlink ${_named_confdir}/auto_forward.conf + mv /var/run/auto_forward.conf \ + ${_named_confdir}/auto_forward.conf + fi + else + # Empty the file in case it is included in named.conf + [ -s "${_named_confdir}/auto_forward.conf" ] && + create_file ${_named_confdir}/auto_forward.conf + fi + + ${checkconf} ${named_conf} || err 3 "named-checkconf for ${named_conf} failed" +} + +run_rc_command "$1" diff --git a/net/bind/files/named.root b/net/bind/files/named.root new file mode 100644 index 00000000..dfac1e1a --- /dev/null +++ b/net/bind/files/named.root @@ -0,0 +1,96 @@ +; +; $FreeBSD: head/dns/bind913/files/named.root 459406 2018-01-19 12:32:34Z mat $ +; + +; This file holds the information on root name servers needed to +; initialize cache of Internet domain name servers +; (e.g. reference this file in the "cache . " +; configuration file of BIND domain name servers). +; +; This file is made available by InterNIC +; under anonymous FTP as +; file /domain/named.cache +; on server FTP.INTERNIC.NET +; -OR- RS.INTERNIC.NET +; +; last update: November 16, 2017 +; related version of root zone: 2017111601 +; +; FORMERLY NS.INTERNIC.NET +; +. 3600000 NS A.ROOT-SERVERS.NET. +A.ROOT-SERVERS.NET. 3600000 A 198.41.0.4 +A.ROOT-SERVERS.NET. 3600000 AAAA 2001:503:ba3e::2:30 +; +; FORMERLY NS1.ISI.EDU +; +. 3600000 NS B.ROOT-SERVERS.NET. +B.ROOT-SERVERS.NET. 3600000 A 199.9.14.201 +B.ROOT-SERVERS.NET. 3600000 AAAA 2001:500:200::b +; +; FORMERLY C.PSI.NET +; +. 3600000 NS C.ROOT-SERVERS.NET. +C.ROOT-SERVERS.NET. 3600000 A 192.33.4.12 +C.ROOT-SERVERS.NET. 3600000 AAAA 2001:500:2::c +; +; FORMERLY TERP.UMD.EDU +; +. 3600000 NS D.ROOT-SERVERS.NET. +D.ROOT-SERVERS.NET. 3600000 A 199.7.91.13 +D.ROOT-SERVERS.NET. 3600000 AAAA 2001:500:2d::d +; +; FORMERLY NS.NASA.GOV +; +. 3600000 NS E.ROOT-SERVERS.NET. +E.ROOT-SERVERS.NET. 3600000 A 192.203.230.10 +E.ROOT-SERVERS.NET. 3600000 AAAA 2001:500:a8::e +; +; FORMERLY NS.ISC.ORG +; +. 3600000 NS F.ROOT-SERVERS.NET. +F.ROOT-SERVERS.NET. 3600000 A 192.5.5.241 +F.ROOT-SERVERS.NET. 3600000 AAAA 2001:500:2f::f +; +; FORMERLY NS.NIC.DDN.MIL +; +. 3600000 NS G.ROOT-SERVERS.NET. +G.ROOT-SERVERS.NET. 3600000 A 192.112.36.4 +G.ROOT-SERVERS.NET. 3600000 AAAA 2001:500:12::d0d +; +; FORMERLY AOS.ARL.ARMY.MIL +; +. 3600000 NS H.ROOT-SERVERS.NET. +H.ROOT-SERVERS.NET. 3600000 A 198.97.190.53 +H.ROOT-SERVERS.NET. 3600000 AAAA 2001:500:1::53 +; +; FORMERLY NIC.NORDU.NET +; +. 3600000 NS I.ROOT-SERVERS.NET. +I.ROOT-SERVERS.NET. 3600000 A 192.36.148.17 +I.ROOT-SERVERS.NET. 3600000 AAAA 2001:7fe::53 +; +; OPERATED BY VERISIGN, INC. +; +. 3600000 NS J.ROOT-SERVERS.NET. +J.ROOT-SERVERS.NET. 3600000 A 192.58.128.30 +J.ROOT-SERVERS.NET. 3600000 AAAA 2001:503:c27::2:30 +; +; OPERATED BY RIPE NCC +; +. 3600000 NS K.ROOT-SERVERS.NET. +K.ROOT-SERVERS.NET. 3600000 A 193.0.14.129 +K.ROOT-SERVERS.NET. 3600000 AAAA 2001:7fd::1 +; +; OPERATED BY ICANN +; +. 3600000 NS L.ROOT-SERVERS.NET. +L.ROOT-SERVERS.NET. 3600000 A 199.7.83.42 +L.ROOT-SERVERS.NET. 3600000 AAAA 2001:500:9f::42 +; +; OPERATED BY WIDE +; +. 3600000 NS M.ROOT-SERVERS.NET. +M.ROOT-SERVERS.NET. 3600000 A 202.12.27.33 +M.ROOT-SERVERS.NET. 3600000 AAAA 2001:dc3::35 +; End of file diff --git a/net/bind/files/patch-bin_named_include_named_globals.h b/net/bind/files/patch-bin_named_include_named_globals.h new file mode 100644 index 00000000..37db6ad0 --- /dev/null +++ b/net/bind/files/patch-bin_named_include_named_globals.h @@ -0,0 +1,13 @@ +We reference the pid file as being run/named/pid everywere else. + +--- bin/named/include/named/globals.h.orig 2019-02-06 23:44:09 UTC ++++ bin/named/include/named/globals.h +@@ -129,7 +129,7 @@ EXTERN bool named_g_forcelock INIT(false); + #if NAMED_RUN_PID_DIR + EXTERN const char * named_g_defaultpidfile INIT(NAMED_LOCALSTATEDIR + "/run/named/" +- "named.pid"); ++ "pid"); + #else + EXTERN const char * named_g_defaultpidfile INIT(NAMED_LOCALSTATEDIR + "/run/named.pid"); diff --git a/net/bind/files/patch-bin_tests_system_dlzexternal_Makefile.in b/net/bind/files/patch-bin_tests_system_dlzexternal_Makefile.in new file mode 100644 index 00000000..8aa8af37 --- /dev/null +++ b/net/bind/files/patch-bin_tests_system_dlzexternal_Makefile.in @@ -0,0 +1,11 @@ +--- bin/tests/system/dlzexternal/Makefile.in.orig 2018-02-26 06:30:28 UTC ++++ bin/tests/system/dlzexternal/Makefile.in +@@ -34,7 +34,7 @@ OBJS = + @BIND9_MAKE_RULES@ + + CFLAGS = @CFLAGS@ @SO_CFLAGS@ +-SO_LDFLAGS = @LDFLAGS@ @SO_LDFLAGS@ ++SO_LDFLAGS = @SO_LDFLAGS@ + + driver.@SO@: ${SO_OBJS} + ${LIBTOOL_MODE_LINK} @SO_LD@ ${SO_LDFLAGS} -o $@ driver.@O@ diff --git a/net/bind/files/patch-configure b/net/bind/files/patch-configure new file mode 100644 index 00000000..0a296073 --- /dev/null +++ b/net/bind/files/patch-configure @@ -0,0 +1,90 @@ +--- configure.orig 2018-12-07 18:44:21 UTC ++++ configure +@@ -16296,27 +16296,9 @@ done + # problems start to show up. + saved_libs="$LIBS" + for TRY_LIBS in \ +- "-lgssapi_krb5" \ +- "-lgssapi_krb5 -lkrb5 -lk5crypto -lcom_err" \ +- "-lgssapi_krb5 -lkrb5 -lk5crypto -lcom_err -lresolv" \ +- "-lgssapi" \ +- "-lgssapi -lkrb5 -ldes -lcrypt -lasn1 -lroken -lcom_err" \ +- "-lgssapi -lkrb5 -lcrypt -lasn1 -lroken -lcom_err" \ +- "-lgssapi -lkrb5 -lgssapi_krb5 -lcrypt -lasn1 -lroken -lcom_err" \ +- "-lgssapi -lkrb5 -lhx509 -lcrypt -lasn1 -lroken -lcom_err" \ +- "-lgss -lkrb5" ++ "$($KRB5CONFIG gssapi --libs)"; \ + do +- # Note that this does not include $saved_libs, because +- # on FreeBSD machines this configure script has added +- # -L/usr/local/lib to LIBS, which can make the +- # -lgssapi_krb5 test succeed with shared libraries even +- # when you are trying to build with KTH in /usr/lib. +- if test "/usr" = "$use_gssapi" +- then +- LIBS="$TRY_LIBS $ISC_OPENSSL_LIBS" +- else +- LIBS="-L$use_gssapi/lib $TRY_LIBS $ISC_OPENSSL_LIBS" +- fi ++ LIBS="$TRY_LIBS" + { $as_echo "$as_me:${as_lineno-$LINENO}: checking linking as $TRY_LIBS" >&5 + $as_echo_n "checking linking as $TRY_LIBS... " >&6; } + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +@@ -16359,47 +16341,7 @@ $as_echo "no" >&6; } ;; + no) as_fn_error $? "could not determine proper GSSAPI linkage" "$LINENO" 5 ;; + esac + +- # +- # XXXDCL Major kludge. Tries to cope with KTH in /usr/lib +- # but MIT in /usr/local/lib and trying to build with KTH. +- # /usr/local/lib can end up earlier on the link lines. +- # Like most kludges, this one is not only inelegant it +- # is also likely to be the wrong thing to do at least as +- # many times as it is the right thing. Something better +- # needs to be done. +- # +- if test "/usr" = "$use_gssapi" -a \ +- -f /usr/local/lib/libkrb5.a; then +- FIX_KTH_VS_MIT=yes +- fi +- +- case "$FIX_KTH_VS_MIT" in +- yes) +- case "$enable_static_linking" in +- yes) gssapi_lib_suffix=".a" ;; +- *) gssapi_lib_suffix=".so" ;; +- esac +- +- for lib in $LIBS; do +- case $lib in +- -L*) +- ;; +- -l*) +- new_lib=`echo $lib | +- sed -e s%^-l%$use_gssapi/lib/lib% \ +- -e s%$%$gssapi_lib_suffix%` +- NEW_LIBS="$NEW_LIBS $new_lib" +- ;; +- *) +- as_fn_error $? "KTH vs MIT Kerberos confusion!" "$LINENO" 5 +- ;; +- esac +- done +- LIBS="$NEW_LIBS" +- ;; +- esac +- +- DST_GSSAPI_INC="-I$use_gssapi/include" ++ DST_GSSAPI_INC="$($KRB5CONFIG gssapi --cflags)" + DNS_GSSAPI_LIBS="$LIBS" + + { $as_echo "$as_me:${as_lineno-$LINENO}: result: using GSSAPI from $use_gssapi/lib and $use_gssapi/include" >&5 +@@ -20933,7 +20875,7 @@ $as_echo "" >&6; } + # Check other locations for includes. + # Order is important (sigh). + +- bdb_incdirs="/db53 /db51 /db48 /db47 /db46 /db45 /db44 /db43 /db42 /db41 /db4 /db" ++ bdb_incdirs="/db6 /db5 /db48" + # include a blank element first + for d in "" $bdb_incdirs + do diff --git a/net/bind/files/pkg-deinstall.in b/net/bind/files/pkg-deinstall.in new file mode 100644 index 00000000..007b7fc5 --- /dev/null +++ b/net/bind/files/pkg-deinstall.in @@ -0,0 +1,9 @@ +#!/bin/sh +set -x +case $2 in + DEINSTALL) + ;; + POST-DEINSTALL) + ;; +esac +#EOF diff --git a/net/bind/files/pkg-install.in b/net/bind/files/pkg-install.in new file mode 100644 index 00000000..d73cab5b --- /dev/null +++ b/net/bind/files/pkg-install.in @@ -0,0 +1,33 @@ +#!/bin/sh + +set -x + +case $2 in + PRE-INSTALL) + BIND_OWNER="%%BIND_OWNER%%" + BIND_GROUP="%%BIND_GROUP%%" + BIND_OWNERID="%%BIND_OWNERID%%" + BIND_GROUPID="%%BIND_GROUPID%%" + + BIND_RUNDIR="%%BIND_RUNDIR%%" + BIND_CHROOTDIR="%%BIND_CHROOTDIR%%" + BIND_SYSCONFDIR="%%BIND_SYSCONFDIR%%" + BIND_PREFIX="%%BIND_PREFIX%%" + BIND_HOME="/notexist" + + pw group add ${BIND_GROUP} -g ${BIND_GROUPID} + pw user add ${BIND_OWNER} -g ${BIND_GROUP} \ + -d ${BIND_HOME} -s /usr/sbin/nologin -u ${BIND_OWNERID} \ + -c "bind" + pw group mod ${BIND_GROUP} -M ${BIND_OWNER} + pw group show ${BIND_GROUP} + pw user show ${BIND_OWNER} + install -d -o ${BIND_OWNER} -g ${BIND_GROUP} -m 0750 ${BIND_RUNDIR} +# install -d -o ${BIND_OWNER} -g ${BIND_GROUP} -m 0750 ${BIND_CHROOTDIR}/${BIND_RUNDIR} +# install -d -o ${BIND_OWNER} -g ${BIND_GROUP} -m 0750 ${BIND_CHROOTDIR}/${BIND_SYSCONFDIR} + ;; + POST-INSTALL) + ;; +esac +exit 0 +#EOF diff --git a/net/bind/pkg-descr b/net/bind/pkg-descr new file mode 100644 index 00000000..6dafa548 --- /dev/null +++ b/net/bind/pkg-descr @@ -0,0 +1,19 @@ +BIND version 9 is a major rewrite of nearly all aspects of the underlying BIND +architecture. Some of the important features of BIND 9 are: + +DNS Security: DNSSEC (signed zones), TSIG (signed DNS requests) +IP version 6: Answers DNS queries on IPv6 sockets, IPv6 resource records (AAAA) + Experimental IPv6 Resolver Library +DNS Protocol Enhancements: IXFR, DDNS, Notify, EDNS0 + Improved standards conformance +Views: One server process can provide multiple "views" of the DNS namespace, + e.g. an "inside" view to certain clients, and an "outside" view to others. +Multiprocessor Support + +BIND 9.8 includes a number of changes from BIND 9.7 and earlier releases, +including: + Preliminary DNS64 support (AAAA synthesis only initially) + +See the CHANGES file for more information on features. + +WWW: https://www.isc.org/software/bind diff --git a/net/bind/pkg-plist b/net/bind/pkg-plist new file mode 100644 index 00000000..4e42d128 --- /dev/null +++ b/net/bind/pkg-plist @@ -0,0 +1,53 @@ +bin/arpaname +bin/bind9-config +bin/delv +bin/named-rrchecker +bin/nsupdate +lib/named/filter-aaaa.so +man/man1/arpaname.1.gz +man/man1/bind9-config.1.gz +man/man1/delv.1.gz +man/man1/isc-config.sh.1.gz +man/man1/named-rrchecker.1.gz +man/man1/nsupdate.1.gz +man/man5/named.conf.5.gz +man/man5/rndc.conf.5.gz +man/man8/ddns-confgen.8.gz +man/man8/dnssec-cds.8.gz +man/man8/dnssec-dsfromkey.8.gz +man/man8/dnssec-importkey.8.gz +man/man8/dnssec-keyfromlabel.8.gz +man/man8/dnssec-keygen.8.gz +man/man8/dnssec-revoke.8.gz +man/man8/dnssec-settime.8.gz +man/man8/dnssec-signzone.8.gz +man/man8/dnssec-verify.8.gz +man/man8/filter-aaaa.8.gz +man/man8/named-checkconf.8.gz +man/man8/named-checkzone.8.gz +man/man8/named-compilezone.8.gz +man/man8/named-journalprint.8.gz +man/man8/named.8.gz +man/man8/nsec3hash.8.gz +man/man8/rndc-confgen.8.gz +man/man8/rndc.8.gz +man/man8/tsig-keygen.8.gz +sbin/ddns-confgen +sbin/dnssec-cds +sbin/dnssec-dsfromkey +sbin/dnssec-importkey +sbin/dnssec-keyfromlabel +sbin/dnssec-keygen +sbin/dnssec-revoke +sbin/dnssec-settime +sbin/dnssec-signzone +sbin/dnssec-verify +sbin/named +sbin/named-checkconf +sbin/named-checkzone +sbin/named-compilezone +sbin/named-journalprint +sbin/nsec3hash +sbin/rndc +sbin/rndc-confgen +sbin/tsig-keygen diff --git a/perl/p5-Apache-Htpasswd/Makefile b/perl5/p5-Apache-Htpasswd/Makefile similarity index 100% rename from perl/p5-Apache-Htpasswd/Makefile rename to perl5/p5-Apache-Htpasswd/Makefile diff --git a/perl/p5-Apache-Htpasswd/distinfo b/perl5/p5-Apache-Htpasswd/distinfo similarity index 100% rename from perl/p5-Apache-Htpasswd/distinfo rename to perl5/p5-Apache-Htpasswd/distinfo diff --git a/perl/p5-Apache-Htpasswd/pkg-descr b/perl5/p5-Apache-Htpasswd/pkg-descr similarity index 100% rename from perl/p5-Apache-Htpasswd/pkg-descr rename to perl5/p5-Apache-Htpasswd/pkg-descr diff --git a/perl/p5-Apache-Htpasswd/pkg-plist b/perl5/p5-Apache-Htpasswd/pkg-plist similarity index 100% rename from perl/p5-Apache-Htpasswd/pkg-plist rename to perl5/p5-Apache-Htpasswd/pkg-plist diff --git a/perl/p5-Authen-SASL/Makefile b/perl5/p5-Authen-SASL/Makefile similarity index 100% rename from perl/p5-Authen-SASL/Makefile rename to perl5/p5-Authen-SASL/Makefile diff --git a/perl/p5-Authen-SASL/distinfo b/perl5/p5-Authen-SASL/distinfo similarity index 100% rename from perl/p5-Authen-SASL/distinfo rename to perl5/p5-Authen-SASL/distinfo diff --git a/perl/p5-Authen-SASL/files/patch-x-Makefile.PL b/perl5/p5-Authen-SASL/files/patch-x-Makefile.PL similarity index 100% rename from perl/p5-Authen-SASL/files/patch-x-Makefile.PL rename to perl5/p5-Authen-SASL/files/patch-x-Makefile.PL diff --git a/perl/p5-Authen-SASL/pkg-descr b/perl5/p5-Authen-SASL/pkg-descr similarity index 100% rename from perl/p5-Authen-SASL/pkg-descr rename to perl5/p5-Authen-SASL/pkg-descr diff --git a/perl/p5-Authen-SASL/pkg-plist b/perl5/p5-Authen-SASL/pkg-plist similarity index 100% rename from perl/p5-Authen-SASL/pkg-plist rename to perl5/p5-Authen-SASL/pkg-plist diff --git a/perl/p5-Canary-Stability/Makefile b/perl5/p5-Canary-Stability/Makefile similarity index 100% rename from perl/p5-Canary-Stability/Makefile rename to perl5/p5-Canary-Stability/Makefile diff --git a/perl/p5-Canary-Stability/distinfo b/perl5/p5-Canary-Stability/distinfo similarity index 100% rename from perl/p5-Canary-Stability/distinfo rename to perl5/p5-Canary-Stability/distinfo diff --git a/perl/p5-Canary-Stability/pkg-descr b/perl5/p5-Canary-Stability/pkg-descr similarity index 100% rename from perl/p5-Canary-Stability/pkg-descr rename to perl5/p5-Canary-Stability/pkg-descr diff --git a/perl/p5-Canary-Stability/pkg-plist b/perl5/p5-Canary-Stability/pkg-plist similarity index 100% rename from perl/p5-Canary-Stability/pkg-plist rename to perl5/p5-Canary-Stability/pkg-plist diff --git a/perl/p5-Crypt-PasswdMD5/Makefile b/perl5/p5-Crypt-PasswdMD5/Makefile similarity index 100% rename from perl/p5-Crypt-PasswdMD5/Makefile rename to perl5/p5-Crypt-PasswdMD5/Makefile diff --git a/perl/p5-Crypt-PasswdMD5/distinfo b/perl5/p5-Crypt-PasswdMD5/distinfo similarity index 100% rename from perl/p5-Crypt-PasswdMD5/distinfo rename to perl5/p5-Crypt-PasswdMD5/distinfo diff --git a/perl/p5-Crypt-PasswdMD5/pkg-descr b/perl5/p5-Crypt-PasswdMD5/pkg-descr similarity index 100% rename from perl/p5-Crypt-PasswdMD5/pkg-descr rename to perl5/p5-Crypt-PasswdMD5/pkg-descr diff --git a/perl/p5-Crypt-PasswdMD5/pkg-plist b/perl5/p5-Crypt-PasswdMD5/pkg-plist similarity index 100% rename from perl/p5-Crypt-PasswdMD5/pkg-plist rename to perl5/p5-Crypt-PasswdMD5/pkg-plist diff --git a/perl/p5-DBD-SQLite/Makefile b/perl5/p5-DBD-SQLite/Makefile similarity index 100% rename from perl/p5-DBD-SQLite/Makefile rename to perl5/p5-DBD-SQLite/Makefile diff --git a/perl/p5-DBD-SQLite/distinfo b/perl5/p5-DBD-SQLite/distinfo similarity index 100% rename from perl/p5-DBD-SQLite/distinfo rename to perl5/p5-DBD-SQLite/distinfo diff --git a/perl/p5-DBD-SQLite/files/patch-dbdimp.h b/perl5/p5-DBD-SQLite/files/patch-dbdimp.h similarity index 100% rename from perl/p5-DBD-SQLite/files/patch-dbdimp.h rename to perl5/p5-DBD-SQLite/files/patch-dbdimp.h diff --git a/perl/p5-DBD-SQLite/pkg-descr b/perl5/p5-DBD-SQLite/pkg-descr similarity index 100% rename from perl/p5-DBD-SQLite/pkg-descr rename to perl5/p5-DBD-SQLite/pkg-descr diff --git a/perl/p5-DBD-SQLite/pkg-plist b/perl5/p5-DBD-SQLite/pkg-plist similarity index 100% rename from perl/p5-DBD-SQLite/pkg-plist rename to perl5/p5-DBD-SQLite/pkg-plist diff --git a/perl/p5-DBI/Makefile b/perl5/p5-DBI/Makefile similarity index 100% rename from perl/p5-DBI/Makefile rename to perl5/p5-DBI/Makefile diff --git a/perl/p5-DBI/distinfo b/perl5/p5-DBI/distinfo similarity index 100% rename from perl/p5-DBI/distinfo rename to perl5/p5-DBI/distinfo diff --git a/perl/p5-DBI/pkg-descr b/perl5/p5-DBI/pkg-descr similarity index 100% rename from perl/p5-DBI/pkg-descr rename to perl5/p5-DBI/pkg-descr diff --git a/perl/p5-DBI/pkg-plist b/perl5/p5-DBI/pkg-plist similarity index 100% rename from perl/p5-DBI/pkg-plist rename to perl5/p5-DBI/pkg-plist diff --git a/perl/p5-Digest-HMAC/Makefile b/perl5/p5-Digest-HMAC/Makefile similarity index 100% rename from perl/p5-Digest-HMAC/Makefile rename to perl5/p5-Digest-HMAC/Makefile diff --git a/perl/p5-Digest-HMAC/distinfo b/perl5/p5-Digest-HMAC/distinfo similarity index 100% rename from perl/p5-Digest-HMAC/distinfo rename to perl5/p5-Digest-HMAC/distinfo diff --git a/perl/p5-Digest-HMAC/files/patch-x-Makefile.PL b/perl5/p5-Digest-HMAC/files/patch-x-Makefile.PL similarity index 100% rename from perl/p5-Digest-HMAC/files/patch-x-Makefile.PL rename to perl5/p5-Digest-HMAC/files/patch-x-Makefile.PL diff --git a/perl/p5-Digest-HMAC/pkg-descr b/perl5/p5-Digest-HMAC/pkg-descr similarity index 100% rename from perl/p5-Digest-HMAC/pkg-descr rename to perl5/p5-Digest-HMAC/pkg-descr diff --git a/perl/p5-Digest-HMAC/pkg-plist b/perl5/p5-Digest-HMAC/pkg-plist similarity index 100% rename from perl/p5-Digest-HMAC/pkg-plist rename to perl5/p5-Digest-HMAC/pkg-plist diff --git a/perl/p5-Digest-SHA1/Makefile b/perl5/p5-Digest-SHA1/Makefile similarity index 100% rename from perl/p5-Digest-SHA1/Makefile rename to perl5/p5-Digest-SHA1/Makefile diff --git a/perl/p5-Digest-SHA1/distinfo b/perl5/p5-Digest-SHA1/distinfo similarity index 100% rename from perl/p5-Digest-SHA1/distinfo rename to perl5/p5-Digest-SHA1/distinfo diff --git a/perl/p5-Digest-SHA1/pkg-descr b/perl5/p5-Digest-SHA1/pkg-descr similarity index 100% rename from perl/p5-Digest-SHA1/pkg-descr rename to perl5/p5-Digest-SHA1/pkg-descr diff --git a/perl/p5-Digest-SHA1/pkg-plist b/perl5/p5-Digest-SHA1/pkg-plist similarity index 100% rename from perl/p5-Digest-SHA1/pkg-plist rename to perl5/p5-Digest-SHA1/pkg-plist diff --git a/perl/p5-EV/Makefile b/perl5/p5-EV/Makefile similarity index 100% rename from perl/p5-EV/Makefile rename to perl5/p5-EV/Makefile diff --git a/perl/p5-EV/distinfo b/perl5/p5-EV/distinfo similarity index 100% rename from perl/p5-EV/distinfo rename to perl5/p5-EV/distinfo diff --git a/perl/p5-EV/pkg-descr b/perl5/p5-EV/pkg-descr similarity index 100% rename from perl/p5-EV/pkg-descr rename to perl5/p5-EV/pkg-descr diff --git a/perl/p5-EV/pkg-plist b/perl5/p5-EV/pkg-plist similarity index 100% rename from perl/p5-EV/pkg-plist rename to perl5/p5-EV/pkg-plist diff --git a/perl/p5-Error/Makefile b/perl5/p5-Error/Makefile similarity index 100% rename from perl/p5-Error/Makefile rename to perl5/p5-Error/Makefile diff --git a/perl/p5-Error/distinfo b/perl5/p5-Error/distinfo similarity index 100% rename from perl/p5-Error/distinfo rename to perl5/p5-Error/distinfo diff --git a/perl/p5-Error/pkg-descr b/perl5/p5-Error/pkg-descr similarity index 100% rename from perl/p5-Error/pkg-descr rename to perl5/p5-Error/pkg-descr diff --git a/perl/p5-Error/pkg-plist b/perl5/p5-Error/pkg-plist similarity index 100% rename from perl/p5-Error/pkg-plist rename to perl5/p5-Error/pkg-plist diff --git a/perl/p5-IO-Socket-IP/Makefile b/perl5/p5-IO-Socket-IP/Makefile similarity index 100% rename from perl/p5-IO-Socket-IP/Makefile rename to perl5/p5-IO-Socket-IP/Makefile diff --git a/perl/p5-IO-Socket-IP/distinfo b/perl5/p5-IO-Socket-IP/distinfo similarity index 100% rename from perl/p5-IO-Socket-IP/distinfo rename to perl5/p5-IO-Socket-IP/distinfo diff --git a/perl/p5-IO-Socket-IP/pkg-descr b/perl5/p5-IO-Socket-IP/pkg-descr similarity index 100% rename from perl/p5-IO-Socket-IP/pkg-descr rename to perl5/p5-IO-Socket-IP/pkg-descr diff --git a/perl/p5-IO-Socket-IP/pkg-plist b/perl5/p5-IO-Socket-IP/pkg-plist similarity index 100% rename from perl/p5-IO-Socket-IP/pkg-plist rename to perl5/p5-IO-Socket-IP/pkg-plist diff --git a/perl/p5-IO-Socket-SSL/Makefile b/perl5/p5-IO-Socket-SSL/Makefile similarity index 100% rename from perl/p5-IO-Socket-SSL/Makefile rename to perl5/p5-IO-Socket-SSL/Makefile diff --git a/perl/p5-IO-Socket-SSL/distinfo b/perl5/p5-IO-Socket-SSL/distinfo similarity index 100% rename from perl/p5-IO-Socket-SSL/distinfo rename to perl5/p5-IO-Socket-SSL/distinfo diff --git a/perl/p5-IO-Socket-SSL/pkg-descr b/perl5/p5-IO-Socket-SSL/pkg-descr similarity index 100% rename from perl/p5-IO-Socket-SSL/pkg-descr rename to perl5/p5-IO-Socket-SSL/pkg-descr diff --git a/perl/p5-IO-Socket-SSL/pkg-plist b/perl5/p5-IO-Socket-SSL/pkg-plist similarity index 100% rename from perl/p5-IO-Socket-SSL/pkg-plist rename to perl5/p5-IO-Socket-SSL/pkg-plist diff --git a/perl/p5-MIME-Base64/Makefile b/perl5/p5-MIME-Base64/Makefile similarity index 100% rename from perl/p5-MIME-Base64/Makefile rename to perl5/p5-MIME-Base64/Makefile diff --git a/perl/p5-MIME-Base64/distinfo b/perl5/p5-MIME-Base64/distinfo similarity index 100% rename from perl/p5-MIME-Base64/distinfo rename to perl5/p5-MIME-Base64/distinfo diff --git a/perl/p5-MIME-Base64/pkg-descr b/perl5/p5-MIME-Base64/pkg-descr similarity index 100% rename from perl/p5-MIME-Base64/pkg-descr rename to perl5/p5-MIME-Base64/pkg-descr diff --git a/perl/p5-MIME-Base64/pkg-plist b/perl5/p5-MIME-Base64/pkg-plist similarity index 100% rename from perl/p5-MIME-Base64/pkg-plist rename to perl5/p5-MIME-Base64/pkg-plist diff --git a/perl5/p5-Mojolicious/Makefile b/perl5/p5-Mojolicious/Makefile new file mode 100644 index 00000000..ee385075 --- /dev/null +++ b/perl5/p5-Mojolicious/Makefile @@ -0,0 +1,30 @@ +# Created by: Murilo Opsfelder +# $FreeBSD: head/www/p5-Mojolicious/Makefile 433779 2017-02-10 00:13:51Z adamw $ + +PORTNAME= Mojolicious +PORTVERSION= 9.30 +CATEGORIES= www perl5 +MASTER_SITES= CPAN +PKGNAMEPREFIX= p5- + +MAINTAINER= adamw@FreeBSD.org +COMMENT= High-level MVC web framework written in Perl + +BUILD_DEPENDS+= p5-EV>=4:perl/p5-EV +BUILD_DEPENDS+= p5-IO-Socket-SSL>=1.75:perl/p5-IO-Socket-SSL +RUN_DEPENDS+= ${BUILD_DEPENDS} + +NO_ARCH= yes +USE_PERL5= configure +USES= perl5 + + +.include + +#.if ${PORT_OPTIONS:MIPV6} && ${PERL_LEVEL} < 502111 +#BUILD_DEPENDS+= p5-IO-Socket-IP>=0.37:perl/p5-IO-Socket-IP +#RUN_DEPENDS+= p5-IO-Socket-IP>=0.37:perl/p5-IO-Socket-IP +#.endif + +.include +#EOF diff --git a/perl5/p5-Mojolicious/distinfo b/perl5/p5-Mojolicious/distinfo new file mode 100644 index 00000000..e5872321 --- /dev/null +++ b/perl5/p5-Mojolicious/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1671213544 +SHA256 (Mojolicious-9.30.tar.gz) = faab973c56479e4309c6a3e15b294ea5d7aac10f0de726cf595f545a95f1df37 +SIZE (Mojolicious-9.30.tar.gz) = 852085 diff --git a/perl5/p5-Mojolicious/pkg-descr b/perl5/p5-Mojolicious/pkg-descr new file mode 100644 index 00000000..1a23bf8b --- /dev/null +++ b/perl5/p5-Mojolicious/pkg-descr @@ -0,0 +1,23 @@ +A next generation web framework for the Perl programming language; duct +tape for the HTML5 web. + +An amazing real-time web framework, allowing you to easily grow single file +prototypes into well-structured web applications. + +Powerful out of the box with RESTful routes, plugins, commands, Perl-ish +templates, content negotiation, session management, form validation, testing +framework, static file server, CGI/PSGI detection, first class Unicode support +and much more for you to discover. + +Full stack HTTP and WebSocket client/server implementation with IPv6, TLS, SNI, +IDNA, HTTP/SOCKS5 proxy, Comet (long polling), keep-alive, connection pooling, +timeout, cookie, multipart and gzip compression support. + +Built-in non-blocking I/O web server, supporting multiple event loops as well +as optional preforking and hot deployment, perfect for building highly scalable +web services. + +JSON and HTML/XML parser with CSS selector support. + +WWW: https://metacpan.org/pod/Mojolicious +WWW: http://mojolicious.org/ diff --git a/perl5/p5-Mojolicious/pkg-plist b/perl5/p5-Mojolicious/pkg-plist new file mode 100644 index 00000000..87dbc372 --- /dev/null +++ b/perl5/p5-Mojolicious/pkg-plist @@ -0,0 +1,266 @@ +bin/hypnotoad +bin/mojo +bin/morbo +%%SITE_PERL%%/Mojo.pm +%%SITE_PERL%%/Mojo/Asset.pm +%%SITE_PERL%%/Mojo/Asset/File.pm +%%SITE_PERL%%/Mojo/Asset/Memory.pm +%%SITE_PERL%%/Mojo/Base.pm +%%SITE_PERL%%/Mojo/ByteStream.pm +%%SITE_PERL%%/Mojo/Cache.pm +%%SITE_PERL%%/Mojo/Collection.pm +%%SITE_PERL%%/Mojo/Content.pm +%%SITE_PERL%%/Mojo/Content/MultiPart.pm +%%SITE_PERL%%/Mojo/Content/Single.pm +%%SITE_PERL%%/Mojo/Cookie.pm +%%SITE_PERL%%/Mojo/Cookie/Request.pm +%%SITE_PERL%%/Mojo/Cookie/Response.pm +%%SITE_PERL%%/Mojo/DOM.pm +%%SITE_PERL%%/Mojo/DOM/CSS.pm +%%SITE_PERL%%/Mojo/DOM/HTML.pm +%%SITE_PERL%%/Mojo/Date.pm +%%SITE_PERL%%/Mojo/DynamicMethods.pm +%%SITE_PERL%%/Mojo/EventEmitter.pm +%%SITE_PERL%%/Mojo/Exception.pm +%%SITE_PERL%%/Mojo/File.pm +%%SITE_PERL%%/Mojo/Headers.pm +%%SITE_PERL%%/Mojo/HelloWorld.pm +%%SITE_PERL%%/Mojo/Home.pm +%%SITE_PERL%%/Mojo/IOLoop.pm +%%SITE_PERL%%/Mojo/IOLoop/Client.pm +%%SITE_PERL%%/Mojo/IOLoop/Server.pm +%%SITE_PERL%%/Mojo/IOLoop/Stream.pm +%%SITE_PERL%%/Mojo/IOLoop/Subprocess.pm +%%SITE_PERL%%/Mojo/IOLoop/TLS.pm +%%SITE_PERL%%/Mojo/IOLoop/resources/server.crt +%%SITE_PERL%%/Mojo/IOLoop/resources/server.key +%%SITE_PERL%%/Mojo/JSON.pm +%%SITE_PERL%%/Mojo/JSON/Pointer.pm +%%SITE_PERL%%/Mojo/Loader.pm +%%SITE_PERL%%/Mojo/Log.pm +%%SITE_PERL%%/Mojo/Message.pm +%%SITE_PERL%%/Mojo/Message/Request.pm +%%SITE_PERL%%/Mojo/Message/Response.pm +%%SITE_PERL%%/Mojo/Parameters.pm +%%SITE_PERL%%/Mojo/Path.pm +%%SITE_PERL%%/Mojo/Promise.pm +%%SITE_PERL%%/Mojo/Reactor.pm +%%SITE_PERL%%/Mojo/Reactor/EV.pm +%%SITE_PERL%%/Mojo/Reactor/Poll.pm +%%SITE_PERL%%/Mojo/Server.pm +%%SITE_PERL%%/Mojo/Server/CGI.pm +%%SITE_PERL%%/Mojo/Server/Daemon.pm +%%SITE_PERL%%/Mojo/Server/Hypnotoad.pm +%%SITE_PERL%%/Mojo/Server/Morbo.pm +%%SITE_PERL%%/Mojo/Server/Morbo/Backend.pm +%%SITE_PERL%%/Mojo/Server/Morbo/Backend/Poll.pm +%%SITE_PERL%%/Mojo/Server/PSGI.pm +%%SITE_PERL%%/Mojo/Server/Prefork.pm +%%SITE_PERL%%/Mojo/Template.pm +%%SITE_PERL%%/Mojo/Transaction.pm +%%SITE_PERL%%/Mojo/Transaction/HTTP.pm +%%SITE_PERL%%/Mojo/Transaction/WebSocket.pm +%%SITE_PERL%%/Mojo/URL.pm +%%SITE_PERL%%/Mojo/Upload.pm +%%SITE_PERL%%/Mojo/UserAgent.pm +%%SITE_PERL%%/Mojo/UserAgent/CookieJar.pm +%%SITE_PERL%%/Mojo/UserAgent/Proxy.pm +%%SITE_PERL%%/Mojo/UserAgent/Server.pm +%%SITE_PERL%%/Mojo/UserAgent/Transactor.pm +%%SITE_PERL%%/Mojo/Util.pm +%%SITE_PERL%%/Mojo/WebSocket.pm +%%SITE_PERL%%/Mojo/resources/html_entities.txt +%%SITE_PERL%%/Mojolicious.pm +%%SITE_PERL%%/Mojolicious/Command.pm +%%SITE_PERL%%/Mojolicious/Command/Author/cpanify.pm +%%SITE_PERL%%/Mojolicious/Command/Author/generate.pm +%%SITE_PERL%%/Mojolicious/Command/Author/generate/app.pm +%%SITE_PERL%%/Mojolicious/Command/Author/generate/dockerfile.pm +%%SITE_PERL%%/Mojolicious/Command/Author/generate/lite_app.pm +%%SITE_PERL%%/Mojolicious/Command/Author/generate/makefile.pm +%%SITE_PERL%%/Mojolicious/Command/Author/generate/plugin.pm +%%SITE_PERL%%/Mojolicious/Command/Author/inflate.pm +%%SITE_PERL%%/Mojolicious/Command/cgi.pm +%%SITE_PERL%%/Mojolicious/Command/daemon.pm +%%SITE_PERL%%/Mojolicious/Command/eval.pm +%%SITE_PERL%%/Mojolicious/Command/get.pm +%%SITE_PERL%%/Mojolicious/Command/prefork.pm +%%SITE_PERL%%/Mojolicious/Command/psgi.pm +%%SITE_PERL%%/Mojolicious/Command/routes.pm +%%SITE_PERL%%/Mojolicious/Command/version.pm +%%SITE_PERL%%/Mojolicious/Commands.pm +%%SITE_PERL%%/Mojolicious/Controller.pm +%%SITE_PERL%%/Mojolicious/Guides.pod +%%SITE_PERL%%/Mojolicious/Guides/Contributing.pod +%%SITE_PERL%%/Mojolicious/Guides/Cookbook.pod +%%SITE_PERL%%/Mojolicious/Guides/FAQ.pod +%%SITE_PERL%%/Mojolicious/Guides/Growing.pod +%%SITE_PERL%%/Mojolicious/Guides/Rendering.pod +%%SITE_PERL%%/Mojolicious/Guides/Routing.pod +%%SITE_PERL%%/Mojolicious/Guides/Testing.pod +%%SITE_PERL%%/Mojolicious/Guides/Tutorial.pod +%%SITE_PERL%%/Mojolicious/Lite.pm +%%SITE_PERL%%/Mojolicious/Plugin.pm +%%SITE_PERL%%/Mojolicious/Plugin/Config.pm +%%SITE_PERL%%/Mojolicious/Plugin/DefaultHelpers.pm +%%SITE_PERL%%/Mojolicious/Plugin/EPLRenderer.pm +%%SITE_PERL%%/Mojolicious/Plugin/EPRenderer.pm +%%SITE_PERL%%/Mojolicious/Plugin/HeaderCondition.pm +%%SITE_PERL%%/Mojolicious/Plugin/JSONConfig.pm +%%SITE_PERL%%/Mojolicious/Plugin/Mount.pm +%%SITE_PERL%%/Mojolicious/Plugin/NotYAMLConfig.pm +%%SITE_PERL%%/Mojolicious/Plugin/TagHelpers.pm +%%SITE_PERL%%/Mojolicious/Plugins.pm +%%SITE_PERL%%/Mojolicious/Renderer.pm +%%SITE_PERL%%/Mojolicious/Routes.pm +%%SITE_PERL%%/Mojolicious/Routes/Match.pm +%%SITE_PERL%%/Mojolicious/Routes/Pattern.pm +%%SITE_PERL%%/Mojolicious/Routes/Route.pm +%%SITE_PERL%%/Mojolicious/Sessions.pm +%%SITE_PERL%%/Mojolicious/Static.pm +%%SITE_PERL%%/Mojolicious/Types.pm +%%SITE_PERL%%/Mojolicious/Validator.pm +%%SITE_PERL%%/Mojolicious/Validator/Validation.pm +%%SITE_PERL%%/Mojolicious/resources/public/favicon.ico +%%SITE_PERL%%/Mojolicious/resources/public/mojo/bootstrap/bootstrap.css +%%SITE_PERL%%/Mojolicious/resources/public/mojo/bootstrap/bootstrap.js +%%SITE_PERL%%/Mojolicious/resources/public/mojo/failraptor.png +%%SITE_PERL%%/Mojolicious/resources/public/mojo/highlight.js/highlight-mojo-dark.css +%%SITE_PERL%%/Mojolicious/resources/public/mojo/highlight.js/highlight.min.js +%%SITE_PERL%%/Mojolicious/resources/public/mojo/highlight.js/mojolicious.min.js +%%SITE_PERL%%/Mojolicious/resources/public/mojo/jquery/jquery.js +%%SITE_PERL%%/Mojolicious/resources/public/mojo/logo-white-2x.png +%%SITE_PERL%%/Mojolicious/resources/public/mojo/logo-white.png +%%SITE_PERL%%/Mojolicious/resources/public/mojo/logo.png +%%SITE_PERL%%/Mojolicious/resources/public/mojo/mojo.css +%%SITE_PERL%%/Mojolicious/resources/public/mojo/noraptor.png +%%SITE_PERL%%/Mojolicious/resources/public/mojo/notfound.png +%%SITE_PERL%%/Mojolicious/resources/public/mojo/pinstripe-dark.png +%%SITE_PERL%%/Mojolicious/resources/public/mojo/pinstripe-light.png +%%SITE_PERL%%/Mojolicious/resources/templates/mojo/debug.html.ep +%%SITE_PERL%%/Mojolicious/resources/templates/mojo/exception.html.ep +%%SITE_PERL%%/Mojolicious/resources/templates/mojo/not_found.html.ep +%%SITE_PERL%%/Test/Mojo.pm +%%SITE_PERL%%/ojo.pm +%%PERL5_MAN1%%/hypnotoad.1.gz +%%PERL5_MAN1%%/mojo.1.gz +%%PERL5_MAN1%%/morbo.1.gz +%%PERL5_MAN3%%/Mojo.3.gz +%%PERL5_MAN3%%/Mojo::Asset.3.gz +%%PERL5_MAN3%%/Mojo::Asset::File.3.gz +%%PERL5_MAN3%%/Mojo::Asset::Memory.3.gz +%%PERL5_MAN3%%/Mojo::Base.3.gz +%%PERL5_MAN3%%/Mojo::ByteStream.3.gz +%%PERL5_MAN3%%/Mojo::Cache.3.gz +%%PERL5_MAN3%%/Mojo::Collection.3.gz +%%PERL5_MAN3%%/Mojo::Content.3.gz +%%PERL5_MAN3%%/Mojo::Content::MultiPart.3.gz +%%PERL5_MAN3%%/Mojo::Content::Single.3.gz +%%PERL5_MAN3%%/Mojo::Cookie.3.gz +%%PERL5_MAN3%%/Mojo::Cookie::Request.3.gz +%%PERL5_MAN3%%/Mojo::Cookie::Response.3.gz +%%PERL5_MAN3%%/Mojo::DOM.3.gz +%%PERL5_MAN3%%/Mojo::DOM::CSS.3.gz +%%PERL5_MAN3%%/Mojo::DOM::HTML.3.gz +%%PERL5_MAN3%%/Mojo::Date.3.gz +%%PERL5_MAN3%%/Mojo::DynamicMethods.3.gz +%%PERL5_MAN3%%/Mojo::EventEmitter.3.gz +%%PERL5_MAN3%%/Mojo::Exception.3.gz +%%PERL5_MAN3%%/Mojo::File.3.gz +%%PERL5_MAN3%%/Mojo::Headers.3.gz +%%PERL5_MAN3%%/Mojo::HelloWorld.3.gz +%%PERL5_MAN3%%/Mojo::Home.3.gz +%%PERL5_MAN3%%/Mojo::IOLoop.3.gz +%%PERL5_MAN3%%/Mojo::IOLoop::Client.3.gz +%%PERL5_MAN3%%/Mojo::IOLoop::Server.3.gz +%%PERL5_MAN3%%/Mojo::IOLoop::Stream.3.gz +%%PERL5_MAN3%%/Mojo::IOLoop::Subprocess.3.gz +%%PERL5_MAN3%%/Mojo::IOLoop::TLS.3.gz +%%PERL5_MAN3%%/Mojo::JSON.3.gz +%%PERL5_MAN3%%/Mojo::JSON::Pointer.3.gz +%%PERL5_MAN3%%/Mojo::Loader.3.gz +%%PERL5_MAN3%%/Mojo::Log.3.gz +%%PERL5_MAN3%%/Mojo::Message.3.gz +%%PERL5_MAN3%%/Mojo::Message::Request.3.gz +%%PERL5_MAN3%%/Mojo::Message::Response.3.gz +%%PERL5_MAN3%%/Mojo::Parameters.3.gz +%%PERL5_MAN3%%/Mojo::Path.3.gz +%%PERL5_MAN3%%/Mojo::Promise.3.gz +%%PERL5_MAN3%%/Mojo::Reactor.3.gz +%%PERL5_MAN3%%/Mojo::Reactor::EV.3.gz +%%PERL5_MAN3%%/Mojo::Reactor::Poll.3.gz +%%PERL5_MAN3%%/Mojo::Server.3.gz +%%PERL5_MAN3%%/Mojo::Server::CGI.3.gz +%%PERL5_MAN3%%/Mojo::Server::Daemon.3.gz +%%PERL5_MAN3%%/Mojo::Server::Hypnotoad.3.gz +%%PERL5_MAN3%%/Mojo::Server::Morbo.3.gz +%%PERL5_MAN3%%/Mojo::Server::Morbo::Backend.3.gz +%%PERL5_MAN3%%/Mojo::Server::Morbo::Backend::Poll.3.gz +%%PERL5_MAN3%%/Mojo::Server::PSGI.3.gz +%%PERL5_MAN3%%/Mojo::Server::Prefork.3.gz +%%PERL5_MAN3%%/Mojo::Template.3.gz +%%PERL5_MAN3%%/Mojo::Transaction.3.gz +%%PERL5_MAN3%%/Mojo::Transaction::HTTP.3.gz +%%PERL5_MAN3%%/Mojo::Transaction::WebSocket.3.gz +%%PERL5_MAN3%%/Mojo::URL.3.gz +%%PERL5_MAN3%%/Mojo::Upload.3.gz +%%PERL5_MAN3%%/Mojo::UserAgent.3.gz +%%PERL5_MAN3%%/Mojo::UserAgent::CookieJar.3.gz +%%PERL5_MAN3%%/Mojo::UserAgent::Proxy.3.gz +%%PERL5_MAN3%%/Mojo::UserAgent::Server.3.gz +%%PERL5_MAN3%%/Mojo::UserAgent::Transactor.3.gz +%%PERL5_MAN3%%/Mojo::Util.3.gz +%%PERL5_MAN3%%/Mojo::WebSocket.3.gz +%%PERL5_MAN3%%/Mojolicious.3.gz +%%PERL5_MAN3%%/Mojolicious::Command.3.gz +%%PERL5_MAN3%%/Mojolicious::Command::Author::cpanify.3.gz +%%PERL5_MAN3%%/Mojolicious::Command::Author::generate.3.gz +%%PERL5_MAN3%%/Mojolicious::Command::Author::generate::app.3.gz +%%PERL5_MAN3%%/Mojolicious::Command::Author::generate::dockerfile.3.gz +%%PERL5_MAN3%%/Mojolicious::Command::Author::generate::lite_app.3.gz +%%PERL5_MAN3%%/Mojolicious::Command::Author::generate::makefile.3.gz +%%PERL5_MAN3%%/Mojolicious::Command::Author::generate::plugin.3.gz +%%PERL5_MAN3%%/Mojolicious::Command::Author::inflate.3.gz +%%PERL5_MAN3%%/Mojolicious::Command::cgi.3.gz +%%PERL5_MAN3%%/Mojolicious::Command::daemon.3.gz +%%PERL5_MAN3%%/Mojolicious::Command::eval.3.gz +%%PERL5_MAN3%%/Mojolicious::Command::get.3.gz +%%PERL5_MAN3%%/Mojolicious::Command::prefork.3.gz +%%PERL5_MAN3%%/Mojolicious::Command::psgi.3.gz +%%PERL5_MAN3%%/Mojolicious::Command::routes.3.gz +%%PERL5_MAN3%%/Mojolicious::Command::version.3.gz +%%PERL5_MAN3%%/Mojolicious::Commands.3.gz +%%PERL5_MAN3%%/Mojolicious::Controller.3.gz +%%PERL5_MAN3%%/Mojolicious::Guides.3.gz +%%PERL5_MAN3%%/Mojolicious::Guides::Contributing.3.gz +%%PERL5_MAN3%%/Mojolicious::Guides::Cookbook.3.gz +%%PERL5_MAN3%%/Mojolicious::Guides::FAQ.3.gz +%%PERL5_MAN3%%/Mojolicious::Guides::Growing.3.gz +%%PERL5_MAN3%%/Mojolicious::Guides::Rendering.3.gz +%%PERL5_MAN3%%/Mojolicious::Guides::Routing.3.gz +%%PERL5_MAN3%%/Mojolicious::Guides::Testing.3.gz +%%PERL5_MAN3%%/Mojolicious::Guides::Tutorial.3.gz +%%PERL5_MAN3%%/Mojolicious::Lite.3.gz +%%PERL5_MAN3%%/Mojolicious::Plugin.3.gz +%%PERL5_MAN3%%/Mojolicious::Plugin::Config.3.gz +%%PERL5_MAN3%%/Mojolicious::Plugin::DefaultHelpers.3.gz +%%PERL5_MAN3%%/Mojolicious::Plugin::EPLRenderer.3.gz +%%PERL5_MAN3%%/Mojolicious::Plugin::EPRenderer.3.gz +%%PERL5_MAN3%%/Mojolicious::Plugin::HeaderCondition.3.gz +%%PERL5_MAN3%%/Mojolicious::Plugin::JSONConfig.3.gz +%%PERL5_MAN3%%/Mojolicious::Plugin::Mount.3.gz +%%PERL5_MAN3%%/Mojolicious::Plugin::NotYAMLConfig.3.gz +%%PERL5_MAN3%%/Mojolicious::Plugin::TagHelpers.3.gz +%%PERL5_MAN3%%/Mojolicious::Plugins.3.gz +%%PERL5_MAN3%%/Mojolicious::Renderer.3.gz +%%PERL5_MAN3%%/Mojolicious::Routes.3.gz +%%PERL5_MAN3%%/Mojolicious::Routes::Match.3.gz +%%PERL5_MAN3%%/Mojolicious::Routes::Pattern.3.gz +%%PERL5_MAN3%%/Mojolicious::Routes::Route.3.gz +%%PERL5_MAN3%%/Mojolicious::Sessions.3.gz +%%PERL5_MAN3%%/Mojolicious::Static.3.gz +%%PERL5_MAN3%%/Mojolicious::Types.3.gz +%%PERL5_MAN3%%/Mojolicious::Validator.3.gz +%%PERL5_MAN3%%/Mojolicious::Validator::Validation.3.gz +%%PERL5_MAN3%%/Test::Mojo.3.gz +%%PERL5_MAN3%%/ojo.3.gz diff --git a/perl/p5-Mozilla-CA/Makefile b/perl5/p5-Mozilla-CA/Makefile similarity index 100% rename from perl/p5-Mozilla-CA/Makefile rename to perl5/p5-Mozilla-CA/Makefile diff --git a/perl/p5-Mozilla-CA/distinfo b/perl5/p5-Mozilla-CA/distinfo similarity index 100% rename from perl/p5-Mozilla-CA/distinfo rename to perl5/p5-Mozilla-CA/distinfo diff --git a/perl/p5-Mozilla-CA/pkg-descr b/perl5/p5-Mozilla-CA/pkg-descr similarity index 100% rename from perl/p5-Mozilla-CA/pkg-descr rename to perl5/p5-Mozilla-CA/pkg-descr diff --git a/perl/p5-Mozilla-CA/pkg-plist b/perl5/p5-Mozilla-CA/pkg-plist similarity index 100% rename from perl/p5-Mozilla-CA/pkg-plist rename to perl5/p5-Mozilla-CA/pkg-plist diff --git a/perl/p5-Net-SMTP-SSL/Makefile b/perl5/p5-Net-SMTP-SSL/Makefile similarity index 100% rename from perl/p5-Net-SMTP-SSL/Makefile rename to perl5/p5-Net-SMTP-SSL/Makefile diff --git a/perl/p5-Net-SMTP-SSL/distinfo b/perl5/p5-Net-SMTP-SSL/distinfo similarity index 100% rename from perl/p5-Net-SMTP-SSL/distinfo rename to perl5/p5-Net-SMTP-SSL/distinfo diff --git a/perl/p5-Net-SMTP-SSL/pkg-descr b/perl5/p5-Net-SMTP-SSL/pkg-descr similarity index 100% rename from perl/p5-Net-SMTP-SSL/pkg-descr rename to perl5/p5-Net-SMTP-SSL/pkg-descr diff --git a/perl/p5-Net-SMTP-SSL/pkg-plist b/perl5/p5-Net-SMTP-SSL/pkg-plist similarity index 100% rename from perl/p5-Net-SMTP-SSL/pkg-plist rename to perl5/p5-Net-SMTP-SSL/pkg-plist diff --git a/perl/p5-Net-SSLeay/Makefile b/perl5/p5-Net-SSLeay/Makefile similarity index 100% rename from perl/p5-Net-SSLeay/Makefile rename to perl5/p5-Net-SSLeay/Makefile diff --git a/perl/p5-Net-SSLeay/distinfo b/perl5/p5-Net-SSLeay/distinfo similarity index 100% rename from perl/p5-Net-SSLeay/distinfo rename to perl5/p5-Net-SSLeay/distinfo diff --git a/perl/p5-Net-SSLeay/files/patch-SSLeay.pm b/perl5/p5-Net-SSLeay/files/patch-SSLeay.pm similarity index 100% rename from perl/p5-Net-SSLeay/files/patch-SSLeay.pm rename to perl5/p5-Net-SSLeay/files/patch-SSLeay.pm diff --git a/perl/p5-Net-SSLeay/pkg-descr b/perl5/p5-Net-SSLeay/pkg-descr similarity index 100% rename from perl/p5-Net-SSLeay/pkg-descr rename to perl5/p5-Net-SSLeay/pkg-descr diff --git a/perl/p5-Net-SSLeay/pkg-plist b/perl5/p5-Net-SSLeay/pkg-plist similarity index 100% rename from perl/p5-Net-SSLeay/pkg-plist rename to perl5/p5-Net-SSLeay/pkg-plist diff --git a/perl/p5-Socket/Makefile b/perl5/p5-Socket/Makefile similarity index 100% rename from perl/p5-Socket/Makefile rename to perl5/p5-Socket/Makefile diff --git a/perl/p5-Socket/distinfo b/perl5/p5-Socket/distinfo similarity index 100% rename from perl/p5-Socket/distinfo rename to perl5/p5-Socket/distinfo diff --git a/perl/p5-Socket/pkg-descr b/perl5/p5-Socket/pkg-descr similarity index 100% rename from perl/p5-Socket/pkg-descr rename to perl5/p5-Socket/pkg-descr diff --git a/perl/p5-Socket/pkg-plist b/perl5/p5-Socket/pkg-plist similarity index 100% rename from perl/p5-Socket/pkg-plist rename to perl5/p5-Socket/pkg-plist diff --git a/perl/p5-URI/Makefile b/perl5/p5-URI/Makefile similarity index 100% rename from perl/p5-URI/Makefile rename to perl5/p5-URI/Makefile diff --git a/perl/p5-URI/distinfo b/perl5/p5-URI/distinfo similarity index 100% rename from perl/p5-URI/distinfo rename to perl5/p5-URI/distinfo diff --git a/perl/p5-URI/pkg-descr b/perl5/p5-URI/pkg-descr similarity index 100% rename from perl/p5-URI/pkg-descr rename to perl5/p5-URI/pkg-descr diff --git a/perl/p5-URI/pkg-plist b/perl5/p5-URI/pkg-plist similarity index 100% rename from perl/p5-URI/pkg-plist rename to perl5/p5-URI/pkg-plist diff --git a/perl/p5-XML-Parser/Makefile b/perl5/p5-XML-Parser/Makefile similarity index 100% rename from perl/p5-XML-Parser/Makefile rename to perl5/p5-XML-Parser/Makefile diff --git a/perl/p5-XML-Parser/distinfo b/perl5/p5-XML-Parser/distinfo similarity index 100% rename from perl/p5-XML-Parser/distinfo rename to perl5/p5-XML-Parser/distinfo diff --git a/perl/p5-XML-Parser/pkg-descr b/perl5/p5-XML-Parser/pkg-descr similarity index 100% rename from perl/p5-XML-Parser/pkg-descr rename to perl5/p5-XML-Parser/pkg-descr diff --git a/perl/p5-XML-Parser/pkg-plist b/perl5/p5-XML-Parser/pkg-plist similarity index 100% rename from perl/p5-XML-Parser/pkg-plist rename to perl5/p5-XML-Parser/pkg-plist diff --git a/perl/p5-common-sense/Makefile b/perl5/p5-common-sense/Makefile similarity index 100% rename from perl/p5-common-sense/Makefile rename to perl5/p5-common-sense/Makefile diff --git a/perl/p5-common-sense/distinfo b/perl5/p5-common-sense/distinfo similarity index 100% rename from perl/p5-common-sense/distinfo rename to perl5/p5-common-sense/distinfo diff --git a/perl/p5-common-sense/pkg-descr b/perl5/p5-common-sense/pkg-descr similarity index 100% rename from perl/p5-common-sense/pkg-descr rename to perl5/p5-common-sense/pkg-descr diff --git a/perl/p5-common-sense/pkg-plist b/perl5/p5-common-sense/pkg-plist similarity index 100% rename from perl/p5-common-sense/pkg-plist rename to perl5/p5-common-sense/pkg-plist diff --git a/php74/php74-mod-bcmath/Makefile b/php74/php74-mod-bcmath/Makefile new file mode 100644 index 00000000..57a16c2f --- /dev/null +++ b/php74/php74-mod-bcmath/Makefile @@ -0,0 +1,62 @@ +# +# $Id: Makefile 2636 2009-09-30 12:09:37Z root $ +# +PORTNAME= php${PORTVERSION:R:S/.//g}-mod-${MODULE_NAME} +PORTVERSION= 7.4.33 +CATEGORIES= lang devel www +MASTER_SITES= ${MASTER_SITE_PHP} +MASTER_SITE_SUBDIR= distributions +DISTNAME= php-${PORTVERSION} + +MASTER_SITES+= http://dk.php.net/%SUBDIR%/ +MASTER_SITES+= http://de.php.net/%SUBDIR%/ +MASTER_SITES+= http://es.php.net/%SUBDIR%/ +MASTER_SITES+= http://fi.php.net/%SUBDIR%/ +MASTER_SITES+= http://fr.php.net/%SUBDIR%/ +MASTER_SITES+= http://gr.php.net/%SUBDIR%/ +MASTER_SITES+= http://it.php.net/%SUBDIR%/ +MASTER_SITES+= http://jp.php.net/%SUBDIR%/ +MASTER_SITES+= http://se.php.net/%SUBDIR%/ +MASTER_SITES+= http://uk.php.net/%SUBDIR%/ +MASTER_SITES+= http://us2.php.net/%SUBDIR%/ +MASTER_SITES+= http://br.php.net/%SUBDIR%/ +MASTER_SITES+= http://cn.php.net/%SUBDIR%/ + +MASTER_SITE_SUBDIR= distributions + +MAINTAINER= onborodin@gmail.com +COMMENT= PHP Scripting Language (Apache Module and CLI) + +BUILD_DEPENDS+= php:lang/php${PORTVERSION:R:S/.//g} +#RUN_DEPENDS +#BUILD_DEPENDS+= ${RUN_DEPENDS} + + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} +WRKSRC= ${WRKDIR}/${DISTNAME}/ext/${MODULE_NAME} + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} + +USES+= tar:xz gmake +GNU_CONFIGURE= yes +CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/php +LDFLAGS= -L${LOCALBASE}/lib + +MODULE_NAME= bcmath +DESTDIRNAME= INSTALL_ROOT +#EXTDIR +#INCLUDEDIR + +pre-configure: + cd ${WRKSRC} && ${CONFIGURE_ENV} phpize . + +post-install: + ${RM} -f ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} lib/php -type f >> ${TMPPLIST} + ${MKDIR} ${STAGEDIR}${PREFIX}/include/php + cd ${STAGEDIR}${PREFIX} && ${FIND} include/php -type f >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds lib/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds include/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + +.include +#EOF diff --git a/php74/php74-mod-bcmath/Makefile-e b/php74/php74-mod-bcmath/Makefile-e new file mode 100644 index 00000000..249abec8 --- /dev/null +++ b/php74/php74-mod-bcmath/Makefile-e @@ -0,0 +1,62 @@ +# +# $Id: Makefile 2636 2009-09-30 12:09:37Z root $ +# +PORTNAME= php${PORTVERSION:R:S/.//g}-mod-${MODULE_NAME} +PORTVERSION= 7.4.29 +CATEGORIES= lang devel www +MASTER_SITES= ${MASTER_SITE_PHP} +MASTER_SITE_SUBDIR= distributions +DISTNAME= php-${PORTVERSION} + +MASTER_SITES+= http://dk.php.net/%SUBDIR%/ +MASTER_SITES+= http://de.php.net/%SUBDIR%/ +MASTER_SITES+= http://es.php.net/%SUBDIR%/ +MASTER_SITES+= http://fi.php.net/%SUBDIR%/ +MASTER_SITES+= http://fr.php.net/%SUBDIR%/ +MASTER_SITES+= http://gr.php.net/%SUBDIR%/ +MASTER_SITES+= http://it.php.net/%SUBDIR%/ +MASTER_SITES+= http://jp.php.net/%SUBDIR%/ +MASTER_SITES+= http://se.php.net/%SUBDIR%/ +MASTER_SITES+= http://uk.php.net/%SUBDIR%/ +MASTER_SITES+= http://us2.php.net/%SUBDIR%/ +MASTER_SITES+= http://br.php.net/%SUBDIR%/ +MASTER_SITES+= http://cn.php.net/%SUBDIR%/ + +MASTER_SITE_SUBDIR= distributions + +MAINTAINER= onborodin@gmail.com +COMMENT= PHP Scripting Language (Apache Module and CLI) + +BUILD_DEPENDS+= php:lang/php${PORTVERSION:R:S/.//g} +#RUN_DEPENDS +#BUILD_DEPENDS+= ${RUN_DEPENDS} + + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} +WRKSRC= ${WRKDIR}/${DISTNAME}/ext/${MODULE_NAME} + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} + +USES+= tar:xz gmake +GNU_CONFIGURE= yes +CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/php +LDFLAGS= -L${LOCALBASE}/lib + +MODULE_NAME= bcmath +DESTDIRNAME= INSTALL_ROOT +#EXTDIR +#INCLUDEDIR + +pre-configure: + cd ${WRKSRC} && ${CONFIGURE_ENV} phpize . + +post-install: + ${RM} -f ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} lib/php -type f >> ${TMPPLIST} + ${MKDIR} ${STAGEDIR}${PREFIX}/include/php + cd ${STAGEDIR}${PREFIX} && ${FIND} include/php -type f >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds lib/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds include/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + +.include +#EOF diff --git a/php74/php74-mod-bcmath/distinfo b/php74/php74-mod-bcmath/distinfo new file mode 100644 index 00000000..c37ff4ba --- /dev/null +++ b/php74/php74-mod-bcmath/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1756241990 +SHA256 (php-7.4.33.tar.xz) = 924846abf93bc613815c55dd3f5809377813ac62a9ec4eb3778675b82a27b927 +SIZE (php-7.4.33.tar.xz) = 10420144 diff --git a/php74/php74-mod-bcmath/pkg-descr b/php74/php74-mod-bcmath/pkg-descr new file mode 100644 index 00000000..d6e42932 --- /dev/null +++ b/php74/php74-mod-bcmath/pkg-descr @@ -0,0 +1,9 @@ +PHP, which stands for "PHP: Hypertext Preprocessor" is a widely-used Open +Source general-purpose scripting language that is especially suited for +Web development and can be embedded into HTML. Its syntax draws upon C, +Java, and Perl, and is easy to learn. The main goal of the language is to +allow web developers to write dynamically generated webpages quickly, but +you can do much more with PHP. + +WWW: http://www.php.net/ + diff --git a/php74/php74-mod-bz2/Makefile b/php74/php74-mod-bz2/Makefile new file mode 100644 index 00000000..74ad2314 --- /dev/null +++ b/php74/php74-mod-bz2/Makefile @@ -0,0 +1,62 @@ +# +# $Id: Makefile 2636 2009-09-30 12:09:37Z root $ +# +PORTNAME= php${PORTVERSION:R:S/.//g}-mod-${MODULE_NAME} +PORTVERSION= 7.4.33 +CATEGORIES= lang devel www +MASTER_SITES= ${MASTER_SITE_PHP} +MASTER_SITE_SUBDIR= distributions +DISTNAME= php-${PORTVERSION} + +MASTER_SITES+= http://dk.php.net/%SUBDIR%/ +MASTER_SITES+= http://de.php.net/%SUBDIR%/ +MASTER_SITES+= http://es.php.net/%SUBDIR%/ +MASTER_SITES+= http://fi.php.net/%SUBDIR%/ +MASTER_SITES+= http://fr.php.net/%SUBDIR%/ +MASTER_SITES+= http://gr.php.net/%SUBDIR%/ +MASTER_SITES+= http://it.php.net/%SUBDIR%/ +MASTER_SITES+= http://jp.php.net/%SUBDIR%/ +MASTER_SITES+= http://se.php.net/%SUBDIR%/ +MASTER_SITES+= http://uk.php.net/%SUBDIR%/ +MASTER_SITES+= http://us2.php.net/%SUBDIR%/ +MASTER_SITES+= http://br.php.net/%SUBDIR%/ +MASTER_SITES+= http://cn.php.net/%SUBDIR%/ + +MASTER_SITE_SUBDIR= distributions + +MAINTAINER= onborodin@gmail.com +COMMENT= PHP Scripting Language (Apache Module and CLI) + +BUILD_DEPENDS+= php:lang/php${PORTVERSION:R:S/.//g} +#RUN_DEPENDS +#BUILD_DEPENDS+= ${RUN_DEPENDS} + + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} +WRKSRC= ${WRKDIR}/${DISTNAME}/ext/${MODULE_NAME} + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} + +USES+= tar:xz gmake +GNU_CONFIGURE= yes +CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/php +LDFLAGS= -L${LOCALBASE}/lib + +MODULE_NAME= bz2 +DESTDIRNAME= INSTALL_ROOT +#EXTDIR +#INCLUDEDIR + +pre-configure: + cd ${WRKSRC} && ${CONFIGURE_ENV} phpize . + +post-install: + ${RM} -f ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} lib/php -type f >> ${TMPPLIST} + ${MKDIR} ${STAGEDIR}${PREFIX}/include/php + cd ${STAGEDIR}${PREFIX} && ${FIND} include/php -type f >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds lib/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds include/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + +.include +#EOF diff --git a/php74/php74-mod-bz2/distinfo b/php74/php74-mod-bz2/distinfo new file mode 100644 index 00000000..c37ff4ba --- /dev/null +++ b/php74/php74-mod-bz2/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1756241990 +SHA256 (php-7.4.33.tar.xz) = 924846abf93bc613815c55dd3f5809377813ac62a9ec4eb3778675b82a27b927 +SIZE (php-7.4.33.tar.xz) = 10420144 diff --git a/php74/php74-mod-bz2/pkg-descr b/php74/php74-mod-bz2/pkg-descr new file mode 100644 index 00000000..d6e42932 --- /dev/null +++ b/php74/php74-mod-bz2/pkg-descr @@ -0,0 +1,9 @@ +PHP, which stands for "PHP: Hypertext Preprocessor" is a widely-used Open +Source general-purpose scripting language that is especially suited for +Web development and can be embedded into HTML. Its syntax draws upon C, +Java, and Perl, and is easy to learn. The main goal of the language is to +allow web developers to write dynamically generated webpages quickly, but +you can do much more with PHP. + +WWW: http://www.php.net/ + diff --git a/php74/php74-mod-calendar/Makefile b/php74/php74-mod-calendar/Makefile new file mode 100644 index 00000000..920f2708 --- /dev/null +++ b/php74/php74-mod-calendar/Makefile @@ -0,0 +1,62 @@ +# +# $Id: Makefile 2636 2009-09-30 12:09:37Z root $ +# +PORTNAME= php${PORTVERSION:R:S/.//g}-mod-${MODULE_NAME} +PORTVERSION= 7.4.33 +CATEGORIES= lang devel www +MASTER_SITES= ${MASTER_SITE_PHP} +MASTER_SITE_SUBDIR= distributions +DISTNAME= php-${PORTVERSION} + +MASTER_SITES+= http://dk.php.net/%SUBDIR%/ +MASTER_SITES+= http://de.php.net/%SUBDIR%/ +MASTER_SITES+= http://es.php.net/%SUBDIR%/ +MASTER_SITES+= http://fi.php.net/%SUBDIR%/ +MASTER_SITES+= http://fr.php.net/%SUBDIR%/ +MASTER_SITES+= http://gr.php.net/%SUBDIR%/ +MASTER_SITES+= http://it.php.net/%SUBDIR%/ +MASTER_SITES+= http://jp.php.net/%SUBDIR%/ +MASTER_SITES+= http://se.php.net/%SUBDIR%/ +MASTER_SITES+= http://uk.php.net/%SUBDIR%/ +MASTER_SITES+= http://us2.php.net/%SUBDIR%/ +MASTER_SITES+= http://br.php.net/%SUBDIR%/ +MASTER_SITES+= http://cn.php.net/%SUBDIR%/ + +MASTER_SITE_SUBDIR= distributions + +MAINTAINER= onborodin@gmail.com +COMMENT= PHP Scripting Language (Apache Module and CLI) + +BUILD_DEPENDS+= php:lang/php${PORTVERSION:R:S/.//g} +#RUN_DEPENDS +#BUILD_DEPENDS+= ${RUN_DEPENDS} + + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} +WRKSRC= ${WRKDIR}/${DISTNAME}/ext/${MODULE_NAME} + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} + +USES+= tar:xz gmake +GNU_CONFIGURE= yes +CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/php +LDFLAGS= -L${LOCALBASE}/lib + +MODULE_NAME= calendar +DESTDIRNAME= INSTALL_ROOT +#EXTDIR +#INCLUDEDIR + +pre-configure: + cd ${WRKSRC} && ${CONFIGURE_ENV} phpize . + +post-install: + ${RM} -f ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} lib/php -type f >> ${TMPPLIST} + ${MKDIR} ${STAGEDIR}${PREFIX}/include/php + cd ${STAGEDIR}${PREFIX} && ${FIND} include/php -type f >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds lib/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds include/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + +.include +#EOF diff --git a/php74/php74-mod-calendar/Makefile-e b/php74/php74-mod-calendar/Makefile-e new file mode 100644 index 00000000..8f4ff6cd --- /dev/null +++ b/php74/php74-mod-calendar/Makefile-e @@ -0,0 +1,62 @@ +# +# $Id: Makefile 2636 2009-09-30 12:09:37Z root $ +# +PORTNAME= php${PORTVERSION:R:S/.//g}-mod-${MODULE_NAME} +PORTVERSION= 7.4.29 +CATEGORIES= lang devel www +MASTER_SITES= ${MASTER_SITE_PHP} +MASTER_SITE_SUBDIR= distributions +DISTNAME= php-${PORTVERSION} + +MASTER_SITES+= http://dk.php.net/%SUBDIR%/ +MASTER_SITES+= http://de.php.net/%SUBDIR%/ +MASTER_SITES+= http://es.php.net/%SUBDIR%/ +MASTER_SITES+= http://fi.php.net/%SUBDIR%/ +MASTER_SITES+= http://fr.php.net/%SUBDIR%/ +MASTER_SITES+= http://gr.php.net/%SUBDIR%/ +MASTER_SITES+= http://it.php.net/%SUBDIR%/ +MASTER_SITES+= http://jp.php.net/%SUBDIR%/ +MASTER_SITES+= http://se.php.net/%SUBDIR%/ +MASTER_SITES+= http://uk.php.net/%SUBDIR%/ +MASTER_SITES+= http://us2.php.net/%SUBDIR%/ +MASTER_SITES+= http://br.php.net/%SUBDIR%/ +MASTER_SITES+= http://cn.php.net/%SUBDIR%/ + +MASTER_SITE_SUBDIR= distributions + +MAINTAINER= onborodin@gmail.com +COMMENT= PHP Scripting Language (Apache Module and CLI) + +BUILD_DEPENDS+= php:lang/php${PORTVERSION:R:S/.//g} +#RUN_DEPENDS +#BUILD_DEPENDS+= ${RUN_DEPENDS} + + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} +WRKSRC= ${WRKDIR}/${DISTNAME}/ext/${MODULE_NAME} + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} + +USES+= tar:xz gmake +GNU_CONFIGURE= yes +CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/php +LDFLAGS= -L${LOCALBASE}/lib + +MODULE_NAME= calendar +DESTDIRNAME= INSTALL_ROOT +#EXTDIR +#INCLUDEDIR + +pre-configure: + cd ${WRKSRC} && ${CONFIGURE_ENV} phpize . + +post-install: + ${RM} -f ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} lib/php -type f >> ${TMPPLIST} + ${MKDIR} ${STAGEDIR}${PREFIX}/include/php + cd ${STAGEDIR}${PREFIX} && ${FIND} include/php -type f >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds lib/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds include/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + +.include +#EOF diff --git a/php74/php74-mod-calendar/distinfo b/php74/php74-mod-calendar/distinfo new file mode 100644 index 00000000..c37ff4ba --- /dev/null +++ b/php74/php74-mod-calendar/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1756241990 +SHA256 (php-7.4.33.tar.xz) = 924846abf93bc613815c55dd3f5809377813ac62a9ec4eb3778675b82a27b927 +SIZE (php-7.4.33.tar.xz) = 10420144 diff --git a/php74/php74-mod-calendar/pkg-descr b/php74/php74-mod-calendar/pkg-descr new file mode 100644 index 00000000..d6e42932 --- /dev/null +++ b/php74/php74-mod-calendar/pkg-descr @@ -0,0 +1,9 @@ +PHP, which stands for "PHP: Hypertext Preprocessor" is a widely-used Open +Source general-purpose scripting language that is especially suited for +Web development and can be embedded into HTML. Its syntax draws upon C, +Java, and Perl, and is easy to learn. The main goal of the language is to +allow web developers to write dynamically generated webpages quickly, but +you can do much more with PHP. + +WWW: http://www.php.net/ + diff --git a/php74/php74-mod-ctype/Makefile b/php74/php74-mod-ctype/Makefile new file mode 100644 index 00000000..da089dda --- /dev/null +++ b/php74/php74-mod-ctype/Makefile @@ -0,0 +1,62 @@ +# +# $Id: Makefile 2636 2009-09-30 12:09:37Z root $ +# +PORTNAME= php${PORTVERSION:R:S/.//g}-mod-${MODULE_NAME} +PORTVERSION= 7.4.33 +CATEGORIES= lang devel www +MASTER_SITES= ${MASTER_SITE_PHP} +MASTER_SITE_SUBDIR= distributions +DISTNAME= php-${PORTVERSION} + +MASTER_SITES+= http://dk.php.net/%SUBDIR%/ +MASTER_SITES+= http://de.php.net/%SUBDIR%/ +MASTER_SITES+= http://es.php.net/%SUBDIR%/ +MASTER_SITES+= http://fi.php.net/%SUBDIR%/ +MASTER_SITES+= http://fr.php.net/%SUBDIR%/ +MASTER_SITES+= http://gr.php.net/%SUBDIR%/ +MASTER_SITES+= http://it.php.net/%SUBDIR%/ +MASTER_SITES+= http://jp.php.net/%SUBDIR%/ +MASTER_SITES+= http://se.php.net/%SUBDIR%/ +MASTER_SITES+= http://uk.php.net/%SUBDIR%/ +MASTER_SITES+= http://us2.php.net/%SUBDIR%/ +MASTER_SITES+= http://br.php.net/%SUBDIR%/ +MASTER_SITES+= http://cn.php.net/%SUBDIR%/ + +MASTER_SITE_SUBDIR= distributions + +MAINTAINER= onborodin@gmail.com +COMMENT= PHP Scripting Language (Apache Module and CLI) + +BUILD_DEPENDS+= php:lang/php${PORTVERSION:R:S/.//g} +#RUN_DEPENDS +#BUILD_DEPENDS+= ${RUN_DEPENDS} + + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} +WRKSRC= ${WRKDIR}/${DISTNAME}/ext/${MODULE_NAME} + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} + +USES+= tar:xz gmake +GNU_CONFIGURE= yes +CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/php +LDFLAGS= -L${LOCALBASE}/lib + +MODULE_NAME= ctype +DESTDIRNAME= INSTALL_ROOT +#EXTDIR +#INCLUDEDIR + +pre-configure: + cd ${WRKSRC} && ${CONFIGURE_ENV} phpize . + +post-install: + ${RM} -f ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} lib/php -type f >> ${TMPPLIST} + ${MKDIR} ${STAGEDIR}${PREFIX}/include/php + cd ${STAGEDIR}${PREFIX} && ${FIND} include/php -type f >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds lib/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds include/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + +.include +#EOF diff --git a/php74/php74-mod-ctype/Makefile-e b/php74/php74-mod-ctype/Makefile-e new file mode 100644 index 00000000..061a8fc0 --- /dev/null +++ b/php74/php74-mod-ctype/Makefile-e @@ -0,0 +1,62 @@ +# +# $Id: Makefile 2636 2009-09-30 12:09:37Z root $ +# +PORTNAME= php${PORTVERSION:R:S/.//g}-mod-${MODULE_NAME} +PORTVERSION= 7.4.29 +CATEGORIES= lang devel www +MASTER_SITES= ${MASTER_SITE_PHP} +MASTER_SITE_SUBDIR= distributions +DISTNAME= php-${PORTVERSION} + +MASTER_SITES+= http://dk.php.net/%SUBDIR%/ +MASTER_SITES+= http://de.php.net/%SUBDIR%/ +MASTER_SITES+= http://es.php.net/%SUBDIR%/ +MASTER_SITES+= http://fi.php.net/%SUBDIR%/ +MASTER_SITES+= http://fr.php.net/%SUBDIR%/ +MASTER_SITES+= http://gr.php.net/%SUBDIR%/ +MASTER_SITES+= http://it.php.net/%SUBDIR%/ +MASTER_SITES+= http://jp.php.net/%SUBDIR%/ +MASTER_SITES+= http://se.php.net/%SUBDIR%/ +MASTER_SITES+= http://uk.php.net/%SUBDIR%/ +MASTER_SITES+= http://us2.php.net/%SUBDIR%/ +MASTER_SITES+= http://br.php.net/%SUBDIR%/ +MASTER_SITES+= http://cn.php.net/%SUBDIR%/ + +MASTER_SITE_SUBDIR= distributions + +MAINTAINER= onborodin@gmail.com +COMMENT= PHP Scripting Language (Apache Module and CLI) + +BUILD_DEPENDS+= php:lang/php${PORTVERSION:R:S/.//g} +#RUN_DEPENDS +#BUILD_DEPENDS+= ${RUN_DEPENDS} + + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} +WRKSRC= ${WRKDIR}/${DISTNAME}/ext/${MODULE_NAME} + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} + +USES+= tar:xz gmake +GNU_CONFIGURE= yes +CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/php +LDFLAGS= -L${LOCALBASE}/lib + +MODULE_NAME= ctype +DESTDIRNAME= INSTALL_ROOT +#EXTDIR +#INCLUDEDIR + +pre-configure: + cd ${WRKSRC} && ${CONFIGURE_ENV} phpize . + +post-install: + ${RM} -f ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} lib/php -type f >> ${TMPPLIST} + ${MKDIR} ${STAGEDIR}${PREFIX}/include/php + cd ${STAGEDIR}${PREFIX} && ${FIND} include/php -type f >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds lib/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds include/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + +.include +#EOF diff --git a/php74/php74-mod-ctype/distinfo b/php74/php74-mod-ctype/distinfo new file mode 100644 index 00000000..c37ff4ba --- /dev/null +++ b/php74/php74-mod-ctype/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1756241990 +SHA256 (php-7.4.33.tar.xz) = 924846abf93bc613815c55dd3f5809377813ac62a9ec4eb3778675b82a27b927 +SIZE (php-7.4.33.tar.xz) = 10420144 diff --git a/php74/php74-mod-ctype/pkg-descr b/php74/php74-mod-ctype/pkg-descr new file mode 100644 index 00000000..d6e42932 --- /dev/null +++ b/php74/php74-mod-ctype/pkg-descr @@ -0,0 +1,9 @@ +PHP, which stands for "PHP: Hypertext Preprocessor" is a widely-used Open +Source general-purpose scripting language that is especially suited for +Web development and can be embedded into HTML. Its syntax draws upon C, +Java, and Perl, and is easy to learn. The main goal of the language is to +allow web developers to write dynamically generated webpages quickly, but +you can do much more with PHP. + +WWW: http://www.php.net/ + diff --git a/php74/php74-mod-curl/Makefile b/php74/php74-mod-curl/Makefile new file mode 100644 index 00000000..58cfb79f --- /dev/null +++ b/php74/php74-mod-curl/Makefile @@ -0,0 +1,63 @@ +# +# $Id: Makefile 2636 2009-09-30 12:09:37Z root $ +# +PORTNAME= php${PORTVERSION:R:S/.//g}-mod-${MODULE_NAME} +PORTVERSION= 7.4.33 +CATEGORIES= lang devel www +MASTER_SITES= ${MASTER_SITE_PHP} +MASTER_SITE_SUBDIR= distributions +DISTNAME= php-${PORTVERSION} + +MASTER_SITES+= http://dk.php.net/%SUBDIR%/ +MASTER_SITES+= http://de.php.net/%SUBDIR%/ +MASTER_SITES+= http://es.php.net/%SUBDIR%/ +MASTER_SITES+= http://fi.php.net/%SUBDIR%/ +MASTER_SITES+= http://fr.php.net/%SUBDIR%/ +MASTER_SITES+= http://gr.php.net/%SUBDIR%/ +MASTER_SITES+= http://it.php.net/%SUBDIR%/ +MASTER_SITES+= http://jp.php.net/%SUBDIR%/ +MASTER_SITES+= http://se.php.net/%SUBDIR%/ +MASTER_SITES+= http://uk.php.net/%SUBDIR%/ +MASTER_SITES+= http://us2.php.net/%SUBDIR%/ +MASTER_SITES+= http://br.php.net/%SUBDIR%/ +MASTER_SITES+= http://cn.php.net/%SUBDIR%/ + +MASTER_SITE_SUBDIR= distributions + +MAINTAINER= onborodin@gmail.com +COMMENT= PHP Scripting Language (Apache Module and CLI) + +BUILD_DEPENDS+= php:lang/php${PORTVERSION:R:S/.//g} +#RUN_DEPENDS +#BUILD_DEPENDS+= ${RUN_DEPENDS} +LIB_DEPENDS+= libcurl.so:net/libcurl + + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} +WRKSRC= ${WRKDIR}/${DISTNAME}/ext/${MODULE_NAME} + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} + +USES+= tar:xz gmake +GNU_CONFIGURE= yes +CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/php +LDFLAGS= -L${LOCALBASE}/lib + +MODULE_NAME= curl +DESTDIRNAME= INSTALL_ROOT +#EXTDIR +#INCLUDEDIR + +pre-configure: + cd ${WRKSRC} && ${CONFIGURE_ENV} phpize . + +post-install: + ${RM} -f ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} lib/php -type f >> ${TMPPLIST} + ${MKDIR} ${STAGEDIR}${PREFIX}/include/php + cd ${STAGEDIR}${PREFIX} && ${FIND} include/php -type f >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds lib/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds include/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + +.include +#EOF diff --git a/php74/php74-mod-curl/Makefile-e b/php74/php74-mod-curl/Makefile-e new file mode 100644 index 00000000..91977222 --- /dev/null +++ b/php74/php74-mod-curl/Makefile-e @@ -0,0 +1,63 @@ +# +# $Id: Makefile 2636 2009-09-30 12:09:37Z root $ +# +PORTNAME= php${PORTVERSION:R:S/.//g}-mod-${MODULE_NAME} +PORTVERSION= 7.4.29 +CATEGORIES= lang devel www +MASTER_SITES= ${MASTER_SITE_PHP} +MASTER_SITE_SUBDIR= distributions +DISTNAME= php-${PORTVERSION} + +MASTER_SITES+= http://dk.php.net/%SUBDIR%/ +MASTER_SITES+= http://de.php.net/%SUBDIR%/ +MASTER_SITES+= http://es.php.net/%SUBDIR%/ +MASTER_SITES+= http://fi.php.net/%SUBDIR%/ +MASTER_SITES+= http://fr.php.net/%SUBDIR%/ +MASTER_SITES+= http://gr.php.net/%SUBDIR%/ +MASTER_SITES+= http://it.php.net/%SUBDIR%/ +MASTER_SITES+= http://jp.php.net/%SUBDIR%/ +MASTER_SITES+= http://se.php.net/%SUBDIR%/ +MASTER_SITES+= http://uk.php.net/%SUBDIR%/ +MASTER_SITES+= http://us2.php.net/%SUBDIR%/ +MASTER_SITES+= http://br.php.net/%SUBDIR%/ +MASTER_SITES+= http://cn.php.net/%SUBDIR%/ + +MASTER_SITE_SUBDIR= distributions + +MAINTAINER= onborodin@gmail.com +COMMENT= PHP Scripting Language (Apache Module and CLI) + +BUILD_DEPENDS+= php:lang/php${PORTVERSION:R:S/.//g} +#RUN_DEPENDS +#BUILD_DEPENDS+= ${RUN_DEPENDS} +LIB_DEPENDS+= libcurl.so:net/libcurl + + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} +WRKSRC= ${WRKDIR}/${DISTNAME}/ext/${MODULE_NAME} + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} + +USES+= tar:xz gmake +GNU_CONFIGURE= yes +CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/php +LDFLAGS= -L${LOCALBASE}/lib + +MODULE_NAME= curl +DESTDIRNAME= INSTALL_ROOT +#EXTDIR +#INCLUDEDIR + +pre-configure: + cd ${WRKSRC} && ${CONFIGURE_ENV} phpize . + +post-install: + ${RM} -f ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} lib/php -type f >> ${TMPPLIST} + ${MKDIR} ${STAGEDIR}${PREFIX}/include/php + cd ${STAGEDIR}${PREFIX} && ${FIND} include/php -type f >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds lib/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds include/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + +.include +#EOF diff --git a/php74/php74-mod-curl/distinfo b/php74/php74-mod-curl/distinfo new file mode 100644 index 00000000..c37ff4ba --- /dev/null +++ b/php74/php74-mod-curl/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1756241990 +SHA256 (php-7.4.33.tar.xz) = 924846abf93bc613815c55dd3f5809377813ac62a9ec4eb3778675b82a27b927 +SIZE (php-7.4.33.tar.xz) = 10420144 diff --git a/php74/php74-mod-curl/pkg-descr b/php74/php74-mod-curl/pkg-descr new file mode 100644 index 00000000..d6e42932 --- /dev/null +++ b/php74/php74-mod-curl/pkg-descr @@ -0,0 +1,9 @@ +PHP, which stands for "PHP: Hypertext Preprocessor" is a widely-used Open +Source general-purpose scripting language that is especially suited for +Web development and can be embedded into HTML. Its syntax draws upon C, +Java, and Perl, and is easy to learn. The main goal of the language is to +allow web developers to write dynamically generated webpages quickly, but +you can do much more with PHP. + +WWW: http://www.php.net/ + diff --git a/php74/php74-mod-dba/Makefile b/php74/php74-mod-dba/Makefile new file mode 100644 index 00000000..8b286205 --- /dev/null +++ b/php74/php74-mod-dba/Makefile @@ -0,0 +1,62 @@ +# +# $Id: Makefile 2636 2009-09-30 12:09:37Z root $ +# +PORTNAME= php${PORTVERSION:R:S/.//g}-mod-${MODULE_NAME} +PORTVERSION= 7.4.33 +CATEGORIES= lang devel www +MASTER_SITES= ${MASTER_SITE_PHP} +MASTER_SITE_SUBDIR= distributions +DISTNAME= php-${PORTVERSION} + +MASTER_SITES+= http://dk.php.net/%SUBDIR%/ +MASTER_SITES+= http://de.php.net/%SUBDIR%/ +MASTER_SITES+= http://es.php.net/%SUBDIR%/ +MASTER_SITES+= http://fi.php.net/%SUBDIR%/ +MASTER_SITES+= http://fr.php.net/%SUBDIR%/ +MASTER_SITES+= http://gr.php.net/%SUBDIR%/ +MASTER_SITES+= http://it.php.net/%SUBDIR%/ +MASTER_SITES+= http://jp.php.net/%SUBDIR%/ +MASTER_SITES+= http://se.php.net/%SUBDIR%/ +MASTER_SITES+= http://uk.php.net/%SUBDIR%/ +MASTER_SITES+= http://us2.php.net/%SUBDIR%/ +MASTER_SITES+= http://br.php.net/%SUBDIR%/ +MASTER_SITES+= http://cn.php.net/%SUBDIR%/ + +MASTER_SITE_SUBDIR= distributions + +MAINTAINER= onborodin@gmail.com +COMMENT= PHP Scripting Language (Apache Module and CLI) + +BUILD_DEPENDS+= php:lang/php${PORTVERSION:R:S/.//g} +#RUN_DEPENDS +#BUILD_DEPENDS+= ${RUN_DEPENDS} + + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} +WRKSRC= ${WRKDIR}/${DISTNAME}/ext/${MODULE_NAME} + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} + +USES+= tar:xz gmake +GNU_CONFIGURE= yes +CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/php +LDFLAGS= -L${LOCALBASE}/lib + +MODULE_NAME= dba +DESTDIRNAME= INSTALL_ROOT +#EXTDIR +#INCLUDEDIR + +pre-configure: + cd ${WRKSRC} && ${CONFIGURE_ENV} phpize . + +post-install: + ${RM} -f ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} lib/php -type f >> ${TMPPLIST} + ${MKDIR} ${STAGEDIR}${PREFIX}/include/php + cd ${STAGEDIR}${PREFIX} && ${FIND} include/php -type f >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds lib/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds include/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + +.include +#EOF diff --git a/php74/php74-mod-dba/Makefile-e b/php74/php74-mod-dba/Makefile-e new file mode 100644 index 00000000..82234b22 --- /dev/null +++ b/php74/php74-mod-dba/Makefile-e @@ -0,0 +1,62 @@ +# +# $Id: Makefile 2636 2009-09-30 12:09:37Z root $ +# +PORTNAME= php${PORTVERSION:R:S/.//g}-mod-${MODULE_NAME} +PORTVERSION= 7.4.29 +CATEGORIES= lang devel www +MASTER_SITES= ${MASTER_SITE_PHP} +MASTER_SITE_SUBDIR= distributions +DISTNAME= php-${PORTVERSION} + +MASTER_SITES+= http://dk.php.net/%SUBDIR%/ +MASTER_SITES+= http://de.php.net/%SUBDIR%/ +MASTER_SITES+= http://es.php.net/%SUBDIR%/ +MASTER_SITES+= http://fi.php.net/%SUBDIR%/ +MASTER_SITES+= http://fr.php.net/%SUBDIR%/ +MASTER_SITES+= http://gr.php.net/%SUBDIR%/ +MASTER_SITES+= http://it.php.net/%SUBDIR%/ +MASTER_SITES+= http://jp.php.net/%SUBDIR%/ +MASTER_SITES+= http://se.php.net/%SUBDIR%/ +MASTER_SITES+= http://uk.php.net/%SUBDIR%/ +MASTER_SITES+= http://us2.php.net/%SUBDIR%/ +MASTER_SITES+= http://br.php.net/%SUBDIR%/ +MASTER_SITES+= http://cn.php.net/%SUBDIR%/ + +MASTER_SITE_SUBDIR= distributions + +MAINTAINER= onborodin@gmail.com +COMMENT= PHP Scripting Language (Apache Module and CLI) + +BUILD_DEPENDS+= php:lang/php${PORTVERSION:R:S/.//g} +#RUN_DEPENDS +#BUILD_DEPENDS+= ${RUN_DEPENDS} + + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} +WRKSRC= ${WRKDIR}/${DISTNAME}/ext/${MODULE_NAME} + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} + +USES+= tar:xz gmake +GNU_CONFIGURE= yes +CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/php +LDFLAGS= -L${LOCALBASE}/lib + +MODULE_NAME= dba +DESTDIRNAME= INSTALL_ROOT +#EXTDIR +#INCLUDEDIR + +pre-configure: + cd ${WRKSRC} && ${CONFIGURE_ENV} phpize . + +post-install: + ${RM} -f ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} lib/php -type f >> ${TMPPLIST} + ${MKDIR} ${STAGEDIR}${PREFIX}/include/php + cd ${STAGEDIR}${PREFIX} && ${FIND} include/php -type f >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds lib/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds include/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + +.include +#EOF diff --git a/php74/php74-mod-dba/distinfo b/php74/php74-mod-dba/distinfo new file mode 100644 index 00000000..c37ff4ba --- /dev/null +++ b/php74/php74-mod-dba/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1756241990 +SHA256 (php-7.4.33.tar.xz) = 924846abf93bc613815c55dd3f5809377813ac62a9ec4eb3778675b82a27b927 +SIZE (php-7.4.33.tar.xz) = 10420144 diff --git a/php74/php74-mod-dba/pkg-descr b/php74/php74-mod-dba/pkg-descr new file mode 100644 index 00000000..d6e42932 --- /dev/null +++ b/php74/php74-mod-dba/pkg-descr @@ -0,0 +1,9 @@ +PHP, which stands for "PHP: Hypertext Preprocessor" is a widely-used Open +Source general-purpose scripting language that is especially suited for +Web development and can be embedded into HTML. Its syntax draws upon C, +Java, and Perl, and is easy to learn. The main goal of the language is to +allow web developers to write dynamically generated webpages quickly, but +you can do much more with PHP. + +WWW: http://www.php.net/ + diff --git a/php74/php74-mod-dom/Makefile b/php74/php74-mod-dom/Makefile new file mode 100644 index 00000000..bad12d76 --- /dev/null +++ b/php74/php74-mod-dom/Makefile @@ -0,0 +1,63 @@ +# +# $Id: Makefile 2636 2009-09-30 12:09:37Z root $ +# +PORTNAME= php${PORTVERSION:R:S/.//g}-mod-${MODULE_NAME} +PORTVERSION= 7.4.33 +CATEGORIES= lang devel www +MASTER_SITES= ${MASTER_SITE_PHP} +MASTER_SITE_SUBDIR= distributions +DISTNAME= php-${PORTVERSION} + +MASTER_SITES+= http://dk.php.net/%SUBDIR%/ +MASTER_SITES+= http://de.php.net/%SUBDIR%/ +MASTER_SITES+= http://es.php.net/%SUBDIR%/ +MASTER_SITES+= http://fi.php.net/%SUBDIR%/ +MASTER_SITES+= http://fr.php.net/%SUBDIR%/ +MASTER_SITES+= http://gr.php.net/%SUBDIR%/ +MASTER_SITES+= http://it.php.net/%SUBDIR%/ +MASTER_SITES+= http://jp.php.net/%SUBDIR%/ +MASTER_SITES+= http://se.php.net/%SUBDIR%/ +MASTER_SITES+= http://uk.php.net/%SUBDIR%/ +MASTER_SITES+= http://us2.php.net/%SUBDIR%/ +MASTER_SITES+= http://br.php.net/%SUBDIR%/ +MASTER_SITES+= http://cn.php.net/%SUBDIR%/ + +MASTER_SITE_SUBDIR= distributions + +MAINTAINER= onborodin@gmail.com +COMMENT= PHP Scripting Language (Apache Module and CLI) + +BUILD_DEPENDS+= php:lang/php${PORTVERSION:R:S/.//g} +#RUN_DEPENDS +#BUILD_DEPENDS+= ${RUN_DEPENDS} +LIB_DEPENDS+= libxml2.so:text/libxml2 + + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} +WRKSRC= ${WRKDIR}/${DISTNAME}/ext/${MODULE_NAME} + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} + +USES+= tar:xz gmake +GNU_CONFIGURE= yes +CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/php +LDFLAGS= -L${LOCALBASE}/lib + +MODULE_NAME= dom +DESTDIRNAME= INSTALL_ROOT +#EXTDIR +#INCLUDEDIR + +pre-configure: + cd ${WRKSRC} && ${CONFIGURE_ENV} phpize . + +post-install: + ${RM} -f ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} lib/php -type f >> ${TMPPLIST} + ${MKDIR} ${STAGEDIR}${PREFIX}/include/php + cd ${STAGEDIR}${PREFIX} && ${FIND} include/php -type f >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds lib/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds include/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + +.include +#EOF diff --git a/php74/php74-mod-dom/Makefile-e b/php74/php74-mod-dom/Makefile-e new file mode 100644 index 00000000..11c46092 --- /dev/null +++ b/php74/php74-mod-dom/Makefile-e @@ -0,0 +1,63 @@ +# +# $Id: Makefile 2636 2009-09-30 12:09:37Z root $ +# +PORTNAME= php${PORTVERSION:R:S/.//g}-mod-${MODULE_NAME} +PORTVERSION= 7.4.29 +CATEGORIES= lang devel www +MASTER_SITES= ${MASTER_SITE_PHP} +MASTER_SITE_SUBDIR= distributions +DISTNAME= php-${PORTVERSION} + +MASTER_SITES+= http://dk.php.net/%SUBDIR%/ +MASTER_SITES+= http://de.php.net/%SUBDIR%/ +MASTER_SITES+= http://es.php.net/%SUBDIR%/ +MASTER_SITES+= http://fi.php.net/%SUBDIR%/ +MASTER_SITES+= http://fr.php.net/%SUBDIR%/ +MASTER_SITES+= http://gr.php.net/%SUBDIR%/ +MASTER_SITES+= http://it.php.net/%SUBDIR%/ +MASTER_SITES+= http://jp.php.net/%SUBDIR%/ +MASTER_SITES+= http://se.php.net/%SUBDIR%/ +MASTER_SITES+= http://uk.php.net/%SUBDIR%/ +MASTER_SITES+= http://us2.php.net/%SUBDIR%/ +MASTER_SITES+= http://br.php.net/%SUBDIR%/ +MASTER_SITES+= http://cn.php.net/%SUBDIR%/ + +MASTER_SITE_SUBDIR= distributions + +MAINTAINER= onborodin@gmail.com +COMMENT= PHP Scripting Language (Apache Module and CLI) + +BUILD_DEPENDS+= php:lang/php${PORTVERSION:R:S/.//g} +#RUN_DEPENDS +#BUILD_DEPENDS+= ${RUN_DEPENDS} +LIB_DEPENDS+= libxml2.so:text/libxml2 + + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} +WRKSRC= ${WRKDIR}/${DISTNAME}/ext/${MODULE_NAME} + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} + +USES+= tar:xz gmake +GNU_CONFIGURE= yes +CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/php +LDFLAGS= -L${LOCALBASE}/lib + +MODULE_NAME= dom +DESTDIRNAME= INSTALL_ROOT +#EXTDIR +#INCLUDEDIR + +pre-configure: + cd ${WRKSRC} && ${CONFIGURE_ENV} phpize . + +post-install: + ${RM} -f ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} lib/php -type f >> ${TMPPLIST} + ${MKDIR} ${STAGEDIR}${PREFIX}/include/php + cd ${STAGEDIR}${PREFIX} && ${FIND} include/php -type f >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds lib/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds include/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + +.include +#EOF diff --git a/php74/php74-mod-dom/distinfo b/php74/php74-mod-dom/distinfo new file mode 100644 index 00000000..c37ff4ba --- /dev/null +++ b/php74/php74-mod-dom/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1756241990 +SHA256 (php-7.4.33.tar.xz) = 924846abf93bc613815c55dd3f5809377813ac62a9ec4eb3778675b82a27b927 +SIZE (php-7.4.33.tar.xz) = 10420144 diff --git a/php74/php74-mod-dom/pkg-descr b/php74/php74-mod-dom/pkg-descr new file mode 100644 index 00000000..d6e42932 --- /dev/null +++ b/php74/php74-mod-dom/pkg-descr @@ -0,0 +1,9 @@ +PHP, which stands for "PHP: Hypertext Preprocessor" is a widely-used Open +Source general-purpose scripting language that is especially suited for +Web development and can be embedded into HTML. Its syntax draws upon C, +Java, and Perl, and is easy to learn. The main goal of the language is to +allow web developers to write dynamically generated webpages quickly, but +you can do much more with PHP. + +WWW: http://www.php.net/ + diff --git a/php74/php74-mod-enchant/Makefile b/php74/php74-mod-enchant/Makefile new file mode 100644 index 00000000..46ab1f62 --- /dev/null +++ b/php74/php74-mod-enchant/Makefile @@ -0,0 +1,63 @@ +# +# $Id: Makefile 2636 2009-09-30 12:09:37Z root $ +# +PORTNAME= php${PORTVERSION:R:S/.//g}-mod-${MODULE_NAME} +PORTVERSION= 7.4.33 +CATEGORIES= lang devel www +MASTER_SITES= ${MASTER_SITE_PHP} +MASTER_SITE_SUBDIR= distributions +DISTNAME= php-${PORTVERSION} + +MASTER_SITES+= http://dk.php.net/%SUBDIR%/ +MASTER_SITES+= http://de.php.net/%SUBDIR%/ +MASTER_SITES+= http://es.php.net/%SUBDIR%/ +MASTER_SITES+= http://fi.php.net/%SUBDIR%/ +MASTER_SITES+= http://fr.php.net/%SUBDIR%/ +MASTER_SITES+= http://gr.php.net/%SUBDIR%/ +MASTER_SITES+= http://it.php.net/%SUBDIR%/ +MASTER_SITES+= http://jp.php.net/%SUBDIR%/ +MASTER_SITES+= http://se.php.net/%SUBDIR%/ +MASTER_SITES+= http://uk.php.net/%SUBDIR%/ +MASTER_SITES+= http://us2.php.net/%SUBDIR%/ +MASTER_SITES+= http://br.php.net/%SUBDIR%/ +MASTER_SITES+= http://cn.php.net/%SUBDIR%/ + +MASTER_SITE_SUBDIR= distributions + +MAINTAINER= onborodin@gmail.com +COMMENT= PHP Scripting Language (Apache Module and CLI) + +BUILD_DEPENDS+= php:lang/php${PORTVERSION:R:S/.//g} +#RUN_DEPENDS +#BUILD_DEPENDS+= ${RUN_DEPENDS} +LIB_DEPENDS+= libenchant.so:text/libenchant + + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} +WRKSRC= ${WRKDIR}/${DISTNAME}/ext/${MODULE_NAME} + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} + +USES+= tar:xz gmake +GNU_CONFIGURE= yes +CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/php +LDFLAGS= -L${LOCALBASE}/lib + +MODULE_NAME= enchant +DESTDIRNAME= INSTALL_ROOT +#EXTDIR +#INCLUDEDIR + +pre-configure: + cd ${WRKSRC} && ${CONFIGURE_ENV} phpize . + +post-install: + ${RM} -f ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} lib/php -type f >> ${TMPPLIST} + ${MKDIR} ${STAGEDIR}${PREFIX}/include/php + cd ${STAGEDIR}${PREFIX} && ${FIND} include/php -type f >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds lib/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds include/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + +.include +#EOF diff --git a/php74/php74-mod-enchant/Makefile-e b/php74/php74-mod-enchant/Makefile-e new file mode 100644 index 00000000..8965a201 --- /dev/null +++ b/php74/php74-mod-enchant/Makefile-e @@ -0,0 +1,63 @@ +# +# $Id: Makefile 2636 2009-09-30 12:09:37Z root $ +# +PORTNAME= php${PORTVERSION:R:S/.//g}-mod-${MODULE_NAME} +PORTVERSION= 7.4.29 +CATEGORIES= lang devel www +MASTER_SITES= ${MASTER_SITE_PHP} +MASTER_SITE_SUBDIR= distributions +DISTNAME= php-${PORTVERSION} + +MASTER_SITES+= http://dk.php.net/%SUBDIR%/ +MASTER_SITES+= http://de.php.net/%SUBDIR%/ +MASTER_SITES+= http://es.php.net/%SUBDIR%/ +MASTER_SITES+= http://fi.php.net/%SUBDIR%/ +MASTER_SITES+= http://fr.php.net/%SUBDIR%/ +MASTER_SITES+= http://gr.php.net/%SUBDIR%/ +MASTER_SITES+= http://it.php.net/%SUBDIR%/ +MASTER_SITES+= http://jp.php.net/%SUBDIR%/ +MASTER_SITES+= http://se.php.net/%SUBDIR%/ +MASTER_SITES+= http://uk.php.net/%SUBDIR%/ +MASTER_SITES+= http://us2.php.net/%SUBDIR%/ +MASTER_SITES+= http://br.php.net/%SUBDIR%/ +MASTER_SITES+= http://cn.php.net/%SUBDIR%/ + +MASTER_SITE_SUBDIR= distributions + +MAINTAINER= onborodin@gmail.com +COMMENT= PHP Scripting Language (Apache Module and CLI) + +BUILD_DEPENDS+= php:lang/php${PORTVERSION:R:S/.//g} +#RUN_DEPENDS +#BUILD_DEPENDS+= ${RUN_DEPENDS} +LIB_DEPENDS+= libenchant.so:text/libenchant + + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} +WRKSRC= ${WRKDIR}/${DISTNAME}/ext/${MODULE_NAME} + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} + +USES+= tar:xz gmake +GNU_CONFIGURE= yes +CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/php +LDFLAGS= -L${LOCALBASE}/lib + +MODULE_NAME= enchant +DESTDIRNAME= INSTALL_ROOT +#EXTDIR +#INCLUDEDIR + +pre-configure: + cd ${WRKSRC} && ${CONFIGURE_ENV} phpize . + +post-install: + ${RM} -f ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} lib/php -type f >> ${TMPPLIST} + ${MKDIR} ${STAGEDIR}${PREFIX}/include/php + cd ${STAGEDIR}${PREFIX} && ${FIND} include/php -type f >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds lib/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds include/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + +.include +#EOF diff --git a/php74/php74-mod-enchant/distinfo b/php74/php74-mod-enchant/distinfo new file mode 100644 index 00000000..c37ff4ba --- /dev/null +++ b/php74/php74-mod-enchant/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1756241990 +SHA256 (php-7.4.33.tar.xz) = 924846abf93bc613815c55dd3f5809377813ac62a9ec4eb3778675b82a27b927 +SIZE (php-7.4.33.tar.xz) = 10420144 diff --git a/php74/php74-mod-enchant/pkg-descr b/php74/php74-mod-enchant/pkg-descr new file mode 100644 index 00000000..d6e42932 --- /dev/null +++ b/php74/php74-mod-enchant/pkg-descr @@ -0,0 +1,9 @@ +PHP, which stands for "PHP: Hypertext Preprocessor" is a widely-used Open +Source general-purpose scripting language that is especially suited for +Web development and can be embedded into HTML. Its syntax draws upon C, +Java, and Perl, and is easy to learn. The main goal of the language is to +allow web developers to write dynamically generated webpages quickly, but +you can do much more with PHP. + +WWW: http://www.php.net/ + diff --git a/php74/php74-mod-exif/Makefile b/php74/php74-mod-exif/Makefile new file mode 100644 index 00000000..6729e5d3 --- /dev/null +++ b/php74/php74-mod-exif/Makefile @@ -0,0 +1,63 @@ +# +# $Id: Makefile 2636 2009-09-30 12:09:37Z root $ +# +PORTNAME= php${PORTVERSION:R:S/.//g}-mod-${MODULE_NAME} +PORTVERSION= 7.4.33 +CATEGORIES= lang devel www +MASTER_SITES= ${MASTER_SITE_PHP} +MASTER_SITE_SUBDIR= distributions +DISTNAME= php-${PORTVERSION} + +MASTER_SITES+= http://dk.php.net/%SUBDIR%/ +MASTER_SITES+= http://de.php.net/%SUBDIR%/ +MASTER_SITES+= http://es.php.net/%SUBDIR%/ +MASTER_SITES+= http://fi.php.net/%SUBDIR%/ +MASTER_SITES+= http://fr.php.net/%SUBDIR%/ +MASTER_SITES+= http://gr.php.net/%SUBDIR%/ +MASTER_SITES+= http://it.php.net/%SUBDIR%/ +MASTER_SITES+= http://jp.php.net/%SUBDIR%/ +MASTER_SITES+= http://se.php.net/%SUBDIR%/ +MASTER_SITES+= http://uk.php.net/%SUBDIR%/ +MASTER_SITES+= http://us2.php.net/%SUBDIR%/ +MASTER_SITES+= http://br.php.net/%SUBDIR%/ +MASTER_SITES+= http://cn.php.net/%SUBDIR%/ + +MASTER_SITE_SUBDIR= distributions + +MAINTAINER= onborodin@gmail.com +COMMENT= PHP Scripting Language (Apache Module and CLI) + +BUILD_DEPENDS+= php:lang/php${PORTVERSION:R:S/.//g} +#RUN_DEPENDS +#BUILD_DEPENDS+= ${RUN_DEPENDS} +LIB_DEPENDS+= libexif.so:graph/libexif + + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} +WRKSRC= ${WRKDIR}/${DISTNAME}/ext/${MODULE_NAME} + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} + +USES+= tar:xz gmake +GNU_CONFIGURE= yes +CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/php +LDFLAGS= -L${LOCALBASE}/lib + +MODULE_NAME= exif +DESTDIRNAME= INSTALL_ROOT +#EXTDIR +#INCLUDEDIR + +pre-configure: + cd ${WRKSRC} && ${CONFIGURE_ENV} phpize . + +post-install: + ${RM} -f ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} lib/php -type f >> ${TMPPLIST} + ${MKDIR} ${STAGEDIR}${PREFIX}/include/php + cd ${STAGEDIR}${PREFIX} && ${FIND} include/php -type f >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds lib/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds include/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + +.include +#EOF diff --git a/php74/php74-mod-exif/Makefile-e b/php74/php74-mod-exif/Makefile-e new file mode 100644 index 00000000..4b26098e --- /dev/null +++ b/php74/php74-mod-exif/Makefile-e @@ -0,0 +1,63 @@ +# +# $Id: Makefile 2636 2009-09-30 12:09:37Z root $ +# +PORTNAME= php${PORTVERSION:R:S/.//g}-mod-${MODULE_NAME} +PORTVERSION= 7.4.29 +CATEGORIES= lang devel www +MASTER_SITES= ${MASTER_SITE_PHP} +MASTER_SITE_SUBDIR= distributions +DISTNAME= php-${PORTVERSION} + +MASTER_SITES+= http://dk.php.net/%SUBDIR%/ +MASTER_SITES+= http://de.php.net/%SUBDIR%/ +MASTER_SITES+= http://es.php.net/%SUBDIR%/ +MASTER_SITES+= http://fi.php.net/%SUBDIR%/ +MASTER_SITES+= http://fr.php.net/%SUBDIR%/ +MASTER_SITES+= http://gr.php.net/%SUBDIR%/ +MASTER_SITES+= http://it.php.net/%SUBDIR%/ +MASTER_SITES+= http://jp.php.net/%SUBDIR%/ +MASTER_SITES+= http://se.php.net/%SUBDIR%/ +MASTER_SITES+= http://uk.php.net/%SUBDIR%/ +MASTER_SITES+= http://us2.php.net/%SUBDIR%/ +MASTER_SITES+= http://br.php.net/%SUBDIR%/ +MASTER_SITES+= http://cn.php.net/%SUBDIR%/ + +MASTER_SITE_SUBDIR= distributions + +MAINTAINER= onborodin@gmail.com +COMMENT= PHP Scripting Language (Apache Module and CLI) + +BUILD_DEPENDS+= php:lang/php${PORTVERSION:R:S/.//g} +#RUN_DEPENDS +#BUILD_DEPENDS+= ${RUN_DEPENDS} +LIB_DEPENDS+= libexif.so:graph/libexif + + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} +WRKSRC= ${WRKDIR}/${DISTNAME}/ext/${MODULE_NAME} + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} + +USES+= tar:xz gmake +GNU_CONFIGURE= yes +CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/php +LDFLAGS= -L${LOCALBASE}/lib + +MODULE_NAME= exif +DESTDIRNAME= INSTALL_ROOT +#EXTDIR +#INCLUDEDIR + +pre-configure: + cd ${WRKSRC} && ${CONFIGURE_ENV} phpize . + +post-install: + ${RM} -f ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} lib/php -type f >> ${TMPPLIST} + ${MKDIR} ${STAGEDIR}${PREFIX}/include/php + cd ${STAGEDIR}${PREFIX} && ${FIND} include/php -type f >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds lib/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds include/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + +.include +#EOF diff --git a/php74/php74-mod-exif/distinfo b/php74/php74-mod-exif/distinfo new file mode 100644 index 00000000..ac80d37a --- /dev/null +++ b/php74/php74-mod-exif/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1756241991 +SHA256 (php-7.4.33.tar.xz) = 924846abf93bc613815c55dd3f5809377813ac62a9ec4eb3778675b82a27b927 +SIZE (php-7.4.33.tar.xz) = 10420144 diff --git a/php74/php74-mod-exif/pkg-descr b/php74/php74-mod-exif/pkg-descr new file mode 100644 index 00000000..d6e42932 --- /dev/null +++ b/php74/php74-mod-exif/pkg-descr @@ -0,0 +1,9 @@ +PHP, which stands for "PHP: Hypertext Preprocessor" is a widely-used Open +Source general-purpose scripting language that is especially suited for +Web development and can be embedded into HTML. Its syntax draws upon C, +Java, and Perl, and is easy to learn. The main goal of the language is to +allow web developers to write dynamically generated webpages quickly, but +you can do much more with PHP. + +WWW: http://www.php.net/ + diff --git a/php74/php74-mod-fileinfo/Makefile b/php74/php74-mod-fileinfo/Makefile new file mode 100644 index 00000000..9f3c16d6 --- /dev/null +++ b/php74/php74-mod-fileinfo/Makefile @@ -0,0 +1,62 @@ +# +# $Id: Makefile 2636 2009-09-30 12:09:37Z root $ +# +PORTNAME= php${PORTVERSION:R:S/.//g}-mod-${MODULE_NAME} +PORTVERSION= 7.4.33 +CATEGORIES= lang devel www +MASTER_SITES= ${MASTER_SITE_PHP} +MASTER_SITE_SUBDIR= distributions +DISTNAME= php-${PORTVERSION} + +MASTER_SITES+= http://dk.php.net/%SUBDIR%/ +MASTER_SITES+= http://de.php.net/%SUBDIR%/ +MASTER_SITES+= http://es.php.net/%SUBDIR%/ +MASTER_SITES+= http://fi.php.net/%SUBDIR%/ +MASTER_SITES+= http://fr.php.net/%SUBDIR%/ +MASTER_SITES+= http://gr.php.net/%SUBDIR%/ +MASTER_SITES+= http://it.php.net/%SUBDIR%/ +MASTER_SITES+= http://jp.php.net/%SUBDIR%/ +MASTER_SITES+= http://se.php.net/%SUBDIR%/ +MASTER_SITES+= http://uk.php.net/%SUBDIR%/ +MASTER_SITES+= http://us2.php.net/%SUBDIR%/ +MASTER_SITES+= http://br.php.net/%SUBDIR%/ +MASTER_SITES+= http://cn.php.net/%SUBDIR%/ + +MASTER_SITE_SUBDIR= distributions + +MAINTAINER= onborodin@gmail.com +COMMENT= PHP Scripting Language (Apache Module and CLI) + +BUILD_DEPENDS+= php:lang/php${PORTVERSION:R:S/.//g} +#RUN_DEPENDS +#BUILD_DEPENDS+= ${RUN_DEPENDS} + + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} +WRKSRC= ${WRKDIR}/${DISTNAME}/ext/${MODULE_NAME} + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} + +USES+= tar:xz gmake +GNU_CONFIGURE= yes +CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/php +LDFLAGS= -L${LOCALBASE}/lib + +MODULE_NAME= fileinfo +DESTDIRNAME= INSTALL_ROOT +#EXTDIR +#INCLUDEDIR + +pre-configure: + cd ${WRKSRC} && ${CONFIGURE_ENV} phpize . + +post-install: + ${RM} -f ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} lib/php -type f >> ${TMPPLIST} + ${MKDIR} ${STAGEDIR}${PREFIX}/include/php + cd ${STAGEDIR}${PREFIX} && ${FIND} include/php -type f >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds lib/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds include/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + +.include +#EOF diff --git a/php74/php74-mod-fileinfo/Makefile-e b/php74/php74-mod-fileinfo/Makefile-e new file mode 100644 index 00000000..b0e44d39 --- /dev/null +++ b/php74/php74-mod-fileinfo/Makefile-e @@ -0,0 +1,62 @@ +# +# $Id: Makefile 2636 2009-09-30 12:09:37Z root $ +# +PORTNAME= php${PORTVERSION:R:S/.//g}-mod-${MODULE_NAME} +PORTVERSION= 7.4.29 +CATEGORIES= lang devel www +MASTER_SITES= ${MASTER_SITE_PHP} +MASTER_SITE_SUBDIR= distributions +DISTNAME= php-${PORTVERSION} + +MASTER_SITES+= http://dk.php.net/%SUBDIR%/ +MASTER_SITES+= http://de.php.net/%SUBDIR%/ +MASTER_SITES+= http://es.php.net/%SUBDIR%/ +MASTER_SITES+= http://fi.php.net/%SUBDIR%/ +MASTER_SITES+= http://fr.php.net/%SUBDIR%/ +MASTER_SITES+= http://gr.php.net/%SUBDIR%/ +MASTER_SITES+= http://it.php.net/%SUBDIR%/ +MASTER_SITES+= http://jp.php.net/%SUBDIR%/ +MASTER_SITES+= http://se.php.net/%SUBDIR%/ +MASTER_SITES+= http://uk.php.net/%SUBDIR%/ +MASTER_SITES+= http://us2.php.net/%SUBDIR%/ +MASTER_SITES+= http://br.php.net/%SUBDIR%/ +MASTER_SITES+= http://cn.php.net/%SUBDIR%/ + +MASTER_SITE_SUBDIR= distributions + +MAINTAINER= onborodin@gmail.com +COMMENT= PHP Scripting Language (Apache Module and CLI) + +BUILD_DEPENDS+= php:lang/php${PORTVERSION:R:S/.//g} +#RUN_DEPENDS +#BUILD_DEPENDS+= ${RUN_DEPENDS} + + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} +WRKSRC= ${WRKDIR}/${DISTNAME}/ext/${MODULE_NAME} + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} + +USES+= tar:xz gmake +GNU_CONFIGURE= yes +CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/php +LDFLAGS= -L${LOCALBASE}/lib + +MODULE_NAME= fileinfo +DESTDIRNAME= INSTALL_ROOT +#EXTDIR +#INCLUDEDIR + +pre-configure: + cd ${WRKSRC} && ${CONFIGURE_ENV} phpize . + +post-install: + ${RM} -f ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} lib/php -type f >> ${TMPPLIST} + ${MKDIR} ${STAGEDIR}${PREFIX}/include/php + cd ${STAGEDIR}${PREFIX} && ${FIND} include/php -type f >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds lib/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds include/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + +.include +#EOF diff --git a/php74/php74-mod-fileinfo/distinfo b/php74/php74-mod-fileinfo/distinfo new file mode 100644 index 00000000..ac80d37a --- /dev/null +++ b/php74/php74-mod-fileinfo/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1756241991 +SHA256 (php-7.4.33.tar.xz) = 924846abf93bc613815c55dd3f5809377813ac62a9ec4eb3778675b82a27b927 +SIZE (php-7.4.33.tar.xz) = 10420144 diff --git a/php74/php74-mod-fileinfo/pkg-descr b/php74/php74-mod-fileinfo/pkg-descr new file mode 100644 index 00000000..d6e42932 --- /dev/null +++ b/php74/php74-mod-fileinfo/pkg-descr @@ -0,0 +1,9 @@ +PHP, which stands for "PHP: Hypertext Preprocessor" is a widely-used Open +Source general-purpose scripting language that is especially suited for +Web development and can be embedded into HTML. Its syntax draws upon C, +Java, and Perl, and is easy to learn. The main goal of the language is to +allow web developers to write dynamically generated webpages quickly, but +you can do much more with PHP. + +WWW: http://www.php.net/ + diff --git a/php74/php74-mod-filter/Makefile b/php74/php74-mod-filter/Makefile new file mode 100644 index 00000000..8808876b --- /dev/null +++ b/php74/php74-mod-filter/Makefile @@ -0,0 +1,62 @@ +# +# $Id: Makefile 2636 2009-09-30 12:09:37Z root $ +# +PORTNAME= php${PORTVERSION:R:S/.//g}-mod-${MODULE_NAME} +PORTVERSION= 7.4.33 +CATEGORIES= lang devel www +MASTER_SITES= ${MASTER_SITE_PHP} +MASTER_SITE_SUBDIR= distributions +DISTNAME= php-${PORTVERSION} + +MASTER_SITES+= http://dk.php.net/%SUBDIR%/ +MASTER_SITES+= http://de.php.net/%SUBDIR%/ +MASTER_SITES+= http://es.php.net/%SUBDIR%/ +MASTER_SITES+= http://fi.php.net/%SUBDIR%/ +MASTER_SITES+= http://fr.php.net/%SUBDIR%/ +MASTER_SITES+= http://gr.php.net/%SUBDIR%/ +MASTER_SITES+= http://it.php.net/%SUBDIR%/ +MASTER_SITES+= http://jp.php.net/%SUBDIR%/ +MASTER_SITES+= http://se.php.net/%SUBDIR%/ +MASTER_SITES+= http://uk.php.net/%SUBDIR%/ +MASTER_SITES+= http://us2.php.net/%SUBDIR%/ +MASTER_SITES+= http://br.php.net/%SUBDIR%/ +MASTER_SITES+= http://cn.php.net/%SUBDIR%/ + +MASTER_SITE_SUBDIR= distributions + +MAINTAINER= onborodin@gmail.com +COMMENT= PHP Scripting Language (Apache Module and CLI) + +BUILD_DEPENDS+= php:lang/php${PORTVERSION:R:S/.//g} +#RUN_DEPENDS +#BUILD_DEPENDS+= ${RUN_DEPENDS} + + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} +WRKSRC= ${WRKDIR}/${DISTNAME}/ext/${MODULE_NAME} + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} + +USES+= tar:xz gmake +GNU_CONFIGURE= yes +CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/php +LDFLAGS= -L${LOCALBASE}/lib + +MODULE_NAME= filter +DESTDIRNAME= INSTALL_ROOT +#EXTDIR +#INCLUDEDIR + +pre-configure: + cd ${WRKSRC} && ${CONFIGURE_ENV} phpize . + +post-install: + ${RM} -f ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} lib/php -type f >> ${TMPPLIST} + ${MKDIR} ${STAGEDIR}${PREFIX}/include/php + cd ${STAGEDIR}${PREFIX} && ${FIND} include/php -type f >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds lib/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds include/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + +.include +#EOF diff --git a/php74/php74-mod-filter/Makefile-e b/php74/php74-mod-filter/Makefile-e new file mode 100644 index 00000000..12dd79bb --- /dev/null +++ b/php74/php74-mod-filter/Makefile-e @@ -0,0 +1,62 @@ +# +# $Id: Makefile 2636 2009-09-30 12:09:37Z root $ +# +PORTNAME= php${PORTVERSION:R:S/.//g}-mod-${MODULE_NAME} +PORTVERSION= 7.4.29 +CATEGORIES= lang devel www +MASTER_SITES= ${MASTER_SITE_PHP} +MASTER_SITE_SUBDIR= distributions +DISTNAME= php-${PORTVERSION} + +MASTER_SITES+= http://dk.php.net/%SUBDIR%/ +MASTER_SITES+= http://de.php.net/%SUBDIR%/ +MASTER_SITES+= http://es.php.net/%SUBDIR%/ +MASTER_SITES+= http://fi.php.net/%SUBDIR%/ +MASTER_SITES+= http://fr.php.net/%SUBDIR%/ +MASTER_SITES+= http://gr.php.net/%SUBDIR%/ +MASTER_SITES+= http://it.php.net/%SUBDIR%/ +MASTER_SITES+= http://jp.php.net/%SUBDIR%/ +MASTER_SITES+= http://se.php.net/%SUBDIR%/ +MASTER_SITES+= http://uk.php.net/%SUBDIR%/ +MASTER_SITES+= http://us2.php.net/%SUBDIR%/ +MASTER_SITES+= http://br.php.net/%SUBDIR%/ +MASTER_SITES+= http://cn.php.net/%SUBDIR%/ + +MASTER_SITE_SUBDIR= distributions + +MAINTAINER= onborodin@gmail.com +COMMENT= PHP Scripting Language (Apache Module and CLI) + +BUILD_DEPENDS+= php:lang/php${PORTVERSION:R:S/.//g} +#RUN_DEPENDS +#BUILD_DEPENDS+= ${RUN_DEPENDS} + + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} +WRKSRC= ${WRKDIR}/${DISTNAME}/ext/${MODULE_NAME} + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} + +USES+= tar:xz gmake +GNU_CONFIGURE= yes +CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/php +LDFLAGS= -L${LOCALBASE}/lib + +MODULE_NAME= filter +DESTDIRNAME= INSTALL_ROOT +#EXTDIR +#INCLUDEDIR + +pre-configure: + cd ${WRKSRC} && ${CONFIGURE_ENV} phpize . + +post-install: + ${RM} -f ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} lib/php -type f >> ${TMPPLIST} + ${MKDIR} ${STAGEDIR}${PREFIX}/include/php + cd ${STAGEDIR}${PREFIX} && ${FIND} include/php -type f >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds lib/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds include/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + +.include +#EOF diff --git a/php74/php74-mod-filter/distinfo b/php74/php74-mod-filter/distinfo new file mode 100644 index 00000000..ac80d37a --- /dev/null +++ b/php74/php74-mod-filter/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1756241991 +SHA256 (php-7.4.33.tar.xz) = 924846abf93bc613815c55dd3f5809377813ac62a9ec4eb3778675b82a27b927 +SIZE (php-7.4.33.tar.xz) = 10420144 diff --git a/php74/php74-mod-filter/pkg-descr b/php74/php74-mod-filter/pkg-descr new file mode 100644 index 00000000..d6e42932 --- /dev/null +++ b/php74/php74-mod-filter/pkg-descr @@ -0,0 +1,9 @@ +PHP, which stands for "PHP: Hypertext Preprocessor" is a widely-used Open +Source general-purpose scripting language that is especially suited for +Web development and can be embedded into HTML. Its syntax draws upon C, +Java, and Perl, and is easy to learn. The main goal of the language is to +allow web developers to write dynamically generated webpages quickly, but +you can do much more with PHP. + +WWW: http://www.php.net/ + diff --git a/php74/php74-mod-ftp/Makefile b/php74/php74-mod-ftp/Makefile new file mode 100644 index 00000000..f8e64477 --- /dev/null +++ b/php74/php74-mod-ftp/Makefile @@ -0,0 +1,62 @@ +# +# $Id: Makefile 2636 2009-09-30 12:09:37Z root $ +# +PORTNAME= php${PORTVERSION:R:S/.//g}-mod-${MODULE_NAME} +PORTVERSION= 7.4.33 +CATEGORIES= lang devel www +MASTER_SITES= ${MASTER_SITE_PHP} +MASTER_SITE_SUBDIR= distributions +DISTNAME= php-${PORTVERSION} + +MASTER_SITES+= http://dk.php.net/%SUBDIR%/ +MASTER_SITES+= http://de.php.net/%SUBDIR%/ +MASTER_SITES+= http://es.php.net/%SUBDIR%/ +MASTER_SITES+= http://fi.php.net/%SUBDIR%/ +MASTER_SITES+= http://fr.php.net/%SUBDIR%/ +MASTER_SITES+= http://gr.php.net/%SUBDIR%/ +MASTER_SITES+= http://it.php.net/%SUBDIR%/ +MASTER_SITES+= http://jp.php.net/%SUBDIR%/ +MASTER_SITES+= http://se.php.net/%SUBDIR%/ +MASTER_SITES+= http://uk.php.net/%SUBDIR%/ +MASTER_SITES+= http://us2.php.net/%SUBDIR%/ +MASTER_SITES+= http://br.php.net/%SUBDIR%/ +MASTER_SITES+= http://cn.php.net/%SUBDIR%/ + +MASTER_SITE_SUBDIR= distributions + +MAINTAINER= onborodin@gmail.com +COMMENT= PHP Scripting Language (Apache Module and CLI) + +BUILD_DEPENDS+= php:lang/php${PORTVERSION:R:S/.//g} +#RUN_DEPENDS +#BUILD_DEPENDS+= ${RUN_DEPENDS} + + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} +WRKSRC= ${WRKDIR}/${DISTNAME}/ext/${MODULE_NAME} + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} + +USES+= tar:xz gmake +GNU_CONFIGURE= yes +CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/php +LDFLAGS= -L${LOCALBASE}/lib + +MODULE_NAME= ftp +DESTDIRNAME= INSTALL_ROOT +#EXTDIR +#INCLUDEDIR + +pre-configure: + cd ${WRKSRC} && ${CONFIGURE_ENV} phpize . + +post-install: + ${RM} -f ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} lib/php -type f >> ${TMPPLIST} + ${MKDIR} ${STAGEDIR}${PREFIX}/include/php + cd ${STAGEDIR}${PREFIX} && ${FIND} include/php -type f >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds lib/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds include/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + +.include +#EOF diff --git a/php74/php74-mod-ftp/Makefile-e b/php74/php74-mod-ftp/Makefile-e new file mode 100644 index 00000000..1f258b6c --- /dev/null +++ b/php74/php74-mod-ftp/Makefile-e @@ -0,0 +1,62 @@ +# +# $Id: Makefile 2636 2009-09-30 12:09:37Z root $ +# +PORTNAME= php${PORTVERSION:R:S/.//g}-mod-${MODULE_NAME} +PORTVERSION= 7.4.29 +CATEGORIES= lang devel www +MASTER_SITES= ${MASTER_SITE_PHP} +MASTER_SITE_SUBDIR= distributions +DISTNAME= php-${PORTVERSION} + +MASTER_SITES+= http://dk.php.net/%SUBDIR%/ +MASTER_SITES+= http://de.php.net/%SUBDIR%/ +MASTER_SITES+= http://es.php.net/%SUBDIR%/ +MASTER_SITES+= http://fi.php.net/%SUBDIR%/ +MASTER_SITES+= http://fr.php.net/%SUBDIR%/ +MASTER_SITES+= http://gr.php.net/%SUBDIR%/ +MASTER_SITES+= http://it.php.net/%SUBDIR%/ +MASTER_SITES+= http://jp.php.net/%SUBDIR%/ +MASTER_SITES+= http://se.php.net/%SUBDIR%/ +MASTER_SITES+= http://uk.php.net/%SUBDIR%/ +MASTER_SITES+= http://us2.php.net/%SUBDIR%/ +MASTER_SITES+= http://br.php.net/%SUBDIR%/ +MASTER_SITES+= http://cn.php.net/%SUBDIR%/ + +MASTER_SITE_SUBDIR= distributions + +MAINTAINER= onborodin@gmail.com +COMMENT= PHP Scripting Language (Apache Module and CLI) + +BUILD_DEPENDS+= php:lang/php${PORTVERSION:R:S/.//g} +#RUN_DEPENDS +#BUILD_DEPENDS+= ${RUN_DEPENDS} + + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} +WRKSRC= ${WRKDIR}/${DISTNAME}/ext/${MODULE_NAME} + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} + +USES+= tar:xz gmake +GNU_CONFIGURE= yes +CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/php +LDFLAGS= -L${LOCALBASE}/lib + +MODULE_NAME= ftp +DESTDIRNAME= INSTALL_ROOT +#EXTDIR +#INCLUDEDIR + +pre-configure: + cd ${WRKSRC} && ${CONFIGURE_ENV} phpize . + +post-install: + ${RM} -f ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} lib/php -type f >> ${TMPPLIST} + ${MKDIR} ${STAGEDIR}${PREFIX}/include/php + cd ${STAGEDIR}${PREFIX} && ${FIND} include/php -type f >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds lib/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds include/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + +.include +#EOF diff --git a/php74/php74-mod-ftp/distinfo b/php74/php74-mod-ftp/distinfo new file mode 100644 index 00000000..ac80d37a --- /dev/null +++ b/php74/php74-mod-ftp/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1756241991 +SHA256 (php-7.4.33.tar.xz) = 924846abf93bc613815c55dd3f5809377813ac62a9ec4eb3778675b82a27b927 +SIZE (php-7.4.33.tar.xz) = 10420144 diff --git a/php74/php74-mod-ftp/pkg-descr b/php74/php74-mod-ftp/pkg-descr new file mode 100644 index 00000000..d6e42932 --- /dev/null +++ b/php74/php74-mod-ftp/pkg-descr @@ -0,0 +1,9 @@ +PHP, which stands for "PHP: Hypertext Preprocessor" is a widely-used Open +Source general-purpose scripting language that is especially suited for +Web development and can be embedded into HTML. Its syntax draws upon C, +Java, and Perl, and is easy to learn. The main goal of the language is to +allow web developers to write dynamically generated webpages quickly, but +you can do much more with PHP. + +WWW: http://www.php.net/ + diff --git a/php74/php74-mod-gd/Makefile b/php74/php74-mod-gd/Makefile new file mode 100644 index 00000000..bfa04e58 --- /dev/null +++ b/php74/php74-mod-gd/Makefile @@ -0,0 +1,81 @@ +# +# $Id: Makefile 2636 2009-09-30 12:09:37Z root $ +# +PORTNAME= php${PORTVERSION:R:S/.//g}-mod-${MODULE_NAME} +PORTVERSION= 7.4.33 +CATEGORIES= lang devel www +MASTER_SITES= ${MASTER_SITE_PHP} +MASTER_SITE_SUBDIR= distributions +DISTNAME= php-${PORTVERSION} + +MASTER_SITES+= http://dk.php.net/%SUBDIR%/ +MASTER_SITES+= http://de.php.net/%SUBDIR%/ +MASTER_SITES+= http://es.php.net/%SUBDIR%/ +MASTER_SITES+= http://fi.php.net/%SUBDIR%/ +MASTER_SITES+= http://fr.php.net/%SUBDIR%/ +MASTER_SITES+= http://gr.php.net/%SUBDIR%/ +MASTER_SITES+= http://it.php.net/%SUBDIR%/ +MASTER_SITES+= http://jp.php.net/%SUBDIR%/ +MASTER_SITES+= http://se.php.net/%SUBDIR%/ +MASTER_SITES+= http://uk.php.net/%SUBDIR%/ +MASTER_SITES+= http://us2.php.net/%SUBDIR%/ +MASTER_SITES+= http://br.php.net/%SUBDIR%/ +MASTER_SITES+= http://cn.php.net/%SUBDIR%/ + +MASTER_SITE_SUBDIR= distributions + +MAINTAINER= onborodin@gmail.com +COMMENT= PHP Scripting Language (Apache Module and CLI) + +BUILD_DEPENDS+= php:lang/php${PORTVERSION:R:S/.//g} +#RUN_DEPENDS +#BUILD_DEPENDS+= ${RUN_DEPENDS} +BUILD_DEPENDS+= libgd>=2.1.1:graph/libgd +RUN_DEPENDS+= libgd>=2.1.1:graph/libgd + +LIB_DEPENDS+= libXpm.so:x11/libXpm +LIB_DEPENDS+= libjpeg.so:graph/libjpeg +LIB_DEPENDS+= libpng.so:graph/libpng +LIB_DEPENDS+= libvpx.so:media/libvpx +LIB_DEPENDS+= libfreetype.so:graph/libfreetype2 + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} +WRKSRC= ${WRKDIR}/${DISTNAME}/ext/${MODULE_NAME} + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} + +#CONFIGURE_ENV+= ac_cv_lib_Xpm_XpmFreeXpmImage=no +#CONFIGURE_ENV+= ac_cv_lib_gd_gdImageCreateFromXpm=no + + +USES+= tar:xz gmake +GNU_CONFIGURE= yes +CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/php +LDFLAGS= -L${LOCALBASE}/lib + +CONFIGURE_ARGS+= --with-gd=${LOCALBASE} +CONFIGURE_ARGS+= --with-vpx-dir=${LOCALBASE} +CONFIGURE_ARGS+= --with-jpeg-dir=${LOCALBASE} +CONFIGURE_ARGS+= --with-png-dir=${LOCALBASE} +CONFIGURE_ARGS+= --with-zlib-dir=/usr +CONFIGURE_ARGS+= --with-xpm-dir=${LOCALBASE} +CONFIGURE_ARGS+= --with-freetype-dir=${LOCALBASE} + +MODULE_NAME= gd +DESTDIRNAME= INSTALL_ROOT +#EXTDIR +#INCLUDEDIR + +pre-configure: + cd ${WRKSRC} && ${CONFIGURE_ENV} phpize . + +post-install: + ${RM} -f ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} lib/php -type f >> ${TMPPLIST} + ${MKDIR} ${STAGEDIR}${PREFIX}/include/php + cd ${STAGEDIR}${PREFIX} && ${FIND} include/php -type f >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds lib/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds include/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + +.include +#EOF diff --git a/php74/php74-mod-gd/Makefile-e b/php74/php74-mod-gd/Makefile-e new file mode 100644 index 00000000..9c427d80 --- /dev/null +++ b/php74/php74-mod-gd/Makefile-e @@ -0,0 +1,81 @@ +# +# $Id: Makefile 2636 2009-09-30 12:09:37Z root $ +# +PORTNAME= php${PORTVERSION:R:S/.//g}-mod-${MODULE_NAME} +PORTVERSION= 7.4.29 +CATEGORIES= lang devel www +MASTER_SITES= ${MASTER_SITE_PHP} +MASTER_SITE_SUBDIR= distributions +DISTNAME= php-${PORTVERSION} + +MASTER_SITES+= http://dk.php.net/%SUBDIR%/ +MASTER_SITES+= http://de.php.net/%SUBDIR%/ +MASTER_SITES+= http://es.php.net/%SUBDIR%/ +MASTER_SITES+= http://fi.php.net/%SUBDIR%/ +MASTER_SITES+= http://fr.php.net/%SUBDIR%/ +MASTER_SITES+= http://gr.php.net/%SUBDIR%/ +MASTER_SITES+= http://it.php.net/%SUBDIR%/ +MASTER_SITES+= http://jp.php.net/%SUBDIR%/ +MASTER_SITES+= http://se.php.net/%SUBDIR%/ +MASTER_SITES+= http://uk.php.net/%SUBDIR%/ +MASTER_SITES+= http://us2.php.net/%SUBDIR%/ +MASTER_SITES+= http://br.php.net/%SUBDIR%/ +MASTER_SITES+= http://cn.php.net/%SUBDIR%/ + +MASTER_SITE_SUBDIR= distributions + +MAINTAINER= onborodin@gmail.com +COMMENT= PHP Scripting Language (Apache Module and CLI) + +BUILD_DEPENDS+= php:lang/php${PORTVERSION:R:S/.//g} +#RUN_DEPENDS +#BUILD_DEPENDS+= ${RUN_DEPENDS} +BUILD_DEPENDS+= libgd>=2.1.1:graph/libgd +RUN_DEPENDS+= libgd>=2.1.1:graph/libgd + +LIB_DEPENDS+= libXpm.so:x11/libXpm +LIB_DEPENDS+= libjpeg.so:graph/libjpeg +LIB_DEPENDS+= libpng.so:graph/libpng +LIB_DEPENDS+= libvpx.so:media/libvpx +LIB_DEPENDS+= libfreetype.so:graph/libfreetype2 + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} +WRKSRC= ${WRKDIR}/${DISTNAME}/ext/${MODULE_NAME} + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} + +#CONFIGURE_ENV+= ac_cv_lib_Xpm_XpmFreeXpmImage=no +#CONFIGURE_ENV+= ac_cv_lib_gd_gdImageCreateFromXpm=no + + +USES+= tar:xz gmake +GNU_CONFIGURE= yes +CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/php +LDFLAGS= -L${LOCALBASE}/lib + +CONFIGURE_ARGS+= --with-gd=${LOCALBASE} +CONFIGURE_ARGS+= --with-vpx-dir=${LOCALBASE} +CONFIGURE_ARGS+= --with-jpeg-dir=${LOCALBASE} +CONFIGURE_ARGS+= --with-png-dir=${LOCALBASE} +CONFIGURE_ARGS+= --with-zlib-dir=/usr +CONFIGURE_ARGS+= --with-xpm-dir=${LOCALBASE} +CONFIGURE_ARGS+= --with-freetype-dir=${LOCALBASE} + +MODULE_NAME= gd +DESTDIRNAME= INSTALL_ROOT +#EXTDIR +#INCLUDEDIR + +pre-configure: + cd ${WRKSRC} && ${CONFIGURE_ENV} phpize . + +post-install: + ${RM} -f ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} lib/php -type f >> ${TMPPLIST} + ${MKDIR} ${STAGEDIR}${PREFIX}/include/php + cd ${STAGEDIR}${PREFIX} && ${FIND} include/php -type f >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds lib/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds include/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + +.include +#EOF diff --git a/php74/php74-mod-gd/distinfo b/php74/php74-mod-gd/distinfo new file mode 100644 index 00000000..ac80d37a --- /dev/null +++ b/php74/php74-mod-gd/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1756241991 +SHA256 (php-7.4.33.tar.xz) = 924846abf93bc613815c55dd3f5809377813ac62a9ec4eb3778675b82a27b927 +SIZE (php-7.4.33.tar.xz) = 10420144 diff --git a/php74/php74-mod-gd/pkg-descr b/php74/php74-mod-gd/pkg-descr new file mode 100644 index 00000000..d6e42932 --- /dev/null +++ b/php74/php74-mod-gd/pkg-descr @@ -0,0 +1,9 @@ +PHP, which stands for "PHP: Hypertext Preprocessor" is a widely-used Open +Source general-purpose scripting language that is especially suited for +Web development and can be embedded into HTML. Its syntax draws upon C, +Java, and Perl, and is easy to learn. The main goal of the language is to +allow web developers to write dynamically generated webpages quickly, but +you can do much more with PHP. + +WWW: http://www.php.net/ + diff --git a/php74/php74-mod-gettext/Makefile b/php74/php74-mod-gettext/Makefile new file mode 100644 index 00000000..6bceffac --- /dev/null +++ b/php74/php74-mod-gettext/Makefile @@ -0,0 +1,62 @@ +# +# $Id: Makefile 2636 2009-09-30 12:09:37Z root $ +# +PORTNAME= php${PORTVERSION:R:S/.//g}-mod-${MODULE_NAME} +PORTVERSION= 7.4.33 +CATEGORIES= lang devel www +MASTER_SITES= ${MASTER_SITE_PHP} +MASTER_SITE_SUBDIR= distributions +DISTNAME= php-${PORTVERSION} + +MASTER_SITES+= http://dk.php.net/%SUBDIR%/ +MASTER_SITES+= http://de.php.net/%SUBDIR%/ +MASTER_SITES+= http://es.php.net/%SUBDIR%/ +MASTER_SITES+= http://fi.php.net/%SUBDIR%/ +MASTER_SITES+= http://fr.php.net/%SUBDIR%/ +MASTER_SITES+= http://gr.php.net/%SUBDIR%/ +MASTER_SITES+= http://it.php.net/%SUBDIR%/ +MASTER_SITES+= http://jp.php.net/%SUBDIR%/ +MASTER_SITES+= http://se.php.net/%SUBDIR%/ +MASTER_SITES+= http://uk.php.net/%SUBDIR%/ +MASTER_SITES+= http://us2.php.net/%SUBDIR%/ +MASTER_SITES+= http://br.php.net/%SUBDIR%/ +MASTER_SITES+= http://cn.php.net/%SUBDIR%/ + +MASTER_SITE_SUBDIR= distributions + +MAINTAINER= onborodin@gmail.com +COMMENT= PHP Scripting Language (Apache Module and CLI) + +BUILD_DEPENDS+= php:lang/php${PORTVERSION:R:S/.//g} +#RUN_DEPENDS +#BUILD_DEPENDS+= ${RUN_DEPENDS} + + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} +WRKSRC= ${WRKDIR}/${DISTNAME}/ext/${MODULE_NAME} + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} + +USES+= tar:xz gmake +GNU_CONFIGURE= yes +CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/php +LDFLAGS= -L${LOCALBASE}/lib + +MODULE_NAME= gettext +DESTDIRNAME= INSTALL_ROOT +#EXTDIR +#INCLUDEDIR + +pre-configure: + cd ${WRKSRC} && ${CONFIGURE_ENV} phpize . + +post-install: + ${RM} -f ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} lib/php -type f >> ${TMPPLIST} + ${MKDIR} ${STAGEDIR}${PREFIX}/include/php + cd ${STAGEDIR}${PREFIX} && ${FIND} include/php -type f >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds lib/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds include/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + +.include +#EOF diff --git a/php74/php74-mod-gettext/Makefile-e b/php74/php74-mod-gettext/Makefile-e new file mode 100644 index 00000000..a9ca0b63 --- /dev/null +++ b/php74/php74-mod-gettext/Makefile-e @@ -0,0 +1,62 @@ +# +# $Id: Makefile 2636 2009-09-30 12:09:37Z root $ +# +PORTNAME= php${PORTVERSION:R:S/.//g}-mod-${MODULE_NAME} +PORTVERSION= 7.4.29 +CATEGORIES= lang devel www +MASTER_SITES= ${MASTER_SITE_PHP} +MASTER_SITE_SUBDIR= distributions +DISTNAME= php-${PORTVERSION} + +MASTER_SITES+= http://dk.php.net/%SUBDIR%/ +MASTER_SITES+= http://de.php.net/%SUBDIR%/ +MASTER_SITES+= http://es.php.net/%SUBDIR%/ +MASTER_SITES+= http://fi.php.net/%SUBDIR%/ +MASTER_SITES+= http://fr.php.net/%SUBDIR%/ +MASTER_SITES+= http://gr.php.net/%SUBDIR%/ +MASTER_SITES+= http://it.php.net/%SUBDIR%/ +MASTER_SITES+= http://jp.php.net/%SUBDIR%/ +MASTER_SITES+= http://se.php.net/%SUBDIR%/ +MASTER_SITES+= http://uk.php.net/%SUBDIR%/ +MASTER_SITES+= http://us2.php.net/%SUBDIR%/ +MASTER_SITES+= http://br.php.net/%SUBDIR%/ +MASTER_SITES+= http://cn.php.net/%SUBDIR%/ + +MASTER_SITE_SUBDIR= distributions + +MAINTAINER= onborodin@gmail.com +COMMENT= PHP Scripting Language (Apache Module and CLI) + +BUILD_DEPENDS+= php:lang/php${PORTVERSION:R:S/.//g} +#RUN_DEPENDS +#BUILD_DEPENDS+= ${RUN_DEPENDS} + + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} +WRKSRC= ${WRKDIR}/${DISTNAME}/ext/${MODULE_NAME} + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} + +USES+= tar:xz gmake +GNU_CONFIGURE= yes +CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/php +LDFLAGS= -L${LOCALBASE}/lib + +MODULE_NAME= gettext +DESTDIRNAME= INSTALL_ROOT +#EXTDIR +#INCLUDEDIR + +pre-configure: + cd ${WRKSRC} && ${CONFIGURE_ENV} phpize . + +post-install: + ${RM} -f ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} lib/php -type f >> ${TMPPLIST} + ${MKDIR} ${STAGEDIR}${PREFIX}/include/php + cd ${STAGEDIR}${PREFIX} && ${FIND} include/php -type f >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds lib/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds include/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + +.include +#EOF diff --git a/php74/php74-mod-gettext/distinfo b/php74/php74-mod-gettext/distinfo new file mode 100644 index 00000000..ac80d37a --- /dev/null +++ b/php74/php74-mod-gettext/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1756241991 +SHA256 (php-7.4.33.tar.xz) = 924846abf93bc613815c55dd3f5809377813ac62a9ec4eb3778675b82a27b927 +SIZE (php-7.4.33.tar.xz) = 10420144 diff --git a/php74/php74-mod-gettext/pkg-descr b/php74/php74-mod-gettext/pkg-descr new file mode 100644 index 00000000..d6e42932 --- /dev/null +++ b/php74/php74-mod-gettext/pkg-descr @@ -0,0 +1,9 @@ +PHP, which stands for "PHP: Hypertext Preprocessor" is a widely-used Open +Source general-purpose scripting language that is especially suited for +Web development and can be embedded into HTML. Its syntax draws upon C, +Java, and Perl, and is easy to learn. The main goal of the language is to +allow web developers to write dynamically generated webpages quickly, but +you can do much more with PHP. + +WWW: http://www.php.net/ + diff --git a/php74/php74-mod-gmp/Makefile b/php74/php74-mod-gmp/Makefile new file mode 100644 index 00000000..d8d130fb --- /dev/null +++ b/php74/php74-mod-gmp/Makefile @@ -0,0 +1,63 @@ +# +# $Id: Makefile 2636 2009-09-30 12:09:37Z root $ +# +PORTNAME= php${PORTVERSION:R:S/.//g}-mod-${MODULE_NAME} +PORTVERSION= 7.4.33 +CATEGORIES= lang devel www +MASTER_SITES= ${MASTER_SITE_PHP} +MASTER_SITE_SUBDIR= distributions +DISTNAME= php-${PORTVERSION} + +MASTER_SITES+= http://dk.php.net/%SUBDIR%/ +MASTER_SITES+= http://de.php.net/%SUBDIR%/ +MASTER_SITES+= http://es.php.net/%SUBDIR%/ +MASTER_SITES+= http://fi.php.net/%SUBDIR%/ +MASTER_SITES+= http://fr.php.net/%SUBDIR%/ +MASTER_SITES+= http://gr.php.net/%SUBDIR%/ +MASTER_SITES+= http://it.php.net/%SUBDIR%/ +MASTER_SITES+= http://jp.php.net/%SUBDIR%/ +MASTER_SITES+= http://se.php.net/%SUBDIR%/ +MASTER_SITES+= http://uk.php.net/%SUBDIR%/ +MASTER_SITES+= http://us2.php.net/%SUBDIR%/ +MASTER_SITES+= http://br.php.net/%SUBDIR%/ +MASTER_SITES+= http://cn.php.net/%SUBDIR%/ + +MASTER_SITE_SUBDIR= distributions + +MAINTAINER= onborodin@gmail.com +COMMENT= PHP Scripting Language (Apache Module and CLI) + +BUILD_DEPENDS+= php:lang/php${PORTVERSION:R:S/.//g} +#RUN_DEPENDS +#BUILD_DEPENDS+= ${RUN_DEPENDS} +LIB_DEPENDS+= libgmp.so:math/libgmp + + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} +WRKSRC= ${WRKDIR}/${DISTNAME}/ext/${MODULE_NAME} + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} + +USES+= tar:xz gmake +GNU_CONFIGURE= yes +CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/php +LDFLAGS= -L${LOCALBASE}/lib + +MODULE_NAME= gmp +DESTDIRNAME= INSTALL_ROOT +#EXTDIR +#INCLUDEDIR + +pre-configure: + cd ${WRKSRC} && ${CONFIGURE_ENV} phpize . + +post-install: + ${RM} -f ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} lib/php -type f >> ${TMPPLIST} + ${MKDIR} ${STAGEDIR}${PREFIX}/include/php + cd ${STAGEDIR}${PREFIX} && ${FIND} include/php -type f >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds lib/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds include/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + +.include +#EOF diff --git a/php74/php74-mod-gmp/Makefile-e b/php74/php74-mod-gmp/Makefile-e new file mode 100644 index 00000000..a61fbf0d --- /dev/null +++ b/php74/php74-mod-gmp/Makefile-e @@ -0,0 +1,63 @@ +# +# $Id: Makefile 2636 2009-09-30 12:09:37Z root $ +# +PORTNAME= php${PORTVERSION:R:S/.//g}-mod-${MODULE_NAME} +PORTVERSION= 7.4.29 +CATEGORIES= lang devel www +MASTER_SITES= ${MASTER_SITE_PHP} +MASTER_SITE_SUBDIR= distributions +DISTNAME= php-${PORTVERSION} + +MASTER_SITES+= http://dk.php.net/%SUBDIR%/ +MASTER_SITES+= http://de.php.net/%SUBDIR%/ +MASTER_SITES+= http://es.php.net/%SUBDIR%/ +MASTER_SITES+= http://fi.php.net/%SUBDIR%/ +MASTER_SITES+= http://fr.php.net/%SUBDIR%/ +MASTER_SITES+= http://gr.php.net/%SUBDIR%/ +MASTER_SITES+= http://it.php.net/%SUBDIR%/ +MASTER_SITES+= http://jp.php.net/%SUBDIR%/ +MASTER_SITES+= http://se.php.net/%SUBDIR%/ +MASTER_SITES+= http://uk.php.net/%SUBDIR%/ +MASTER_SITES+= http://us2.php.net/%SUBDIR%/ +MASTER_SITES+= http://br.php.net/%SUBDIR%/ +MASTER_SITES+= http://cn.php.net/%SUBDIR%/ + +MASTER_SITE_SUBDIR= distributions + +MAINTAINER= onborodin@gmail.com +COMMENT= PHP Scripting Language (Apache Module and CLI) + +BUILD_DEPENDS+= php:lang/php${PORTVERSION:R:S/.//g} +#RUN_DEPENDS +#BUILD_DEPENDS+= ${RUN_DEPENDS} +LIB_DEPENDS+= libgmp.so:math/libgmp + + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} +WRKSRC= ${WRKDIR}/${DISTNAME}/ext/${MODULE_NAME} + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} + +USES+= tar:xz gmake +GNU_CONFIGURE= yes +CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/php +LDFLAGS= -L${LOCALBASE}/lib + +MODULE_NAME= gmp +DESTDIRNAME= INSTALL_ROOT +#EXTDIR +#INCLUDEDIR + +pre-configure: + cd ${WRKSRC} && ${CONFIGURE_ENV} phpize . + +post-install: + ${RM} -f ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} lib/php -type f >> ${TMPPLIST} + ${MKDIR} ${STAGEDIR}${PREFIX}/include/php + cd ${STAGEDIR}${PREFIX} && ${FIND} include/php -type f >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds lib/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds include/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + +.include +#EOF diff --git a/php74/php74-mod-gmp/distinfo b/php74/php74-mod-gmp/distinfo new file mode 100644 index 00000000..ac80d37a --- /dev/null +++ b/php74/php74-mod-gmp/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1756241991 +SHA256 (php-7.4.33.tar.xz) = 924846abf93bc613815c55dd3f5809377813ac62a9ec4eb3778675b82a27b927 +SIZE (php-7.4.33.tar.xz) = 10420144 diff --git a/php74/php74-mod-gmp/pkg-descr b/php74/php74-mod-gmp/pkg-descr new file mode 100644 index 00000000..d6e42932 --- /dev/null +++ b/php74/php74-mod-gmp/pkg-descr @@ -0,0 +1,9 @@ +PHP, which stands for "PHP: Hypertext Preprocessor" is a widely-used Open +Source general-purpose scripting language that is especially suited for +Web development and can be embedded into HTML. Its syntax draws upon C, +Java, and Perl, and is easy to learn. The main goal of the language is to +allow web developers to write dynamically generated webpages quickly, but +you can do much more with PHP. + +WWW: http://www.php.net/ + diff --git a/php74/php74-mod-iconv/Makefile b/php74/php74-mod-iconv/Makefile new file mode 100644 index 00000000..347af4fc --- /dev/null +++ b/php74/php74-mod-iconv/Makefile @@ -0,0 +1,63 @@ +# +# $Id: Makefile 2636 2009-09-30 12:09:37Z root $ +# +PORTNAME= php${PORTVERSION:R:S/.//g}-mod-${MODULE_NAME} +PORTVERSION= 7.4.33 +CATEGORIES= lang devel www +MASTER_SITES= ${MASTER_SITE_PHP} +MASTER_SITE_SUBDIR= distributions +DISTNAME= php-${PORTVERSION} + +MASTER_SITES+= http://dk.php.net/%SUBDIR%/ +MASTER_SITES+= http://de.php.net/%SUBDIR%/ +MASTER_SITES+= http://es.php.net/%SUBDIR%/ +MASTER_SITES+= http://fi.php.net/%SUBDIR%/ +MASTER_SITES+= http://fr.php.net/%SUBDIR%/ +MASTER_SITES+= http://gr.php.net/%SUBDIR%/ +MASTER_SITES+= http://it.php.net/%SUBDIR%/ +MASTER_SITES+= http://jp.php.net/%SUBDIR%/ +MASTER_SITES+= http://se.php.net/%SUBDIR%/ +MASTER_SITES+= http://uk.php.net/%SUBDIR%/ +MASTER_SITES+= http://us2.php.net/%SUBDIR%/ +MASTER_SITES+= http://br.php.net/%SUBDIR%/ +MASTER_SITES+= http://cn.php.net/%SUBDIR%/ + +MASTER_SITE_SUBDIR= distributions + +MAINTAINER= onborodin@gmail.com +COMMENT= PHP Scripting Language (Apache Module and CLI) + +BUILD_DEPENDS+= php:lang/php${PORTVERSION:R:S/.//g} +#RUN_DEPENDS +#BUILD_DEPENDS+= ${RUN_DEPENDS} +LIB_DEPENDS+= libiconv.so:text/libiconv + + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} +WRKSRC= ${WRKDIR}/${DISTNAME}/ext/${MODULE_NAME} + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} + +USES+= tar:xz gmake +GNU_CONFIGURE= yes +CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/php +LDFLAGS= -L${LOCALBASE}/lib + +MODULE_NAME= iconv +DESTDIRNAME= INSTALL_ROOT +#EXTDIR +#INCLUDEDIR + +pre-configure: + cd ${WRKSRC} && ${CONFIGURE_ENV} phpize . + +post-install: + ${RM} -f ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} lib/php -type f >> ${TMPPLIST} + ${MKDIR} ${STAGEDIR}${PREFIX}/include/php + cd ${STAGEDIR}${PREFIX} && ${FIND} include/php -type f >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds lib/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds include/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + +.include +#EOF diff --git a/php74/php74-mod-iconv/Makefile-e b/php74/php74-mod-iconv/Makefile-e new file mode 100644 index 00000000..1f26c6db --- /dev/null +++ b/php74/php74-mod-iconv/Makefile-e @@ -0,0 +1,63 @@ +# +# $Id: Makefile 2636 2009-09-30 12:09:37Z root $ +# +PORTNAME= php${PORTVERSION:R:S/.//g}-mod-${MODULE_NAME} +PORTVERSION= 7.4.29 +CATEGORIES= lang devel www +MASTER_SITES= ${MASTER_SITE_PHP} +MASTER_SITE_SUBDIR= distributions +DISTNAME= php-${PORTVERSION} + +MASTER_SITES+= http://dk.php.net/%SUBDIR%/ +MASTER_SITES+= http://de.php.net/%SUBDIR%/ +MASTER_SITES+= http://es.php.net/%SUBDIR%/ +MASTER_SITES+= http://fi.php.net/%SUBDIR%/ +MASTER_SITES+= http://fr.php.net/%SUBDIR%/ +MASTER_SITES+= http://gr.php.net/%SUBDIR%/ +MASTER_SITES+= http://it.php.net/%SUBDIR%/ +MASTER_SITES+= http://jp.php.net/%SUBDIR%/ +MASTER_SITES+= http://se.php.net/%SUBDIR%/ +MASTER_SITES+= http://uk.php.net/%SUBDIR%/ +MASTER_SITES+= http://us2.php.net/%SUBDIR%/ +MASTER_SITES+= http://br.php.net/%SUBDIR%/ +MASTER_SITES+= http://cn.php.net/%SUBDIR%/ + +MASTER_SITE_SUBDIR= distributions + +MAINTAINER= onborodin@gmail.com +COMMENT= PHP Scripting Language (Apache Module and CLI) + +BUILD_DEPENDS+= php:lang/php${PORTVERSION:R:S/.//g} +#RUN_DEPENDS +#BUILD_DEPENDS+= ${RUN_DEPENDS} +LIB_DEPENDS+= libiconv.so:text/libiconv + + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} +WRKSRC= ${WRKDIR}/${DISTNAME}/ext/${MODULE_NAME} + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} + +USES+= tar:xz gmake +GNU_CONFIGURE= yes +CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/php +LDFLAGS= -L${LOCALBASE}/lib + +MODULE_NAME= iconv +DESTDIRNAME= INSTALL_ROOT +#EXTDIR +#INCLUDEDIR + +pre-configure: + cd ${WRKSRC} && ${CONFIGURE_ENV} phpize . + +post-install: + ${RM} -f ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} lib/php -type f >> ${TMPPLIST} + ${MKDIR} ${STAGEDIR}${PREFIX}/include/php + cd ${STAGEDIR}${PREFIX} && ${FIND} include/php -type f >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds lib/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds include/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + +.include +#EOF diff --git a/php74/php74-mod-iconv/distinfo b/php74/php74-mod-iconv/distinfo new file mode 100644 index 00000000..ac80d37a --- /dev/null +++ b/php74/php74-mod-iconv/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1756241991 +SHA256 (php-7.4.33.tar.xz) = 924846abf93bc613815c55dd3f5809377813ac62a9ec4eb3778675b82a27b927 +SIZE (php-7.4.33.tar.xz) = 10420144 diff --git a/php74/php74-mod-iconv/pkg-descr b/php74/php74-mod-iconv/pkg-descr new file mode 100644 index 00000000..d6e42932 --- /dev/null +++ b/php74/php74-mod-iconv/pkg-descr @@ -0,0 +1,9 @@ +PHP, which stands for "PHP: Hypertext Preprocessor" is a widely-used Open +Source general-purpose scripting language that is especially suited for +Web development and can be embedded into HTML. Its syntax draws upon C, +Java, and Perl, and is easy to learn. The main goal of the language is to +allow web developers to write dynamically generated webpages quickly, but +you can do much more with PHP. + +WWW: http://www.php.net/ + diff --git a/php74/php74-mod-intl/Makefile b/php74/php74-mod-intl/Makefile new file mode 100644 index 00000000..eb9ff08a --- /dev/null +++ b/php74/php74-mod-intl/Makefile @@ -0,0 +1,63 @@ +# +# $Id: Makefile 2636 2009-09-30 12:09:37Z root $ +# +PORTNAME= php${PORTVERSION:R:S/.//g}-mod-${MODULE_NAME} +PORTVERSION= 7.4.33 +CATEGORIES= lang devel www +MASTER_SITES= ${MASTER_SITE_PHP} +MASTER_SITE_SUBDIR= distributions +DISTNAME= php-${PORTVERSION} + +MASTER_SITES+= http://dk.php.net/%SUBDIR%/ +MASTER_SITES+= http://de.php.net/%SUBDIR%/ +MASTER_SITES+= http://es.php.net/%SUBDIR%/ +MASTER_SITES+= http://fi.php.net/%SUBDIR%/ +MASTER_SITES+= http://fr.php.net/%SUBDIR%/ +MASTER_SITES+= http://gr.php.net/%SUBDIR%/ +MASTER_SITES+= http://it.php.net/%SUBDIR%/ +MASTER_SITES+= http://jp.php.net/%SUBDIR%/ +MASTER_SITES+= http://se.php.net/%SUBDIR%/ +MASTER_SITES+= http://uk.php.net/%SUBDIR%/ +MASTER_SITES+= http://us2.php.net/%SUBDIR%/ +MASTER_SITES+= http://br.php.net/%SUBDIR%/ +MASTER_SITES+= http://cn.php.net/%SUBDIR%/ + +MASTER_SITE_SUBDIR= distributions + +MAINTAINER= onborodin@gmail.com +COMMENT= PHP Scripting Language (Apache Module and CLI) + +BUILD_DEPENDS+= php:lang/php${PORTVERSION:R:S/.//g} +#RUN_DEPENDS +#BUILD_DEPENDS+= ${RUN_DEPENDS} +LIB_DEPENDS+= libintl.so:devel/gettext + + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} +WRKSRC= ${WRKDIR}/${DISTNAME}/ext/${MODULE_NAME} + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} + +USES+= tar:xz gmake +GNU_CONFIGURE= yes +CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/php +LDFLAGS= -L${LOCALBASE}/lib + +MODULE_NAME= intl +DESTDIRNAME= INSTALL_ROOT +#EXTDIR +#INCLUDEDIR + +pre-configure: + cd ${WRKSRC} && ${CONFIGURE_ENV} phpize . + +post-install: + ${RM} -f ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} lib/php -type f >> ${TMPPLIST} + ${MKDIR} ${STAGEDIR}${PREFIX}/include/php + cd ${STAGEDIR}${PREFIX} && ${FIND} include/php -type f >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds lib/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds include/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + +.include +#EOF diff --git a/php74/php74-mod-intl/Makefile-e b/php74/php74-mod-intl/Makefile-e new file mode 100644 index 00000000..71ea7169 --- /dev/null +++ b/php74/php74-mod-intl/Makefile-e @@ -0,0 +1,63 @@ +# +# $Id: Makefile 2636 2009-09-30 12:09:37Z root $ +# +PORTNAME= php${PORTVERSION:R:S/.//g}-mod-${MODULE_NAME} +PORTVERSION= 7.4.29 +CATEGORIES= lang devel www +MASTER_SITES= ${MASTER_SITE_PHP} +MASTER_SITE_SUBDIR= distributions +DISTNAME= php-${PORTVERSION} + +MASTER_SITES+= http://dk.php.net/%SUBDIR%/ +MASTER_SITES+= http://de.php.net/%SUBDIR%/ +MASTER_SITES+= http://es.php.net/%SUBDIR%/ +MASTER_SITES+= http://fi.php.net/%SUBDIR%/ +MASTER_SITES+= http://fr.php.net/%SUBDIR%/ +MASTER_SITES+= http://gr.php.net/%SUBDIR%/ +MASTER_SITES+= http://it.php.net/%SUBDIR%/ +MASTER_SITES+= http://jp.php.net/%SUBDIR%/ +MASTER_SITES+= http://se.php.net/%SUBDIR%/ +MASTER_SITES+= http://uk.php.net/%SUBDIR%/ +MASTER_SITES+= http://us2.php.net/%SUBDIR%/ +MASTER_SITES+= http://br.php.net/%SUBDIR%/ +MASTER_SITES+= http://cn.php.net/%SUBDIR%/ + +MASTER_SITE_SUBDIR= distributions + +MAINTAINER= onborodin@gmail.com +COMMENT= PHP Scripting Language (Apache Module and CLI) + +BUILD_DEPENDS+= php:lang/php${PORTVERSION:R:S/.//g} +#RUN_DEPENDS +#BUILD_DEPENDS+= ${RUN_DEPENDS} +LIB_DEPENDS+= libintl.so:devel/gettext + + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} +WRKSRC= ${WRKDIR}/${DISTNAME}/ext/${MODULE_NAME} + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} + +USES+= tar:xz gmake +GNU_CONFIGURE= yes +CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/php +LDFLAGS= -L${LOCALBASE}/lib + +MODULE_NAME= intl +DESTDIRNAME= INSTALL_ROOT +#EXTDIR +#INCLUDEDIR + +pre-configure: + cd ${WRKSRC} && ${CONFIGURE_ENV} phpize . + +post-install: + ${RM} -f ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} lib/php -type f >> ${TMPPLIST} + ${MKDIR} ${STAGEDIR}${PREFIX}/include/php + cd ${STAGEDIR}${PREFIX} && ${FIND} include/php -type f >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds lib/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds include/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + +.include +#EOF diff --git a/php74/php74-mod-intl/distinfo b/php74/php74-mod-intl/distinfo new file mode 100644 index 00000000..ac80d37a --- /dev/null +++ b/php74/php74-mod-intl/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1756241991 +SHA256 (php-7.4.33.tar.xz) = 924846abf93bc613815c55dd3f5809377813ac62a9ec4eb3778675b82a27b927 +SIZE (php-7.4.33.tar.xz) = 10420144 diff --git a/php74/php74-mod-intl/pkg-descr b/php74/php74-mod-intl/pkg-descr new file mode 100644 index 00000000..d6e42932 --- /dev/null +++ b/php74/php74-mod-intl/pkg-descr @@ -0,0 +1,9 @@ +PHP, which stands for "PHP: Hypertext Preprocessor" is a widely-used Open +Source general-purpose scripting language that is especially suited for +Web development and can be embedded into HTML. Its syntax draws upon C, +Java, and Perl, and is easy to learn. The main goal of the language is to +allow web developers to write dynamically generated webpages quickly, but +you can do much more with PHP. + +WWW: http://www.php.net/ + diff --git a/php74/php74-mod-json/Makefile b/php74/php74-mod-json/Makefile new file mode 100644 index 00000000..6c59e50e --- /dev/null +++ b/php74/php74-mod-json/Makefile @@ -0,0 +1,62 @@ +# +# $Id: Makefile 2636 2009-09-30 12:09:37Z root $ +# +PORTNAME= php${PORTVERSION:R:S/.//g}-mod-${MODULE_NAME} +PORTVERSION= 7.4.33 +CATEGORIES= lang devel www +MASTER_SITES= ${MASTER_SITE_PHP} +MASTER_SITE_SUBDIR= distributions +DISTNAME= php-${PORTVERSION} + +MASTER_SITES+= http://dk.php.net/%SUBDIR%/ +MASTER_SITES+= http://de.php.net/%SUBDIR%/ +MASTER_SITES+= http://es.php.net/%SUBDIR%/ +MASTER_SITES+= http://fi.php.net/%SUBDIR%/ +MASTER_SITES+= http://fr.php.net/%SUBDIR%/ +MASTER_SITES+= http://gr.php.net/%SUBDIR%/ +MASTER_SITES+= http://it.php.net/%SUBDIR%/ +MASTER_SITES+= http://jp.php.net/%SUBDIR%/ +MASTER_SITES+= http://se.php.net/%SUBDIR%/ +MASTER_SITES+= http://uk.php.net/%SUBDIR%/ +MASTER_SITES+= http://us2.php.net/%SUBDIR%/ +MASTER_SITES+= http://br.php.net/%SUBDIR%/ +MASTER_SITES+= http://cn.php.net/%SUBDIR%/ + +MASTER_SITE_SUBDIR= distributions + +MAINTAINER= onborodin@gmail.com +COMMENT= PHP Scripting Language (Apache Module and CLI) + +BUILD_DEPENDS+= php:lang/php${PORTVERSION:R:S/.//g} +#RUN_DEPENDS +#BUILD_DEPENDS+= ${RUN_DEPENDS} + + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} +WRKSRC= ${WRKDIR}/${DISTNAME}/ext/${MODULE_NAME} + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} + +USES+= tar:xz gmake +GNU_CONFIGURE= yes +CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/php +LDFLAGS= -L${LOCALBASE}/lib + +MODULE_NAME= json +DESTDIRNAME= INSTALL_ROOT +#EXTDIR +#INCLUDEDIR + +pre-configure: + cd ${WRKSRC} && ${CONFIGURE_ENV} phpize . + +post-install: + ${RM} -f ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} lib/php -type f >> ${TMPPLIST} + ${MKDIR} ${STAGEDIR}${PREFIX}/include/php + cd ${STAGEDIR}${PREFIX} && ${FIND} include/php -type f >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds lib/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds include/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + +.include +#EOF diff --git a/php74/php74-mod-json/Makefile-e b/php74/php74-mod-json/Makefile-e new file mode 100644 index 00000000..a45387cb --- /dev/null +++ b/php74/php74-mod-json/Makefile-e @@ -0,0 +1,62 @@ +# +# $Id: Makefile 2636 2009-09-30 12:09:37Z root $ +# +PORTNAME= php${PORTVERSION:R:S/.//g}-mod-${MODULE_NAME} +PORTVERSION= 7.4.29 +CATEGORIES= lang devel www +MASTER_SITES= ${MASTER_SITE_PHP} +MASTER_SITE_SUBDIR= distributions +DISTNAME= php-${PORTVERSION} + +MASTER_SITES+= http://dk.php.net/%SUBDIR%/ +MASTER_SITES+= http://de.php.net/%SUBDIR%/ +MASTER_SITES+= http://es.php.net/%SUBDIR%/ +MASTER_SITES+= http://fi.php.net/%SUBDIR%/ +MASTER_SITES+= http://fr.php.net/%SUBDIR%/ +MASTER_SITES+= http://gr.php.net/%SUBDIR%/ +MASTER_SITES+= http://it.php.net/%SUBDIR%/ +MASTER_SITES+= http://jp.php.net/%SUBDIR%/ +MASTER_SITES+= http://se.php.net/%SUBDIR%/ +MASTER_SITES+= http://uk.php.net/%SUBDIR%/ +MASTER_SITES+= http://us2.php.net/%SUBDIR%/ +MASTER_SITES+= http://br.php.net/%SUBDIR%/ +MASTER_SITES+= http://cn.php.net/%SUBDIR%/ + +MASTER_SITE_SUBDIR= distributions + +MAINTAINER= onborodin@gmail.com +COMMENT= PHP Scripting Language (Apache Module and CLI) + +BUILD_DEPENDS+= php:lang/php${PORTVERSION:R:S/.//g} +#RUN_DEPENDS +#BUILD_DEPENDS+= ${RUN_DEPENDS} + + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} +WRKSRC= ${WRKDIR}/${DISTNAME}/ext/${MODULE_NAME} + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} + +USES+= tar:xz gmake +GNU_CONFIGURE= yes +CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/php +LDFLAGS= -L${LOCALBASE}/lib + +MODULE_NAME= json +DESTDIRNAME= INSTALL_ROOT +#EXTDIR +#INCLUDEDIR + +pre-configure: + cd ${WRKSRC} && ${CONFIGURE_ENV} phpize . + +post-install: + ${RM} -f ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} lib/php -type f >> ${TMPPLIST} + ${MKDIR} ${STAGEDIR}${PREFIX}/include/php + cd ${STAGEDIR}${PREFIX} && ${FIND} include/php -type f >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds lib/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds include/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + +.include +#EOF diff --git a/php74/php74-mod-json/distinfo b/php74/php74-mod-json/distinfo new file mode 100644 index 00000000..ac80d37a --- /dev/null +++ b/php74/php74-mod-json/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1756241991 +SHA256 (php-7.4.33.tar.xz) = 924846abf93bc613815c55dd3f5809377813ac62a9ec4eb3778675b82a27b927 +SIZE (php-7.4.33.tar.xz) = 10420144 diff --git a/php74/php74-mod-json/pkg-descr b/php74/php74-mod-json/pkg-descr new file mode 100644 index 00000000..d6e42932 --- /dev/null +++ b/php74/php74-mod-json/pkg-descr @@ -0,0 +1,9 @@ +PHP, which stands for "PHP: Hypertext Preprocessor" is a widely-used Open +Source general-purpose scripting language that is especially suited for +Web development and can be embedded into HTML. Its syntax draws upon C, +Java, and Perl, and is easy to learn. The main goal of the language is to +allow web developers to write dynamically generated webpages quickly, but +you can do much more with PHP. + +WWW: http://www.php.net/ + diff --git a/php74/php74-mod-mbstring/Makefile b/php74/php74-mod-mbstring/Makefile new file mode 100644 index 00000000..88b29d45 --- /dev/null +++ b/php74/php74-mod-mbstring/Makefile @@ -0,0 +1,64 @@ +# +# $Id: Makefile 2636 2009-09-30 12:09:37Z root $ +# +PORTNAME= php${PORTVERSION:R:S/.//g}-mod-${MODULE_NAME} +PORTVERSION= 7.4.33 +CATEGORIES= lang devel www +MASTER_SITES= ${MASTER_SITE_PHP} +MASTER_SITE_SUBDIR= distributions +DISTNAME= php-${PORTVERSION} + +MASTER_SITES+= http://dk.php.net/%SUBDIR%/ +MASTER_SITES+= http://de.php.net/%SUBDIR%/ +MASTER_SITES+= http://es.php.net/%SUBDIR%/ +MASTER_SITES+= http://fi.php.net/%SUBDIR%/ +MASTER_SITES+= http://fr.php.net/%SUBDIR%/ +MASTER_SITES+= http://gr.php.net/%SUBDIR%/ +MASTER_SITES+= http://it.php.net/%SUBDIR%/ +MASTER_SITES+= http://jp.php.net/%SUBDIR%/ +MASTER_SITES+= http://se.php.net/%SUBDIR%/ +MASTER_SITES+= http://uk.php.net/%SUBDIR%/ +MASTER_SITES+= http://us2.php.net/%SUBDIR%/ +MASTER_SITES+= http://br.php.net/%SUBDIR%/ +MASTER_SITES+= http://cn.php.net/%SUBDIR%/ + +MASTER_SITE_SUBDIR= distributions + +MAINTAINER= onborodin@gmail.com +COMMENT= PHP Scripting Language (Apache Module and CLI) + +BUILD_DEPENDS+= php:lang/php${PORTVERSION:R:S/.//g} +#RUN_DEPENDS +#BUILD_DEPENDS+= ${RUN_DEPENDS} + + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} +WRKSRC= ${WRKDIR}/${DISTNAME}/ext/${MODULE_NAME} + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} + +USES+= tar:xz gmake +GNU_CONFIGURE= yes +CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/php +LDFLAGS= -L${LOCALBASE}/lib + +MODULE_NAME= mbstring +DESTDIRNAME= INSTALL_ROOT +#EXTDIR +#INCLUDEDIR + +CONFIGURE_ARGS+= --with-pcre-dir=${LOCALBASE} + +pre-configure: + cd ${WRKSRC} && ${CONFIGURE_ENV} phpize . + +post-install: + ${RM} -f ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} lib/php -type f >> ${TMPPLIST} + ${MKDIR} ${STAGEDIR}${PREFIX}/include/php + cd ${STAGEDIR}${PREFIX} && ${FIND} include/php -type f >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds lib/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds include/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + +.include +#EOF diff --git a/php74/php74-mod-mbstring/Makefile-e b/php74/php74-mod-mbstring/Makefile-e new file mode 100644 index 00000000..413139ab --- /dev/null +++ b/php74/php74-mod-mbstring/Makefile-e @@ -0,0 +1,64 @@ +# +# $Id: Makefile 2636 2009-09-30 12:09:37Z root $ +# +PORTNAME= php${PORTVERSION:R:S/.//g}-mod-${MODULE_NAME} +PORTVERSION= 7.4.29 +CATEGORIES= lang devel www +MASTER_SITES= ${MASTER_SITE_PHP} +MASTER_SITE_SUBDIR= distributions +DISTNAME= php-${PORTVERSION} + +MASTER_SITES+= http://dk.php.net/%SUBDIR%/ +MASTER_SITES+= http://de.php.net/%SUBDIR%/ +MASTER_SITES+= http://es.php.net/%SUBDIR%/ +MASTER_SITES+= http://fi.php.net/%SUBDIR%/ +MASTER_SITES+= http://fr.php.net/%SUBDIR%/ +MASTER_SITES+= http://gr.php.net/%SUBDIR%/ +MASTER_SITES+= http://it.php.net/%SUBDIR%/ +MASTER_SITES+= http://jp.php.net/%SUBDIR%/ +MASTER_SITES+= http://se.php.net/%SUBDIR%/ +MASTER_SITES+= http://uk.php.net/%SUBDIR%/ +MASTER_SITES+= http://us2.php.net/%SUBDIR%/ +MASTER_SITES+= http://br.php.net/%SUBDIR%/ +MASTER_SITES+= http://cn.php.net/%SUBDIR%/ + +MASTER_SITE_SUBDIR= distributions + +MAINTAINER= onborodin@gmail.com +COMMENT= PHP Scripting Language (Apache Module and CLI) + +BUILD_DEPENDS+= php:lang/php${PORTVERSION:R:S/.//g} +#RUN_DEPENDS +#BUILD_DEPENDS+= ${RUN_DEPENDS} + + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} +WRKSRC= ${WRKDIR}/${DISTNAME}/ext/${MODULE_NAME} + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} + +USES+= tar:xz gmake +GNU_CONFIGURE= yes +CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/php +LDFLAGS= -L${LOCALBASE}/lib + +MODULE_NAME= mbstring +DESTDIRNAME= INSTALL_ROOT +#EXTDIR +#INCLUDEDIR + +CONFIGURE_ARGS+= --with-pcre-dir=${LOCALBASE} + +pre-configure: + cd ${WRKSRC} && ${CONFIGURE_ENV} phpize . + +post-install: + ${RM} -f ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} lib/php -type f >> ${TMPPLIST} + ${MKDIR} ${STAGEDIR}${PREFIX}/include/php + cd ${STAGEDIR}${PREFIX} && ${FIND} include/php -type f >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds lib/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds include/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + +.include +#EOF diff --git a/php74/php74-mod-mbstring/configure.help b/php74/php74-mod-mbstring/configure.help new file mode 100644 index 00000000..8976b235 --- /dev/null +++ b/php74/php74-mod-mbstring/configure.help @@ -0,0 +1,101 @@ +#`configure' configures this package to adapt to many kinds of systems. +# +#Usage: ./configure [OPTION]... [VAR=VALUE]... +# +#To assign environment variables (e.g., CC, CFLAGS...), specify them as +#VAR=VALUE. See below for descriptions of some of the useful variables. +# +#Defaults for the options are specified in brackets. +# +#Configuration: +# -h,CONFIGURE_ARGS+= --help display this help and exit +# CONFIGURE_ARGS+= --help=short display options specific to this package +# CONFIGURE_ARGS+= --help=recursive display the short help of all the included packages +# -V,CONFIGURE_ARGS+= --version display version information and exit +# -q,CONFIGURE_ARGS+= --quiet, --silent do not print `checking ...' messages +# CONFIGURE_ARGS+= --cache-file=FILE cache test results in FILE [disabled] +# -C,CONFIGURE_ARGS+= --config-cache alias for `--cache-file=config.cache' +# -n,CONFIGURE_ARGS+= --no-create do not create output files +# CONFIGURE_ARGS+= --srcdir=DIR find the sources in DIR [configure dir or `..'] +# +#Installation directories: +# CONFIGURE_ARGS+= --prefix=PREFIX install architecture-independent files in PREFIX +# [/usr/local] +# CONFIGURE_ARGS+= --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX +# [PREFIX] +# +#By default, `make install' will install all the files in +#`/usr/local/bin', `/usr/local/lib' etc. You can specify +#an installation prefix other than `/usr/local' using `--prefix', +#for instance `--prefix=$HOME'. +# +#For better control, use the options below. +# +#Fine tuning of the installation directories: +# CONFIGURE_ARGS+= --bindir=DIR user executables [EPREFIX/bin] +# CONFIGURE_ARGS+= --sbindir=DIR system admin executables [EPREFIX/sbin] +# CONFIGURE_ARGS+= --libexecdir=DIR program executables [EPREFIX/libexec] +# CONFIGURE_ARGS+= --sysconfdir=DIR read-only single-machine data [PREFIX/etc] +# CONFIGURE_ARGS+= --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com] +# CONFIGURE_ARGS+= --localstatedir=DIR modifiable single-machine data [PREFIX/var] +# CONFIGURE_ARGS+= --libdir=DIR object code libraries [EPREFIX/lib] +# CONFIGURE_ARGS+= --includedir=DIR C header files [PREFIX/include] +# CONFIGURE_ARGS+= --oldincludedir=DIR C header files for non-gcc [/usr/include] +# CONFIGURE_ARGS+= --datarootdir=DIR read-only arch.-independent data root [PREFIX/share] +# CONFIGURE_ARGS+= --datadir=DIR read-only architecture-independent data [DATAROOTDIR] +# CONFIGURE_ARGS+= --infodir=DIR info documentation [DATAROOTDIR/info] +# CONFIGURE_ARGS+= --localedir=DIR locale-dependent data [DATAROOTDIR/locale] +# CONFIGURE_ARGS+= --mandir=DIR man documentation [DATAROOTDIR/man] +# CONFIGURE_ARGS+= --docdir=DIR documentation root [DATAROOTDIR/doc/PACKAGE] +# CONFIGURE_ARGS+= --htmldir=DIR html documentation [DOCDIR] +# CONFIGURE_ARGS+= --dvidir=DIR dvi documentation [DOCDIR] +# CONFIGURE_ARGS+= --pdfdir=DIR pdf documentation [DOCDIR] +# CONFIGURE_ARGS+= --psdir=DIR ps documentation [DOCDIR] +# +#System types: +# CONFIGURE_ARGS+= --build=BUILD configure for building on BUILD [guessed] +# CONFIGURE_ARGS+= --host=HOST cross-compile to build programs to run on HOST [BUILD] +# CONFIGURE_ARGS+= --target=TARGET configure for building compilers for TARGET [HOST] +# +#Optional Features and Packages: +# CONFIGURE_ARGS+= --disable-option-checking ignore unrecognized --enable/--with options +# CONFIGURE_ARGS+= --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) +# CONFIGURE_ARGS+= --enable-FEATURE[=ARG] include FEATURE [ARG=yes] +# CONFIGURE_ARGS+= --with-PACKAGE[=ARG] use PACKAGE [ARG=yes] +# CONFIGURE_ARGS+= --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no) +# CONFIGURE_ARGS+= --with-libdir=NAME Look for libraries in .../NAME rather than .../lib +# CONFIGURE_ARGS+= --with-php-config=PATH Path to php-config [php-config] +# CONFIGURE_ARGS+= --enable-mbstring Enable multibyte string support +# CONFIGURE_ARGS+= --disable-mbregex MBSTRING: Disable multibyte regex support +# CONFIGURE_ARGS+= --with-pcre-dir MBSTRING: pcre install prefix +# CONFIGURE_ARGS+= --enable-shared=PKGS Build shared libraries default=yes +# CONFIGURE_ARGS+= --enable-static=PKGS Build static libraries default=yes +# CONFIGURE_ARGS+= --enable-fast-install=PKGS +# Optimize for fast installation default=yes +# CONFIGURE_ARGS+= --with-gnu-ld Assume the C compiler uses GNU ld default=no +# CONFIGURE_ARGS+= --disable-libtool-lock Avoid locking (might break parallel builds) +# CONFIGURE_ARGS+= --with-pic Try to use only PIC/non-PIC objects default=use both +# CONFIGURE_ARGS+= --with-tags=TAGS Include additional configurations automatic +# +# +#Some influential environment variables: +# PKG_CONFIG path to pkg-config utility +# PKG_CONFIG_PATH +# directories to add to pkg-config's search path +# PKG_CONFIG_LIBDIR +# path overriding pkg-config's built-in search path +# CC C compiler command +# CFLAGS C compiler flags +# LDFLAGS linker flags, e.g. -L if you have libraries in a +# nonstandard directory +# LIBS libraries to pass to the linker, e.g. -l +# CPPFLAGS (Objective) C/C++ preprocessor flags, e.g. -I if +# you have headers in a nonstandard directory +# CPP C preprocessor +# ONIG_CFLAGS C compiler flags for ONIG, overriding pkg-config +# ONIG_LIBS linker flags for ONIG, overriding pkg-config +# +#Use these variables to override the choices made by `configure' or to help +#it to find libraries and programs with nonstandard names/locations. +# +#Report bugs to the package provider. diff --git a/php74/php74-mod-mbstring/distinfo b/php74/php74-mod-mbstring/distinfo new file mode 100644 index 00000000..eef0be4d --- /dev/null +++ b/php74/php74-mod-mbstring/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1756241992 +SHA256 (php-7.4.33.tar.xz) = 924846abf93bc613815c55dd3f5809377813ac62a9ec4eb3778675b82a27b927 +SIZE (php-7.4.33.tar.xz) = 10420144 diff --git a/php74/php74-mod-mbstring/files/patch-config.m4 b/php74/php74-mod-mbstring/files/patch-config.m4 new file mode 100644 index 00000000..a3e5c144 --- /dev/null +++ b/php74/php74-mod-mbstring/files/patch-config.m4 @@ -0,0 +1,44 @@ +--- config.m4.orig 2019-08-06 06:54:10 UTC ++++ config.m4 +@@ -37,6 +37,31 @@ AC_DEFUN([PHP_MBSTRING_EXTENSION], [ + + out="php_config.h" + ++ dnl This is PECL build, check if bundled PCRE library is used ++ old_CPPFLAGS=$CPPFLAGS ++ CPPFLAGS=$INCLUDES ++ AC_EGREP_CPP(yes,[ ++#include
++#if defined(HAVE_BUNDLED_PCRE) && !defined(COMPILE_DL_PCRE) ++yes ++#endif ++ ],[ ++ PHP_PCRE_REGEX=yes ++ ],[ ++ AC_EGREP_CPP(yes,[ ++#include
++#if defined(HAVE_PCRE) && !defined(COMPILE_DL_PCRE) ++yes ++#endif ++ ],[ ++ PHP_PCRE_REGEX=pecl ++ PHP_ADD_INCLUDE($PHP_PCRE_DIR/include) ++ ],[ ++ PHP_PCRE_REGEX=no ++ ]) ++ ]) ++ ++ + if test "$ext_shared" != "no" && test -f "$ext_builddir/config.h.in"; then + out="$abs_builddir/config.h" + fi +@@ -200,6 +225,9 @@ PHP_ARG_ENABLE([mbregex], + [yes], + [no]) + ++PHP_ARG_WITH(pcre-dir, pcre install prefix, ++[ --with-pcre-dir MBSTRING: pcre install prefix], no, no) ++ + if test "$PHP_MBSTRING" != "no"; then + AC_DEFINE([HAVE_MBSTRING],1,[whether to have multibyte string support]) + diff --git a/php74/php74-mod-mbstring/pkg-descr b/php74/php74-mod-mbstring/pkg-descr new file mode 100644 index 00000000..d6e42932 --- /dev/null +++ b/php74/php74-mod-mbstring/pkg-descr @@ -0,0 +1,9 @@ +PHP, which stands for "PHP: Hypertext Preprocessor" is a widely-used Open +Source general-purpose scripting language that is especially suited for +Web development and can be embedded into HTML. Its syntax draws upon C, +Java, and Perl, and is easy to learn. The main goal of the language is to +allow web developers to write dynamically generated webpages quickly, but +you can do much more with PHP. + +WWW: http://www.php.net/ + diff --git a/php74/php74-mod-mysqli/Makefile b/php74/php74-mod-mysqli/Makefile new file mode 100644 index 00000000..f214811a --- /dev/null +++ b/php74/php74-mod-mysqli/Makefile @@ -0,0 +1,66 @@ +# +# $Id: Makefile 2636 2009-09-30 12:09:37Z root $ +# +PORTNAME= php${PORTVERSION:R:S/.//g}-mod-${MODULE_NAME} +PORTVERSION= 7.4.33 +CATEGORIES= lang devel www +MASTER_SITES= ${MASTER_SITE_PHP} +MASTER_SITE_SUBDIR= distributions +DISTNAME= php-${PORTVERSION} + +MASTER_SITES+= http://dk.php.net/%SUBDIR%/ +MASTER_SITES+= http://de.php.net/%SUBDIR%/ +MASTER_SITES+= http://es.php.net/%SUBDIR%/ +MASTER_SITES+= http://fi.php.net/%SUBDIR%/ +MASTER_SITES+= http://fr.php.net/%SUBDIR%/ +MASTER_SITES+= http://gr.php.net/%SUBDIR%/ +MASTER_SITES+= http://it.php.net/%SUBDIR%/ +MASTER_SITES+= http://jp.php.net/%SUBDIR%/ +MASTER_SITES+= http://se.php.net/%SUBDIR%/ +MASTER_SITES+= http://uk.php.net/%SUBDIR%/ +MASTER_SITES+= http://us2.php.net/%SUBDIR%/ +MASTER_SITES+= http://br.php.net/%SUBDIR%/ +MASTER_SITES+= http://cn.php.net/%SUBDIR%/ + +MASTER_SITE_SUBDIR= distributions + +MAINTAINER= onborodin@gmail.com +COMMENT= PHP Scripting Language (Apache Module and CLI) + +BUILD_DEPENDS+= php:lang/php${PORTVERSION:R:S/.//g} +#RUN_DEPENDS +#BUILD_DEPENDS+= ${RUN_DEPENDS} +LIB_DEPENDS+= libmysqlclient.so:data/mariadb +#BUILD_DEPENDS+= php${PORTVERSION:R:S/.//g}-mod-mysqlnd>0:php${PORTVERSION:R:S/.//g}/php-mod-mysqlnd +#RUN_DEPENDS+= php${PORTVERSION:R:S/.//g}-mod-mysqlnd>0:php${PORTVERSION:R:S/.//g}/php-mod-mysqlnd + + + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} +WRKSRC= ${WRKDIR}/${DISTNAME}/ext/${MODULE_NAME} + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} + +USES+= tar:xz gmake +GNU_CONFIGURE= yes +CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/php +LDFLAGS= -L${LOCALBASE}/lib + +MODULE_NAME= mysqli +DESTDIRNAME= INSTALL_ROOT +#EXTDIR +#INCLUDEDIR + +pre-configure: + cd ${WRKSRC} && ${CONFIGURE_ENV} phpize . + +post-install: + ${RM} -f ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} lib/php -type f >> ${TMPPLIST} + ${MKDIR} ${STAGEDIR}${PREFIX}/include/php + cd ${STAGEDIR}${PREFIX} && ${FIND} include/php -type f >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds lib/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds include/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + +.include +#EOF diff --git a/php74/php74-mod-mysqli/Makefile-e b/php74/php74-mod-mysqli/Makefile-e new file mode 100644 index 00000000..340051d5 --- /dev/null +++ b/php74/php74-mod-mysqli/Makefile-e @@ -0,0 +1,66 @@ +# +# $Id: Makefile 2636 2009-09-30 12:09:37Z root $ +# +PORTNAME= php${PORTVERSION:R:S/.//g}-mod-${MODULE_NAME} +PORTVERSION= 7.4.29 +CATEGORIES= lang devel www +MASTER_SITES= ${MASTER_SITE_PHP} +MASTER_SITE_SUBDIR= distributions +DISTNAME= php-${PORTVERSION} + +MASTER_SITES+= http://dk.php.net/%SUBDIR%/ +MASTER_SITES+= http://de.php.net/%SUBDIR%/ +MASTER_SITES+= http://es.php.net/%SUBDIR%/ +MASTER_SITES+= http://fi.php.net/%SUBDIR%/ +MASTER_SITES+= http://fr.php.net/%SUBDIR%/ +MASTER_SITES+= http://gr.php.net/%SUBDIR%/ +MASTER_SITES+= http://it.php.net/%SUBDIR%/ +MASTER_SITES+= http://jp.php.net/%SUBDIR%/ +MASTER_SITES+= http://se.php.net/%SUBDIR%/ +MASTER_SITES+= http://uk.php.net/%SUBDIR%/ +MASTER_SITES+= http://us2.php.net/%SUBDIR%/ +MASTER_SITES+= http://br.php.net/%SUBDIR%/ +MASTER_SITES+= http://cn.php.net/%SUBDIR%/ + +MASTER_SITE_SUBDIR= distributions + +MAINTAINER= onborodin@gmail.com +COMMENT= PHP Scripting Language (Apache Module and CLI) + +BUILD_DEPENDS+= php:lang/php${PORTVERSION:R:S/.//g} +#RUN_DEPENDS +#BUILD_DEPENDS+= ${RUN_DEPENDS} +LIB_DEPENDS+= libmysqlclient.so:data/mariadb +#BUILD_DEPENDS+= php${PORTVERSION:R:S/.//g}-mod-mysqlnd>0:php${PORTVERSION:R:S/.//g}/php-mod-mysqlnd +#RUN_DEPENDS+= php${PORTVERSION:R:S/.//g}-mod-mysqlnd>0:php${PORTVERSION:R:S/.//g}/php-mod-mysqlnd + + + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} +WRKSRC= ${WRKDIR}/${DISTNAME}/ext/${MODULE_NAME} + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} + +USES+= tar:xz gmake +GNU_CONFIGURE= yes +CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/php +LDFLAGS= -L${LOCALBASE}/lib + +MODULE_NAME= mysqli +DESTDIRNAME= INSTALL_ROOT +#EXTDIR +#INCLUDEDIR + +pre-configure: + cd ${WRKSRC} && ${CONFIGURE_ENV} phpize . + +post-install: + ${RM} -f ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} lib/php -type f >> ${TMPPLIST} + ${MKDIR} ${STAGEDIR}${PREFIX}/include/php + cd ${STAGEDIR}${PREFIX} && ${FIND} include/php -type f >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds lib/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds include/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + +.include +#EOF diff --git a/php74/php74-mod-mysqli/distinfo b/php74/php74-mod-mysqli/distinfo new file mode 100644 index 00000000..7fff4e8d --- /dev/null +++ b/php74/php74-mod-mysqli/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1756242028 +SHA256 (php-7.4.33.tar.xz) = 924846abf93bc613815c55dd3f5809377813ac62a9ec4eb3778675b82a27b927 +SIZE (php-7.4.33.tar.xz) = 10420144 diff --git a/php74/php74-mod-mysqli/pkg-descr b/php74/php74-mod-mysqli/pkg-descr new file mode 100644 index 00000000..d6e42932 --- /dev/null +++ b/php74/php74-mod-mysqli/pkg-descr @@ -0,0 +1,9 @@ +PHP, which stands for "PHP: Hypertext Preprocessor" is a widely-used Open +Source general-purpose scripting language that is especially suited for +Web development and can be embedded into HTML. Its syntax draws upon C, +Java, and Perl, and is easy to learn. The main goal of the language is to +allow web developers to write dynamically generated webpages quickly, but +you can do much more with PHP. + +WWW: http://www.php.net/ + diff --git a/php74/php74-mod-opcache/Makefile b/php74/php74-mod-opcache/Makefile new file mode 100644 index 00000000..be72165d --- /dev/null +++ b/php74/php74-mod-opcache/Makefile @@ -0,0 +1,62 @@ +# +# $Id: Makefile 2636 2009-09-30 12:09:37Z root $ +# +PORTNAME= php${PORTVERSION:R:S/.//g}-mod-${MODULE_NAME} +PORTVERSION= 7.4.33 +CATEGORIES= lang devel www +MASTER_SITES= ${MASTER_SITE_PHP} +MASTER_SITE_SUBDIR= distributions +DISTNAME= php-${PORTVERSION} + +MASTER_SITES+= http://dk.php.net/%SUBDIR%/ +MASTER_SITES+= http://de.php.net/%SUBDIR%/ +MASTER_SITES+= http://es.php.net/%SUBDIR%/ +MASTER_SITES+= http://fi.php.net/%SUBDIR%/ +MASTER_SITES+= http://fr.php.net/%SUBDIR%/ +MASTER_SITES+= http://gr.php.net/%SUBDIR%/ +MASTER_SITES+= http://it.php.net/%SUBDIR%/ +MASTER_SITES+= http://jp.php.net/%SUBDIR%/ +MASTER_SITES+= http://se.php.net/%SUBDIR%/ +MASTER_SITES+= http://uk.php.net/%SUBDIR%/ +MASTER_SITES+= http://us2.php.net/%SUBDIR%/ +MASTER_SITES+= http://br.php.net/%SUBDIR%/ +MASTER_SITES+= http://cn.php.net/%SUBDIR%/ + +MASTER_SITE_SUBDIR= distributions + +MAINTAINER= onborodin@gmail.com +COMMENT= PHP Scripting Language (Apache Module and CLI) + +BUILD_DEPENDS+= php:lang/php${PORTVERSION:R:S/.//g} +#RUN_DEPENDS +#BUILD_DEPENDS+= ${RUN_DEPENDS} + + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} +WRKSRC= ${WRKDIR}/${DISTNAME}/ext/${MODULE_NAME} + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} + +USES+= tar:xz gmake +GNU_CONFIGURE= yes +CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/php +LDFLAGS= -L${LOCALBASE}/lib + +MODULE_NAME= opcache +DESTDIRNAME= INSTALL_ROOT +#EXTDIR +#INCLUDEDIR + +pre-configure: + cd ${WRKSRC} && ${CONFIGURE_ENV} phpize . + +post-install: + ${RM} -f ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} lib/php -type f >> ${TMPPLIST} + ${MKDIR} ${STAGEDIR}${PREFIX}/include/php + cd ${STAGEDIR}${PREFIX} && ${FIND} include/php -type f >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds lib/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds include/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + +.include +#EOF diff --git a/php74/php74-mod-opcache/Makefile-e b/php74/php74-mod-opcache/Makefile-e new file mode 100644 index 00000000..20ab135e --- /dev/null +++ b/php74/php74-mod-opcache/Makefile-e @@ -0,0 +1,62 @@ +# +# $Id: Makefile 2636 2009-09-30 12:09:37Z root $ +# +PORTNAME= php${PORTVERSION:R:S/.//g}-mod-${MODULE_NAME} +PORTVERSION= 7.4.29 +CATEGORIES= lang devel www +MASTER_SITES= ${MASTER_SITE_PHP} +MASTER_SITE_SUBDIR= distributions +DISTNAME= php-${PORTVERSION} + +MASTER_SITES+= http://dk.php.net/%SUBDIR%/ +MASTER_SITES+= http://de.php.net/%SUBDIR%/ +MASTER_SITES+= http://es.php.net/%SUBDIR%/ +MASTER_SITES+= http://fi.php.net/%SUBDIR%/ +MASTER_SITES+= http://fr.php.net/%SUBDIR%/ +MASTER_SITES+= http://gr.php.net/%SUBDIR%/ +MASTER_SITES+= http://it.php.net/%SUBDIR%/ +MASTER_SITES+= http://jp.php.net/%SUBDIR%/ +MASTER_SITES+= http://se.php.net/%SUBDIR%/ +MASTER_SITES+= http://uk.php.net/%SUBDIR%/ +MASTER_SITES+= http://us2.php.net/%SUBDIR%/ +MASTER_SITES+= http://br.php.net/%SUBDIR%/ +MASTER_SITES+= http://cn.php.net/%SUBDIR%/ + +MASTER_SITE_SUBDIR= distributions + +MAINTAINER= onborodin@gmail.com +COMMENT= PHP Scripting Language (Apache Module and CLI) + +BUILD_DEPENDS+= php:lang/php${PORTVERSION:R:S/.//g} +#RUN_DEPENDS +#BUILD_DEPENDS+= ${RUN_DEPENDS} + + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} +WRKSRC= ${WRKDIR}/${DISTNAME}/ext/${MODULE_NAME} + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} + +USES+= tar:xz gmake +GNU_CONFIGURE= yes +CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/php +LDFLAGS= -L${LOCALBASE}/lib + +MODULE_NAME= opcache +DESTDIRNAME= INSTALL_ROOT +#EXTDIR +#INCLUDEDIR + +pre-configure: + cd ${WRKSRC} && ${CONFIGURE_ENV} phpize . + +post-install: + ${RM} -f ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} lib/php -type f >> ${TMPPLIST} + ${MKDIR} ${STAGEDIR}${PREFIX}/include/php + cd ${STAGEDIR}${PREFIX} && ${FIND} include/php -type f >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds lib/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds include/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + +.include +#EOF diff --git a/php74/php74-mod-opcache/distinfo b/php74/php74-mod-opcache/distinfo new file mode 100644 index 00000000..eef0be4d --- /dev/null +++ b/php74/php74-mod-opcache/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1756241992 +SHA256 (php-7.4.33.tar.xz) = 924846abf93bc613815c55dd3f5809377813ac62a9ec4eb3778675b82a27b927 +SIZE (php-7.4.33.tar.xz) = 10420144 diff --git a/php74/php74-mod-opcache/pkg-descr b/php74/php74-mod-opcache/pkg-descr new file mode 100644 index 00000000..d6e42932 --- /dev/null +++ b/php74/php74-mod-opcache/pkg-descr @@ -0,0 +1,9 @@ +PHP, which stands for "PHP: Hypertext Preprocessor" is a widely-used Open +Source general-purpose scripting language that is especially suited for +Web development and can be embedded into HTML. Its syntax draws upon C, +Java, and Perl, and is easy to learn. The main goal of the language is to +allow web developers to write dynamically generated webpages quickly, but +you can do much more with PHP. + +WWW: http://www.php.net/ + diff --git a/php74/php74-mod-pcntl/Makefile b/php74/php74-mod-pcntl/Makefile new file mode 100644 index 00000000..6b443b8c --- /dev/null +++ b/php74/php74-mod-pcntl/Makefile @@ -0,0 +1,62 @@ +# +# $Id: Makefile 2636 2009-09-30 12:09:37Z root $ +# +PORTNAME= php${PORTVERSION:R:S/.//g}-mod-${MODULE_NAME} +PORTVERSION= 7.4.33 +CATEGORIES= lang devel www +MASTER_SITES= ${MASTER_SITE_PHP} +MASTER_SITE_SUBDIR= distributions +DISTNAME= php-${PORTVERSION} + +MASTER_SITES+= http://dk.php.net/%SUBDIR%/ +MASTER_SITES+= http://de.php.net/%SUBDIR%/ +MASTER_SITES+= http://es.php.net/%SUBDIR%/ +MASTER_SITES+= http://fi.php.net/%SUBDIR%/ +MASTER_SITES+= http://fr.php.net/%SUBDIR%/ +MASTER_SITES+= http://gr.php.net/%SUBDIR%/ +MASTER_SITES+= http://it.php.net/%SUBDIR%/ +MASTER_SITES+= http://jp.php.net/%SUBDIR%/ +MASTER_SITES+= http://se.php.net/%SUBDIR%/ +MASTER_SITES+= http://uk.php.net/%SUBDIR%/ +MASTER_SITES+= http://us2.php.net/%SUBDIR%/ +MASTER_SITES+= http://br.php.net/%SUBDIR%/ +MASTER_SITES+= http://cn.php.net/%SUBDIR%/ + +MASTER_SITE_SUBDIR= distributions + +MAINTAINER= onborodin@gmail.com +COMMENT= PHP Scripting Language (Apache Module and CLI) + +BUILD_DEPENDS+= php:lang/php${PORTVERSION:R:S/.//g} +#RUN_DEPENDS +#BUILD_DEPENDS+= ${RUN_DEPENDS} + + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} +WRKSRC= ${WRKDIR}/${DISTNAME}/ext/${MODULE_NAME} + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} + +USES+= tar:xz gmake +GNU_CONFIGURE= yes +CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/php +LDFLAGS= -L${LOCALBASE}/lib + +MODULE_NAME= pcntl +DESTDIRNAME= INSTALL_ROOT +#EXTDIR +#INCLUDEDIR + +pre-configure: + cd ${WRKSRC} && ${CONFIGURE_ENV} phpize . + +post-install: + ${RM} -f ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} lib/php -type f >> ${TMPPLIST} + ${MKDIR} ${STAGEDIR}${PREFIX}/include/php + cd ${STAGEDIR}${PREFIX} && ${FIND} include/php -type f >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds lib/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds include/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + +.include +#EOF diff --git a/php74/php74-mod-pcntl/Makefile-e b/php74/php74-mod-pcntl/Makefile-e new file mode 100644 index 00000000..cbeebca7 --- /dev/null +++ b/php74/php74-mod-pcntl/Makefile-e @@ -0,0 +1,62 @@ +# +# $Id: Makefile 2636 2009-09-30 12:09:37Z root $ +# +PORTNAME= php${PORTVERSION:R:S/.//g}-mod-${MODULE_NAME} +PORTVERSION= 7.4.29 +CATEGORIES= lang devel www +MASTER_SITES= ${MASTER_SITE_PHP} +MASTER_SITE_SUBDIR= distributions +DISTNAME= php-${PORTVERSION} + +MASTER_SITES+= http://dk.php.net/%SUBDIR%/ +MASTER_SITES+= http://de.php.net/%SUBDIR%/ +MASTER_SITES+= http://es.php.net/%SUBDIR%/ +MASTER_SITES+= http://fi.php.net/%SUBDIR%/ +MASTER_SITES+= http://fr.php.net/%SUBDIR%/ +MASTER_SITES+= http://gr.php.net/%SUBDIR%/ +MASTER_SITES+= http://it.php.net/%SUBDIR%/ +MASTER_SITES+= http://jp.php.net/%SUBDIR%/ +MASTER_SITES+= http://se.php.net/%SUBDIR%/ +MASTER_SITES+= http://uk.php.net/%SUBDIR%/ +MASTER_SITES+= http://us2.php.net/%SUBDIR%/ +MASTER_SITES+= http://br.php.net/%SUBDIR%/ +MASTER_SITES+= http://cn.php.net/%SUBDIR%/ + +MASTER_SITE_SUBDIR= distributions + +MAINTAINER= onborodin@gmail.com +COMMENT= PHP Scripting Language (Apache Module and CLI) + +BUILD_DEPENDS+= php:lang/php${PORTVERSION:R:S/.//g} +#RUN_DEPENDS +#BUILD_DEPENDS+= ${RUN_DEPENDS} + + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} +WRKSRC= ${WRKDIR}/${DISTNAME}/ext/${MODULE_NAME} + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} + +USES+= tar:xz gmake +GNU_CONFIGURE= yes +CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/php +LDFLAGS= -L${LOCALBASE}/lib + +MODULE_NAME= pcntl +DESTDIRNAME= INSTALL_ROOT +#EXTDIR +#INCLUDEDIR + +pre-configure: + cd ${WRKSRC} && ${CONFIGURE_ENV} phpize . + +post-install: + ${RM} -f ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} lib/php -type f >> ${TMPPLIST} + ${MKDIR} ${STAGEDIR}${PREFIX}/include/php + cd ${STAGEDIR}${PREFIX} && ${FIND} include/php -type f >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds lib/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds include/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + +.include +#EOF diff --git a/php74/php74-mod-pcntl/distinfo b/php74/php74-mod-pcntl/distinfo new file mode 100644 index 00000000..eef0be4d --- /dev/null +++ b/php74/php74-mod-pcntl/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1756241992 +SHA256 (php-7.4.33.tar.xz) = 924846abf93bc613815c55dd3f5809377813ac62a9ec4eb3778675b82a27b927 +SIZE (php-7.4.33.tar.xz) = 10420144 diff --git a/php74/php74-mod-pcntl/pkg-descr b/php74/php74-mod-pcntl/pkg-descr new file mode 100644 index 00000000..d6e42932 --- /dev/null +++ b/php74/php74-mod-pcntl/pkg-descr @@ -0,0 +1,9 @@ +PHP, which stands for "PHP: Hypertext Preprocessor" is a widely-used Open +Source general-purpose scripting language that is especially suited for +Web development and can be embedded into HTML. Its syntax draws upon C, +Java, and Perl, and is easy to learn. The main goal of the language is to +allow web developers to write dynamically generated webpages quickly, but +you can do much more with PHP. + +WWW: http://www.php.net/ + diff --git a/php74/php74-mod-pdo/Makefile b/php74/php74-mod-pdo/Makefile new file mode 100644 index 00000000..6bd50f62 --- /dev/null +++ b/php74/php74-mod-pdo/Makefile @@ -0,0 +1,62 @@ +# +# $Id: Makefile 2636 2009-09-30 12:09:37Z root $ +# +PORTNAME= php${PORTVERSION:R:S/.//g}-mod-${MODULE_NAME} +PORTVERSION= 7.4.33 +CATEGORIES= lang devel www +MASTER_SITES= ${MASTER_SITE_PHP} +MASTER_SITE_SUBDIR= distributions +DISTNAME= php-${PORTVERSION} + +MASTER_SITES+= http://dk.php.net/%SUBDIR%/ +MASTER_SITES+= http://de.php.net/%SUBDIR%/ +MASTER_SITES+= http://es.php.net/%SUBDIR%/ +MASTER_SITES+= http://fi.php.net/%SUBDIR%/ +MASTER_SITES+= http://fr.php.net/%SUBDIR%/ +MASTER_SITES+= http://gr.php.net/%SUBDIR%/ +MASTER_SITES+= http://it.php.net/%SUBDIR%/ +MASTER_SITES+= http://jp.php.net/%SUBDIR%/ +MASTER_SITES+= http://se.php.net/%SUBDIR%/ +MASTER_SITES+= http://uk.php.net/%SUBDIR%/ +MASTER_SITES+= http://us2.php.net/%SUBDIR%/ +MASTER_SITES+= http://br.php.net/%SUBDIR%/ +MASTER_SITES+= http://cn.php.net/%SUBDIR%/ + +MASTER_SITE_SUBDIR= distributions + +MAINTAINER= onborodin@gmail.com +COMMENT= PHP Scripting Language (Apache Module and CLI) + +BUILD_DEPENDS+= php:lang/php${PORTVERSION:R:S/.//g} +#RUN_DEPENDS +#BUILD_DEPENDS+= ${RUN_DEPENDS} + + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} +WRKSRC= ${WRKDIR}/${DISTNAME}/ext/${MODULE_NAME} + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} + +USES+= tar:xz gmake +GNU_CONFIGURE= yes +CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/php +LDFLAGS= -L${LOCALBASE}/lib + +MODULE_NAME= pdo +DESTDIRNAME= INSTALL_ROOT +#EXTDIR +#INCLUDEDIR + +pre-configure: + cd ${WRKSRC} && ${CONFIGURE_ENV} phpize . + +post-install: + ${RM} -f ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} lib/php -type f >> ${TMPPLIST} + ${MKDIR} ${STAGEDIR}${PREFIX}/include/php + cd ${STAGEDIR}${PREFIX} && ${FIND} include/php -type f >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds lib/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds include/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + +.include +#EOF diff --git a/php74/php74-mod-pdo/Makefile-e b/php74/php74-mod-pdo/Makefile-e new file mode 100644 index 00000000..e05f4f10 --- /dev/null +++ b/php74/php74-mod-pdo/Makefile-e @@ -0,0 +1,62 @@ +# +# $Id: Makefile 2636 2009-09-30 12:09:37Z root $ +# +PORTNAME= php${PORTVERSION:R:S/.//g}-mod-${MODULE_NAME} +PORTVERSION= 7.4.29 +CATEGORIES= lang devel www +MASTER_SITES= ${MASTER_SITE_PHP} +MASTER_SITE_SUBDIR= distributions +DISTNAME= php-${PORTVERSION} + +MASTER_SITES+= http://dk.php.net/%SUBDIR%/ +MASTER_SITES+= http://de.php.net/%SUBDIR%/ +MASTER_SITES+= http://es.php.net/%SUBDIR%/ +MASTER_SITES+= http://fi.php.net/%SUBDIR%/ +MASTER_SITES+= http://fr.php.net/%SUBDIR%/ +MASTER_SITES+= http://gr.php.net/%SUBDIR%/ +MASTER_SITES+= http://it.php.net/%SUBDIR%/ +MASTER_SITES+= http://jp.php.net/%SUBDIR%/ +MASTER_SITES+= http://se.php.net/%SUBDIR%/ +MASTER_SITES+= http://uk.php.net/%SUBDIR%/ +MASTER_SITES+= http://us2.php.net/%SUBDIR%/ +MASTER_SITES+= http://br.php.net/%SUBDIR%/ +MASTER_SITES+= http://cn.php.net/%SUBDIR%/ + +MASTER_SITE_SUBDIR= distributions + +MAINTAINER= onborodin@gmail.com +COMMENT= PHP Scripting Language (Apache Module and CLI) + +BUILD_DEPENDS+= php:lang/php${PORTVERSION:R:S/.//g} +#RUN_DEPENDS +#BUILD_DEPENDS+= ${RUN_DEPENDS} + + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} +WRKSRC= ${WRKDIR}/${DISTNAME}/ext/${MODULE_NAME} + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} + +USES+= tar:xz gmake +GNU_CONFIGURE= yes +CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/php +LDFLAGS= -L${LOCALBASE}/lib + +MODULE_NAME= pdo +DESTDIRNAME= INSTALL_ROOT +#EXTDIR +#INCLUDEDIR + +pre-configure: + cd ${WRKSRC} && ${CONFIGURE_ENV} phpize . + +post-install: + ${RM} -f ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} lib/php -type f >> ${TMPPLIST} + ${MKDIR} ${STAGEDIR}${PREFIX}/include/php + cd ${STAGEDIR}${PREFIX} && ${FIND} include/php -type f >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds lib/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds include/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + +.include +#EOF diff --git a/php74/php74-mod-pdo/distinfo b/php74/php74-mod-pdo/distinfo new file mode 100644 index 00000000..7fff4e8d --- /dev/null +++ b/php74/php74-mod-pdo/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1756242028 +SHA256 (php-7.4.33.tar.xz) = 924846abf93bc613815c55dd3f5809377813ac62a9ec4eb3778675b82a27b927 +SIZE (php-7.4.33.tar.xz) = 10420144 diff --git a/php74/php74-mod-pdo/pkg-descr b/php74/php74-mod-pdo/pkg-descr new file mode 100644 index 00000000..d6e42932 --- /dev/null +++ b/php74/php74-mod-pdo/pkg-descr @@ -0,0 +1,9 @@ +PHP, which stands for "PHP: Hypertext Preprocessor" is a widely-used Open +Source general-purpose scripting language that is especially suited for +Web development and can be embedded into HTML. Its syntax draws upon C, +Java, and Perl, and is easy to learn. The main goal of the language is to +allow web developers to write dynamically generated webpages quickly, but +you can do much more with PHP. + +WWW: http://www.php.net/ + diff --git a/php74/php74-mod-pdo_mysql/Makefile b/php74/php74-mod-pdo_mysql/Makefile new file mode 100644 index 00000000..551d0a4a --- /dev/null +++ b/php74/php74-mod-pdo_mysql/Makefile @@ -0,0 +1,69 @@ +# +# $Id: Makefile 2636 2009-09-30 12:09:37Z root $ +# +PORTNAME= php${PORTVERSION:R:S/.//g}-mod-${MODULE_NAME} +PORTVERSION= 7.4.33 +CATEGORIES= lang devel www +MASTER_SITES= ${MASTER_SITE_PHP} +MASTER_SITE_SUBDIR= distributions +DISTNAME= php-${PORTVERSION} + +MASTER_SITES+= http://dk.php.net/%SUBDIR%/ +MASTER_SITES+= http://de.php.net/%SUBDIR%/ +MASTER_SITES+= http://es.php.net/%SUBDIR%/ +MASTER_SITES+= http://fi.php.net/%SUBDIR%/ +MASTER_SITES+= http://fr.php.net/%SUBDIR%/ +MASTER_SITES+= http://gr.php.net/%SUBDIR%/ +MASTER_SITES+= http://it.php.net/%SUBDIR%/ +MASTER_SITES+= http://jp.php.net/%SUBDIR%/ +MASTER_SITES+= http://se.php.net/%SUBDIR%/ +MASTER_SITES+= http://uk.php.net/%SUBDIR%/ +MASTER_SITES+= http://us2.php.net/%SUBDIR%/ +MASTER_SITES+= http://br.php.net/%SUBDIR%/ +MASTER_SITES+= http://cn.php.net/%SUBDIR%/ + +MASTER_SITE_SUBDIR= distributions + +MAINTAINER= onborodin@gmail.com +COMMENT= PHP Scripting Language (Apache Module and CLI) + +BUILD_DEPENDS+= php:lang/php${PORTVERSION:R:S/.//g} +#RUN_DEPENDS +#BUILD_DEPENDS+= ${RUN_DEPENDS} +LIB_DEPENDS+= libmysqlclient.so:data/mariadb +BUILD_DEPENDS+= php${PORTVERSION:R:S/.//g}-mod-pdo>0:php${PORTVERSION:R:S/.//g}/php${PORTVERSION:R:S/.//g}-mod-pdo +RUN_DEPENDS+= php${PORTVERSION:R:S/.//g}-mod-pdo>0:php${PORTVERSION:R:S/.//g}/php${PORTVERSION:R:S/.//g}-mod-pdo + +#BUILD_DEPENDS+= php${PORTVERSION:R:S/.//g}-mod-mysqlnd>0:php${PORTVERSION:R:S/.//g}/php-mod-mysqlnd +#RUN_DEPENDS+= php${PORTVERSION:R:S/.//g}-mod-mysqlnd>0:php${PORTVERSION:R:S/.//g}/php-mod-mysqlnd + + + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} +WRKSRC= ${WRKDIR}/${DISTNAME}/ext/${MODULE_NAME} + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} + +USES+= tar:xz gmake +GNU_CONFIGURE= yes +CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/php +LDFLAGS= -L${LOCALBASE}/lib + +MODULE_NAME= pdo_mysql +DESTDIRNAME= INSTALL_ROOT +#EXTDIR +#INCLUDEDIR + +pre-configure: + cd ${WRKSRC} && ${CONFIGURE_ENV} phpize . + +post-install: + ${RM} -f ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} lib/php -type f >> ${TMPPLIST} + ${MKDIR} ${STAGEDIR}${PREFIX}/include/php + cd ${STAGEDIR}${PREFIX} && ${FIND} include/php -type f >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds lib/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds include/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + +.include +#EOF diff --git a/php74/php74-mod-pdo_mysql/distinfo b/php74/php74-mod-pdo_mysql/distinfo new file mode 100644 index 00000000..7fff4e8d --- /dev/null +++ b/php74/php74-mod-pdo_mysql/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1756242028 +SHA256 (php-7.4.33.tar.xz) = 924846abf93bc613815c55dd3f5809377813ac62a9ec4eb3778675b82a27b927 +SIZE (php-7.4.33.tar.xz) = 10420144 diff --git a/php74/php74-mod-pdo_mysql/pkg-descr b/php74/php74-mod-pdo_mysql/pkg-descr new file mode 100644 index 00000000..d6e42932 --- /dev/null +++ b/php74/php74-mod-pdo_mysql/pkg-descr @@ -0,0 +1,9 @@ +PHP, which stands for "PHP: Hypertext Preprocessor" is a widely-used Open +Source general-purpose scripting language that is especially suited for +Web development and can be embedded into HTML. Its syntax draws upon C, +Java, and Perl, and is easy to learn. The main goal of the language is to +allow web developers to write dynamically generated webpages quickly, but +you can do much more with PHP. + +WWW: http://www.php.net/ + diff --git a/php74/php74-mod-pdo_pgsql/Makefile b/php74/php74-mod-pdo_pgsql/Makefile new file mode 100644 index 00000000..73763f75 --- /dev/null +++ b/php74/php74-mod-pdo_pgsql/Makefile @@ -0,0 +1,65 @@ +# +# $Id: Makefile 2636 2009-09-30 12:09:37Z root $ +# +PORTNAME= php${PORTVERSION:R:S/.//g}-mod-${MODULE_NAME} +PORTVERSION= 7.4.33 +CATEGORIES= lang devel www +MASTER_SITES= ${MASTER_SITE_PHP} +MASTER_SITE_SUBDIR= distributions +DISTNAME= php-${PORTVERSION} + +MASTER_SITES+= http://dk.php.net/%SUBDIR%/ +MASTER_SITES+= http://de.php.net/%SUBDIR%/ +MASTER_SITES+= http://es.php.net/%SUBDIR%/ +MASTER_SITES+= http://fi.php.net/%SUBDIR%/ +MASTER_SITES+= http://fr.php.net/%SUBDIR%/ +MASTER_SITES+= http://gr.php.net/%SUBDIR%/ +MASTER_SITES+= http://it.php.net/%SUBDIR%/ +MASTER_SITES+= http://jp.php.net/%SUBDIR%/ +MASTER_SITES+= http://se.php.net/%SUBDIR%/ +MASTER_SITES+= http://uk.php.net/%SUBDIR%/ +MASTER_SITES+= http://us2.php.net/%SUBDIR%/ +MASTER_SITES+= http://br.php.net/%SUBDIR%/ +MASTER_SITES+= http://cn.php.net/%SUBDIR%/ + +MASTER_SITE_SUBDIR= distributions + +MAINTAINER= onborodin@gmail.com +COMMENT= PHP Scripting Language (Apache Module and CLI) + +BUILD_DEPENDS+= php:lang/php${PORTVERSION:R:S/.//g} +#RUN_DEPENDS +#BUILD_DEPENDS+= ${RUN_DEPENDS} +#USES+= pgsql +BUILD_DEPENDS+= php${PORTVERSION:R:S/.//g}-mod-pdo>0:php${PORTVERSION:R:S/.//g}/php${PORTVERSION:R:S/.//g}-mod-pdo +RUN_DEPENDS+= php${PORTVERSION:R:S/.//g}-mod-pdo>0:php${PORTVERSION:R:S/.//g}/php${PORTVERSION:R:S/.//g}-mod-pdo + + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} +WRKSRC= ${WRKDIR}/${DISTNAME}/ext/${MODULE_NAME} + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} + +USES+= tar:xz gmake +GNU_CONFIGURE= yes +CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/php +LDFLAGS= -L${LOCALBASE}/lib + +MODULE_NAME= pdo_pgsql +DESTDIRNAME= INSTALL_ROOT +#EXTDIR +#INCLUDEDIR + +pre-configure: + cd ${WRKSRC} && ${CONFIGURE_ENV} phpize . + +post-install: + ${RM} -f ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} lib/php -type f >> ${TMPPLIST} + ${MKDIR} ${STAGEDIR}${PREFIX}/include/php + cd ${STAGEDIR}${PREFIX} && ${FIND} include/php -type f >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds lib/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds include/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + +.include +#EOF diff --git a/php74/php74-mod-pdo_pgsql/Makefile-e b/php74/php74-mod-pdo_pgsql/Makefile-e new file mode 100644 index 00000000..b49353b0 --- /dev/null +++ b/php74/php74-mod-pdo_pgsql/Makefile-e @@ -0,0 +1,65 @@ +# +# $Id: Makefile 2636 2009-09-30 12:09:37Z root $ +# +PORTNAME= php${PORTVERSION:R:S/.//g}-mod-${MODULE_NAME} +PORTVERSION= 7.4.29 +CATEGORIES= lang devel www +MASTER_SITES= ${MASTER_SITE_PHP} +MASTER_SITE_SUBDIR= distributions +DISTNAME= php-${PORTVERSION} + +MASTER_SITES+= http://dk.php.net/%SUBDIR%/ +MASTER_SITES+= http://de.php.net/%SUBDIR%/ +MASTER_SITES+= http://es.php.net/%SUBDIR%/ +MASTER_SITES+= http://fi.php.net/%SUBDIR%/ +MASTER_SITES+= http://fr.php.net/%SUBDIR%/ +MASTER_SITES+= http://gr.php.net/%SUBDIR%/ +MASTER_SITES+= http://it.php.net/%SUBDIR%/ +MASTER_SITES+= http://jp.php.net/%SUBDIR%/ +MASTER_SITES+= http://se.php.net/%SUBDIR%/ +MASTER_SITES+= http://uk.php.net/%SUBDIR%/ +MASTER_SITES+= http://us2.php.net/%SUBDIR%/ +MASTER_SITES+= http://br.php.net/%SUBDIR%/ +MASTER_SITES+= http://cn.php.net/%SUBDIR%/ + +MASTER_SITE_SUBDIR= distributions + +MAINTAINER= onborodin@gmail.com +COMMENT= PHP Scripting Language (Apache Module and CLI) + +BUILD_DEPENDS+= php:lang/php${PORTVERSION:R:S/.//g} +#RUN_DEPENDS +#BUILD_DEPENDS+= ${RUN_DEPENDS} +#USES+= pgsql +BUILD_DEPENDS+= php${PORTVERSION:R:S/.//g}-mod-pdo>0:php${PORTVERSION:R:S/.//g}/php${PORTVERSION:R:S/.//g}-mod-pdo +RUN_DEPENDS+= php${PORTVERSION:R:S/.//g}-mod-pdo>0:php${PORTVERSION:R:S/.//g}/php${PORTVERSION:R:S/.//g}-mod-pdo + + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} +WRKSRC= ${WRKDIR}/${DISTNAME}/ext/${MODULE_NAME} + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} + +USES+= tar:xz gmake +GNU_CONFIGURE= yes +CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/php +LDFLAGS= -L${LOCALBASE}/lib + +MODULE_NAME= pdo_pgsql +DESTDIRNAME= INSTALL_ROOT +#EXTDIR +#INCLUDEDIR + +pre-configure: + cd ${WRKSRC} && ${CONFIGURE_ENV} phpize . + +post-install: + ${RM} -f ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} lib/php -type f >> ${TMPPLIST} + ${MKDIR} ${STAGEDIR}${PREFIX}/include/php + cd ${STAGEDIR}${PREFIX} && ${FIND} include/php -type f >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds lib/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds include/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + +.include +#EOF diff --git a/php74/php74-mod-pdo_pgsql/distinfo b/php74/php74-mod-pdo_pgsql/distinfo new file mode 100644 index 00000000..7fff4e8d --- /dev/null +++ b/php74/php74-mod-pdo_pgsql/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1756242028 +SHA256 (php-7.4.33.tar.xz) = 924846abf93bc613815c55dd3f5809377813ac62a9ec4eb3778675b82a27b927 +SIZE (php-7.4.33.tar.xz) = 10420144 diff --git a/php74/php74-mod-pdo_pgsql/pkg-descr b/php74/php74-mod-pdo_pgsql/pkg-descr new file mode 100644 index 00000000..d6e42932 --- /dev/null +++ b/php74/php74-mod-pdo_pgsql/pkg-descr @@ -0,0 +1,9 @@ +PHP, which stands for "PHP: Hypertext Preprocessor" is a widely-used Open +Source general-purpose scripting language that is especially suited for +Web development and can be embedded into HTML. Its syntax draws upon C, +Java, and Perl, and is easy to learn. The main goal of the language is to +allow web developers to write dynamically generated webpages quickly, but +you can do much more with PHP. + +WWW: http://www.php.net/ + diff --git a/php74/php74-mod-pdo_sqlite/Makefile b/php74/php74-mod-pdo_sqlite/Makefile new file mode 100644 index 00000000..f69360cd --- /dev/null +++ b/php74/php74-mod-pdo_sqlite/Makefile @@ -0,0 +1,66 @@ +# +# $Id: Makefile 2636 2009-09-30 12:09:37Z root $ +# +PORTNAME= php${PORTVERSION:R:S/.//g}-mod-${MODULE_NAME} +PORTVERSION= 7.4.33 +CATEGORIES= lang devel www +MASTER_SITES= ${MASTER_SITE_PHP} +MASTER_SITE_SUBDIR= distributions +DISTNAME= php-${PORTVERSION} + +MASTER_SITES+= http://dk.php.net/%SUBDIR%/ +MASTER_SITES+= http://de.php.net/%SUBDIR%/ +MASTER_SITES+= http://es.php.net/%SUBDIR%/ +MASTER_SITES+= http://fi.php.net/%SUBDIR%/ +MASTER_SITES+= http://fr.php.net/%SUBDIR%/ +MASTER_SITES+= http://gr.php.net/%SUBDIR%/ +MASTER_SITES+= http://it.php.net/%SUBDIR%/ +MASTER_SITES+= http://jp.php.net/%SUBDIR%/ +MASTER_SITES+= http://se.php.net/%SUBDIR%/ +MASTER_SITES+= http://uk.php.net/%SUBDIR%/ +MASTER_SITES+= http://us2.php.net/%SUBDIR%/ +MASTER_SITES+= http://br.php.net/%SUBDIR%/ +MASTER_SITES+= http://cn.php.net/%SUBDIR%/ + +MASTER_SITE_SUBDIR= distributions + +MAINTAINER= onborodin@gmail.com +COMMENT= PHP Scripting Language (Apache Module and CLI) + +BUILD_DEPENDS+= php:lang/php${PORTVERSION:R:S/.//g} +#RUN_DEPENDS +#BUILD_DEPENDS+= ${RUN_DEPENDS} +LIB_DEPENDS+= libsqlite3.so:data/sqlite3 +BUILD_DEPENDS+= php${PORTVERSION:R:S/.//g}-mod-pdo>0:php${PORTVERSION:R:S/.//g}/php${PORTVERSION:R:S/.//g}-mod-pdo +RUN_DEPENDS+= php${PORTVERSION:R:S/.//g}-mod-pdo>0:php${PORTVERSION:R:S/.//g}/php${PORTVERSION:R:S/.//g}-mod-pdo + + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} +WRKSRC= ${WRKDIR}/${DISTNAME}/ext/${MODULE_NAME} + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} + +USES+= tar:xz gmake +GNU_CONFIGURE= yes +CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/php +LDFLAGS= -L${LOCALBASE}/lib +CONFIGURE_ARGS+= --with-pdo-sqlite=${LOCALBASE} + +MODULE_NAME= pdo_sqlite +DESTDIRNAME= INSTALL_ROOT +#EXTDIR +#INCLUDEDIR + +pre-configure: + cd ${WRKSRC} && ${CONFIGURE_ENV} phpize . + +post-install: + ${RM} -f ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} lib/php -type f >> ${TMPPLIST} + ${MKDIR} ${STAGEDIR}${PREFIX}/include/php + cd ${STAGEDIR}${PREFIX} && ${FIND} include/php -type f >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds lib/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds include/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + +.include +#EOF diff --git a/php74/php74-mod-pdo_sqlite/Makefile-e b/php74/php74-mod-pdo_sqlite/Makefile-e new file mode 100644 index 00000000..1ab1d831 --- /dev/null +++ b/php74/php74-mod-pdo_sqlite/Makefile-e @@ -0,0 +1,66 @@ +# +# $Id: Makefile 2636 2009-09-30 12:09:37Z root $ +# +PORTNAME= php${PORTVERSION:R:S/.//g}-mod-${MODULE_NAME} +PORTVERSION= 7.4.29 +CATEGORIES= lang devel www +MASTER_SITES= ${MASTER_SITE_PHP} +MASTER_SITE_SUBDIR= distributions +DISTNAME= php-${PORTVERSION} + +MASTER_SITES+= http://dk.php.net/%SUBDIR%/ +MASTER_SITES+= http://de.php.net/%SUBDIR%/ +MASTER_SITES+= http://es.php.net/%SUBDIR%/ +MASTER_SITES+= http://fi.php.net/%SUBDIR%/ +MASTER_SITES+= http://fr.php.net/%SUBDIR%/ +MASTER_SITES+= http://gr.php.net/%SUBDIR%/ +MASTER_SITES+= http://it.php.net/%SUBDIR%/ +MASTER_SITES+= http://jp.php.net/%SUBDIR%/ +MASTER_SITES+= http://se.php.net/%SUBDIR%/ +MASTER_SITES+= http://uk.php.net/%SUBDIR%/ +MASTER_SITES+= http://us2.php.net/%SUBDIR%/ +MASTER_SITES+= http://br.php.net/%SUBDIR%/ +MASTER_SITES+= http://cn.php.net/%SUBDIR%/ + +MASTER_SITE_SUBDIR= distributions + +MAINTAINER= onborodin@gmail.com +COMMENT= PHP Scripting Language (Apache Module and CLI) + +BUILD_DEPENDS+= php:lang/php${PORTVERSION:R:S/.//g} +#RUN_DEPENDS +#BUILD_DEPENDS+= ${RUN_DEPENDS} +LIB_DEPENDS+= libsqlite3.so:data/sqlite3 +BUILD_DEPENDS+= php${PORTVERSION:R:S/.//g}-mod-pdo>0:php${PORTVERSION:R:S/.//g}/php${PORTVERSION:R:S/.//g}-mod-pdo +RUN_DEPENDS+= php${PORTVERSION:R:S/.//g}-mod-pdo>0:php${PORTVERSION:R:S/.//g}/php${PORTVERSION:R:S/.//g}-mod-pdo + + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} +WRKSRC= ${WRKDIR}/${DISTNAME}/ext/${MODULE_NAME} + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} + +USES+= tar:xz gmake +GNU_CONFIGURE= yes +CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/php +LDFLAGS= -L${LOCALBASE}/lib +CONFIGURE_ARGS+= --with-pdo-sqlite=${LOCALBASE} + +MODULE_NAME= pdo_sqlite +DESTDIRNAME= INSTALL_ROOT +#EXTDIR +#INCLUDEDIR + +pre-configure: + cd ${WRKSRC} && ${CONFIGURE_ENV} phpize . + +post-install: + ${RM} -f ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} lib/php -type f >> ${TMPPLIST} + ${MKDIR} ${STAGEDIR}${PREFIX}/include/php + cd ${STAGEDIR}${PREFIX} && ${FIND} include/php -type f >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds lib/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds include/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + +.include +#EOF diff --git a/php74/php74-mod-pdo_sqlite/distinfo b/php74/php74-mod-pdo_sqlite/distinfo new file mode 100644 index 00000000..7fff4e8d --- /dev/null +++ b/php74/php74-mod-pdo_sqlite/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1756242028 +SHA256 (php-7.4.33.tar.xz) = 924846abf93bc613815c55dd3f5809377813ac62a9ec4eb3778675b82a27b927 +SIZE (php-7.4.33.tar.xz) = 10420144 diff --git a/php74/php74-mod-pdo_sqlite/pkg-descr b/php74/php74-mod-pdo_sqlite/pkg-descr new file mode 100644 index 00000000..d6e42932 --- /dev/null +++ b/php74/php74-mod-pdo_sqlite/pkg-descr @@ -0,0 +1,9 @@ +PHP, which stands for "PHP: Hypertext Preprocessor" is a widely-used Open +Source general-purpose scripting language that is especially suited for +Web development and can be embedded into HTML. Its syntax draws upon C, +Java, and Perl, and is easy to learn. The main goal of the language is to +allow web developers to write dynamically generated webpages quickly, but +you can do much more with PHP. + +WWW: http://www.php.net/ + diff --git a/php74/php74-mod-pgsql/Makefile b/php74/php74-mod-pgsql/Makefile new file mode 100644 index 00000000..c70f3138 --- /dev/null +++ b/php74/php74-mod-pgsql/Makefile @@ -0,0 +1,63 @@ +# +# $Id: Makefile 2636 2009-09-30 12:09:37Z root $ +# +PORTNAME= php${PORTVERSION:R:S/.//g}-mod-${MODULE_NAME} +PORTVERSION= 7.4.33 +CATEGORIES= lang devel www +MASTER_SITES= ${MASTER_SITE_PHP} +MASTER_SITE_SUBDIR= distributions +DISTNAME= php-${PORTVERSION} + +MASTER_SITES+= http://dk.php.net/%SUBDIR%/ +MASTER_SITES+= http://de.php.net/%SUBDIR%/ +MASTER_SITES+= http://es.php.net/%SUBDIR%/ +MASTER_SITES+= http://fi.php.net/%SUBDIR%/ +MASTER_SITES+= http://fr.php.net/%SUBDIR%/ +MASTER_SITES+= http://gr.php.net/%SUBDIR%/ +MASTER_SITES+= http://it.php.net/%SUBDIR%/ +MASTER_SITES+= http://jp.php.net/%SUBDIR%/ +MASTER_SITES+= http://se.php.net/%SUBDIR%/ +MASTER_SITES+= http://uk.php.net/%SUBDIR%/ +MASTER_SITES+= http://us2.php.net/%SUBDIR%/ +MASTER_SITES+= http://br.php.net/%SUBDIR%/ +MASTER_SITES+= http://cn.php.net/%SUBDIR%/ + +MASTER_SITE_SUBDIR= distributions + +MAINTAINER= onborodin@gmail.com +COMMENT= PHP Scripting Language (Apache Module and CLI) + +BUILD_DEPENDS+= php:lang/php${PORTVERSION:R:S/.//g} +#RUN_DEPENDS +#BUILD_DEPENDS+= ${RUN_DEPENDS} +#USES+= pgsql + + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} +WRKSRC= ${WRKDIR}/${DISTNAME}/ext/${MODULE_NAME} + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} + +USES+= tar:xz gmake +GNU_CONFIGURE= yes +CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/php +LDFLAGS= -L${LOCALBASE}/lib + +MODULE_NAME= pgsql +DESTDIRNAME= INSTALL_ROOT +#EXTDIR +#INCLUDEDIR + +pre-configure: + cd ${WRKSRC} && ${CONFIGURE_ENV} phpize . + +post-install: + ${RM} -f ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} lib/php -type f >> ${TMPPLIST} + ${MKDIR} ${STAGEDIR}${PREFIX}/include/php + cd ${STAGEDIR}${PREFIX} && ${FIND} include/php -type f >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds lib/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds include/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + +.include +#EOF diff --git a/php74/php74-mod-pgsql/Makefile-e b/php74/php74-mod-pgsql/Makefile-e new file mode 100644 index 00000000..2f1179b9 --- /dev/null +++ b/php74/php74-mod-pgsql/Makefile-e @@ -0,0 +1,63 @@ +# +# $Id: Makefile 2636 2009-09-30 12:09:37Z root $ +# +PORTNAME= php${PORTVERSION:R:S/.//g}-mod-${MODULE_NAME} +PORTVERSION= 7.4.29 +CATEGORIES= lang devel www +MASTER_SITES= ${MASTER_SITE_PHP} +MASTER_SITE_SUBDIR= distributions +DISTNAME= php-${PORTVERSION} + +MASTER_SITES+= http://dk.php.net/%SUBDIR%/ +MASTER_SITES+= http://de.php.net/%SUBDIR%/ +MASTER_SITES+= http://es.php.net/%SUBDIR%/ +MASTER_SITES+= http://fi.php.net/%SUBDIR%/ +MASTER_SITES+= http://fr.php.net/%SUBDIR%/ +MASTER_SITES+= http://gr.php.net/%SUBDIR%/ +MASTER_SITES+= http://it.php.net/%SUBDIR%/ +MASTER_SITES+= http://jp.php.net/%SUBDIR%/ +MASTER_SITES+= http://se.php.net/%SUBDIR%/ +MASTER_SITES+= http://uk.php.net/%SUBDIR%/ +MASTER_SITES+= http://us2.php.net/%SUBDIR%/ +MASTER_SITES+= http://br.php.net/%SUBDIR%/ +MASTER_SITES+= http://cn.php.net/%SUBDIR%/ + +MASTER_SITE_SUBDIR= distributions + +MAINTAINER= onborodin@gmail.com +COMMENT= PHP Scripting Language (Apache Module and CLI) + +BUILD_DEPENDS+= php:lang/php${PORTVERSION:R:S/.//g} +#RUN_DEPENDS +#BUILD_DEPENDS+= ${RUN_DEPENDS} +#USES+= pgsql + + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} +WRKSRC= ${WRKDIR}/${DISTNAME}/ext/${MODULE_NAME} + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} + +USES+= tar:xz gmake +GNU_CONFIGURE= yes +CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/php +LDFLAGS= -L${LOCALBASE}/lib + +MODULE_NAME= pgsql +DESTDIRNAME= INSTALL_ROOT +#EXTDIR +#INCLUDEDIR + +pre-configure: + cd ${WRKSRC} && ${CONFIGURE_ENV} phpize . + +post-install: + ${RM} -f ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} lib/php -type f >> ${TMPPLIST} + ${MKDIR} ${STAGEDIR}${PREFIX}/include/php + cd ${STAGEDIR}${PREFIX} && ${FIND} include/php -type f >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds lib/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds include/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + +.include +#EOF diff --git a/php74/php74-mod-pgsql/distinfo b/php74/php74-mod-pgsql/distinfo new file mode 100644 index 00000000..7fff4e8d --- /dev/null +++ b/php74/php74-mod-pgsql/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1756242028 +SHA256 (php-7.4.33.tar.xz) = 924846abf93bc613815c55dd3f5809377813ac62a9ec4eb3778675b82a27b927 +SIZE (php-7.4.33.tar.xz) = 10420144 diff --git a/php74/php74-mod-pgsql/pkg-descr b/php74/php74-mod-pgsql/pkg-descr new file mode 100644 index 00000000..d6e42932 --- /dev/null +++ b/php74/php74-mod-pgsql/pkg-descr @@ -0,0 +1,9 @@ +PHP, which stands for "PHP: Hypertext Preprocessor" is a widely-used Open +Source general-purpose scripting language that is especially suited for +Web development and can be embedded into HTML. Its syntax draws upon C, +Java, and Perl, and is easy to learn. The main goal of the language is to +allow web developers to write dynamically generated webpages quickly, but +you can do much more with PHP. + +WWW: http://www.php.net/ + diff --git a/php74/php74-mod-phar/Makefile b/php74/php74-mod-phar/Makefile new file mode 100644 index 00000000..b96e5539 --- /dev/null +++ b/php74/php74-mod-phar/Makefile @@ -0,0 +1,62 @@ +# +# $Id: Makefile 2636 2009-09-30 12:09:37Z root $ +# +PORTNAME= php${PORTVERSION:R:S/.//g}-mod-${MODULE_NAME} +PORTVERSION= 7.4.33 +CATEGORIES= lang devel www +MASTER_SITES= ${MASTER_SITE_PHP} +MASTER_SITE_SUBDIR= distributions +DISTNAME= php-${PORTVERSION} + +MASTER_SITES+= http://dk.php.net/%SUBDIR%/ +MASTER_SITES+= http://de.php.net/%SUBDIR%/ +MASTER_SITES+= http://es.php.net/%SUBDIR%/ +MASTER_SITES+= http://fi.php.net/%SUBDIR%/ +MASTER_SITES+= http://fr.php.net/%SUBDIR%/ +MASTER_SITES+= http://gr.php.net/%SUBDIR%/ +MASTER_SITES+= http://it.php.net/%SUBDIR%/ +MASTER_SITES+= http://jp.php.net/%SUBDIR%/ +MASTER_SITES+= http://se.php.net/%SUBDIR%/ +MASTER_SITES+= http://uk.php.net/%SUBDIR%/ +MASTER_SITES+= http://us2.php.net/%SUBDIR%/ +MASTER_SITES+= http://br.php.net/%SUBDIR%/ +MASTER_SITES+= http://cn.php.net/%SUBDIR%/ + +MASTER_SITE_SUBDIR= distributions + +MAINTAINER= onborodin@gmail.com +COMMENT= PHP Scripting Language (Apache Module and CLI) + +BUILD_DEPENDS+= php:lang/php${PORTVERSION:R:S/.//g} +#RUN_DEPENDS +#BUILD_DEPENDS+= ${RUN_DEPENDS} + + +#EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} +WRKSRC= ${WRKDIR}/${DISTNAME}/ext/${MODULE_NAME} + +#EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} + +USES+= tar:xz gmake +GNU_CONFIGURE= yes +CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/php +LDFLAGS= -L${LOCALBASE}/lib + +MODULE_NAME= phar +DESTDIRNAME= INSTALL_ROOT +#EXTDIR +#INCLUDEDIR + +pre-configure: + cd ${WRKSRC} && ${CONFIGURE_ENV} phpize . + +post-install: + ${RM} -f ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} lib/php -type f >> ${TMPPLIST} + ${MKDIR} ${STAGEDIR}${PREFIX}/include/php + cd ${STAGEDIR}${PREFIX} && ${FIND} include/php -type f >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds lib/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds include/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + +.include +#EOF diff --git a/php74/php74-mod-phar/Makefile-e b/php74/php74-mod-phar/Makefile-e new file mode 100644 index 00000000..bc4a375c --- /dev/null +++ b/php74/php74-mod-phar/Makefile-e @@ -0,0 +1,62 @@ +# +# $Id: Makefile 2636 2009-09-30 12:09:37Z root $ +# +PORTNAME= php${PORTVERSION:R:S/.//g}-mod-${MODULE_NAME} +PORTVERSION= 7.4.29 +CATEGORIES= lang devel www +MASTER_SITES= ${MASTER_SITE_PHP} +MASTER_SITE_SUBDIR= distributions +DISTNAME= php-${PORTVERSION} + +MASTER_SITES+= http://dk.php.net/%SUBDIR%/ +MASTER_SITES+= http://de.php.net/%SUBDIR%/ +MASTER_SITES+= http://es.php.net/%SUBDIR%/ +MASTER_SITES+= http://fi.php.net/%SUBDIR%/ +MASTER_SITES+= http://fr.php.net/%SUBDIR%/ +MASTER_SITES+= http://gr.php.net/%SUBDIR%/ +MASTER_SITES+= http://it.php.net/%SUBDIR%/ +MASTER_SITES+= http://jp.php.net/%SUBDIR%/ +MASTER_SITES+= http://se.php.net/%SUBDIR%/ +MASTER_SITES+= http://uk.php.net/%SUBDIR%/ +MASTER_SITES+= http://us2.php.net/%SUBDIR%/ +MASTER_SITES+= http://br.php.net/%SUBDIR%/ +MASTER_SITES+= http://cn.php.net/%SUBDIR%/ + +MASTER_SITE_SUBDIR= distributions + +MAINTAINER= onborodin@gmail.com +COMMENT= PHP Scripting Language (Apache Module and CLI) + +BUILD_DEPENDS+= php:lang/php${PORTVERSION:R:S/.//g} +#RUN_DEPENDS +#BUILD_DEPENDS+= ${RUN_DEPENDS} + + +#EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} +WRKSRC= ${WRKDIR}/${DISTNAME}/ext/${MODULE_NAME} + +#EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} + +USES+= tar:xz gmake +GNU_CONFIGURE= yes +CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/php +LDFLAGS= -L${LOCALBASE}/lib + +MODULE_NAME= phar +DESTDIRNAME= INSTALL_ROOT +#EXTDIR +#INCLUDEDIR + +pre-configure: + cd ${WRKSRC} && ${CONFIGURE_ENV} phpize . + +post-install: + ${RM} -f ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} lib/php -type f >> ${TMPPLIST} + ${MKDIR} ${STAGEDIR}${PREFIX}/include/php + cd ${STAGEDIR}${PREFIX} && ${FIND} include/php -type f >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds lib/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds include/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + +.include +#EOF diff --git a/php74/php74-mod-phar/distinfo b/php74/php74-mod-phar/distinfo new file mode 100644 index 00000000..eef0be4d --- /dev/null +++ b/php74/php74-mod-phar/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1756241992 +SHA256 (php-7.4.33.tar.xz) = 924846abf93bc613815c55dd3f5809377813ac62a9ec4eb3778675b82a27b927 +SIZE (php-7.4.33.tar.xz) = 10420144 diff --git a/php74/php74-mod-phar/pkg-descr b/php74/php74-mod-phar/pkg-descr new file mode 100644 index 00000000..d6e42932 --- /dev/null +++ b/php74/php74-mod-phar/pkg-descr @@ -0,0 +1,9 @@ +PHP, which stands for "PHP: Hypertext Preprocessor" is a widely-used Open +Source general-purpose scripting language that is especially suited for +Web development and can be embedded into HTML. Its syntax draws upon C, +Java, and Perl, and is easy to learn. The main goal of the language is to +allow web developers to write dynamically generated webpages quickly, but +you can do much more with PHP. + +WWW: http://www.php.net/ + diff --git a/php74/php74-mod-posix/Makefile b/php74/php74-mod-posix/Makefile new file mode 100644 index 00000000..1619ccd5 --- /dev/null +++ b/php74/php74-mod-posix/Makefile @@ -0,0 +1,62 @@ +# +# $Id: Makefile 2636 2009-09-30 12:09:37Z root $ +# +PORTNAME= php${PORTVERSION:R:S/.//g}-mod-${MODULE_NAME} +PORTVERSION= 7.4.33 +CATEGORIES= lang devel www +MASTER_SITES= ${MASTER_SITE_PHP} +MASTER_SITE_SUBDIR= distributions +DISTNAME= php-${PORTVERSION} + +MASTER_SITES+= http://dk.php.net/%SUBDIR%/ +MASTER_SITES+= http://de.php.net/%SUBDIR%/ +MASTER_SITES+= http://es.php.net/%SUBDIR%/ +MASTER_SITES+= http://fi.php.net/%SUBDIR%/ +MASTER_SITES+= http://fr.php.net/%SUBDIR%/ +MASTER_SITES+= http://gr.php.net/%SUBDIR%/ +MASTER_SITES+= http://it.php.net/%SUBDIR%/ +MASTER_SITES+= http://jp.php.net/%SUBDIR%/ +MASTER_SITES+= http://se.php.net/%SUBDIR%/ +MASTER_SITES+= http://uk.php.net/%SUBDIR%/ +MASTER_SITES+= http://us2.php.net/%SUBDIR%/ +MASTER_SITES+= http://br.php.net/%SUBDIR%/ +MASTER_SITES+= http://cn.php.net/%SUBDIR%/ + +MASTER_SITE_SUBDIR= distributions + +MAINTAINER= onborodin@gmail.com +COMMENT= PHP Scripting Language (Apache Module and CLI) + +BUILD_DEPENDS+= php:lang/php${PORTVERSION:R:S/.//g} +#RUN_DEPENDS +#BUILD_DEPENDS+= ${RUN_DEPENDS} + + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} +WRKSRC= ${WRKDIR}/${DISTNAME}/ext/${MODULE_NAME} + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} + +USES+= tar:xz gmake +GNU_CONFIGURE= yes +CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/php +LDFLAGS= -L${LOCALBASE}/lib + +MODULE_NAME= posix +DESTDIRNAME= INSTALL_ROOT +#EXTDIR +#INCLUDEDIR + +pre-configure: + cd ${WRKSRC} && ${CONFIGURE_ENV} phpize . + +post-install: + ${RM} -f ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} lib/php -type f >> ${TMPPLIST} + ${MKDIR} ${STAGEDIR}${PREFIX}/include/php + cd ${STAGEDIR}${PREFIX} && ${FIND} include/php -type f >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds lib/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds include/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + +.include +#EOF diff --git a/php74/php74-mod-posix/Makefile-e b/php74/php74-mod-posix/Makefile-e new file mode 100644 index 00000000..b613ceba --- /dev/null +++ b/php74/php74-mod-posix/Makefile-e @@ -0,0 +1,62 @@ +# +# $Id: Makefile 2636 2009-09-30 12:09:37Z root $ +# +PORTNAME= php${PORTVERSION:R:S/.//g}-mod-${MODULE_NAME} +PORTVERSION= 7.4.29 +CATEGORIES= lang devel www +MASTER_SITES= ${MASTER_SITE_PHP} +MASTER_SITE_SUBDIR= distributions +DISTNAME= php-${PORTVERSION} + +MASTER_SITES+= http://dk.php.net/%SUBDIR%/ +MASTER_SITES+= http://de.php.net/%SUBDIR%/ +MASTER_SITES+= http://es.php.net/%SUBDIR%/ +MASTER_SITES+= http://fi.php.net/%SUBDIR%/ +MASTER_SITES+= http://fr.php.net/%SUBDIR%/ +MASTER_SITES+= http://gr.php.net/%SUBDIR%/ +MASTER_SITES+= http://it.php.net/%SUBDIR%/ +MASTER_SITES+= http://jp.php.net/%SUBDIR%/ +MASTER_SITES+= http://se.php.net/%SUBDIR%/ +MASTER_SITES+= http://uk.php.net/%SUBDIR%/ +MASTER_SITES+= http://us2.php.net/%SUBDIR%/ +MASTER_SITES+= http://br.php.net/%SUBDIR%/ +MASTER_SITES+= http://cn.php.net/%SUBDIR%/ + +MASTER_SITE_SUBDIR= distributions + +MAINTAINER= onborodin@gmail.com +COMMENT= PHP Scripting Language (Apache Module and CLI) + +BUILD_DEPENDS+= php:lang/php${PORTVERSION:R:S/.//g} +#RUN_DEPENDS +#BUILD_DEPENDS+= ${RUN_DEPENDS} + + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} +WRKSRC= ${WRKDIR}/${DISTNAME}/ext/${MODULE_NAME} + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} + +USES+= tar:xz gmake +GNU_CONFIGURE= yes +CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/php +LDFLAGS= -L${LOCALBASE}/lib + +MODULE_NAME= posix +DESTDIRNAME= INSTALL_ROOT +#EXTDIR +#INCLUDEDIR + +pre-configure: + cd ${WRKSRC} && ${CONFIGURE_ENV} phpize . + +post-install: + ${RM} -f ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} lib/php -type f >> ${TMPPLIST} + ${MKDIR} ${STAGEDIR}${PREFIX}/include/php + cd ${STAGEDIR}${PREFIX} && ${FIND} include/php -type f >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds lib/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds include/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + +.include +#EOF diff --git a/php74/php74-mod-posix/distinfo b/php74/php74-mod-posix/distinfo new file mode 100644 index 00000000..eef0be4d --- /dev/null +++ b/php74/php74-mod-posix/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1756241992 +SHA256 (php-7.4.33.tar.xz) = 924846abf93bc613815c55dd3f5809377813ac62a9ec4eb3778675b82a27b927 +SIZE (php-7.4.33.tar.xz) = 10420144 diff --git a/php74/php74-mod-posix/pkg-descr b/php74/php74-mod-posix/pkg-descr new file mode 100644 index 00000000..d6e42932 --- /dev/null +++ b/php74/php74-mod-posix/pkg-descr @@ -0,0 +1,9 @@ +PHP, which stands for "PHP: Hypertext Preprocessor" is a widely-used Open +Source general-purpose scripting language that is especially suited for +Web development and can be embedded into HTML. Its syntax draws upon C, +Java, and Perl, and is easy to learn. The main goal of the language is to +allow web developers to write dynamically generated webpages quickly, but +you can do much more with PHP. + +WWW: http://www.php.net/ + diff --git a/php74/php74-mod-pspell/Makefile b/php74/php74-mod-pspell/Makefile new file mode 100644 index 00000000..7828f8c2 --- /dev/null +++ b/php74/php74-mod-pspell/Makefile @@ -0,0 +1,63 @@ +# +# $Id: Makefile 2636 2009-09-30 12:09:37Z root $ +# +PORTNAME= php${PORTVERSION:R:S/.//g}-mod-${MODULE_NAME} +PORTVERSION= 7.4.33 +CATEGORIES= lang devel www +MASTER_SITES= ${MASTER_SITE_PHP} +MASTER_SITE_SUBDIR= distributions +DISTNAME= php-${PORTVERSION} + +MASTER_SITES+= http://dk.php.net/%SUBDIR%/ +MASTER_SITES+= http://de.php.net/%SUBDIR%/ +MASTER_SITES+= http://es.php.net/%SUBDIR%/ +MASTER_SITES+= http://fi.php.net/%SUBDIR%/ +MASTER_SITES+= http://fr.php.net/%SUBDIR%/ +MASTER_SITES+= http://gr.php.net/%SUBDIR%/ +MASTER_SITES+= http://it.php.net/%SUBDIR%/ +MASTER_SITES+= http://jp.php.net/%SUBDIR%/ +MASTER_SITES+= http://se.php.net/%SUBDIR%/ +MASTER_SITES+= http://uk.php.net/%SUBDIR%/ +MASTER_SITES+= http://us2.php.net/%SUBDIR%/ +MASTER_SITES+= http://br.php.net/%SUBDIR%/ +MASTER_SITES+= http://cn.php.net/%SUBDIR%/ + +MASTER_SITE_SUBDIR= distributions + +MAINTAINER= onborodin@gmail.com +COMMENT= PHP Scripting Language (Apache Module and CLI) + +BUILD_DEPENDS+= php:lang/php${PORTVERSION:R:S/.//g} +#RUN_DEPENDS +#BUILD_DEPENDS+= ${RUN_DEPENDS} +LIB_DEPENDS+= libpspell.so:text/aspell + + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} +WRKSRC= ${WRKDIR}/${DISTNAME}/ext/${MODULE_NAME} + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} + +USES+= tar:xz gmake +GNU_CONFIGURE= yes +CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/php +LDFLAGS= -L${LOCALBASE}/lib + +MODULE_NAME= pspell +DESTDIRNAME= INSTALL_ROOT +#EXTDIR +#INCLUDEDIR + +pre-configure: + cd ${WRKSRC} && ${CONFIGURE_ENV} phpize . + +post-install: + ${RM} -f ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} lib/php -type f >> ${TMPPLIST} + ${MKDIR} ${STAGEDIR}${PREFIX}/include/php + cd ${STAGEDIR}${PREFIX} && ${FIND} include/php -type f >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds lib/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds include/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + +.include +#EOF diff --git a/php74/php74-mod-pspell/Makefile-e b/php74/php74-mod-pspell/Makefile-e new file mode 100644 index 00000000..de40dd05 --- /dev/null +++ b/php74/php74-mod-pspell/Makefile-e @@ -0,0 +1,63 @@ +# +# $Id: Makefile 2636 2009-09-30 12:09:37Z root $ +# +PORTNAME= php${PORTVERSION:R:S/.//g}-mod-${MODULE_NAME} +PORTVERSION= 7.4.29 +CATEGORIES= lang devel www +MASTER_SITES= ${MASTER_SITE_PHP} +MASTER_SITE_SUBDIR= distributions +DISTNAME= php-${PORTVERSION} + +MASTER_SITES+= http://dk.php.net/%SUBDIR%/ +MASTER_SITES+= http://de.php.net/%SUBDIR%/ +MASTER_SITES+= http://es.php.net/%SUBDIR%/ +MASTER_SITES+= http://fi.php.net/%SUBDIR%/ +MASTER_SITES+= http://fr.php.net/%SUBDIR%/ +MASTER_SITES+= http://gr.php.net/%SUBDIR%/ +MASTER_SITES+= http://it.php.net/%SUBDIR%/ +MASTER_SITES+= http://jp.php.net/%SUBDIR%/ +MASTER_SITES+= http://se.php.net/%SUBDIR%/ +MASTER_SITES+= http://uk.php.net/%SUBDIR%/ +MASTER_SITES+= http://us2.php.net/%SUBDIR%/ +MASTER_SITES+= http://br.php.net/%SUBDIR%/ +MASTER_SITES+= http://cn.php.net/%SUBDIR%/ + +MASTER_SITE_SUBDIR= distributions + +MAINTAINER= onborodin@gmail.com +COMMENT= PHP Scripting Language (Apache Module and CLI) + +BUILD_DEPENDS+= php:lang/php${PORTVERSION:R:S/.//g} +#RUN_DEPENDS +#BUILD_DEPENDS+= ${RUN_DEPENDS} +LIB_DEPENDS+= libpspell.so:text/aspell + + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} +WRKSRC= ${WRKDIR}/${DISTNAME}/ext/${MODULE_NAME} + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} + +USES+= tar:xz gmake +GNU_CONFIGURE= yes +CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/php +LDFLAGS= -L${LOCALBASE}/lib + +MODULE_NAME= pspell +DESTDIRNAME= INSTALL_ROOT +#EXTDIR +#INCLUDEDIR + +pre-configure: + cd ${WRKSRC} && ${CONFIGURE_ENV} phpize . + +post-install: + ${RM} -f ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} lib/php -type f >> ${TMPPLIST} + ${MKDIR} ${STAGEDIR}${PREFIX}/include/php + cd ${STAGEDIR}${PREFIX} && ${FIND} include/php -type f >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds lib/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds include/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + +.include +#EOF diff --git a/php74/php74-mod-pspell/distinfo b/php74/php74-mod-pspell/distinfo new file mode 100644 index 00000000..eef0be4d --- /dev/null +++ b/php74/php74-mod-pspell/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1756241992 +SHA256 (php-7.4.33.tar.xz) = 924846abf93bc613815c55dd3f5809377813ac62a9ec4eb3778675b82a27b927 +SIZE (php-7.4.33.tar.xz) = 10420144 diff --git a/php74/php74-mod-pspell/pkg-descr b/php74/php74-mod-pspell/pkg-descr new file mode 100644 index 00000000..d6e42932 --- /dev/null +++ b/php74/php74-mod-pspell/pkg-descr @@ -0,0 +1,9 @@ +PHP, which stands for "PHP: Hypertext Preprocessor" is a widely-used Open +Source general-purpose scripting language that is especially suited for +Web development and can be embedded into HTML. Its syntax draws upon C, +Java, and Perl, and is easy to learn. The main goal of the language is to +allow web developers to write dynamically generated webpages quickly, but +you can do much more with PHP. + +WWW: http://www.php.net/ + diff --git a/php74/php74-mod-readline/Makefile b/php74/php74-mod-readline/Makefile new file mode 100644 index 00000000..4efccfd5 --- /dev/null +++ b/php74/php74-mod-readline/Makefile @@ -0,0 +1,77 @@ +# +# $Id: Makefile 2636 2009-09-30 12:09:37Z root $ +# +PORTNAME= php${PORTVERSION:R:S/.//g}-mod-${MODULE_NAME} +PORTVERSION= 7.4.33 +CATEGORIES= lang devel www +MASTER_SITES= ${MASTER_SITE_PHP} +MASTER_SITE_SUBDIR= distributions +DISTNAME= php-${PORTVERSION} + +MASTER_SITES+= http://dk.php.net/%SUBDIR%/ +MASTER_SITES+= http://de.php.net/%SUBDIR%/ +MASTER_SITES+= http://es.php.net/%SUBDIR%/ +MASTER_SITES+= http://fi.php.net/%SUBDIR%/ +MASTER_SITES+= http://fr.php.net/%SUBDIR%/ +MASTER_SITES+= http://gr.php.net/%SUBDIR%/ +MASTER_SITES+= http://it.php.net/%SUBDIR%/ +MASTER_SITES+= http://jp.php.net/%SUBDIR%/ +MASTER_SITES+= http://se.php.net/%SUBDIR%/ +MASTER_SITES+= http://uk.php.net/%SUBDIR%/ +MASTER_SITES+= http://us2.php.net/%SUBDIR%/ +MASTER_SITES+= http://br.php.net/%SUBDIR%/ +MASTER_SITES+= http://cn.php.net/%SUBDIR%/ + +MASTER_SITE_SUBDIR= distributions + +MAINTAINER= onborodin@gmail.com +COMMENT= PHP Scripting Language (Apache Module and CLI) + +BUILD_DEPENDS+= php:lang/php${PORTVERSION:R:S/.//g} +#RUN_DEPENDS +#BUILD_DEPENDS+= ${RUN_DEPENDS} + + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} +WRKSRC= ${WRKDIR}/${DISTNAME}/ext/${MODULE_NAME} +PATHDIR= ${WRKDIR}/${DISTNAME}/ext/${MODULE_NAME} + + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} + +USES+= tar:xz gmake +GNU_CONFIGURE= yes +CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/php +LDFLAGS= -L${LOCALBASE}/lib +CONFIGURE_ARGS+= --without-libedit +CONFIGURE_ARGS+= --with-readline=${LOCALBASE} + + +MODULE_NAME= readline +DESTDIRNAME= INSTALL_ROOT +#EXTDIR +#INCLUDEDIR + +CONFIGURE_ENV+= PHP_LIBEDIT=no + +pre-configure: + cd ${WRKSRC} && ${CONFIGURE_ENV} phpize . + +post-install: + ${RM} -f ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} lib/php -type f >> ${TMPPLIST} + ${MKDIR} ${STAGEDIR}${PREFIX}/include/php + cd ${STAGEDIR}${PREFIX} && ${FIND} include/php -type f >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds lib/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds include/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + +.include + +.if (${OSVERSION} > 1100000) +LIB_DEPENDS+= libreadline.so:devel/libreadline +CFLAGS+= -I${LOCALBASE}/include +LDFLAGS+= -L${LOCALBASE}/lib +.endif + +.include +#EOF diff --git a/php74/php74-mod-readline/Makefile-e b/php74/php74-mod-readline/Makefile-e new file mode 100644 index 00000000..c647a2af --- /dev/null +++ b/php74/php74-mod-readline/Makefile-e @@ -0,0 +1,77 @@ +# +# $Id: Makefile 2636 2009-09-30 12:09:37Z root $ +# +PORTNAME= php${PORTVERSION:R:S/.//g}-mod-${MODULE_NAME} +PORTVERSION= 7.4.29 +CATEGORIES= lang devel www +MASTER_SITES= ${MASTER_SITE_PHP} +MASTER_SITE_SUBDIR= distributions +DISTNAME= php-${PORTVERSION} + +MASTER_SITES+= http://dk.php.net/%SUBDIR%/ +MASTER_SITES+= http://de.php.net/%SUBDIR%/ +MASTER_SITES+= http://es.php.net/%SUBDIR%/ +MASTER_SITES+= http://fi.php.net/%SUBDIR%/ +MASTER_SITES+= http://fr.php.net/%SUBDIR%/ +MASTER_SITES+= http://gr.php.net/%SUBDIR%/ +MASTER_SITES+= http://it.php.net/%SUBDIR%/ +MASTER_SITES+= http://jp.php.net/%SUBDIR%/ +MASTER_SITES+= http://se.php.net/%SUBDIR%/ +MASTER_SITES+= http://uk.php.net/%SUBDIR%/ +MASTER_SITES+= http://us2.php.net/%SUBDIR%/ +MASTER_SITES+= http://br.php.net/%SUBDIR%/ +MASTER_SITES+= http://cn.php.net/%SUBDIR%/ + +MASTER_SITE_SUBDIR= distributions + +MAINTAINER= onborodin@gmail.com +COMMENT= PHP Scripting Language (Apache Module and CLI) + +BUILD_DEPENDS+= php:lang/php${PORTVERSION:R:S/.//g} +#RUN_DEPENDS +#BUILD_DEPENDS+= ${RUN_DEPENDS} + + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} +WRKSRC= ${WRKDIR}/${DISTNAME}/ext/${MODULE_NAME} +PATHDIR= ${WRKDIR}/${DISTNAME}/ext/${MODULE_NAME} + + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} + +USES+= tar:xz gmake +GNU_CONFIGURE= yes +CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/php +LDFLAGS= -L${LOCALBASE}/lib +CONFIGURE_ARGS+= --without-libedit +CONFIGURE_ARGS+= --with-readline=${LOCALBASE} + + +MODULE_NAME= readline +DESTDIRNAME= INSTALL_ROOT +#EXTDIR +#INCLUDEDIR + +CONFIGURE_ENV+= PHP_LIBEDIT=no + +pre-configure: + cd ${WRKSRC} && ${CONFIGURE_ENV} phpize . + +post-install: + ${RM} -f ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} lib/php -type f >> ${TMPPLIST} + ${MKDIR} ${STAGEDIR}${PREFIX}/include/php + cd ${STAGEDIR}${PREFIX} && ${FIND} include/php -type f >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds lib/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds include/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + +.include + +.if (${OSVERSION} > 1100000) +LIB_DEPENDS+= libreadline.so:devel/libreadline +CFLAGS+= -I${LOCALBASE}/include +LDFLAGS+= -L${LOCALBASE}/lib +.endif + +.include +#EOF diff --git a/php74/php74-mod-readline/distinfo b/php74/php74-mod-readline/distinfo new file mode 100644 index 00000000..eef0be4d --- /dev/null +++ b/php74/php74-mod-readline/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1756241992 +SHA256 (php-7.4.33.tar.xz) = 924846abf93bc613815c55dd3f5809377813ac62a9ec4eb3778675b82a27b927 +SIZE (php-7.4.33.tar.xz) = 10420144 diff --git a/php74/php74-mod-readline/files/__patch-x-config.m4 b/php74/php74-mod-readline/files/__patch-x-config.m4 new file mode 100644 index 00000000..13a06def --- /dev/null +++ b/php74/php74-mod-readline/files/__patch-x-config.m4 @@ -0,0 +1,12 @@ +--- ./config.m4.orig 2016-01-06 17:14:47.000000000 +0200 ++++ ./config.m4 2016-12-03 22:19:43.223269000 +0200 +@@ -2,9 +2,6 @@ + dnl $Id$ + dnl + +-PHP_ARG_WITH(libedit,for libedit readline replacement, +-[ --with-libedit[=DIR] Include libedit readline replacement (CLI/CGI only)]) +- + if test "$PHP_LIBEDIT" = "no"; then + PHP_ARG_WITH(readline,for readline support, + [ --with-readline[=DIR] Include readline support (CLI/CGI only)]) diff --git a/php74/php74-mod-readline/files/patch-x-config.m4 b/php74/php74-mod-readline/files/patch-x-config.m4 new file mode 100644 index 00000000..683a6d9c --- /dev/null +++ b/php74/php74-mod-readline/files/patch-x-config.m4 @@ -0,0 +1,11 @@ +--- ./config.m4.orig 2022-04-12 12:55:44.000000000 +0200 ++++ ./config.m4 2022-04-26 23:16:23.127198000 +0200 +@@ -1,8 +1,3 @@ +-PHP_ARG_WITH([libedit], +- [for libedit readline replacement], +- [AS_HELP_STRING([--with-libedit], +- [Include libedit readline replacement (CLI/CGI only)])]) +- + if test "$PHP_LIBEDIT" = "no"; then + PHP_ARG_WITH([readline], + [for readline support], diff --git a/php74/php74-mod-readline/pkg-descr b/php74/php74-mod-readline/pkg-descr new file mode 100644 index 00000000..d6e42932 --- /dev/null +++ b/php74/php74-mod-readline/pkg-descr @@ -0,0 +1,9 @@ +PHP, which stands for "PHP: Hypertext Preprocessor" is a widely-used Open +Source general-purpose scripting language that is especially suited for +Web development and can be embedded into HTML. Its syntax draws upon C, +Java, and Perl, and is easy to learn. The main goal of the language is to +allow web developers to write dynamically generated webpages quickly, but +you can do much more with PHP. + +WWW: http://www.php.net/ + diff --git a/php74/php74-mod-session/Makefile b/php74/php74-mod-session/Makefile new file mode 100644 index 00000000..8c21cf52 --- /dev/null +++ b/php74/php74-mod-session/Makefile @@ -0,0 +1,62 @@ +# +# $Id: Makefile 2636 2009-09-30 12:09:37Z root $ +# +PORTNAME= php${PORTVERSION:R:S/.//g}-mod-${MODULE_NAME} +PORTVERSION= 7.4.33 +CATEGORIES= lang devel www +MASTER_SITES= ${MASTER_SITE_PHP} +MASTER_SITE_SUBDIR= distributions +DISTNAME= php-${PORTVERSION} + +MASTER_SITES+= http://dk.php.net/%SUBDIR%/ +MASTER_SITES+= http://de.php.net/%SUBDIR%/ +MASTER_SITES+= http://es.php.net/%SUBDIR%/ +MASTER_SITES+= http://fi.php.net/%SUBDIR%/ +MASTER_SITES+= http://fr.php.net/%SUBDIR%/ +MASTER_SITES+= http://gr.php.net/%SUBDIR%/ +MASTER_SITES+= http://it.php.net/%SUBDIR%/ +MASTER_SITES+= http://jp.php.net/%SUBDIR%/ +MASTER_SITES+= http://se.php.net/%SUBDIR%/ +MASTER_SITES+= http://uk.php.net/%SUBDIR%/ +MASTER_SITES+= http://us2.php.net/%SUBDIR%/ +MASTER_SITES+= http://br.php.net/%SUBDIR%/ +MASTER_SITES+= http://cn.php.net/%SUBDIR%/ + +MASTER_SITE_SUBDIR= distributions + +MAINTAINER= onborodin@gmail.com +COMMENT= PHP Scripting Language (Apache Module and CLI) + +BUILD_DEPENDS+= php:lang/php${PORTVERSION:R:S/.//g} +#RUN_DEPENDS +#BUILD_DEPENDS+= ${RUN_DEPENDS} + + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} +WRKSRC= ${WRKDIR}/${DISTNAME}/ext/${MODULE_NAME} + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} + +USES+= tar:xz gmake +GNU_CONFIGURE= yes +CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/php +LDFLAGS= -L${LOCALBASE}/lib + +MODULE_NAME= session +DESTDIRNAME= INSTALL_ROOT +#EXTDIR +#INCLUDEDIR + +pre-configure: + cd ${WRKSRC} && ${CONFIGURE_ENV} phpize . + +post-install: + ${RM} -f ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} lib/php -type f >> ${TMPPLIST} + ${MKDIR} ${STAGEDIR}${PREFIX}/include/php + cd ${STAGEDIR}${PREFIX} && ${FIND} include/php -type f >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds lib/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds include/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + +.include +#EOF diff --git a/php74/php74-mod-session/Makefile-e b/php74/php74-mod-session/Makefile-e new file mode 100644 index 00000000..d8c8c095 --- /dev/null +++ b/php74/php74-mod-session/Makefile-e @@ -0,0 +1,62 @@ +# +# $Id: Makefile 2636 2009-09-30 12:09:37Z root $ +# +PORTNAME= php${PORTVERSION:R:S/.//g}-mod-${MODULE_NAME} +PORTVERSION= 7.4.29 +CATEGORIES= lang devel www +MASTER_SITES= ${MASTER_SITE_PHP} +MASTER_SITE_SUBDIR= distributions +DISTNAME= php-${PORTVERSION} + +MASTER_SITES+= http://dk.php.net/%SUBDIR%/ +MASTER_SITES+= http://de.php.net/%SUBDIR%/ +MASTER_SITES+= http://es.php.net/%SUBDIR%/ +MASTER_SITES+= http://fi.php.net/%SUBDIR%/ +MASTER_SITES+= http://fr.php.net/%SUBDIR%/ +MASTER_SITES+= http://gr.php.net/%SUBDIR%/ +MASTER_SITES+= http://it.php.net/%SUBDIR%/ +MASTER_SITES+= http://jp.php.net/%SUBDIR%/ +MASTER_SITES+= http://se.php.net/%SUBDIR%/ +MASTER_SITES+= http://uk.php.net/%SUBDIR%/ +MASTER_SITES+= http://us2.php.net/%SUBDIR%/ +MASTER_SITES+= http://br.php.net/%SUBDIR%/ +MASTER_SITES+= http://cn.php.net/%SUBDIR%/ + +MASTER_SITE_SUBDIR= distributions + +MAINTAINER= onborodin@gmail.com +COMMENT= PHP Scripting Language (Apache Module and CLI) + +BUILD_DEPENDS+= php:lang/php${PORTVERSION:R:S/.//g} +#RUN_DEPENDS +#BUILD_DEPENDS+= ${RUN_DEPENDS} + + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} +WRKSRC= ${WRKDIR}/${DISTNAME}/ext/${MODULE_NAME} + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} + +USES+= tar:xz gmake +GNU_CONFIGURE= yes +CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/php +LDFLAGS= -L${LOCALBASE}/lib + +MODULE_NAME= session +DESTDIRNAME= INSTALL_ROOT +#EXTDIR +#INCLUDEDIR + +pre-configure: + cd ${WRKSRC} && ${CONFIGURE_ENV} phpize . + +post-install: + ${RM} -f ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} lib/php -type f >> ${TMPPLIST} + ${MKDIR} ${STAGEDIR}${PREFIX}/include/php + cd ${STAGEDIR}${PREFIX} && ${FIND} include/php -type f >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds lib/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds include/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + +.include +#EOF diff --git a/php74/php74-mod-session/distinfo b/php74/php74-mod-session/distinfo new file mode 100644 index 00000000..eef0be4d --- /dev/null +++ b/php74/php74-mod-session/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1756241992 +SHA256 (php-7.4.33.tar.xz) = 924846abf93bc613815c55dd3f5809377813ac62a9ec4eb3778675b82a27b927 +SIZE (php-7.4.33.tar.xz) = 10420144 diff --git a/php74/php74-mod-session/pkg-descr b/php74/php74-mod-session/pkg-descr new file mode 100644 index 00000000..d6e42932 --- /dev/null +++ b/php74/php74-mod-session/pkg-descr @@ -0,0 +1,9 @@ +PHP, which stands for "PHP: Hypertext Preprocessor" is a widely-used Open +Source general-purpose scripting language that is especially suited for +Web development and can be embedded into HTML. Its syntax draws upon C, +Java, and Perl, and is easy to learn. The main goal of the language is to +allow web developers to write dynamically generated webpages quickly, but +you can do much more with PHP. + +WWW: http://www.php.net/ + diff --git a/php74/php74-mod-shmop/Makefile b/php74/php74-mod-shmop/Makefile new file mode 100644 index 00000000..8dca7456 --- /dev/null +++ b/php74/php74-mod-shmop/Makefile @@ -0,0 +1,62 @@ +# +# $Id: Makefile 2636 2009-09-30 12:09:37Z root $ +# +PORTNAME= php${PORTVERSION:R:S/.//g}-mod-${MODULE_NAME} +PORTVERSION= 7.4.33 +CATEGORIES= lang devel www +MASTER_SITES= ${MASTER_SITE_PHP} +MASTER_SITE_SUBDIR= distributions +DISTNAME= php-${PORTVERSION} + +MASTER_SITES+= http://dk.php.net/%SUBDIR%/ +MASTER_SITES+= http://de.php.net/%SUBDIR%/ +MASTER_SITES+= http://es.php.net/%SUBDIR%/ +MASTER_SITES+= http://fi.php.net/%SUBDIR%/ +MASTER_SITES+= http://fr.php.net/%SUBDIR%/ +MASTER_SITES+= http://gr.php.net/%SUBDIR%/ +MASTER_SITES+= http://it.php.net/%SUBDIR%/ +MASTER_SITES+= http://jp.php.net/%SUBDIR%/ +MASTER_SITES+= http://se.php.net/%SUBDIR%/ +MASTER_SITES+= http://uk.php.net/%SUBDIR%/ +MASTER_SITES+= http://us2.php.net/%SUBDIR%/ +MASTER_SITES+= http://br.php.net/%SUBDIR%/ +MASTER_SITES+= http://cn.php.net/%SUBDIR%/ + +MASTER_SITE_SUBDIR= distributions + +MAINTAINER= onborodin@gmail.com +COMMENT= PHP Scripting Language (Apache Module and CLI) + +BUILD_DEPENDS+= php:lang/php${PORTVERSION:R:S/.//g} +#RUN_DEPENDS +#BUILD_DEPENDS+= ${RUN_DEPENDS} + + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} +WRKSRC= ${WRKDIR}/${DISTNAME}/ext/${MODULE_NAME} + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} + +USES+= tar:xz gmake +GNU_CONFIGURE= yes +CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/php +LDFLAGS= -L${LOCALBASE}/lib + +MODULE_NAME= shmop +DESTDIRNAME= INSTALL_ROOT +#EXTDIR +#INCLUDEDIR + +pre-configure: + cd ${WRKSRC} && ${CONFIGURE_ENV} phpize . + +post-install: + ${RM} -f ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} lib/php -type f >> ${TMPPLIST} + ${MKDIR} ${STAGEDIR}${PREFIX}/include/php + cd ${STAGEDIR}${PREFIX} && ${FIND} include/php -type f >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds lib/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds include/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + +.include +#EOF diff --git a/php74/php74-mod-shmop/Makefile-e b/php74/php74-mod-shmop/Makefile-e new file mode 100644 index 00000000..f4969121 --- /dev/null +++ b/php74/php74-mod-shmop/Makefile-e @@ -0,0 +1,62 @@ +# +# $Id: Makefile 2636 2009-09-30 12:09:37Z root $ +# +PORTNAME= php${PORTVERSION:R:S/.//g}-mod-${MODULE_NAME} +PORTVERSION= 7.4.29 +CATEGORIES= lang devel www +MASTER_SITES= ${MASTER_SITE_PHP} +MASTER_SITE_SUBDIR= distributions +DISTNAME= php-${PORTVERSION} + +MASTER_SITES+= http://dk.php.net/%SUBDIR%/ +MASTER_SITES+= http://de.php.net/%SUBDIR%/ +MASTER_SITES+= http://es.php.net/%SUBDIR%/ +MASTER_SITES+= http://fi.php.net/%SUBDIR%/ +MASTER_SITES+= http://fr.php.net/%SUBDIR%/ +MASTER_SITES+= http://gr.php.net/%SUBDIR%/ +MASTER_SITES+= http://it.php.net/%SUBDIR%/ +MASTER_SITES+= http://jp.php.net/%SUBDIR%/ +MASTER_SITES+= http://se.php.net/%SUBDIR%/ +MASTER_SITES+= http://uk.php.net/%SUBDIR%/ +MASTER_SITES+= http://us2.php.net/%SUBDIR%/ +MASTER_SITES+= http://br.php.net/%SUBDIR%/ +MASTER_SITES+= http://cn.php.net/%SUBDIR%/ + +MASTER_SITE_SUBDIR= distributions + +MAINTAINER= onborodin@gmail.com +COMMENT= PHP Scripting Language (Apache Module and CLI) + +BUILD_DEPENDS+= php:lang/php${PORTVERSION:R:S/.//g} +#RUN_DEPENDS +#BUILD_DEPENDS+= ${RUN_DEPENDS} + + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} +WRKSRC= ${WRKDIR}/${DISTNAME}/ext/${MODULE_NAME} + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} + +USES+= tar:xz gmake +GNU_CONFIGURE= yes +CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/php +LDFLAGS= -L${LOCALBASE}/lib + +MODULE_NAME= shmop +DESTDIRNAME= INSTALL_ROOT +#EXTDIR +#INCLUDEDIR + +pre-configure: + cd ${WRKSRC} && ${CONFIGURE_ENV} phpize . + +post-install: + ${RM} -f ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} lib/php -type f >> ${TMPPLIST} + ${MKDIR} ${STAGEDIR}${PREFIX}/include/php + cd ${STAGEDIR}${PREFIX} && ${FIND} include/php -type f >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds lib/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds include/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + +.include +#EOF diff --git a/php74/php74-mod-shmop/distinfo b/php74/php74-mod-shmop/distinfo new file mode 100644 index 00000000..882c7ba2 --- /dev/null +++ b/php74/php74-mod-shmop/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1756241993 +SHA256 (php-7.4.33.tar.xz) = 924846abf93bc613815c55dd3f5809377813ac62a9ec4eb3778675b82a27b927 +SIZE (php-7.4.33.tar.xz) = 10420144 diff --git a/php74/php74-mod-shmop/pkg-descr b/php74/php74-mod-shmop/pkg-descr new file mode 100644 index 00000000..d6e42932 --- /dev/null +++ b/php74/php74-mod-shmop/pkg-descr @@ -0,0 +1,9 @@ +PHP, which stands for "PHP: Hypertext Preprocessor" is a widely-used Open +Source general-purpose scripting language that is especially suited for +Web development and can be embedded into HTML. Its syntax draws upon C, +Java, and Perl, and is easy to learn. The main goal of the language is to +allow web developers to write dynamically generated webpages quickly, but +you can do much more with PHP. + +WWW: http://www.php.net/ + diff --git a/php74/php74-mod-simplexml/Makefile b/php74/php74-mod-simplexml/Makefile new file mode 100644 index 00000000..9e6d5cba --- /dev/null +++ b/php74/php74-mod-simplexml/Makefile @@ -0,0 +1,64 @@ +# +# $Id: Makefile 2636 2009-09-30 12:09:37Z root $ +# +PORTNAME= php${PORTVERSION:R:S/.//g}-mod-${MODULE_NAME} +PORTVERSION= 7.4.33 +CATEGORIES= lang devel www +MASTER_SITES= ${MASTER_SITE_PHP} +MASTER_SITE_SUBDIR= distributions +DISTNAME= php-${PORTVERSION} + +MASTER_SITES+= http://dk.php.net/%SUBDIR%/ +MASTER_SITES+= http://de.php.net/%SUBDIR%/ +MASTER_SITES+= http://es.php.net/%SUBDIR%/ +MASTER_SITES+= http://fi.php.net/%SUBDIR%/ +MASTER_SITES+= http://fr.php.net/%SUBDIR%/ +MASTER_SITES+= http://gr.php.net/%SUBDIR%/ +MASTER_SITES+= http://it.php.net/%SUBDIR%/ +MASTER_SITES+= http://jp.php.net/%SUBDIR%/ +MASTER_SITES+= http://se.php.net/%SUBDIR%/ +MASTER_SITES+= http://uk.php.net/%SUBDIR%/ +MASTER_SITES+= http://us2.php.net/%SUBDIR%/ +MASTER_SITES+= http://br.php.net/%SUBDIR%/ +MASTER_SITES+= http://cn.php.net/%SUBDIR%/ + +MASTER_SITE_SUBDIR= distributions + +MAINTAINER= onborodin@gmail.com +COMMENT= PHP Scripting Language (Apache Module and CLI) + +BUILD_DEPENDS+= php:lang/php${PORTVERSION:R:S/.//g} +#RUN_DEPENDS +#BUILD_DEPENDS+= ${RUN_DEPENDS} +LIB_DEPENDS+= libxml2.so:text/libxml2 + + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} +WRKSRC= ${WRKDIR}/${DISTNAME}/ext/${MODULE_NAME} + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} + +USES+= tar:xz gmake +GNU_CONFIGURE= yes +CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/php +LDFLAGS= -L${LOCALBASE}/lib +CONFIGURE_ARGS+= --with-libxml-dir=${LOCALBASE} + +MODULE_NAME= simplexml +DESTDIRNAME= INSTALL_ROOT +#EXTDIR +#INCLUDEDIR + +pre-configure: + cd ${WRKSRC} && ${CONFIGURE_ENV} phpize . + +post-install: + ${RM} -f ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} lib/php -type f >> ${TMPPLIST} + ${MKDIR} ${STAGEDIR}${PREFIX}/include/php + cd ${STAGEDIR}${PREFIX} && ${FIND} include/php -type f >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds lib/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds include/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + +.include +#EOF diff --git a/php74/php74-mod-simplexml/Makefile-e b/php74/php74-mod-simplexml/Makefile-e new file mode 100644 index 00000000..16a33396 --- /dev/null +++ b/php74/php74-mod-simplexml/Makefile-e @@ -0,0 +1,64 @@ +# +# $Id: Makefile 2636 2009-09-30 12:09:37Z root $ +# +PORTNAME= php${PORTVERSION:R:S/.//g}-mod-${MODULE_NAME} +PORTVERSION= 7.4.29 +CATEGORIES= lang devel www +MASTER_SITES= ${MASTER_SITE_PHP} +MASTER_SITE_SUBDIR= distributions +DISTNAME= php-${PORTVERSION} + +MASTER_SITES+= http://dk.php.net/%SUBDIR%/ +MASTER_SITES+= http://de.php.net/%SUBDIR%/ +MASTER_SITES+= http://es.php.net/%SUBDIR%/ +MASTER_SITES+= http://fi.php.net/%SUBDIR%/ +MASTER_SITES+= http://fr.php.net/%SUBDIR%/ +MASTER_SITES+= http://gr.php.net/%SUBDIR%/ +MASTER_SITES+= http://it.php.net/%SUBDIR%/ +MASTER_SITES+= http://jp.php.net/%SUBDIR%/ +MASTER_SITES+= http://se.php.net/%SUBDIR%/ +MASTER_SITES+= http://uk.php.net/%SUBDIR%/ +MASTER_SITES+= http://us2.php.net/%SUBDIR%/ +MASTER_SITES+= http://br.php.net/%SUBDIR%/ +MASTER_SITES+= http://cn.php.net/%SUBDIR%/ + +MASTER_SITE_SUBDIR= distributions + +MAINTAINER= onborodin@gmail.com +COMMENT= PHP Scripting Language (Apache Module and CLI) + +BUILD_DEPENDS+= php:lang/php${PORTVERSION:R:S/.//g} +#RUN_DEPENDS +#BUILD_DEPENDS+= ${RUN_DEPENDS} +LIB_DEPENDS+= libxml2.so:text/libxml2 + + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} +WRKSRC= ${WRKDIR}/${DISTNAME}/ext/${MODULE_NAME} + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} + +USES+= tar:xz gmake +GNU_CONFIGURE= yes +CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/php +LDFLAGS= -L${LOCALBASE}/lib +CONFIGURE_ARGS+= --with-libxml-dir=${LOCALBASE} + +MODULE_NAME= simplexml +DESTDIRNAME= INSTALL_ROOT +#EXTDIR +#INCLUDEDIR + +pre-configure: + cd ${WRKSRC} && ${CONFIGURE_ENV} phpize . + +post-install: + ${RM} -f ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} lib/php -type f >> ${TMPPLIST} + ${MKDIR} ${STAGEDIR}${PREFIX}/include/php + cd ${STAGEDIR}${PREFIX} && ${FIND} include/php -type f >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds lib/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds include/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + +.include +#EOF diff --git a/php74/php74-mod-simplexml/distinfo b/php74/php74-mod-simplexml/distinfo new file mode 100644 index 00000000..882c7ba2 --- /dev/null +++ b/php74/php74-mod-simplexml/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1756241993 +SHA256 (php-7.4.33.tar.xz) = 924846abf93bc613815c55dd3f5809377813ac62a9ec4eb3778675b82a27b927 +SIZE (php-7.4.33.tar.xz) = 10420144 diff --git a/php74/php74-mod-simplexml/pkg-descr b/php74/php74-mod-simplexml/pkg-descr new file mode 100644 index 00000000..d6e42932 --- /dev/null +++ b/php74/php74-mod-simplexml/pkg-descr @@ -0,0 +1,9 @@ +PHP, which stands for "PHP: Hypertext Preprocessor" is a widely-used Open +Source general-purpose scripting language that is especially suited for +Web development and can be embedded into HTML. Its syntax draws upon C, +Java, and Perl, and is easy to learn. The main goal of the language is to +allow web developers to write dynamically generated webpages quickly, but +you can do much more with PHP. + +WWW: http://www.php.net/ + diff --git a/php74/php74-mod-soap/Makefile b/php74/php74-mod-soap/Makefile new file mode 100644 index 00000000..42715c74 --- /dev/null +++ b/php74/php74-mod-soap/Makefile @@ -0,0 +1,64 @@ +# +# $Id: Makefile 2636 2009-09-30 12:09:37Z root $ +# +PORTNAME= php${PORTVERSION:R:S/.//g}-mod-${MODULE_NAME} +PORTVERSION= 7.4.33 +CATEGORIES= lang devel www +MASTER_SITES= ${MASTER_SITE_PHP} +MASTER_SITE_SUBDIR= distributions +DISTNAME= php-${PORTVERSION} + +MASTER_SITES+= http://dk.php.net/%SUBDIR%/ +MASTER_SITES+= http://de.php.net/%SUBDIR%/ +MASTER_SITES+= http://es.php.net/%SUBDIR%/ +MASTER_SITES+= http://fi.php.net/%SUBDIR%/ +MASTER_SITES+= http://fr.php.net/%SUBDIR%/ +MASTER_SITES+= http://gr.php.net/%SUBDIR%/ +MASTER_SITES+= http://it.php.net/%SUBDIR%/ +MASTER_SITES+= http://jp.php.net/%SUBDIR%/ +MASTER_SITES+= http://se.php.net/%SUBDIR%/ +MASTER_SITES+= http://uk.php.net/%SUBDIR%/ +MASTER_SITES+= http://us2.php.net/%SUBDIR%/ +MASTER_SITES+= http://br.php.net/%SUBDIR%/ +MASTER_SITES+= http://cn.php.net/%SUBDIR%/ + +MASTER_SITE_SUBDIR= distributions + +MAINTAINER= onborodin@gmail.com +COMMENT= PHP Scripting Language (Apache Module and CLI) + +BUILD_DEPENDS+= php:lang/php${PORTVERSION:R:S/.//g} +#RUN_DEPENDS +#BUILD_DEPENDS+= ${RUN_DEPENDS} +LIB_DEPENDS+= libxml2.so:text/libxml2 + + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} +WRKSRC= ${WRKDIR}/${DISTNAME}/ext/${MODULE_NAME} + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} + +USES+= tar:xz gmake +GNU_CONFIGURE= yes +CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/php +LDFLAGS= -L${LOCALBASE}/lib +CONFIGURE_ARGS+= --with-libxml-dir=${LOCALBASE} + +MODULE_NAME= soap +DESTDIRNAME= INSTALL_ROOT +#EXTDIR +#INCLUDEDIR + +pre-configure: + cd ${WRKSRC} && ${CONFIGURE_ENV} phpize . + +post-install: + ${RM} -f ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} lib/php -type f >> ${TMPPLIST} + ${MKDIR} ${STAGEDIR}${PREFIX}/include/php +# cd ${STAGEDIR}${PREFIX} && ${FIND} include/php -type f >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds lib/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} +# cd ${STAGEDIR}${PREFIX} && ${FIND} -ds include/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + +.include +#EOF diff --git a/php74/php74-mod-soap/Makefile-e b/php74/php74-mod-soap/Makefile-e new file mode 100644 index 00000000..7f04d7d9 --- /dev/null +++ b/php74/php74-mod-soap/Makefile-e @@ -0,0 +1,64 @@ +# +# $Id: Makefile 2636 2009-09-30 12:09:37Z root $ +# +PORTNAME= php${PORTVERSION:R:S/.//g}-mod-${MODULE_NAME} +PORTVERSION= 7.4.29 +CATEGORIES= lang devel www +MASTER_SITES= ${MASTER_SITE_PHP} +MASTER_SITE_SUBDIR= distributions +DISTNAME= php-${PORTVERSION} + +MASTER_SITES+= http://dk.php.net/%SUBDIR%/ +MASTER_SITES+= http://de.php.net/%SUBDIR%/ +MASTER_SITES+= http://es.php.net/%SUBDIR%/ +MASTER_SITES+= http://fi.php.net/%SUBDIR%/ +MASTER_SITES+= http://fr.php.net/%SUBDIR%/ +MASTER_SITES+= http://gr.php.net/%SUBDIR%/ +MASTER_SITES+= http://it.php.net/%SUBDIR%/ +MASTER_SITES+= http://jp.php.net/%SUBDIR%/ +MASTER_SITES+= http://se.php.net/%SUBDIR%/ +MASTER_SITES+= http://uk.php.net/%SUBDIR%/ +MASTER_SITES+= http://us2.php.net/%SUBDIR%/ +MASTER_SITES+= http://br.php.net/%SUBDIR%/ +MASTER_SITES+= http://cn.php.net/%SUBDIR%/ + +MASTER_SITE_SUBDIR= distributions + +MAINTAINER= onborodin@gmail.com +COMMENT= PHP Scripting Language (Apache Module and CLI) + +BUILD_DEPENDS+= php:lang/php${PORTVERSION:R:S/.//g} +#RUN_DEPENDS +#BUILD_DEPENDS+= ${RUN_DEPENDS} +LIB_DEPENDS+= libxml2.so:text/libxml2 + + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} +WRKSRC= ${WRKDIR}/${DISTNAME}/ext/${MODULE_NAME} + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} + +USES+= tar:xz gmake +GNU_CONFIGURE= yes +CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/php +LDFLAGS= -L${LOCALBASE}/lib +CONFIGURE_ARGS+= --with-libxml-dir=${LOCALBASE} + +MODULE_NAME= soap +DESTDIRNAME= INSTALL_ROOT +#EXTDIR +#INCLUDEDIR + +pre-configure: + cd ${WRKSRC} && ${CONFIGURE_ENV} phpize . + +post-install: + ${RM} -f ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} lib/php -type f >> ${TMPPLIST} + ${MKDIR} ${STAGEDIR}${PREFIX}/include/php +# cd ${STAGEDIR}${PREFIX} && ${FIND} include/php -type f >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds lib/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} +# cd ${STAGEDIR}${PREFIX} && ${FIND} -ds include/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + +.include +#EOF diff --git a/php74/php74-mod-soap/distinfo b/php74/php74-mod-soap/distinfo new file mode 100644 index 00000000..882c7ba2 --- /dev/null +++ b/php74/php74-mod-soap/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1756241993 +SHA256 (php-7.4.33.tar.xz) = 924846abf93bc613815c55dd3f5809377813ac62a9ec4eb3778675b82a27b927 +SIZE (php-7.4.33.tar.xz) = 10420144 diff --git a/php74/php74-mod-soap/pkg-descr b/php74/php74-mod-soap/pkg-descr new file mode 100644 index 00000000..d6e42932 --- /dev/null +++ b/php74/php74-mod-soap/pkg-descr @@ -0,0 +1,9 @@ +PHP, which stands for "PHP: Hypertext Preprocessor" is a widely-used Open +Source general-purpose scripting language that is especially suited for +Web development and can be embedded into HTML. Its syntax draws upon C, +Java, and Perl, and is easy to learn. The main goal of the language is to +allow web developers to write dynamically generated webpages quickly, but +you can do much more with PHP. + +WWW: http://www.php.net/ + diff --git a/php74/php74-mod-sockets/Makefile b/php74/php74-mod-sockets/Makefile new file mode 100644 index 00000000..f14c4853 --- /dev/null +++ b/php74/php74-mod-sockets/Makefile @@ -0,0 +1,62 @@ +# +# $Id: Makefile 2636 2009-09-30 12:09:37Z root $ +# +PORTNAME= php${PORTVERSION:R:S/.//g}-mod-${MODULE_NAME} +PORTVERSION= 7.4.33 +CATEGORIES= lang devel www +MASTER_SITES= ${MASTER_SITE_PHP} +MASTER_SITE_SUBDIR= distributions +DISTNAME= php-${PORTVERSION} + +MASTER_SITES+= http://dk.php.net/%SUBDIR%/ +MASTER_SITES+= http://de.php.net/%SUBDIR%/ +MASTER_SITES+= http://es.php.net/%SUBDIR%/ +MASTER_SITES+= http://fi.php.net/%SUBDIR%/ +MASTER_SITES+= http://fr.php.net/%SUBDIR%/ +MASTER_SITES+= http://gr.php.net/%SUBDIR%/ +MASTER_SITES+= http://it.php.net/%SUBDIR%/ +MASTER_SITES+= http://jp.php.net/%SUBDIR%/ +MASTER_SITES+= http://se.php.net/%SUBDIR%/ +MASTER_SITES+= http://uk.php.net/%SUBDIR%/ +MASTER_SITES+= http://us2.php.net/%SUBDIR%/ +MASTER_SITES+= http://br.php.net/%SUBDIR%/ +MASTER_SITES+= http://cn.php.net/%SUBDIR%/ + +MASTER_SITE_SUBDIR= distributions + +MAINTAINER= onborodin@gmail.com +COMMENT= PHP Scripting Language (Apache Module and CLI) + +BUILD_DEPENDS+= php:lang/php${PORTVERSION:R:S/.//g} +#RUN_DEPENDS +#BUILD_DEPENDS+= ${RUN_DEPENDS} + + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} +WRKSRC= ${WRKDIR}/${DISTNAME}/ext/${MODULE_NAME} + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} + +USES+= tar:xz gmake +GNU_CONFIGURE= yes +CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/php +LDFLAGS= -L${LOCALBASE}/lib + +MODULE_NAME= sockets +DESTDIRNAME= INSTALL_ROOT +#EXTDIR +#INCLUDEDIR + +pre-configure: + cd ${WRKSRC} && ${CONFIGURE_ENV} phpize . + +post-install: + ${RM} -f ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} lib/php -type f >> ${TMPPLIST} + ${MKDIR} ${STAGEDIR}${PREFIX}/include/php + cd ${STAGEDIR}${PREFIX} && ${FIND} include/php -type f >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds lib/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds include/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + +.include +#EOF diff --git a/php74/php74-mod-sockets/Makefile-e b/php74/php74-mod-sockets/Makefile-e new file mode 100644 index 00000000..3e68f589 --- /dev/null +++ b/php74/php74-mod-sockets/Makefile-e @@ -0,0 +1,62 @@ +# +# $Id: Makefile 2636 2009-09-30 12:09:37Z root $ +# +PORTNAME= php${PORTVERSION:R:S/.//g}-mod-${MODULE_NAME} +PORTVERSION= 7.4.29 +CATEGORIES= lang devel www +MASTER_SITES= ${MASTER_SITE_PHP} +MASTER_SITE_SUBDIR= distributions +DISTNAME= php-${PORTVERSION} + +MASTER_SITES+= http://dk.php.net/%SUBDIR%/ +MASTER_SITES+= http://de.php.net/%SUBDIR%/ +MASTER_SITES+= http://es.php.net/%SUBDIR%/ +MASTER_SITES+= http://fi.php.net/%SUBDIR%/ +MASTER_SITES+= http://fr.php.net/%SUBDIR%/ +MASTER_SITES+= http://gr.php.net/%SUBDIR%/ +MASTER_SITES+= http://it.php.net/%SUBDIR%/ +MASTER_SITES+= http://jp.php.net/%SUBDIR%/ +MASTER_SITES+= http://se.php.net/%SUBDIR%/ +MASTER_SITES+= http://uk.php.net/%SUBDIR%/ +MASTER_SITES+= http://us2.php.net/%SUBDIR%/ +MASTER_SITES+= http://br.php.net/%SUBDIR%/ +MASTER_SITES+= http://cn.php.net/%SUBDIR%/ + +MASTER_SITE_SUBDIR= distributions + +MAINTAINER= onborodin@gmail.com +COMMENT= PHP Scripting Language (Apache Module and CLI) + +BUILD_DEPENDS+= php:lang/php${PORTVERSION:R:S/.//g} +#RUN_DEPENDS +#BUILD_DEPENDS+= ${RUN_DEPENDS} + + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} +WRKSRC= ${WRKDIR}/${DISTNAME}/ext/${MODULE_NAME} + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} + +USES+= tar:xz gmake +GNU_CONFIGURE= yes +CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/php +LDFLAGS= -L${LOCALBASE}/lib + +MODULE_NAME= sockets +DESTDIRNAME= INSTALL_ROOT +#EXTDIR +#INCLUDEDIR + +pre-configure: + cd ${WRKSRC} && ${CONFIGURE_ENV} phpize . + +post-install: + ${RM} -f ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} lib/php -type f >> ${TMPPLIST} + ${MKDIR} ${STAGEDIR}${PREFIX}/include/php + cd ${STAGEDIR}${PREFIX} && ${FIND} include/php -type f >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds lib/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds include/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + +.include +#EOF diff --git a/php74/php74-mod-sockets/distinfo b/php74/php74-mod-sockets/distinfo new file mode 100644 index 00000000..882c7ba2 --- /dev/null +++ b/php74/php74-mod-sockets/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1756241993 +SHA256 (php-7.4.33.tar.xz) = 924846abf93bc613815c55dd3f5809377813ac62a9ec4eb3778675b82a27b927 +SIZE (php-7.4.33.tar.xz) = 10420144 diff --git a/php74/php74-mod-sockets/pkg-descr b/php74/php74-mod-sockets/pkg-descr new file mode 100644 index 00000000..d6e42932 --- /dev/null +++ b/php74/php74-mod-sockets/pkg-descr @@ -0,0 +1,9 @@ +PHP, which stands for "PHP: Hypertext Preprocessor" is a widely-used Open +Source general-purpose scripting language that is especially suited for +Web development and can be embedded into HTML. Its syntax draws upon C, +Java, and Perl, and is easy to learn. The main goal of the language is to +allow web developers to write dynamically generated webpages quickly, but +you can do much more with PHP. + +WWW: http://www.php.net/ + diff --git a/php74/php74-mod-sodium/Makefile b/php74/php74-mod-sodium/Makefile new file mode 100644 index 00000000..fa976a75 --- /dev/null +++ b/php74/php74-mod-sodium/Makefile @@ -0,0 +1,70 @@ +# +# $Id: Makefile 2636 2009-09-30 12:09:37Z root $ +# +PORTNAME= php${PORTVERSION:R:S/.//g}-mod-${MODULE_NAME} +PORTVERSION= 7.4.33 +CATEGORIES= lang devel www +MASTER_SITES= ${MASTER_SITE_PHP} +MASTER_SITE_SUBDIR= distributions +DISTNAME= php-${PORTVERSION} + +MASTER_SITES+= http://dk.php.net/%SUBDIR%/ +MASTER_SITES+= http://de.php.net/%SUBDIR%/ +MASTER_SITES+= http://es.php.net/%SUBDIR%/ +MASTER_SITES+= http://fi.php.net/%SUBDIR%/ +MASTER_SITES+= http://fr.php.net/%SUBDIR%/ +MASTER_SITES+= http://gr.php.net/%SUBDIR%/ +MASTER_SITES+= http://it.php.net/%SUBDIR%/ +MASTER_SITES+= http://jp.php.net/%SUBDIR%/ +MASTER_SITES+= http://se.php.net/%SUBDIR%/ +MASTER_SITES+= http://uk.php.net/%SUBDIR%/ +MASTER_SITES+= http://us2.php.net/%SUBDIR%/ +MASTER_SITES+= http://br.php.net/%SUBDIR%/ +MASTER_SITES+= http://cn.php.net/%SUBDIR%/ + +MASTER_SITE_SUBDIR= distributions + +MAINTAINER= onborodin@gmail.com +COMMENT= PHP Scripting Language (Apache Module and CLI) + +BUILD_DEPENDS+= php:lang/php${PORTVERSION:R:S/.//g} +#RUN_DEPENDS +#BUILD_DEPENDS+= ${RUN_DEPENDS} +#LIB_DEPENDS+= + + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} +WRKSRC= ${WRKDIR}/${DISTNAME}/ext/${MODULE_NAME} + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} + +USES+= tar:xz gmake +GNU_CONFIGURE= yes +CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/php +LDFLAGS= -L${LOCALBASE}/lib +CONFIGURE_ARGS+= --with-imap-ssl + +MODULE_NAME= sodium +DESTDIRNAME= INSTALL_ROOT +#EXTDIR +#INCLUDEDIR + +CONFIGURE_ENV+= OPENSSL_CFLAGS="-I${OPENSSLINC}" +CONFIGURE_ENV+= OPENSSL_LIBS="-L${OPENSSLLIB} -lssl -lcrypto" +CONFIGURE_ENV+= PHP_OPENSSL=yes +LDFLAGS+= -lcrypto -lssl + + +pre-configure: + cd ${WRKSRC} && ${CONFIGURE_ENV} phpize . + +post-install: + ${RM} -f ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} lib/php -type f >> ${TMPPLIST} + ${MKDIR} ${STAGEDIR}${PREFIX}/include/php + cd ${STAGEDIR}${PREFIX} && ${FIND} include/php -type f >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds lib/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds include/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + +.include +#EOF diff --git a/php74/php74-mod-sodium/Makefile-e b/php74/php74-mod-sodium/Makefile-e new file mode 100644 index 00000000..f9fcad06 --- /dev/null +++ b/php74/php74-mod-sodium/Makefile-e @@ -0,0 +1,70 @@ +# +# $Id: Makefile 2636 2009-09-30 12:09:37Z root $ +# +PORTNAME= php${PORTVERSION:R:S/.//g}-mod-${MODULE_NAME} +PORTVERSION= 7.4.29 +CATEGORIES= lang devel www +MASTER_SITES= ${MASTER_SITE_PHP} +MASTER_SITE_SUBDIR= distributions +DISTNAME= php-${PORTVERSION} + +MASTER_SITES+= http://dk.php.net/%SUBDIR%/ +MASTER_SITES+= http://de.php.net/%SUBDIR%/ +MASTER_SITES+= http://es.php.net/%SUBDIR%/ +MASTER_SITES+= http://fi.php.net/%SUBDIR%/ +MASTER_SITES+= http://fr.php.net/%SUBDIR%/ +MASTER_SITES+= http://gr.php.net/%SUBDIR%/ +MASTER_SITES+= http://it.php.net/%SUBDIR%/ +MASTER_SITES+= http://jp.php.net/%SUBDIR%/ +MASTER_SITES+= http://se.php.net/%SUBDIR%/ +MASTER_SITES+= http://uk.php.net/%SUBDIR%/ +MASTER_SITES+= http://us2.php.net/%SUBDIR%/ +MASTER_SITES+= http://br.php.net/%SUBDIR%/ +MASTER_SITES+= http://cn.php.net/%SUBDIR%/ + +MASTER_SITE_SUBDIR= distributions + +MAINTAINER= onborodin@gmail.com +COMMENT= PHP Scripting Language (Apache Module and CLI) + +BUILD_DEPENDS+= php:lang/php${PORTVERSION:R:S/.//g} +#RUN_DEPENDS +#BUILD_DEPENDS+= ${RUN_DEPENDS} +#LIB_DEPENDS+= + + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} +WRKSRC= ${WRKDIR}/${DISTNAME}/ext/${MODULE_NAME} + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} + +USES+= tar:xz gmake +GNU_CONFIGURE= yes +CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/php +LDFLAGS= -L${LOCALBASE}/lib +CONFIGURE_ARGS+= --with-imap-ssl + +MODULE_NAME= sodium +DESTDIRNAME= INSTALL_ROOT +#EXTDIR +#INCLUDEDIR + +CONFIGURE_ENV+= OPENSSL_CFLAGS="-I${OPENSSLINC}" +CONFIGURE_ENV+= OPENSSL_LIBS="-L${OPENSSLLIB} -lssl -lcrypto" +CONFIGURE_ENV+= PHP_OPENSSL=yes +LDFLAGS+= -lcrypto -lssl + + +pre-configure: + cd ${WRKSRC} && ${CONFIGURE_ENV} phpize . + +post-install: + ${RM} -f ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} lib/php -type f >> ${TMPPLIST} + ${MKDIR} ${STAGEDIR}${PREFIX}/include/php + cd ${STAGEDIR}${PREFIX} && ${FIND} include/php -type f >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds lib/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds include/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + +.include +#EOF diff --git a/php74/php74-mod-sodium/distinfo b/php74/php74-mod-sodium/distinfo new file mode 100644 index 00000000..882c7ba2 --- /dev/null +++ b/php74/php74-mod-sodium/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1756241993 +SHA256 (php-7.4.33.tar.xz) = 924846abf93bc613815c55dd3f5809377813ac62a9ec4eb3778675b82a27b927 +SIZE (php-7.4.33.tar.xz) = 10420144 diff --git a/php74/php74-mod-sodium/pkg-descr b/php74/php74-mod-sodium/pkg-descr new file mode 100644 index 00000000..d6e42932 --- /dev/null +++ b/php74/php74-mod-sodium/pkg-descr @@ -0,0 +1,9 @@ +PHP, which stands for "PHP: Hypertext Preprocessor" is a widely-used Open +Source general-purpose scripting language that is especially suited for +Web development and can be embedded into HTML. Its syntax draws upon C, +Java, and Perl, and is easy to learn. The main goal of the language is to +allow web developers to write dynamically generated webpages quickly, but +you can do much more with PHP. + +WWW: http://www.php.net/ + diff --git a/php74/php74-mod-sqlite3/Makefile b/php74/php74-mod-sqlite3/Makefile new file mode 100644 index 00000000..1538b537 --- /dev/null +++ b/php74/php74-mod-sqlite3/Makefile @@ -0,0 +1,64 @@ +# +# $Id: Makefile 2636 2009-09-30 12:09:37Z root $ +# +PORTNAME= php${PORTVERSION:R:S/.//g}-mod-${MODULE_NAME} +PORTVERSION= 7.4.33 +CATEGORIES= lang devel www +MASTER_SITES= ${MASTER_SITE_PHP} +MASTER_SITE_SUBDIR= distributions +DISTNAME= php-${PORTVERSION} + +MASTER_SITES+= http://dk.php.net/%SUBDIR%/ +MASTER_SITES+= http://de.php.net/%SUBDIR%/ +MASTER_SITES+= http://es.php.net/%SUBDIR%/ +MASTER_SITES+= http://fi.php.net/%SUBDIR%/ +MASTER_SITES+= http://fr.php.net/%SUBDIR%/ +MASTER_SITES+= http://gr.php.net/%SUBDIR%/ +MASTER_SITES+= http://it.php.net/%SUBDIR%/ +MASTER_SITES+= http://jp.php.net/%SUBDIR%/ +MASTER_SITES+= http://se.php.net/%SUBDIR%/ +MASTER_SITES+= http://uk.php.net/%SUBDIR%/ +MASTER_SITES+= http://us2.php.net/%SUBDIR%/ +MASTER_SITES+= http://br.php.net/%SUBDIR%/ +MASTER_SITES+= http://cn.php.net/%SUBDIR%/ + +MASTER_SITE_SUBDIR= distributions + +MAINTAINER= onborodin@gmail.com +COMMENT= PHP Scripting Language (Apache Module and CLI) + +BUILD_DEPENDS+= php:lang/php${PORTVERSION:R:S/.//g} +#RUN_DEPENDS +#BUILD_DEPENDS+= ${RUN_DEPENDS} + + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} +WRKSRC= ${WRKDIR}/${DISTNAME}/ext/${MODULE_NAME} + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} + +USES+= tar:xz gmake +GNU_CONFIGURE= yes +CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/php +LDFLAGS= -L${LOCALBASE}/lib +CONFIGURE_ARGS+= --with-sqlite3=${LOCALBASE} + +MODULE_NAME= sqlite3 +DESTDIRNAME= INSTALL_ROOT +#EXTDIR +#INCLUDEDIR + +pre-configure: + cd ${WRKSRC} && ${CP} config0.m4 config.m4 + cd ${WRKSRC} && ${CONFIGURE_ENV} phpize . + +post-install: + ${RM} -f ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} lib/php -type f >> ${TMPPLIST} + ${MKDIR} ${STAGEDIR}${PREFIX}/include/php + cd ${STAGEDIR}${PREFIX} && ${FIND} include/php -type f >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds lib/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds include/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + +.include +#EOF diff --git a/php74/php74-mod-sqlite3/Makefile-e b/php74/php74-mod-sqlite3/Makefile-e new file mode 100644 index 00000000..bc72b9f8 --- /dev/null +++ b/php74/php74-mod-sqlite3/Makefile-e @@ -0,0 +1,64 @@ +# +# $Id: Makefile 2636 2009-09-30 12:09:37Z root $ +# +PORTNAME= php${PORTVERSION:R:S/.//g}-mod-${MODULE_NAME} +PORTVERSION= 7.4.29 +CATEGORIES= lang devel www +MASTER_SITES= ${MASTER_SITE_PHP} +MASTER_SITE_SUBDIR= distributions +DISTNAME= php-${PORTVERSION} + +MASTER_SITES+= http://dk.php.net/%SUBDIR%/ +MASTER_SITES+= http://de.php.net/%SUBDIR%/ +MASTER_SITES+= http://es.php.net/%SUBDIR%/ +MASTER_SITES+= http://fi.php.net/%SUBDIR%/ +MASTER_SITES+= http://fr.php.net/%SUBDIR%/ +MASTER_SITES+= http://gr.php.net/%SUBDIR%/ +MASTER_SITES+= http://it.php.net/%SUBDIR%/ +MASTER_SITES+= http://jp.php.net/%SUBDIR%/ +MASTER_SITES+= http://se.php.net/%SUBDIR%/ +MASTER_SITES+= http://uk.php.net/%SUBDIR%/ +MASTER_SITES+= http://us2.php.net/%SUBDIR%/ +MASTER_SITES+= http://br.php.net/%SUBDIR%/ +MASTER_SITES+= http://cn.php.net/%SUBDIR%/ + +MASTER_SITE_SUBDIR= distributions + +MAINTAINER= onborodin@gmail.com +COMMENT= PHP Scripting Language (Apache Module and CLI) + +BUILD_DEPENDS+= php:lang/php${PORTVERSION:R:S/.//g} +#RUN_DEPENDS +#BUILD_DEPENDS+= ${RUN_DEPENDS} + + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} +WRKSRC= ${WRKDIR}/${DISTNAME}/ext/${MODULE_NAME} + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} + +USES+= tar:xz gmake +GNU_CONFIGURE= yes +CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/php +LDFLAGS= -L${LOCALBASE}/lib +CONFIGURE_ARGS+= --with-sqlite3=${LOCALBASE} + +MODULE_NAME= sqlite3 +DESTDIRNAME= INSTALL_ROOT +#EXTDIR +#INCLUDEDIR + +pre-configure: + cd ${WRKSRC} && ${CP} config0.m4 config.m4 + cd ${WRKSRC} && ${CONFIGURE_ENV} phpize . + +post-install: + ${RM} -f ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} lib/php -type f >> ${TMPPLIST} + ${MKDIR} ${STAGEDIR}${PREFIX}/include/php + cd ${STAGEDIR}${PREFIX} && ${FIND} include/php -type f >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds lib/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds include/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + +.include +#EOF diff --git a/php74/php74-mod-sqlite3/distinfo b/php74/php74-mod-sqlite3/distinfo new file mode 100644 index 00000000..882c7ba2 --- /dev/null +++ b/php74/php74-mod-sqlite3/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1756241993 +SHA256 (php-7.4.33.tar.xz) = 924846abf93bc613815c55dd3f5809377813ac62a9ec4eb3778675b82a27b927 +SIZE (php-7.4.33.tar.xz) = 10420144 diff --git a/php74/php74-mod-sqlite3/pkg-descr b/php74/php74-mod-sqlite3/pkg-descr new file mode 100644 index 00000000..d6e42932 --- /dev/null +++ b/php74/php74-mod-sqlite3/pkg-descr @@ -0,0 +1,9 @@ +PHP, which stands for "PHP: Hypertext Preprocessor" is a widely-used Open +Source general-purpose scripting language that is especially suited for +Web development and can be embedded into HTML. Its syntax draws upon C, +Java, and Perl, and is easy to learn. The main goal of the language is to +allow web developers to write dynamically generated webpages quickly, but +you can do much more with PHP. + +WWW: http://www.php.net/ + diff --git a/php74/php74-mod-sysvmsg/Makefile b/php74/php74-mod-sysvmsg/Makefile new file mode 100644 index 00000000..15e4c37a --- /dev/null +++ b/php74/php74-mod-sysvmsg/Makefile @@ -0,0 +1,62 @@ +# +# $Id: Makefile 2636 2009-09-30 12:09:37Z root $ +# +PORTNAME= php${PORTVERSION:R:S/.//g}-mod-${MODULE_NAME} +PORTVERSION= 7.4.33 +CATEGORIES= lang devel www +MASTER_SITES= ${MASTER_SITE_PHP} +MASTER_SITE_SUBDIR= distributions +DISTNAME= php-${PORTVERSION} + +MASTER_SITES+= http://dk.php.net/%SUBDIR%/ +MASTER_SITES+= http://de.php.net/%SUBDIR%/ +MASTER_SITES+= http://es.php.net/%SUBDIR%/ +MASTER_SITES+= http://fi.php.net/%SUBDIR%/ +MASTER_SITES+= http://fr.php.net/%SUBDIR%/ +MASTER_SITES+= http://gr.php.net/%SUBDIR%/ +MASTER_SITES+= http://it.php.net/%SUBDIR%/ +MASTER_SITES+= http://jp.php.net/%SUBDIR%/ +MASTER_SITES+= http://se.php.net/%SUBDIR%/ +MASTER_SITES+= http://uk.php.net/%SUBDIR%/ +MASTER_SITES+= http://us2.php.net/%SUBDIR%/ +MASTER_SITES+= http://br.php.net/%SUBDIR%/ +MASTER_SITES+= http://cn.php.net/%SUBDIR%/ + +MASTER_SITE_SUBDIR= distributions + +MAINTAINER= onborodin@gmail.com +COMMENT= PHP Scripting Language (Apache Module and CLI) + +BUILD_DEPENDS+= php:lang/php${PORTVERSION:R:S/.//g} +#RUN_DEPENDS +#BUILD_DEPENDS+= ${RUN_DEPENDS} + + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} +WRKSRC= ${WRKDIR}/${DISTNAME}/ext/${MODULE_NAME} + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} + +USES+= tar:xz gmake +GNU_CONFIGURE= yes +CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/php +LDFLAGS= -L${LOCALBASE}/lib + +MODULE_NAME= sysvmsg +DESTDIRNAME= INSTALL_ROOT +#EXTDIR +#INCLUDEDIR + +pre-configure: + cd ${WRKSRC} && ${CONFIGURE_ENV} phpize . + +post-install: + ${RM} -f ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} lib/php -type f >> ${TMPPLIST} + ${MKDIR} ${STAGEDIR}${PREFIX}/include/php + cd ${STAGEDIR}${PREFIX} && ${FIND} include/php -type f >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds lib/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds include/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + +.include +#EOF diff --git a/php74/php74-mod-sysvmsg/Makefile-e b/php74/php74-mod-sysvmsg/Makefile-e new file mode 100644 index 00000000..d9f1195c --- /dev/null +++ b/php74/php74-mod-sysvmsg/Makefile-e @@ -0,0 +1,62 @@ +# +# $Id: Makefile 2636 2009-09-30 12:09:37Z root $ +# +PORTNAME= php${PORTVERSION:R:S/.//g}-mod-${MODULE_NAME} +PORTVERSION= 7.4.29 +CATEGORIES= lang devel www +MASTER_SITES= ${MASTER_SITE_PHP} +MASTER_SITE_SUBDIR= distributions +DISTNAME= php-${PORTVERSION} + +MASTER_SITES+= http://dk.php.net/%SUBDIR%/ +MASTER_SITES+= http://de.php.net/%SUBDIR%/ +MASTER_SITES+= http://es.php.net/%SUBDIR%/ +MASTER_SITES+= http://fi.php.net/%SUBDIR%/ +MASTER_SITES+= http://fr.php.net/%SUBDIR%/ +MASTER_SITES+= http://gr.php.net/%SUBDIR%/ +MASTER_SITES+= http://it.php.net/%SUBDIR%/ +MASTER_SITES+= http://jp.php.net/%SUBDIR%/ +MASTER_SITES+= http://se.php.net/%SUBDIR%/ +MASTER_SITES+= http://uk.php.net/%SUBDIR%/ +MASTER_SITES+= http://us2.php.net/%SUBDIR%/ +MASTER_SITES+= http://br.php.net/%SUBDIR%/ +MASTER_SITES+= http://cn.php.net/%SUBDIR%/ + +MASTER_SITE_SUBDIR= distributions + +MAINTAINER= onborodin@gmail.com +COMMENT= PHP Scripting Language (Apache Module and CLI) + +BUILD_DEPENDS+= php:lang/php${PORTVERSION:R:S/.//g} +#RUN_DEPENDS +#BUILD_DEPENDS+= ${RUN_DEPENDS} + + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} +WRKSRC= ${WRKDIR}/${DISTNAME}/ext/${MODULE_NAME} + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} + +USES+= tar:xz gmake +GNU_CONFIGURE= yes +CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/php +LDFLAGS= -L${LOCALBASE}/lib + +MODULE_NAME= sysvmsg +DESTDIRNAME= INSTALL_ROOT +#EXTDIR +#INCLUDEDIR + +pre-configure: + cd ${WRKSRC} && ${CONFIGURE_ENV} phpize . + +post-install: + ${RM} -f ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} lib/php -type f >> ${TMPPLIST} + ${MKDIR} ${STAGEDIR}${PREFIX}/include/php + cd ${STAGEDIR}${PREFIX} && ${FIND} include/php -type f >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds lib/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds include/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + +.include +#EOF diff --git a/php74/php74-mod-sysvmsg/distinfo b/php74/php74-mod-sysvmsg/distinfo new file mode 100644 index 00000000..882c7ba2 --- /dev/null +++ b/php74/php74-mod-sysvmsg/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1756241993 +SHA256 (php-7.4.33.tar.xz) = 924846abf93bc613815c55dd3f5809377813ac62a9ec4eb3778675b82a27b927 +SIZE (php-7.4.33.tar.xz) = 10420144 diff --git a/php74/php74-mod-sysvmsg/pkg-descr b/php74/php74-mod-sysvmsg/pkg-descr new file mode 100644 index 00000000..d6e42932 --- /dev/null +++ b/php74/php74-mod-sysvmsg/pkg-descr @@ -0,0 +1,9 @@ +PHP, which stands for "PHP: Hypertext Preprocessor" is a widely-used Open +Source general-purpose scripting language that is especially suited for +Web development and can be embedded into HTML. Its syntax draws upon C, +Java, and Perl, and is easy to learn. The main goal of the language is to +allow web developers to write dynamically generated webpages quickly, but +you can do much more with PHP. + +WWW: http://www.php.net/ + diff --git a/php74/php74-mod-sysvsem/Makefile b/php74/php74-mod-sysvsem/Makefile new file mode 100644 index 00000000..7bb36e0c --- /dev/null +++ b/php74/php74-mod-sysvsem/Makefile @@ -0,0 +1,62 @@ +# +# $Id: Makefile 2636 2009-09-30 12:09:37Z root $ +# +PORTNAME= php${PORTVERSION:R:S/.//g}-mod-${MODULE_NAME} +PORTVERSION= 7.4.33 +CATEGORIES= lang devel www +MASTER_SITES= ${MASTER_SITE_PHP} +MASTER_SITE_SUBDIR= distributions +DISTNAME= php-${PORTVERSION} + +MASTER_SITES+= http://dk.php.net/%SUBDIR%/ +MASTER_SITES+= http://de.php.net/%SUBDIR%/ +MASTER_SITES+= http://es.php.net/%SUBDIR%/ +MASTER_SITES+= http://fi.php.net/%SUBDIR%/ +MASTER_SITES+= http://fr.php.net/%SUBDIR%/ +MASTER_SITES+= http://gr.php.net/%SUBDIR%/ +MASTER_SITES+= http://it.php.net/%SUBDIR%/ +MASTER_SITES+= http://jp.php.net/%SUBDIR%/ +MASTER_SITES+= http://se.php.net/%SUBDIR%/ +MASTER_SITES+= http://uk.php.net/%SUBDIR%/ +MASTER_SITES+= http://us2.php.net/%SUBDIR%/ +MASTER_SITES+= http://br.php.net/%SUBDIR%/ +MASTER_SITES+= http://cn.php.net/%SUBDIR%/ + +MASTER_SITE_SUBDIR= distributions + +MAINTAINER= onborodin@gmail.com +COMMENT= PHP Scripting Language (Apache Module and CLI) + +BUILD_DEPENDS+= php:lang/php${PORTVERSION:R:S/.//g} +#RUN_DEPENDS +#BUILD_DEPENDS+= ${RUN_DEPENDS} + + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} +WRKSRC= ${WRKDIR}/${DISTNAME}/ext/${MODULE_NAME} + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} + +USES+= tar:xz gmake +GNU_CONFIGURE= yes +CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/php +LDFLAGS= -L${LOCALBASE}/lib + +MODULE_NAME= sysvsem +DESTDIRNAME= INSTALL_ROOT +#EXTDIR +#INCLUDEDIR + +pre-configure: + cd ${WRKSRC} && ${CONFIGURE_ENV} phpize . + +post-install: + ${RM} -f ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} lib/php -type f >> ${TMPPLIST} + ${MKDIR} ${STAGEDIR}${PREFIX}/include/php + cd ${STAGEDIR}${PREFIX} && ${FIND} include/php -type f >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds lib/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds include/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + +.include +#EOF diff --git a/php74/php74-mod-sysvsem/Makefile-e b/php74/php74-mod-sysvsem/Makefile-e new file mode 100644 index 00000000..4564e1c1 --- /dev/null +++ b/php74/php74-mod-sysvsem/Makefile-e @@ -0,0 +1,62 @@ +# +# $Id: Makefile 2636 2009-09-30 12:09:37Z root $ +# +PORTNAME= php${PORTVERSION:R:S/.//g}-mod-${MODULE_NAME} +PORTVERSION= 7.4.29 +CATEGORIES= lang devel www +MASTER_SITES= ${MASTER_SITE_PHP} +MASTER_SITE_SUBDIR= distributions +DISTNAME= php-${PORTVERSION} + +MASTER_SITES+= http://dk.php.net/%SUBDIR%/ +MASTER_SITES+= http://de.php.net/%SUBDIR%/ +MASTER_SITES+= http://es.php.net/%SUBDIR%/ +MASTER_SITES+= http://fi.php.net/%SUBDIR%/ +MASTER_SITES+= http://fr.php.net/%SUBDIR%/ +MASTER_SITES+= http://gr.php.net/%SUBDIR%/ +MASTER_SITES+= http://it.php.net/%SUBDIR%/ +MASTER_SITES+= http://jp.php.net/%SUBDIR%/ +MASTER_SITES+= http://se.php.net/%SUBDIR%/ +MASTER_SITES+= http://uk.php.net/%SUBDIR%/ +MASTER_SITES+= http://us2.php.net/%SUBDIR%/ +MASTER_SITES+= http://br.php.net/%SUBDIR%/ +MASTER_SITES+= http://cn.php.net/%SUBDIR%/ + +MASTER_SITE_SUBDIR= distributions + +MAINTAINER= onborodin@gmail.com +COMMENT= PHP Scripting Language (Apache Module and CLI) + +BUILD_DEPENDS+= php:lang/php${PORTVERSION:R:S/.//g} +#RUN_DEPENDS +#BUILD_DEPENDS+= ${RUN_DEPENDS} + + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} +WRKSRC= ${WRKDIR}/${DISTNAME}/ext/${MODULE_NAME} + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} + +USES+= tar:xz gmake +GNU_CONFIGURE= yes +CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/php +LDFLAGS= -L${LOCALBASE}/lib + +MODULE_NAME= sysvsem +DESTDIRNAME= INSTALL_ROOT +#EXTDIR +#INCLUDEDIR + +pre-configure: + cd ${WRKSRC} && ${CONFIGURE_ENV} phpize . + +post-install: + ${RM} -f ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} lib/php -type f >> ${TMPPLIST} + ${MKDIR} ${STAGEDIR}${PREFIX}/include/php + cd ${STAGEDIR}${PREFIX} && ${FIND} include/php -type f >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds lib/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds include/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + +.include +#EOF diff --git a/php74/php74-mod-sysvsem/distinfo b/php74/php74-mod-sysvsem/distinfo new file mode 100644 index 00000000..882c7ba2 --- /dev/null +++ b/php74/php74-mod-sysvsem/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1756241993 +SHA256 (php-7.4.33.tar.xz) = 924846abf93bc613815c55dd3f5809377813ac62a9ec4eb3778675b82a27b927 +SIZE (php-7.4.33.tar.xz) = 10420144 diff --git a/php74/php74-mod-sysvsem/pkg-descr b/php74/php74-mod-sysvsem/pkg-descr new file mode 100644 index 00000000..d6e42932 --- /dev/null +++ b/php74/php74-mod-sysvsem/pkg-descr @@ -0,0 +1,9 @@ +PHP, which stands for "PHP: Hypertext Preprocessor" is a widely-used Open +Source general-purpose scripting language that is especially suited for +Web development and can be embedded into HTML. Its syntax draws upon C, +Java, and Perl, and is easy to learn. The main goal of the language is to +allow web developers to write dynamically generated webpages quickly, but +you can do much more with PHP. + +WWW: http://www.php.net/ + diff --git a/php74/php74-mod-sysvshm/Makefile b/php74/php74-mod-sysvshm/Makefile new file mode 100644 index 00000000..64d92751 --- /dev/null +++ b/php74/php74-mod-sysvshm/Makefile @@ -0,0 +1,62 @@ +# +# $Id: Makefile 2636 2009-09-30 12:09:37Z root $ +# +PORTNAME= php${PORTVERSION:R:S/.//g}-mod-${MODULE_NAME} +PORTVERSION= 7.4.33 +CATEGORIES= lang devel www +MASTER_SITES= ${MASTER_SITE_PHP} +MASTER_SITE_SUBDIR= distributions +DISTNAME= php-${PORTVERSION} + +MASTER_SITES+= http://dk.php.net/%SUBDIR%/ +MASTER_SITES+= http://de.php.net/%SUBDIR%/ +MASTER_SITES+= http://es.php.net/%SUBDIR%/ +MASTER_SITES+= http://fi.php.net/%SUBDIR%/ +MASTER_SITES+= http://fr.php.net/%SUBDIR%/ +MASTER_SITES+= http://gr.php.net/%SUBDIR%/ +MASTER_SITES+= http://it.php.net/%SUBDIR%/ +MASTER_SITES+= http://jp.php.net/%SUBDIR%/ +MASTER_SITES+= http://se.php.net/%SUBDIR%/ +MASTER_SITES+= http://uk.php.net/%SUBDIR%/ +MASTER_SITES+= http://us2.php.net/%SUBDIR%/ +MASTER_SITES+= http://br.php.net/%SUBDIR%/ +MASTER_SITES+= http://cn.php.net/%SUBDIR%/ + +MASTER_SITE_SUBDIR= distributions + +MAINTAINER= onborodin@gmail.com +COMMENT= PHP Scripting Language (Apache Module and CLI) + +BUILD_DEPENDS+= php:lang/php${PORTVERSION:R:S/.//g} +#RUN_DEPENDS +#BUILD_DEPENDS+= ${RUN_DEPENDS} + + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} +WRKSRC= ${WRKDIR}/${DISTNAME}/ext/${MODULE_NAME} + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} + +USES+= tar:xz gmake +GNU_CONFIGURE= yes +CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/php +LDFLAGS= -L${LOCALBASE}/lib + +MODULE_NAME= sysvshm +DESTDIRNAME= INSTALL_ROOT +#EXTDIR +#INCLUDEDIR + +pre-configure: + cd ${WRKSRC} && ${CONFIGURE_ENV} phpize . + +post-install: + ${RM} -f ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} lib/php -type f >> ${TMPPLIST} + ${MKDIR} ${STAGEDIR}${PREFIX}/include/php + cd ${STAGEDIR}${PREFIX} && ${FIND} include/php -type f >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds lib/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds include/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + +.include +#EOF diff --git a/php74/php74-mod-sysvshm/Makefile-e b/php74/php74-mod-sysvshm/Makefile-e new file mode 100644 index 00000000..2d4b375d --- /dev/null +++ b/php74/php74-mod-sysvshm/Makefile-e @@ -0,0 +1,62 @@ +# +# $Id: Makefile 2636 2009-09-30 12:09:37Z root $ +# +PORTNAME= php${PORTVERSION:R:S/.//g}-mod-${MODULE_NAME} +PORTVERSION= 7.4.29 +CATEGORIES= lang devel www +MASTER_SITES= ${MASTER_SITE_PHP} +MASTER_SITE_SUBDIR= distributions +DISTNAME= php-${PORTVERSION} + +MASTER_SITES+= http://dk.php.net/%SUBDIR%/ +MASTER_SITES+= http://de.php.net/%SUBDIR%/ +MASTER_SITES+= http://es.php.net/%SUBDIR%/ +MASTER_SITES+= http://fi.php.net/%SUBDIR%/ +MASTER_SITES+= http://fr.php.net/%SUBDIR%/ +MASTER_SITES+= http://gr.php.net/%SUBDIR%/ +MASTER_SITES+= http://it.php.net/%SUBDIR%/ +MASTER_SITES+= http://jp.php.net/%SUBDIR%/ +MASTER_SITES+= http://se.php.net/%SUBDIR%/ +MASTER_SITES+= http://uk.php.net/%SUBDIR%/ +MASTER_SITES+= http://us2.php.net/%SUBDIR%/ +MASTER_SITES+= http://br.php.net/%SUBDIR%/ +MASTER_SITES+= http://cn.php.net/%SUBDIR%/ + +MASTER_SITE_SUBDIR= distributions + +MAINTAINER= onborodin@gmail.com +COMMENT= PHP Scripting Language (Apache Module and CLI) + +BUILD_DEPENDS+= php:lang/php${PORTVERSION:R:S/.//g} +#RUN_DEPENDS +#BUILD_DEPENDS+= ${RUN_DEPENDS} + + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} +WRKSRC= ${WRKDIR}/${DISTNAME}/ext/${MODULE_NAME} + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} + +USES+= tar:xz gmake +GNU_CONFIGURE= yes +CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/php +LDFLAGS= -L${LOCALBASE}/lib + +MODULE_NAME= sysvshm +DESTDIRNAME= INSTALL_ROOT +#EXTDIR +#INCLUDEDIR + +pre-configure: + cd ${WRKSRC} && ${CONFIGURE_ENV} phpize . + +post-install: + ${RM} -f ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} lib/php -type f >> ${TMPPLIST} + ${MKDIR} ${STAGEDIR}${PREFIX}/include/php + cd ${STAGEDIR}${PREFIX} && ${FIND} include/php -type f >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds lib/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds include/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + +.include +#EOF diff --git a/php74/php74-mod-sysvshm/distinfo b/php74/php74-mod-sysvshm/distinfo new file mode 100644 index 00000000..882c7ba2 --- /dev/null +++ b/php74/php74-mod-sysvshm/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1756241993 +SHA256 (php-7.4.33.tar.xz) = 924846abf93bc613815c55dd3f5809377813ac62a9ec4eb3778675b82a27b927 +SIZE (php-7.4.33.tar.xz) = 10420144 diff --git a/php74/php74-mod-sysvshm/pkg-descr b/php74/php74-mod-sysvshm/pkg-descr new file mode 100644 index 00000000..d6e42932 --- /dev/null +++ b/php74/php74-mod-sysvshm/pkg-descr @@ -0,0 +1,9 @@ +PHP, which stands for "PHP: Hypertext Preprocessor" is a widely-used Open +Source general-purpose scripting language that is especially suited for +Web development and can be embedded into HTML. Its syntax draws upon C, +Java, and Perl, and is easy to learn. The main goal of the language is to +allow web developers to write dynamically generated webpages quickly, but +you can do much more with PHP. + +WWW: http://www.php.net/ + diff --git a/php74/php74-mod-tokenizer/Makefile b/php74/php74-mod-tokenizer/Makefile new file mode 100644 index 00000000..56597c9b --- /dev/null +++ b/php74/php74-mod-tokenizer/Makefile @@ -0,0 +1,62 @@ +# +# $Id: Makefile 2636 2009-09-30 12:09:37Z root $ +# +PORTNAME= php${PORTVERSION:R:S/.//g}-mod-${MODULE_NAME} +PORTVERSION= 7.4.33 +CATEGORIES= lang devel www +MASTER_SITES= ${MASTER_SITE_PHP} +MASTER_SITE_SUBDIR= distributions +DISTNAME= php-${PORTVERSION} + +MASTER_SITES+= http://dk.php.net/%SUBDIR%/ +MASTER_SITES+= http://de.php.net/%SUBDIR%/ +MASTER_SITES+= http://es.php.net/%SUBDIR%/ +MASTER_SITES+= http://fi.php.net/%SUBDIR%/ +MASTER_SITES+= http://fr.php.net/%SUBDIR%/ +MASTER_SITES+= http://gr.php.net/%SUBDIR%/ +MASTER_SITES+= http://it.php.net/%SUBDIR%/ +MASTER_SITES+= http://jp.php.net/%SUBDIR%/ +MASTER_SITES+= http://se.php.net/%SUBDIR%/ +MASTER_SITES+= http://uk.php.net/%SUBDIR%/ +MASTER_SITES+= http://us2.php.net/%SUBDIR%/ +MASTER_SITES+= http://br.php.net/%SUBDIR%/ +MASTER_SITES+= http://cn.php.net/%SUBDIR%/ + +MASTER_SITE_SUBDIR= distributions + +MAINTAINER= onborodin@gmail.com +COMMENT= PHP Scripting Language (Apache Module and CLI) + +BUILD_DEPENDS+= php:lang/php${PORTVERSION:R:S/.//g} +#RUN_DEPENDS +#BUILD_DEPENDS+= ${RUN_DEPENDS} + + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} +WRKSRC= ${WRKDIR}/${DISTNAME}/ext/${MODULE_NAME} + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} + +USES+= tar:xz gmake +GNU_CONFIGURE= yes +CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/php +LDFLAGS= -L${LOCALBASE}/lib + +MODULE_NAME= tokenizer +DESTDIRNAME= INSTALL_ROOT +#EXTDIR +#INCLUDEDIR + +pre-configure: + cd ${WRKSRC} && ${CONFIGURE_ENV} phpize . + +post-install: + ${RM} -f ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} lib/php -type f >> ${TMPPLIST} + ${MKDIR} ${STAGEDIR}${PREFIX}/include/php + cd ${STAGEDIR}${PREFIX} && ${FIND} include/php -type f >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds lib/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds include/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + +.include +#EOF diff --git a/php74/php74-mod-tokenizer/Makefile-e b/php74/php74-mod-tokenizer/Makefile-e new file mode 100644 index 00000000..4db9d4cc --- /dev/null +++ b/php74/php74-mod-tokenizer/Makefile-e @@ -0,0 +1,62 @@ +# +# $Id: Makefile 2636 2009-09-30 12:09:37Z root $ +# +PORTNAME= php${PORTVERSION:R:S/.//g}-mod-${MODULE_NAME} +PORTVERSION= 7.4.29 +CATEGORIES= lang devel www +MASTER_SITES= ${MASTER_SITE_PHP} +MASTER_SITE_SUBDIR= distributions +DISTNAME= php-${PORTVERSION} + +MASTER_SITES+= http://dk.php.net/%SUBDIR%/ +MASTER_SITES+= http://de.php.net/%SUBDIR%/ +MASTER_SITES+= http://es.php.net/%SUBDIR%/ +MASTER_SITES+= http://fi.php.net/%SUBDIR%/ +MASTER_SITES+= http://fr.php.net/%SUBDIR%/ +MASTER_SITES+= http://gr.php.net/%SUBDIR%/ +MASTER_SITES+= http://it.php.net/%SUBDIR%/ +MASTER_SITES+= http://jp.php.net/%SUBDIR%/ +MASTER_SITES+= http://se.php.net/%SUBDIR%/ +MASTER_SITES+= http://uk.php.net/%SUBDIR%/ +MASTER_SITES+= http://us2.php.net/%SUBDIR%/ +MASTER_SITES+= http://br.php.net/%SUBDIR%/ +MASTER_SITES+= http://cn.php.net/%SUBDIR%/ + +MASTER_SITE_SUBDIR= distributions + +MAINTAINER= onborodin@gmail.com +COMMENT= PHP Scripting Language (Apache Module and CLI) + +BUILD_DEPENDS+= php:lang/php${PORTVERSION:R:S/.//g} +#RUN_DEPENDS +#BUILD_DEPENDS+= ${RUN_DEPENDS} + + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} +WRKSRC= ${WRKDIR}/${DISTNAME}/ext/${MODULE_NAME} + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} + +USES+= tar:xz gmake +GNU_CONFIGURE= yes +CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/php +LDFLAGS= -L${LOCALBASE}/lib + +MODULE_NAME= tokenizer +DESTDIRNAME= INSTALL_ROOT +#EXTDIR +#INCLUDEDIR + +pre-configure: + cd ${WRKSRC} && ${CONFIGURE_ENV} phpize . + +post-install: + ${RM} -f ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} lib/php -type f >> ${TMPPLIST} + ${MKDIR} ${STAGEDIR}${PREFIX}/include/php + cd ${STAGEDIR}${PREFIX} && ${FIND} include/php -type f >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds lib/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds include/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + +.include +#EOF diff --git a/php74/php74-mod-tokenizer/distinfo b/php74/php74-mod-tokenizer/distinfo new file mode 100644 index 00000000..868c3332 --- /dev/null +++ b/php74/php74-mod-tokenizer/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1756241994 +SHA256 (php-7.4.33.tar.xz) = 924846abf93bc613815c55dd3f5809377813ac62a9ec4eb3778675b82a27b927 +SIZE (php-7.4.33.tar.xz) = 10420144 diff --git a/php74/php74-mod-tokenizer/pkg-descr b/php74/php74-mod-tokenizer/pkg-descr new file mode 100644 index 00000000..d6e42932 --- /dev/null +++ b/php74/php74-mod-tokenizer/pkg-descr @@ -0,0 +1,9 @@ +PHP, which stands for "PHP: Hypertext Preprocessor" is a widely-used Open +Source general-purpose scripting language that is especially suited for +Web development and can be embedded into HTML. Its syntax draws upon C, +Java, and Perl, and is easy to learn. The main goal of the language is to +allow web developers to write dynamically generated webpages quickly, but +you can do much more with PHP. + +WWW: http://www.php.net/ + diff --git a/php74/php74-mod-xml/Makefile b/php74/php74-mod-xml/Makefile new file mode 100644 index 00000000..372153db --- /dev/null +++ b/php74/php74-mod-xml/Makefile @@ -0,0 +1,68 @@ +# +# $Id: Makefile 2636 2009-09-30 12:09:37Z root $ +# +PORTNAME= php${PORTVERSION:R:S/.//g}-mod-${MODULE_NAME} +PORTVERSION= 7.4.33 +CATEGORIES= lang devel www +MASTER_SITES= ${MASTER_SITE_PHP} +MASTER_SITE_SUBDIR= distributions +DISTNAME= php-${PORTVERSION} + +MASTER_SITES+= http://dk.php.net/%SUBDIR%/ +MASTER_SITES+= http://de.php.net/%SUBDIR%/ +MASTER_SITES+= http://es.php.net/%SUBDIR%/ +MASTER_SITES+= http://fi.php.net/%SUBDIR%/ +MASTER_SITES+= http://fr.php.net/%SUBDIR%/ +MASTER_SITES+= http://gr.php.net/%SUBDIR%/ +MASTER_SITES+= http://it.php.net/%SUBDIR%/ +MASTER_SITES+= http://jp.php.net/%SUBDIR%/ +MASTER_SITES+= http://se.php.net/%SUBDIR%/ +MASTER_SITES+= http://uk.php.net/%SUBDIR%/ +MASTER_SITES+= http://us2.php.net/%SUBDIR%/ +MASTER_SITES+= http://br.php.net/%SUBDIR%/ +MASTER_SITES+= http://cn.php.net/%SUBDIR%/ + +MASTER_SITE_SUBDIR= distributions + +MAINTAINER= onborodin@gmail.com +COMMENT= PHP Scripting Language (Apache Module and CLI) + +BUILD_DEPENDS+= php:lang/php${PORTVERSION:R:S/.//g} +#RUN_DEPENDS +#BUILD_DEPENDS+= ${RUN_DEPENDS} +LIB_DEPENDS+= libxml2.so:text/libxml2 + + +#EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} +WRKSRC= ${WRKDIR}/${DISTNAME}/ext/${MODULE_NAME} + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} + +USES+= tar:xz gmake +GNU_CONFIGURE= yes +CPPFLAGS+= -DHAVE_XML=1 +CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/php +LDFLAGS= -L${LOCALBASE}/lib + +MODULE_NAME= xml +DESTDIRNAME= INSTALL_ROOT +#EXTDIR +#INCLUDEDIR + +pre-configure: + cd ${WRKSRC} && ${CONFIGURE_ENV} phpize . + +post-extract: + ${MKDIR} ${WRKSRC}/ext/xml +# ${CP} ${WRKSRC}/expat_compat.h ${WRKSRC}/ext/xml + +#post-install: +# ${RM} -f ${TMPPLIST} +# cd ${STAGEDIR}${PREFIX} && ${FIND} lib/php -type f >> ${TMPPLIST} +# ${MKDIR} ${STAGEDIR}${PREFIX}/include/php +# cd ${STAGEDIR}${PREFIX} && ${FIND} include/php -type f >> ${TMPPLIST} +# cd ${STAGEDIR}${PREFIX} && ${FIND} -ds lib/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} +# cd ${STAGEDIR}${PREFIX} && ${FIND} -ds include/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + +.include +#EOF diff --git a/php74/php74-mod-xml/Makefile-e b/php74/php74-mod-xml/Makefile-e new file mode 100644 index 00000000..ab9126e2 --- /dev/null +++ b/php74/php74-mod-xml/Makefile-e @@ -0,0 +1,68 @@ +# +# $Id: Makefile 2636 2009-09-30 12:09:37Z root $ +# +PORTNAME= php${PORTVERSION:R:S/.//g}-mod-${MODULE_NAME} +PORTVERSION= 7.4.29 +CATEGORIES= lang devel www +MASTER_SITES= ${MASTER_SITE_PHP} +MASTER_SITE_SUBDIR= distributions +DISTNAME= php-${PORTVERSION} + +MASTER_SITES+= http://dk.php.net/%SUBDIR%/ +MASTER_SITES+= http://de.php.net/%SUBDIR%/ +MASTER_SITES+= http://es.php.net/%SUBDIR%/ +MASTER_SITES+= http://fi.php.net/%SUBDIR%/ +MASTER_SITES+= http://fr.php.net/%SUBDIR%/ +MASTER_SITES+= http://gr.php.net/%SUBDIR%/ +MASTER_SITES+= http://it.php.net/%SUBDIR%/ +MASTER_SITES+= http://jp.php.net/%SUBDIR%/ +MASTER_SITES+= http://se.php.net/%SUBDIR%/ +MASTER_SITES+= http://uk.php.net/%SUBDIR%/ +MASTER_SITES+= http://us2.php.net/%SUBDIR%/ +MASTER_SITES+= http://br.php.net/%SUBDIR%/ +MASTER_SITES+= http://cn.php.net/%SUBDIR%/ + +MASTER_SITE_SUBDIR= distributions + +MAINTAINER= onborodin@gmail.com +COMMENT= PHP Scripting Language (Apache Module and CLI) + +BUILD_DEPENDS+= php:lang/php${PORTVERSION:R:S/.//g} +#RUN_DEPENDS +#BUILD_DEPENDS+= ${RUN_DEPENDS} +LIB_DEPENDS+= libxml2.so:text/libxml2 + + +#EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} +WRKSRC= ${WRKDIR}/${DISTNAME}/ext/${MODULE_NAME} + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} + +USES+= tar:xz gmake +GNU_CONFIGURE= yes +CPPFLAGS+= -DHAVE_XML=1 +CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/php +LDFLAGS= -L${LOCALBASE}/lib + +MODULE_NAME= xml +DESTDIRNAME= INSTALL_ROOT +#EXTDIR +#INCLUDEDIR + +pre-configure: + cd ${WRKSRC} && ${CONFIGURE_ENV} phpize . + +post-extract: + ${MKDIR} ${WRKSRC}/ext/xml +# ${CP} ${WRKSRC}/expat_compat.h ${WRKSRC}/ext/xml + +#post-install: +# ${RM} -f ${TMPPLIST} +# cd ${STAGEDIR}${PREFIX} && ${FIND} lib/php -type f >> ${TMPPLIST} +# ${MKDIR} ${STAGEDIR}${PREFIX}/include/php +# cd ${STAGEDIR}${PREFIX} && ${FIND} include/php -type f >> ${TMPPLIST} +# cd ${STAGEDIR}${PREFIX} && ${FIND} -ds lib/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} +# cd ${STAGEDIR}${PREFIX} && ${FIND} -ds include/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + +.include +#EOF diff --git a/php74/php74-mod-xml/distinfo b/php74/php74-mod-xml/distinfo new file mode 100644 index 00000000..868c3332 --- /dev/null +++ b/php74/php74-mod-xml/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1756241994 +SHA256 (php-7.4.33.tar.xz) = 924846abf93bc613815c55dd3f5809377813ac62a9ec4eb3778675b82a27b927 +SIZE (php-7.4.33.tar.xz) = 10420144 diff --git a/php74/php74-mod-xml/pkg-descr b/php74/php74-mod-xml/pkg-descr new file mode 100644 index 00000000..d6e42932 --- /dev/null +++ b/php74/php74-mod-xml/pkg-descr @@ -0,0 +1,9 @@ +PHP, which stands for "PHP: Hypertext Preprocessor" is a widely-used Open +Source general-purpose scripting language that is especially suited for +Web development and can be embedded into HTML. Its syntax draws upon C, +Java, and Perl, and is easy to learn. The main goal of the language is to +allow web developers to write dynamically generated webpages quickly, but +you can do much more with PHP. + +WWW: http://www.php.net/ + diff --git a/php74/php74-mod-xml/pkg-plist b/php74/php74-mod-xml/pkg-plist new file mode 100644 index 00000000..d6417805 --- /dev/null +++ b/php74/php74-mod-xml/pkg-plist @@ -0,0 +1,5 @@ +include/php/ext/xml/config.h +lib/php/20190902/xml.so +@dir include/php/ext/xml +@dir include/php/ext +@dir include/php diff --git a/php74/php74-mod-xmlreader/Makefile b/php74/php74-mod-xmlreader/Makefile new file mode 100644 index 00000000..ed9ca040 --- /dev/null +++ b/php74/php74-mod-xmlreader/Makefile @@ -0,0 +1,63 @@ +# +# $Id: Makefile 2636 2009-09-30 12:09:37Z root $ +# +PORTNAME= php${PORTVERSION:R:S/.//g}-mod-${MODULE_NAME} +PORTVERSION= 7.4.33 +CATEGORIES= lang devel www +MASTER_SITES= ${MASTER_SITE_PHP} +MASTER_SITE_SUBDIR= distributions +DISTNAME= php-${PORTVERSION} + +MASTER_SITES+= http://dk.php.net/%SUBDIR%/ +MASTER_SITES+= http://de.php.net/%SUBDIR%/ +MASTER_SITES+= http://es.php.net/%SUBDIR%/ +MASTER_SITES+= http://fi.php.net/%SUBDIR%/ +MASTER_SITES+= http://fr.php.net/%SUBDIR%/ +MASTER_SITES+= http://gr.php.net/%SUBDIR%/ +MASTER_SITES+= http://it.php.net/%SUBDIR%/ +MASTER_SITES+= http://jp.php.net/%SUBDIR%/ +MASTER_SITES+= http://se.php.net/%SUBDIR%/ +MASTER_SITES+= http://uk.php.net/%SUBDIR%/ +MASTER_SITES+= http://us2.php.net/%SUBDIR%/ +MASTER_SITES+= http://br.php.net/%SUBDIR%/ +MASTER_SITES+= http://cn.php.net/%SUBDIR%/ + +MASTER_SITE_SUBDIR= distributions + +MAINTAINER= onborodin@gmail.com +COMMENT= PHP Scripting Language (Apache Module and CLI) + +BUILD_DEPENDS+= php:lang/php${PORTVERSION:R:S/.//g} +#RUN_DEPENDS +#BUILD_DEPENDS+= ${RUN_DEPENDS} +LIB_DEPENDS+= libxml2.so:text/libxml2 + + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} +WRKSRC= ${WRKDIR}/${DISTNAME}/ext/${MODULE_NAME} + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} + +USES+= tar:xz gmake +GNU_CONFIGURE= yes +CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/php +LDFLAGS= -L${LOCALBASE}/lib + +MODULE_NAME= xmlreader +DESTDIRNAME= INSTALL_ROOT +#EXTDIR +#INCLUDEDIR + +pre-configure: + cd ${WRKSRC} && ${CONFIGURE_ENV} phpize . + +post-install: + ${RM} -f ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} lib/php -type f >> ${TMPPLIST} + ${MKDIR} ${STAGEDIR}${PREFIX}/include/php + cd ${STAGEDIR}${PREFIX} && ${FIND} include/php -type f >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds lib/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds include/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + +.include +#EOF diff --git a/php74/php74-mod-xmlreader/Makefile-e b/php74/php74-mod-xmlreader/Makefile-e new file mode 100644 index 00000000..b4855144 --- /dev/null +++ b/php74/php74-mod-xmlreader/Makefile-e @@ -0,0 +1,63 @@ +# +# $Id: Makefile 2636 2009-09-30 12:09:37Z root $ +# +PORTNAME= php${PORTVERSION:R:S/.//g}-mod-${MODULE_NAME} +PORTVERSION= 7.4.29 +CATEGORIES= lang devel www +MASTER_SITES= ${MASTER_SITE_PHP} +MASTER_SITE_SUBDIR= distributions +DISTNAME= php-${PORTVERSION} + +MASTER_SITES+= http://dk.php.net/%SUBDIR%/ +MASTER_SITES+= http://de.php.net/%SUBDIR%/ +MASTER_SITES+= http://es.php.net/%SUBDIR%/ +MASTER_SITES+= http://fi.php.net/%SUBDIR%/ +MASTER_SITES+= http://fr.php.net/%SUBDIR%/ +MASTER_SITES+= http://gr.php.net/%SUBDIR%/ +MASTER_SITES+= http://it.php.net/%SUBDIR%/ +MASTER_SITES+= http://jp.php.net/%SUBDIR%/ +MASTER_SITES+= http://se.php.net/%SUBDIR%/ +MASTER_SITES+= http://uk.php.net/%SUBDIR%/ +MASTER_SITES+= http://us2.php.net/%SUBDIR%/ +MASTER_SITES+= http://br.php.net/%SUBDIR%/ +MASTER_SITES+= http://cn.php.net/%SUBDIR%/ + +MASTER_SITE_SUBDIR= distributions + +MAINTAINER= onborodin@gmail.com +COMMENT= PHP Scripting Language (Apache Module and CLI) + +BUILD_DEPENDS+= php:lang/php${PORTVERSION:R:S/.//g} +#RUN_DEPENDS +#BUILD_DEPENDS+= ${RUN_DEPENDS} +LIB_DEPENDS+= libxml2.so:text/libxml2 + + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} +WRKSRC= ${WRKDIR}/${DISTNAME}/ext/${MODULE_NAME} + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} + +USES+= tar:xz gmake +GNU_CONFIGURE= yes +CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/php +LDFLAGS= -L${LOCALBASE}/lib + +MODULE_NAME= xmlreader +DESTDIRNAME= INSTALL_ROOT +#EXTDIR +#INCLUDEDIR + +pre-configure: + cd ${WRKSRC} && ${CONFIGURE_ENV} phpize . + +post-install: + ${RM} -f ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} lib/php -type f >> ${TMPPLIST} + ${MKDIR} ${STAGEDIR}${PREFIX}/include/php + cd ${STAGEDIR}${PREFIX} && ${FIND} include/php -type f >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds lib/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds include/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + +.include +#EOF diff --git a/php74/php74-mod-xmlreader/distinfo b/php74/php74-mod-xmlreader/distinfo new file mode 100644 index 00000000..868c3332 --- /dev/null +++ b/php74/php74-mod-xmlreader/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1756241994 +SHA256 (php-7.4.33.tar.xz) = 924846abf93bc613815c55dd3f5809377813ac62a9ec4eb3778675b82a27b927 +SIZE (php-7.4.33.tar.xz) = 10420144 diff --git a/php74/php74-mod-xmlreader/pkg-descr b/php74/php74-mod-xmlreader/pkg-descr new file mode 100644 index 00000000..d6e42932 --- /dev/null +++ b/php74/php74-mod-xmlreader/pkg-descr @@ -0,0 +1,9 @@ +PHP, which stands for "PHP: Hypertext Preprocessor" is a widely-used Open +Source general-purpose scripting language that is especially suited for +Web development and can be embedded into HTML. Its syntax draws upon C, +Java, and Perl, and is easy to learn. The main goal of the language is to +allow web developers to write dynamically generated webpages quickly, but +you can do much more with PHP. + +WWW: http://www.php.net/ + diff --git a/php74/php74-mod-xmlrpc/Makefile b/php74/php74-mod-xmlrpc/Makefile new file mode 100644 index 00000000..a714dccf --- /dev/null +++ b/php74/php74-mod-xmlrpc/Makefile @@ -0,0 +1,63 @@ +# +# $Id: Makefile 2636 2009-09-30 12:09:37Z root $ +# +PORTNAME= php${PORTVERSION:R:S/.//g}-mod-${MODULE_NAME} +PORTVERSION= 7.4.33 +CATEGORIES= lang devel www +MASTER_SITES= ${MASTER_SITE_PHP} +MASTER_SITE_SUBDIR= distributions +DISTNAME= php-${PORTVERSION} + +MASTER_SITES+= http://dk.php.net/%SUBDIR%/ +MASTER_SITES+= http://de.php.net/%SUBDIR%/ +MASTER_SITES+= http://es.php.net/%SUBDIR%/ +MASTER_SITES+= http://fi.php.net/%SUBDIR%/ +MASTER_SITES+= http://fr.php.net/%SUBDIR%/ +MASTER_SITES+= http://gr.php.net/%SUBDIR%/ +MASTER_SITES+= http://it.php.net/%SUBDIR%/ +MASTER_SITES+= http://jp.php.net/%SUBDIR%/ +MASTER_SITES+= http://se.php.net/%SUBDIR%/ +MASTER_SITES+= http://uk.php.net/%SUBDIR%/ +MASTER_SITES+= http://us2.php.net/%SUBDIR%/ +MASTER_SITES+= http://br.php.net/%SUBDIR%/ +MASTER_SITES+= http://cn.php.net/%SUBDIR%/ + +MASTER_SITE_SUBDIR= distributions + +MAINTAINER= onborodin@gmail.com +COMMENT= PHP Scripting Language (Apache Module and CLI) + +BUILD_DEPENDS+= php:lang/php${PORTVERSION:R:S/.//g} +#RUN_DEPENDS +#BUILD_DEPENDS+= ${RUN_DEPENDS} +LIB_DEPENDS+= libxml2.so:text/libxml2 +#BUILD_DEPENDS+=php${PORTVERSION:R:S/.//g}-mod-xml>0:php${PORTVERSION:R:S/.//g}/php${PORTVERSION:R:S/.//g}-mod-xml + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} +WRKSRC= ${WRKDIR}/${DISTNAME}/ext/${MODULE_NAME} + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} + +USES+= tar:xz gmake +GNU_CONFIGURE= yes +CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/php -I${WRKSRC}/../../ +LDFLAGS= -L${LOCALBASE}/lib + +MODULE_NAME= xmlrpc +DESTDIRNAME= INSTALL_ROOT +#EXTDIR +#INCLUDEDIR + +pre-configure: + cd ${WRKSRC} && ${CONFIGURE_ENV} phpize . + +post-install: + ${RM} -f ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} lib/php -type f >> ${TMPPLIST} + ${MKDIR} ${STAGEDIR}${PREFIX}/include/php + cd ${STAGEDIR}${PREFIX} && ${FIND} include/php -type f >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds lib/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds include/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + +.include +#EOF diff --git a/php74/php74-mod-xmlrpc/Makefile-e b/php74/php74-mod-xmlrpc/Makefile-e new file mode 100644 index 00000000..8d4283d1 --- /dev/null +++ b/php74/php74-mod-xmlrpc/Makefile-e @@ -0,0 +1,63 @@ +# +# $Id: Makefile 2636 2009-09-30 12:09:37Z root $ +# +PORTNAME= php${PORTVERSION:R:S/.//g}-mod-${MODULE_NAME} +PORTVERSION= 7.4.29 +CATEGORIES= lang devel www +MASTER_SITES= ${MASTER_SITE_PHP} +MASTER_SITE_SUBDIR= distributions +DISTNAME= php-${PORTVERSION} + +MASTER_SITES+= http://dk.php.net/%SUBDIR%/ +MASTER_SITES+= http://de.php.net/%SUBDIR%/ +MASTER_SITES+= http://es.php.net/%SUBDIR%/ +MASTER_SITES+= http://fi.php.net/%SUBDIR%/ +MASTER_SITES+= http://fr.php.net/%SUBDIR%/ +MASTER_SITES+= http://gr.php.net/%SUBDIR%/ +MASTER_SITES+= http://it.php.net/%SUBDIR%/ +MASTER_SITES+= http://jp.php.net/%SUBDIR%/ +MASTER_SITES+= http://se.php.net/%SUBDIR%/ +MASTER_SITES+= http://uk.php.net/%SUBDIR%/ +MASTER_SITES+= http://us2.php.net/%SUBDIR%/ +MASTER_SITES+= http://br.php.net/%SUBDIR%/ +MASTER_SITES+= http://cn.php.net/%SUBDIR%/ + +MASTER_SITE_SUBDIR= distributions + +MAINTAINER= onborodin@gmail.com +COMMENT= PHP Scripting Language (Apache Module and CLI) + +BUILD_DEPENDS+= php:lang/php${PORTVERSION:R:S/.//g} +#RUN_DEPENDS +#BUILD_DEPENDS+= ${RUN_DEPENDS} +LIB_DEPENDS+= libxml2.so:text/libxml2 +#BUILD_DEPENDS+=php${PORTVERSION:R:S/.//g}-mod-xml>0:php${PORTVERSION:R:S/.//g}/php${PORTVERSION:R:S/.//g}-mod-xml + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} +WRKSRC= ${WRKDIR}/${DISTNAME}/ext/${MODULE_NAME} + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} + +USES+= tar:xz gmake +GNU_CONFIGURE= yes +CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/php -I${WRKSRC}/../../ +LDFLAGS= -L${LOCALBASE}/lib + +MODULE_NAME= xmlrpc +DESTDIRNAME= INSTALL_ROOT +#EXTDIR +#INCLUDEDIR + +pre-configure: + cd ${WRKSRC} && ${CONFIGURE_ENV} phpize . + +post-install: + ${RM} -f ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} lib/php -type f >> ${TMPPLIST} + ${MKDIR} ${STAGEDIR}${PREFIX}/include/php + cd ${STAGEDIR}${PREFIX} && ${FIND} include/php -type f >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds lib/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds include/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + +.include +#EOF diff --git a/php74/php74-mod-xmlrpc/distinfo b/php74/php74-mod-xmlrpc/distinfo new file mode 100644 index 00000000..868c3332 --- /dev/null +++ b/php74/php74-mod-xmlrpc/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1756241994 +SHA256 (php-7.4.33.tar.xz) = 924846abf93bc613815c55dd3f5809377813ac62a9ec4eb3778675b82a27b927 +SIZE (php-7.4.33.tar.xz) = 10420144 diff --git a/php74/php74-mod-xmlrpc/pkg-descr b/php74/php74-mod-xmlrpc/pkg-descr new file mode 100644 index 00000000..d6e42932 --- /dev/null +++ b/php74/php74-mod-xmlrpc/pkg-descr @@ -0,0 +1,9 @@ +PHP, which stands for "PHP: Hypertext Preprocessor" is a widely-used Open +Source general-purpose scripting language that is especially suited for +Web development and can be embedded into HTML. Its syntax draws upon C, +Java, and Perl, and is easy to learn. The main goal of the language is to +allow web developers to write dynamically generated webpages quickly, but +you can do much more with PHP. + +WWW: http://www.php.net/ + diff --git a/php74/php74-mod-xmlwriter/Makefile b/php74/php74-mod-xmlwriter/Makefile new file mode 100644 index 00000000..18a4d168 --- /dev/null +++ b/php74/php74-mod-xmlwriter/Makefile @@ -0,0 +1,63 @@ +# +# $Id: Makefile 2636 2009-09-30 12:09:37Z root $ +# +PORTNAME= php${PORTVERSION:R:S/.//g}-mod-${MODULE_NAME} +PORTVERSION= 7.4.33 +CATEGORIES= lang devel www +MASTER_SITES= ${MASTER_SITE_PHP} +MASTER_SITE_SUBDIR= distributions +DISTNAME= php-${PORTVERSION} + +MASTER_SITES+= http://dk.php.net/%SUBDIR%/ +MASTER_SITES+= http://de.php.net/%SUBDIR%/ +MASTER_SITES+= http://es.php.net/%SUBDIR%/ +MASTER_SITES+= http://fi.php.net/%SUBDIR%/ +MASTER_SITES+= http://fr.php.net/%SUBDIR%/ +MASTER_SITES+= http://gr.php.net/%SUBDIR%/ +MASTER_SITES+= http://it.php.net/%SUBDIR%/ +MASTER_SITES+= http://jp.php.net/%SUBDIR%/ +MASTER_SITES+= http://se.php.net/%SUBDIR%/ +MASTER_SITES+= http://uk.php.net/%SUBDIR%/ +MASTER_SITES+= http://us2.php.net/%SUBDIR%/ +MASTER_SITES+= http://br.php.net/%SUBDIR%/ +MASTER_SITES+= http://cn.php.net/%SUBDIR%/ + +MASTER_SITE_SUBDIR= distributions + +MAINTAINER= onborodin@gmail.com +COMMENT= PHP Scripting Language (Apache Module and CLI) + +BUILD_DEPENDS+= php:lang/php${PORTVERSION:R:S/.//g} +#RUN_DEPENDS +#BUILD_DEPENDS+= ${RUN_DEPENDS} +LIB_DEPENDS+= libxml2.so:text/libxml2 + + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} +WRKSRC= ${WRKDIR}/${DISTNAME}/ext/${MODULE_NAME} + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} + +USES+= tar:xz gmake +GNU_CONFIGURE= yes +CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/php +LDFLAGS= -L${LOCALBASE}/lib + +MODULE_NAME= xmlwriter +DESTDIRNAME= INSTALL_ROOT +#EXTDIR +#INCLUDEDIR + +pre-configure: + cd ${WRKSRC} && ${CONFIGURE_ENV} phpize . + +post-install: + ${RM} -f ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} lib/php -type f >> ${TMPPLIST} + ${MKDIR} ${STAGEDIR}${PREFIX}/include/php + cd ${STAGEDIR}${PREFIX} && ${FIND} include/php -type f >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds lib/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds include/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + +.include +#EOF diff --git a/php74/php74-mod-xmlwriter/Makefile-e b/php74/php74-mod-xmlwriter/Makefile-e new file mode 100644 index 00000000..d4cd6e8a --- /dev/null +++ b/php74/php74-mod-xmlwriter/Makefile-e @@ -0,0 +1,63 @@ +# +# $Id: Makefile 2636 2009-09-30 12:09:37Z root $ +# +PORTNAME= php${PORTVERSION:R:S/.//g}-mod-${MODULE_NAME} +PORTVERSION= 7.4.29 +CATEGORIES= lang devel www +MASTER_SITES= ${MASTER_SITE_PHP} +MASTER_SITE_SUBDIR= distributions +DISTNAME= php-${PORTVERSION} + +MASTER_SITES+= http://dk.php.net/%SUBDIR%/ +MASTER_SITES+= http://de.php.net/%SUBDIR%/ +MASTER_SITES+= http://es.php.net/%SUBDIR%/ +MASTER_SITES+= http://fi.php.net/%SUBDIR%/ +MASTER_SITES+= http://fr.php.net/%SUBDIR%/ +MASTER_SITES+= http://gr.php.net/%SUBDIR%/ +MASTER_SITES+= http://it.php.net/%SUBDIR%/ +MASTER_SITES+= http://jp.php.net/%SUBDIR%/ +MASTER_SITES+= http://se.php.net/%SUBDIR%/ +MASTER_SITES+= http://uk.php.net/%SUBDIR%/ +MASTER_SITES+= http://us2.php.net/%SUBDIR%/ +MASTER_SITES+= http://br.php.net/%SUBDIR%/ +MASTER_SITES+= http://cn.php.net/%SUBDIR%/ + +MASTER_SITE_SUBDIR= distributions + +MAINTAINER= onborodin@gmail.com +COMMENT= PHP Scripting Language (Apache Module and CLI) + +BUILD_DEPENDS+= php:lang/php${PORTVERSION:R:S/.//g} +#RUN_DEPENDS +#BUILD_DEPENDS+= ${RUN_DEPENDS} +LIB_DEPENDS+= libxml2.so:text/libxml2 + + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} +WRKSRC= ${WRKDIR}/${DISTNAME}/ext/${MODULE_NAME} + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} + +USES+= tar:xz gmake +GNU_CONFIGURE= yes +CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/php +LDFLAGS= -L${LOCALBASE}/lib + +MODULE_NAME= xmlwriter +DESTDIRNAME= INSTALL_ROOT +#EXTDIR +#INCLUDEDIR + +pre-configure: + cd ${WRKSRC} && ${CONFIGURE_ENV} phpize . + +post-install: + ${RM} -f ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} lib/php -type f >> ${TMPPLIST} + ${MKDIR} ${STAGEDIR}${PREFIX}/include/php + cd ${STAGEDIR}${PREFIX} && ${FIND} include/php -type f >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds lib/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds include/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + +.include +#EOF diff --git a/php74/php74-mod-xmlwriter/distinfo b/php74/php74-mod-xmlwriter/distinfo new file mode 100644 index 00000000..868c3332 --- /dev/null +++ b/php74/php74-mod-xmlwriter/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1756241994 +SHA256 (php-7.4.33.tar.xz) = 924846abf93bc613815c55dd3f5809377813ac62a9ec4eb3778675b82a27b927 +SIZE (php-7.4.33.tar.xz) = 10420144 diff --git a/php74/php74-mod-xmlwriter/pkg-descr b/php74/php74-mod-xmlwriter/pkg-descr new file mode 100644 index 00000000..d6e42932 --- /dev/null +++ b/php74/php74-mod-xmlwriter/pkg-descr @@ -0,0 +1,9 @@ +PHP, which stands for "PHP: Hypertext Preprocessor" is a widely-used Open +Source general-purpose scripting language that is especially suited for +Web development and can be embedded into HTML. Its syntax draws upon C, +Java, and Perl, and is easy to learn. The main goal of the language is to +allow web developers to write dynamically generated webpages quickly, but +you can do much more with PHP. + +WWW: http://www.php.net/ + diff --git a/php74/php74-mod-xsl/Makefile b/php74/php74-mod-xsl/Makefile new file mode 100644 index 00000000..dcdfe644 --- /dev/null +++ b/php74/php74-mod-xsl/Makefile @@ -0,0 +1,66 @@ +# +# $Id: Makefile 2636 2009-09-30 12:09:37Z root $ +# +PORTNAME= php${PORTVERSION:R:S/.//g}-mod-${MODULE_NAME} +PORTVERSION= 7.4.33 +CATEGORIES= lang devel www +MASTER_SITES= ${MASTER_SITE_PHP} +MASTER_SITE_SUBDIR= distributions +DISTNAME= php-${PORTVERSION} + +MASTER_SITES+= http://dk.php.net/%SUBDIR%/ +MASTER_SITES+= http://de.php.net/%SUBDIR%/ +MASTER_SITES+= http://es.php.net/%SUBDIR%/ +MASTER_SITES+= http://fi.php.net/%SUBDIR%/ +MASTER_SITES+= http://fr.php.net/%SUBDIR%/ +MASTER_SITES+= http://gr.php.net/%SUBDIR%/ +MASTER_SITES+= http://it.php.net/%SUBDIR%/ +MASTER_SITES+= http://jp.php.net/%SUBDIR%/ +MASTER_SITES+= http://se.php.net/%SUBDIR%/ +MASTER_SITES+= http://uk.php.net/%SUBDIR%/ +MASTER_SITES+= http://us2.php.net/%SUBDIR%/ +MASTER_SITES+= http://br.php.net/%SUBDIR%/ +MASTER_SITES+= http://cn.php.net/%SUBDIR%/ + +MASTER_SITE_SUBDIR= distributions + +MAINTAINER= onborodin@gmail.com +COMMENT= PHP Scripting Language (Apache Module and CLI) + +BUILD_DEPENDS+= php:lang/php${PORTVERSION:R:S/.//g} +#RUN_DEPENDS +#BUILD_DEPENDS+= ${RUN_DEPENDS} + +LIB_DEPENDS+= libxml2.so:text/libxml2 +LIB_DEPENDS+= libxslt.so:text/libxslt + + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} +WRKSRC= ${WRKDIR}/${DISTNAME}/ext/${MODULE_NAME} + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} +EXTRACT_AFTER_ARGS+= ${DISTNAME}/ext/dom + +USES+= tar:xz gmake +GNU_CONFIGURE= yes +CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/php +LDFLAGS= -L${LOCALBASE}/lib + +MODULE_NAME= xsl +DESTDIRNAME= INSTALL_ROOT +#EXTDIR +#INCLUDEDIR + +pre-configure: + cd ${WRKSRC} && ${CONFIGURE_ENV} phpize . + +post-install: + ${RM} -f ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} lib/php -type f >> ${TMPPLIST} + ${MKDIR} ${STAGEDIR}${PREFIX}/include/php + cd ${STAGEDIR}${PREFIX} && ${FIND} include/php -type f >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds lib/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds include/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + +.include +#EOF diff --git a/php74/php74-mod-xsl/Makefile-e b/php74/php74-mod-xsl/Makefile-e new file mode 100644 index 00000000..6a16e68f --- /dev/null +++ b/php74/php74-mod-xsl/Makefile-e @@ -0,0 +1,66 @@ +# +# $Id: Makefile 2636 2009-09-30 12:09:37Z root $ +# +PORTNAME= php${PORTVERSION:R:S/.//g}-mod-${MODULE_NAME} +PORTVERSION= 7.4.29 +CATEGORIES= lang devel www +MASTER_SITES= ${MASTER_SITE_PHP} +MASTER_SITE_SUBDIR= distributions +DISTNAME= php-${PORTVERSION} + +MASTER_SITES+= http://dk.php.net/%SUBDIR%/ +MASTER_SITES+= http://de.php.net/%SUBDIR%/ +MASTER_SITES+= http://es.php.net/%SUBDIR%/ +MASTER_SITES+= http://fi.php.net/%SUBDIR%/ +MASTER_SITES+= http://fr.php.net/%SUBDIR%/ +MASTER_SITES+= http://gr.php.net/%SUBDIR%/ +MASTER_SITES+= http://it.php.net/%SUBDIR%/ +MASTER_SITES+= http://jp.php.net/%SUBDIR%/ +MASTER_SITES+= http://se.php.net/%SUBDIR%/ +MASTER_SITES+= http://uk.php.net/%SUBDIR%/ +MASTER_SITES+= http://us2.php.net/%SUBDIR%/ +MASTER_SITES+= http://br.php.net/%SUBDIR%/ +MASTER_SITES+= http://cn.php.net/%SUBDIR%/ + +MASTER_SITE_SUBDIR= distributions + +MAINTAINER= onborodin@gmail.com +COMMENT= PHP Scripting Language (Apache Module and CLI) + +BUILD_DEPENDS+= php:lang/php${PORTVERSION:R:S/.//g} +#RUN_DEPENDS +#BUILD_DEPENDS+= ${RUN_DEPENDS} + +LIB_DEPENDS+= libxml2.so:text/libxml2 +LIB_DEPENDS+= libxslt.so:text/libxslt + + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} +WRKSRC= ${WRKDIR}/${DISTNAME}/ext/${MODULE_NAME} + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} +EXTRACT_AFTER_ARGS+= ${DISTNAME}/ext/dom + +USES+= tar:xz gmake +GNU_CONFIGURE= yes +CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/php +LDFLAGS= -L${LOCALBASE}/lib + +MODULE_NAME= xsl +DESTDIRNAME= INSTALL_ROOT +#EXTDIR +#INCLUDEDIR + +pre-configure: + cd ${WRKSRC} && ${CONFIGURE_ENV} phpize . + +post-install: + ${RM} -f ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} lib/php -type f >> ${TMPPLIST} + ${MKDIR} ${STAGEDIR}${PREFIX}/include/php + cd ${STAGEDIR}${PREFIX} && ${FIND} include/php -type f >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds lib/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds include/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + +.include +#EOF diff --git a/php74/php74-mod-xsl/distinfo b/php74/php74-mod-xsl/distinfo new file mode 100644 index 00000000..868c3332 --- /dev/null +++ b/php74/php74-mod-xsl/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1756241994 +SHA256 (php-7.4.33.tar.xz) = 924846abf93bc613815c55dd3f5809377813ac62a9ec4eb3778675b82a27b927 +SIZE (php-7.4.33.tar.xz) = 10420144 diff --git a/php74/php74-mod-xsl/pkg-descr b/php74/php74-mod-xsl/pkg-descr new file mode 100644 index 00000000..d6e42932 --- /dev/null +++ b/php74/php74-mod-xsl/pkg-descr @@ -0,0 +1,9 @@ +PHP, which stands for "PHP: Hypertext Preprocessor" is a widely-used Open +Source general-purpose scripting language that is especially suited for +Web development and can be embedded into HTML. Its syntax draws upon C, +Java, and Perl, and is easy to learn. The main goal of the language is to +allow web developers to write dynamically generated webpages quickly, but +you can do much more with PHP. + +WWW: http://www.php.net/ + diff --git a/php74/php74-mod-zip/Makefile b/php74/php74-mod-zip/Makefile new file mode 100644 index 00000000..19b3a2c3 --- /dev/null +++ b/php74/php74-mod-zip/Makefile @@ -0,0 +1,62 @@ +# +# $Id: Makefile 2636 2009-09-30 12:09:37Z root $ +# +PORTNAME= php${PORTVERSION:R:S/.//g}-mod-${MODULE_NAME} +PORTVERSION= 7.4.33 +CATEGORIES= lang devel www +MASTER_SITES= ${MASTER_SITE_PHP} +MASTER_SITE_SUBDIR= distributions +DISTNAME= php-${PORTVERSION} + +MASTER_SITES+= http://dk.php.net/%SUBDIR%/ +MASTER_SITES+= http://de.php.net/%SUBDIR%/ +MASTER_SITES+= http://es.php.net/%SUBDIR%/ +MASTER_SITES+= http://fi.php.net/%SUBDIR%/ +MASTER_SITES+= http://fr.php.net/%SUBDIR%/ +MASTER_SITES+= http://gr.php.net/%SUBDIR%/ +MASTER_SITES+= http://it.php.net/%SUBDIR%/ +MASTER_SITES+= http://jp.php.net/%SUBDIR%/ +MASTER_SITES+= http://se.php.net/%SUBDIR%/ +MASTER_SITES+= http://uk.php.net/%SUBDIR%/ +MASTER_SITES+= http://us2.php.net/%SUBDIR%/ +MASTER_SITES+= http://br.php.net/%SUBDIR%/ +MASTER_SITES+= http://cn.php.net/%SUBDIR%/ + +MASTER_SITE_SUBDIR= distributions + +MAINTAINER= onborodin@gmail.com +COMMENT= PHP Scripting Language (Apache Module and CLI) + +BUILD_DEPENDS+= php:lang/php${PORTVERSION:R:S/.//g} +#RUN_DEPENDS +#BUILD_DEPENDS+= ${RUN_DEPENDS} + + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} +WRKSRC= ${WRKDIR}/${DISTNAME}/ext/${MODULE_NAME} + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} + +USES+= tar:xz gmake +GNU_CONFIGURE= yes +CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/php +LDFLAGS= -L${LOCALBASE}/lib + +MODULE_NAME= zip +DESTDIRNAME= INSTALL_ROOT +#EXTDIR +#INCLUDEDIR + +pre-configure: + cd ${WRKSRC} && ${CONFIGURE_ENV} phpize . + +post-install: + ${RM} -f ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} lib/php -type f >> ${TMPPLIST} + ${MKDIR} ${STAGEDIR}${PREFIX}/include/php + cd ${STAGEDIR}${PREFIX} && ${FIND} include/php -type f >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds lib/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds include/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + +.include +#EOF diff --git a/php74/php74-mod-zip/Makefile-e b/php74/php74-mod-zip/Makefile-e new file mode 100644 index 00000000..2f0ea9fc --- /dev/null +++ b/php74/php74-mod-zip/Makefile-e @@ -0,0 +1,62 @@ +# +# $Id: Makefile 2636 2009-09-30 12:09:37Z root $ +# +PORTNAME= php${PORTVERSION:R:S/.//g}-mod-${MODULE_NAME} +PORTVERSION= 7.4.29 +CATEGORIES= lang devel www +MASTER_SITES= ${MASTER_SITE_PHP} +MASTER_SITE_SUBDIR= distributions +DISTNAME= php-${PORTVERSION} + +MASTER_SITES+= http://dk.php.net/%SUBDIR%/ +MASTER_SITES+= http://de.php.net/%SUBDIR%/ +MASTER_SITES+= http://es.php.net/%SUBDIR%/ +MASTER_SITES+= http://fi.php.net/%SUBDIR%/ +MASTER_SITES+= http://fr.php.net/%SUBDIR%/ +MASTER_SITES+= http://gr.php.net/%SUBDIR%/ +MASTER_SITES+= http://it.php.net/%SUBDIR%/ +MASTER_SITES+= http://jp.php.net/%SUBDIR%/ +MASTER_SITES+= http://se.php.net/%SUBDIR%/ +MASTER_SITES+= http://uk.php.net/%SUBDIR%/ +MASTER_SITES+= http://us2.php.net/%SUBDIR%/ +MASTER_SITES+= http://br.php.net/%SUBDIR%/ +MASTER_SITES+= http://cn.php.net/%SUBDIR%/ + +MASTER_SITE_SUBDIR= distributions + +MAINTAINER= onborodin@gmail.com +COMMENT= PHP Scripting Language (Apache Module and CLI) + +BUILD_DEPENDS+= php:lang/php${PORTVERSION:R:S/.//g} +#RUN_DEPENDS +#BUILD_DEPENDS+= ${RUN_DEPENDS} + + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} +WRKSRC= ${WRKDIR}/${DISTNAME}/ext/${MODULE_NAME} + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} + +USES+= tar:xz gmake +GNU_CONFIGURE= yes +CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/php +LDFLAGS= -L${LOCALBASE}/lib + +MODULE_NAME= zip +DESTDIRNAME= INSTALL_ROOT +#EXTDIR +#INCLUDEDIR + +pre-configure: + cd ${WRKSRC} && ${CONFIGURE_ENV} phpize . + +post-install: + ${RM} -f ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} lib/php -type f >> ${TMPPLIST} + ${MKDIR} ${STAGEDIR}${PREFIX}/include/php + cd ${STAGEDIR}${PREFIX} && ${FIND} include/php -type f >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds lib/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds include/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + +.include +#EOF diff --git a/php74/php74-mod-zip/distinfo b/php74/php74-mod-zip/distinfo new file mode 100644 index 00000000..868c3332 --- /dev/null +++ b/php74/php74-mod-zip/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1756241994 +SHA256 (php-7.4.33.tar.xz) = 924846abf93bc613815c55dd3f5809377813ac62a9ec4eb3778675b82a27b927 +SIZE (php-7.4.33.tar.xz) = 10420144 diff --git a/php74/php74-mod-zip/pkg-descr b/php74/php74-mod-zip/pkg-descr new file mode 100644 index 00000000..d6e42932 --- /dev/null +++ b/php74/php74-mod-zip/pkg-descr @@ -0,0 +1,9 @@ +PHP, which stands for "PHP: Hypertext Preprocessor" is a widely-used Open +Source general-purpose scripting language that is especially suited for +Web development and can be embedded into HTML. Its syntax draws upon C, +Java, and Perl, and is easy to learn. The main goal of the language is to +allow web developers to write dynamically generated webpages quickly, but +you can do much more with PHP. + +WWW: http://www.php.net/ + diff --git a/php74/php74-mod-zlib/Makefile b/php74/php74-mod-zlib/Makefile new file mode 100644 index 00000000..f4b1c874 --- /dev/null +++ b/php74/php74-mod-zlib/Makefile @@ -0,0 +1,63 @@ +# +# $Id: Makefile 2636 2009-09-30 12:09:37Z root $ +# +PORTNAME= php${PORTVERSION:R:S/.//g}-mod-${MODULE_NAME} +PORTVERSION= 7.4.33 +CATEGORIES= lang devel www +MASTER_SITES= ${MASTER_SITE_PHP} +MASTER_SITE_SUBDIR= distributions +DISTNAME= php-${PORTVERSION} + +MASTER_SITES+= http://dk.php.net/%SUBDIR%/ +MASTER_SITES+= http://de.php.net/%SUBDIR%/ +MASTER_SITES+= http://es.php.net/%SUBDIR%/ +MASTER_SITES+= http://fi.php.net/%SUBDIR%/ +MASTER_SITES+= http://fr.php.net/%SUBDIR%/ +MASTER_SITES+= http://gr.php.net/%SUBDIR%/ +MASTER_SITES+= http://it.php.net/%SUBDIR%/ +MASTER_SITES+= http://jp.php.net/%SUBDIR%/ +MASTER_SITES+= http://se.php.net/%SUBDIR%/ +MASTER_SITES+= http://uk.php.net/%SUBDIR%/ +MASTER_SITES+= http://us2.php.net/%SUBDIR%/ +MASTER_SITES+= http://br.php.net/%SUBDIR%/ +MASTER_SITES+= http://cn.php.net/%SUBDIR%/ + +MASTER_SITE_SUBDIR= distributions + +MAINTAINER= onborodin@gmail.com +COMMENT= PHP Scripting Language (Apache Module and CLI) + +BUILD_DEPENDS+= php:lang/php${PORTVERSION:R:S/.//g} +#RUN_DEPENDS +#BUILD_DEPENDS+= ${RUN_DEPENDS} + + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} +WRKSRC= ${WRKDIR}/${DISTNAME}/ext/${MODULE_NAME} + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} + +USES+= tar:xz gmake +GNU_CONFIGURE= yes +CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/php +LDFLAGS= -L${LOCALBASE}/lib + +MODULE_NAME= zlib +DESTDIRNAME= INSTALL_ROOT +#EXTDIR +#INCLUDEDIR + +pre-configure: + cd ${WRKSRC} && ${CP} config0.m4 config.m4 + cd ${WRKSRC} && ${CONFIGURE_ENV} phpize . + +post-install: + ${RM} -f ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} lib/php -type f >> ${TMPPLIST} + ${MKDIR} ${STAGEDIR}${PREFIX}/include/php + cd ${STAGEDIR}${PREFIX} && ${FIND} include/php -type f >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds lib/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds include/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + +.include +#EOF diff --git a/php74/php74-mod-zlib/Makefile-e b/php74/php74-mod-zlib/Makefile-e new file mode 100644 index 00000000..169f22e6 --- /dev/null +++ b/php74/php74-mod-zlib/Makefile-e @@ -0,0 +1,63 @@ +# +# $Id: Makefile 2636 2009-09-30 12:09:37Z root $ +# +PORTNAME= php${PORTVERSION:R:S/.//g}-mod-${MODULE_NAME} +PORTVERSION= 7.4.29 +CATEGORIES= lang devel www +MASTER_SITES= ${MASTER_SITE_PHP} +MASTER_SITE_SUBDIR= distributions +DISTNAME= php-${PORTVERSION} + +MASTER_SITES+= http://dk.php.net/%SUBDIR%/ +MASTER_SITES+= http://de.php.net/%SUBDIR%/ +MASTER_SITES+= http://es.php.net/%SUBDIR%/ +MASTER_SITES+= http://fi.php.net/%SUBDIR%/ +MASTER_SITES+= http://fr.php.net/%SUBDIR%/ +MASTER_SITES+= http://gr.php.net/%SUBDIR%/ +MASTER_SITES+= http://it.php.net/%SUBDIR%/ +MASTER_SITES+= http://jp.php.net/%SUBDIR%/ +MASTER_SITES+= http://se.php.net/%SUBDIR%/ +MASTER_SITES+= http://uk.php.net/%SUBDIR%/ +MASTER_SITES+= http://us2.php.net/%SUBDIR%/ +MASTER_SITES+= http://br.php.net/%SUBDIR%/ +MASTER_SITES+= http://cn.php.net/%SUBDIR%/ + +MASTER_SITE_SUBDIR= distributions + +MAINTAINER= onborodin@gmail.com +COMMENT= PHP Scripting Language (Apache Module and CLI) + +BUILD_DEPENDS+= php:lang/php${PORTVERSION:R:S/.//g} +#RUN_DEPENDS +#BUILD_DEPENDS+= ${RUN_DEPENDS} + + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} +WRKSRC= ${WRKDIR}/${DISTNAME}/ext/${MODULE_NAME} + +EXTRACT_AFTER_ARGS= ${DISTNAME}/ext/${MODULE_NAME} + +USES+= tar:xz gmake +GNU_CONFIGURE= yes +CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/php +LDFLAGS= -L${LOCALBASE}/lib + +MODULE_NAME= zlib +DESTDIRNAME= INSTALL_ROOT +#EXTDIR +#INCLUDEDIR + +pre-configure: + cd ${WRKSRC} && ${CP} config0.m4 config.m4 + cd ${WRKSRC} && ${CONFIGURE_ENV} phpize . + +post-install: + ${RM} -f ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} lib/php -type f >> ${TMPPLIST} + ${MKDIR} ${STAGEDIR}${PREFIX}/include/php + cd ${STAGEDIR}${PREFIX} && ${FIND} include/php -type f >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds lib/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + cd ${STAGEDIR}${PREFIX} && ${FIND} -ds include/php -type d | ${SED} -e 's,^,@dir ,' >> ${TMPPLIST} + +.include +#EOF diff --git a/php74/php74-mod-zlib/distinfo b/php74/php74-mod-zlib/distinfo new file mode 100644 index 00000000..868c3332 --- /dev/null +++ b/php74/php74-mod-zlib/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1756241994 +SHA256 (php-7.4.33.tar.xz) = 924846abf93bc613815c55dd3f5809377813ac62a9ec4eb3778675b82a27b927 +SIZE (php-7.4.33.tar.xz) = 10420144 diff --git a/php74/php74-mod-zlib/pkg-descr b/php74/php74-mod-zlib/pkg-descr new file mode 100644 index 00000000..d6e42932 --- /dev/null +++ b/php74/php74-mod-zlib/pkg-descr @@ -0,0 +1,9 @@ +PHP, which stands for "PHP: Hypertext Preprocessor" is a widely-used Open +Source general-purpose scripting language that is especially suited for +Web development and can be embedded into HTML. Its syntax draws upon C, +Java, and Perl, and is easy to learn. The main goal of the language is to +allow web developers to write dynamically generated webpages quickly, but +you can do much more with PHP. + +WWW: http://www.php.net/ + diff --git a/system/smartmontools/Makefile b/system/smartmontools/Makefile new file mode 100644 index 00000000..1274ce68 --- /dev/null +++ b/system/smartmontools/Makefile @@ -0,0 +1,38 @@ +# +# $Id$ +# +PORTNAME= smartmontools +PORTVERSION= 7.4 +CATEGORIES= sysutils +MASTER_SITES= SF + +MAINTAINER= samm@os2.kiev.ua +COMMENT= S.M.A.R.T. disk monitoring tools + +USES= alias gmake shebangfix +SHEBANG_FILES= examplescripts/Example5 +GNU_CONFIGURE= yes +CONFIGURE_ARGS+= --disable-dependency-tracking +CONFIGURE_ARGS+= --enable-sample +CONFIGURE_ARGS+= --with-nvme-devicescan=yes +CONFIGURE_ARGS+= --with-initscriptdir=${PREFIX}/etc/rc.d +CONFIGURE_ARGS+= --sysconfdir=${PREFIX}/etc/smartd + +SUB_FILES= pkg-message smart +USE_RC_SUBR= smartd + +PORTEXAMPLES= * + +post-patch: + ${REINPLACE_CMD} -e 's| install-initdDATA| |' ${WRKSRC}/Makefile.in + +post-install: + ${MKDIR} ${STAGEDIR}${PREFIX}/etc/periodic/daily + ${INSTALL_SCRIPT} ${WRKDIR}/smart \ + ${STAGEDIR}${PREFIX}/etc/periodic/daily/310.smart + ${MKDIR} ${STAGEDIR}${EXAMPLESDIR} + ${INSTALL_DATA} ${WRKSRC}/*.conf ${STAGEDIR}${EXAMPLESDIR} +# ${INSTALL_DATA} ${WRKSRC}/smartd_warning.sh ${STAGEDIR}${EXAMPLESDIR}/smartd-warning.sh + +.include +#EOF diff --git a/system/smartmontools/distinfo b/system/smartmontools/distinfo new file mode 100644 index 00000000..e56e2f02 --- /dev/null +++ b/system/smartmontools/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1703707373 +SHA256 (smartmontools-7.4.tar.gz) = e9a61f641ff96ca95319edfb17948cd297d0cd3342736b2c49c99d4716fb993d +SIZE (smartmontools-7.4.tar.gz) = 1094955 diff --git a/system/smartmontools/files/_patch-configure b/system/smartmontools/files/_patch-configure new file mode 100644 index 00000000..c78ab48c --- /dev/null +++ b/system/smartmontools/files/_patch-configure @@ -0,0 +1,11 @@ +--- configure.orig 2018-12-30 14:49:08 UTC ++++ configure +@@ -6891,7 +6891,7 @@ case "${host}" in + *-*-freebsd*|*-*-dragonfly*|*-*-kfreebsd*-gnu*) + os_deps='os_freebsd.o cciss.o dev_areca.o' + os_libs='-lcam -lsbuf' +- os_dltools='curl wget lynx fetch svn' ++ os_dltools='fetch curl wget lynx svn' + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for libusb20_dev_get_device_desc in -lusb" >&5 + $as_echo_n "checking for libusb20_dev_get_device_desc in -lusb... " >&6; } + if ${ac_cv_lib_usb_libusb20_dev_get_device_desc+:} false; then : diff --git a/system/smartmontools/files/_patch-os__freebsd.cpp b/system/smartmontools/files/_patch-os__freebsd.cpp new file mode 100644 index 00000000..ff28e86e --- /dev/null +++ b/system/smartmontools/files/_patch-os__freebsd.cpp @@ -0,0 +1,53 @@ +Index: os_freebsd.cpp +=================================================================== +--- os_freebsd.cpp.orig 2018-12-05 18:30:46 UTC ++++ os_freebsd.cpp +@@ -9,6 +9,7 @@ + */ + + #include ++#include + #include + #include + #include +@@ -522,29 +523,29 @@ bool freebsd_nvme_device::nvme_pass_through(const nvme + pt.cmd.opc = in.opcode; + #endif + pt.cmd.opc = in.opcode; +- pt.cmd.nsid = in.nsid; ++ pt.cmd.nsid = htole32(in.nsid); + pt.buf = in.buffer; + pt.len = in.size; +- pt.cmd.cdw10 = in.cdw10; +- pt.cmd.cdw11 = in.cdw11; +- pt.cmd.cdw12 = in.cdw12; +- pt.cmd.cdw13 = in.cdw13; +- pt.cmd.cdw14 = in.cdw14; +- pt.cmd.cdw15 = in.cdw15; ++ pt.cmd.cdw10 = htole32(in.cdw10); ++ pt.cmd.cdw11 = htole32(in.cdw11); ++ pt.cmd.cdw12 = htole32(in.cdw12); ++ pt.cmd.cdw13 = htole32(in.cdw13); ++ pt.cmd.cdw14 = htole32(in.cdw14); ++ pt.cmd.cdw15 = htole32(in.cdw15); + pt.is_read = 1; // should we use in.direction()? + + int status = ioctl(get_fd(), NVME_PASSTHROUGH_CMD, &pt); + + if (status < 0) + return set_err(errno, "NVME_PASSTHROUGH_CMD: %s", strerror(errno)); +- ++#if __FreeBSD_version >= 1200058 ++ nvme_completion_swapbytes(&pt.cpl); ++#endif + cp_p = &pt.cpl; + out.result=cp_p->cdw0; // Command specific result (DW0) + + if (nvme_completion_is_error(cp_p)) { /* ignore DNR and More bits */ +- uint16_t nvme_status = ((cp_p->status.sct << 8) | cp_p->status.sc) & 0x3ff; +- +- return set_nvme_err(out, nvme_status); ++ return set_nvme_err(out, nvme_completion_is_error(&pt.cpl)); + } + + return true; diff --git a/system/smartmontools/files/pkg-message.in b/system/smartmontools/files/pkg-message.in new file mode 100644 index 00000000..9c68b700 --- /dev/null +++ b/system/smartmontools/files/pkg-message.in @@ -0,0 +1,20 @@ +smartmontools has been installed + +To check the status of drives, use the following: + + %%PREFIX%%/sbin/smartctl -a /dev/ad0 for first ATA/SATA drive + %%PREFIX%%/sbin/smartctl -a /dev/da0 for first SCSI drive + %%PREFIX%%/sbin/smartctl -a /dev/ada0 for first SATA drive + +To include drive health information in your daily status reports, +add a line like the following to /etc/periodic.conf: + daily_status_smart_devices="/dev/ad0 /dev/da0" +substituting the appropriate device names for your SMART-capable disks. + +To enable drive monitoring, you can use %%PREFIX%%/sbin/smartd. +A sample configuration file has been installed as +%%PREFIX%%/etc/smartd.conf.sample +Copy this file to %%PREFIX%%/etc/smartd.conf and edit appropriately + +To have smartd start at boot + echo 'smartd_enable="YES"' >> /etc/rc.conf diff --git a/system/smartmontools/files/smart.in b/system/smartmontools/files/smart.in new file mode 100644 index 00000000..4f4c501a --- /dev/null +++ b/system/smartmontools/files/smart.in @@ -0,0 +1,85 @@ +#!/bin/sh +# This script is in the public domain. Original author: Garrett Wollman +# +# $FreeBSD: head/sysutils/smartmontools/files/smart.in 389829 2015-06-16 09:36:09Z tijl $ +# + +if [ -r /etc/defaults/periodic.conf ]; then + . /etc/defaults/periodic.conf + source_periodic_confs +fi + +smartctl=%%PREFIX%%/sbin/smartctl +: ${daily_status_smartctl_flags="-H"} +: ${daily_status_smartctl_extra_status_flags="-a"} + +case "${daily_status_smart_devices}" in + # XXX AUTO mode selects only regular ad/da disks + [Aa][Uu][Tt][Oo]) + daily_status_smart_devices="$(sysctl -n kern.disks | sed -E 's/[[:<:]](cd|ar)[0-9]+//g')" + ;; + *) ;; +esac + +if [ -z "${daily_status_smart_devices}" ]; then + : ${daily_status_smart_enable="NO"} +else + : ${daily_status_smart_enable="YES"} +fi + +trim_junk="tail -n +4" + +tmpfile="$(mktemp -t daily)" +trap "rm -f ${tmpfile}" 0 1 3 15 + +rc=0 +case "${daily_status_smart_enable}" in + [Yy][Ee][Ss]) + echo + echo 'SMART status:' + cd /dev + for device in ${daily_status_smart_devices}; do + device="${device#/dev/}" + devflags="" + case ${device} in + tw[aes]*) devflags="-d3ware,${device##tw[aes][0-9]*,}" + device="/dev/${device%,[0-9]*}" + ;; + ciss*) devflags="-dcciss,${device##ciss[0-9]*,}" + device="/dev/${device%,[0-9]*}" + ;; + /*) ;; + *) device="/dev/${device}" + ;; + esac + + if [ -e ${device} ]; then + echo -n "Checking health of ${device}" + if [ -n "${devflags}" ]; then + echo -n " (${devflags})" + fi + echo -n ": " + + ${smartctl} ${devflags} ${daily_status_smartctl_flags} ${device} > "${tmpfile}" + status=$? + if [ ${status} -eq 0 ]; then + echo "OK" + elif [ ${status} -eq 32 ]; then + echo "OK (but has failed in the past)" + elif [ $((status & 3)) -ne 0 ]; then + rc=2 + ${trim_junk} "${tmpfile}" + elif [ `grep -c '^SMART support is: Unavailable' ${tmpfile}` -eq 1 ] ; then + rc=2 + echo "N/A" + else + rc=1 + ${smartctl} ${devflags} ${daily_status_smartctl_extra_status_flags} \ + ${device} | ${trim_junk} + fi + fi + done + ;; +esac + +exit "${rc}" diff --git a/system/smartmontools/files/smartd.in b/system/smartmontools/files/smartd.in new file mode 100644 index 00000000..6aad5afc --- /dev/null +++ b/system/smartmontools/files/smartd.in @@ -0,0 +1,70 @@ +#!/bin/sh + +# $FreeBSD: head/sysutils/smartmontools/files/smartd.in 340872 2014-01-24 00:14:07Z mat $ +# +# PROVIDE: smartd +# REQUIRE: LOGIN +# KEYWORD: shutdown nojail +# +# Define these smartd_* variables in one of these files: +# /etc/rc.conf +# /etc/rc.conf.local +# /etc/rc.conf.d/smartd +# +# DO NOT CHANGE THESE DEFAULT VALUES HERE + +. /etc/rc.subr + +name=smartd +rcvar=smartd_enable + +load_rc_config smartd + +: ${smartd_enable:="NO"} + +required_files=${smartd_config:="%%PREFIX%%/etc/smartd/smartd.conf"} +pidfile=${smartd_pidfile:="/var/run/smartd.pid"} + +command="%%PREFIX%%/sbin/smartd" +command_args="-c ${required_files} -p ${pidfile}" + +extra_commands="reload report" +reload_cmd="smartd_reload" +report_cmd="smartd_report" + +start_precmd=smartd_prestart + +smartd_prestart() +{ + case "${smartd_flags}" in + -p*|*-p*) + err 1 'smartd_flags includes the -p option, use smartd_pidfile instead' + ;; + esac +} + +smartd_reload() +{ + local status + + if ! status=`run_rc_command status 2>&1`; then + echo $status + return 1 + fi + echo 'Reloading smartd.' + kill -HUP $rc_pid +} + +smartd_report() +{ + local status + + if ! status=`run_rc_command status 2>&1`; then + echo $status + return 1 + fi + echo 'Checking SMART devices now.' + kill -USR1 $rc_pid +} + +run_rc_command "$1" diff --git a/system/smartmontools/pkg-descr b/system/smartmontools/pkg-descr new file mode 100644 index 00000000..967dfc59 --- /dev/null +++ b/system/smartmontools/pkg-descr @@ -0,0 +1,7 @@ +The smartmontools package contains two utility programs (smartctl and smartd) +to control and monitor storage systems using the Self-Monitoring, Analysis +and Reporting Technology System (S.M.A.R.T.) built into most modern ATA and +SCSI hard disks. It is derived from the smartsuite package, and includes +support for ATA/ATAPI/SATA disks and SCSI disks and tape devices. + +WWW: http://www.smartmontools.org diff --git a/system/smartmontools/pkg-plist b/system/smartmontools/pkg-plist new file mode 100644 index 00000000..23370644 --- /dev/null +++ b/system/smartmontools/pkg-plist @@ -0,0 +1,9 @@ +etc/periodic/daily/310.smart +sbin/smartctl +sbin/smartd +share/smartmontools/drivedb.h +man/man5/smartd.conf.5.gz +man/man8/smartctl.8.gz +man/man8/smartd.8.gz +man/man8/update-smart-drivedb.8.gz +sbin/update-smart-drivedb diff --git a/text/aspell/Makefile b/text/aspell/Makefile new file mode 100644 index 00000000..d0e463e5 --- /dev/null +++ b/text/aspell/Makefile @@ -0,0 +1,41 @@ +# +# $Id: Makefile 2363 2009-09-06 11:14:53Z root $ +# $URL: file:///usr2/svn/ports5/text-utils/aspell/Makefile $ +# +PORTNAME= aspell +PORTVERSION= 0.60.6.1 +CATEGORIES= textproc +MASTER_SITES= ${MASTER_SITE_GNU} +MASTER_SITE_SUBDIR= aspell +DISTFILES= ${PORTNAME}-${PORTVERSION}${EXTRACT_SUFX} +EXTRACT_ONLY= ${PORTNAME}-${PORTVERSION}${EXTRACT_SUFX} + +MAINTAINER= onborodin@gmail.com +COMMENT= Spelling checker with better suggestion logic than ispell + +LIB_DEPENDS+= libintl.so:devel/gettext +LIB_DEPENDS+= libiconv.so:text/libiconv + +#PATCH_SITES= https://github.com/GNUAspell/${PORTNAME}/commit/ +#PATCHFILES+= ee6cbb12ff36a1e6618d7388a78dd4e0a2b44041.patch:-p1 + + +GNU_CONFIGURE= yes +USES+= gmake +INSTALLS_SHLIB= yes +CONFIGURE_ARGS+= --enable-dict-dir=${DATADIR} +CONFIGURE_ARGS+= --enable-docdir=${DOCSDIR} +CONFIGURE_ARGS+= --enable-static +CONFIGURE_ARGS+= --mandir=${PREFIX}/man +CONFIGURE_ARGS+= --infodir=${PREFIX}/info +CONFIGURE_ARGS+= --enable-pkglibdir=${PREFIX}/lib/aspell +CONFIGURE_ARGS+= --enable-pkgdatadir=${PREFIX}/lib/aspell +CONFIGURE_ARGS+= --with-libiconv-prefix=${LOCALBASE} +CONFIGURE_ARGS+= --with-libintl-prefix=${LOCALBASE} +CONFIGURE_ARGS+= --enable-compile-in-filters + +INFO+= aspell +INFO+= aspell-dev + +.include +#EOF diff --git a/text/aspell/distinfo b/text/aspell/distinfo new file mode 100644 index 00000000..d3a9ba61 --- /dev/null +++ b/text/aspell/distinfo @@ -0,0 +1,5 @@ +TIMESTAMP = 1756192108 +SHA256 (aspell-0.60.6.1.tar.gz) = f52583a83a63633701c5f71db3dc40aab87b7f76b29723aeb27941eff42df6e1 +SIZE (aspell-0.60.6.1.tar.gz) = 1878163 +SHA256 (ee6cbb12ff36a1e6618d7388a78dd4e0a2b44041.patch) = 3dce45d8071bd4afd7b6c1319c090147b2b526322be45996598c64b07758a87c +SIZE (ee6cbb12ff36a1e6618d7388a78dd4e0a2b44041.patch) = 1976 diff --git a/text/aspell/files/aspell.ver.in b/text/aspell/files/aspell.ver.in new file mode 100644 index 00000000..fd380c96 --- /dev/null +++ b/text/aspell/files/aspell.ver.in @@ -0,0 +1,3 @@ +# $FreeBSD: ports/textproc/aspell/files/aspell.ver.in,v 1.1 2006/07/15 14:28:44 thierry Exp $ +# Installed by textproc/aspell, please don't edit manually! +VER= %%VERINST%% diff --git a/text/aspell/files/patch-x-Makefile.in b/text/aspell/files/patch-x-Makefile.in new file mode 100644 index 00000000..f9141e81 --- /dev/null +++ b/text/aspell/files/patch-x-Makefile.in @@ -0,0 +1,25 @@ +--- ./Makefile.in.orig 2011-07-04 11:58:49.000000000 +0300 ++++ ./Makefile.in 2014-12-23 09:52:46.000000000 +0200 +@@ -481,7 +481,12 @@ + top_builddir = @top_builddir@ + top_srcdir = @top_srcdir@ + AUTOMAKE_OPTIONS = foreign subdir-objects +-SUBDIRS = . po manual ++ ++ifndef NOPORTDOCS ++MANUALSUBDIR = manual ++endif ++SUBDIRS = . po $(MANUALSUBDIR) ++ + DIST_SUBDIRS = ${SUBDIRS} examples myspell lib5 + filterdir = ${pkglibdir} + optdir = ${pkgdatadir} +@@ -578,7 +583,7 @@ + @INCREMENTED_SONAME_TRUE@@PSPELL_COMPATIBILITY_TRUE@libpspell_la_LDFLAGS = -version-info 16:5:0 -no-undefined + word_list_compress_SOURCES = prog/compress.c + aspell_SOURCES = prog/aspell.cpp prog/check_funs.cpp prog/checker_string.cpp +-aspell_LDADD = libaspell.la $(CURSES_LIB) ++aspell_LDADD = libaspell.la $(CURSES_LIB) $(LTLIBINTL) + prezip_bin_SOURCES = prog/prezip.c + static_optfiles = modules/filter/url-filter.info $(am__append_2) + dynamic_optfiles = $(am__append_4) diff --git a/text/aspell/files/patch-x-configure b/text/aspell/files/patch-x-configure new file mode 100644 index 00000000..3458896f --- /dev/null +++ b/text/aspell/files/patch-x-configure @@ -0,0 +1,83 @@ +--- ./configure.orig 2011-07-04 11:58:50.000000000 +0300 ++++ ./configure 2014-12-23 09:52:46.000000000 +0200 +@@ -3524,7 +3524,7 @@ + fi + + +-if test "$GXX" = "yes" && expr "$CXXFLAGS" : '.*-O' > /dev/null ++if test "$GXX" = "yes" && expr -- "$CXXFLAGS" : '.*-O' > /dev/null + then + CXXFLAGS="$CXXFLAGS -fno-exceptions" + fi +@@ -9723,7 +9723,7 @@ + hardcode_shlibpath_var=no + ;; + +- freebsd1*) ++ freebsd1.*) + ld_shlibs=no + ;; + +@@ -10620,7 +10620,7 @@ + shlibpath_var=LD_LIBRARY_PATH + ;; + +-freebsd1*) ++freebsd1.*) + dynamic_linker=no + ;; + +@@ -10631,7 +10631,7 @@ + objformat=`/usr/bin/objformat` + else + case $host_os in +- freebsd[123]*) objformat=aout ;; ++ freebsd[123].*) objformat=aout ;; + *) objformat=elf ;; + esac + fi +@@ -12687,7 +12687,7 @@ + esac + ;; + +- freebsd[12]*) ++ freebsd[12].*) + # C++ shared libraries reported to be fairly broken before + # switch to ELF + ld_shlibs_CXX=no +@@ -14437,7 +14437,7 @@ + shlibpath_var=LD_LIBRARY_PATH + ;; + +-freebsd1*) ++freebsd1.*) + dynamic_linker=no + ;; + +@@ -14448,7 +14448,7 @@ + objformat=`/usr/bin/objformat` + else + case $host_os in +- freebsd[123]*) objformat=aout ;; ++ freebsd[123].*) objformat=aout ;; + *) objformat=elf ;; + esac + fi +@@ -18243,7 +18243,7 @@ + CURSES_LIB=-lncurses + + cat >>confdefs.h <<\_ACEOF +-#define CURSES_HEADER ++#define CURSES_HEADER + _ACEOF + + +@@ -18437,7 +18437,7 @@ + + + cat >>confdefs.h <<\_ACEOF +-#define CURSES_HEADER ++#define CURSES_HEADER + _ACEOF + + diff --git a/text/aspell/files/patch-x-interfaces-cc-aspell.h b/text/aspell/files/patch-x-interfaces-cc-aspell.h new file mode 100644 index 00000000..4f610a5f --- /dev/null +++ b/text/aspell/files/patch-x-interfaces-cc-aspell.h @@ -0,0 +1,20 @@ +--- ./interfaces/cc/aspell.h.orig 2011-07-03 00:53:27.000000000 +0300 ++++ ./interfaces/cc/aspell.h 2014-12-23 09:52:46.000000000 +0200 +@@ -236,7 +236,7 @@ + + /******************************** errors ********************************/ + +- ++#ifndef ASPELL_ERRORS__HPP + extern const struct AspellErrorInfo * const aerror_other; + extern const struct AspellErrorInfo * const aerror_operation_not_supported; + extern const struct AspellErrorInfo * const aerror_cant_copy; +@@ -322,7 +322,7 @@ + extern const struct AspellErrorInfo * const aerror_bad_magic; + extern const struct AspellErrorInfo * const aerror_expression; + extern const struct AspellErrorInfo * const aerror_invalid_expression; +- ++#endif + + /******************************* speller *******************************/ + diff --git a/text/aspell/files/patch-x-modules-filter-tex.cpp b/text/aspell/files/patch-x-modules-filter-tex.cpp new file mode 100644 index 00000000..adc1965a --- /dev/null +++ b/text/aspell/files/patch-x-modules-filter-tex.cpp @@ -0,0 +1,11 @@ +--- ./modules/filter/tex.cpp.orig 2011-07-03 00:09:09.000000000 +0300 ++++ ./modules/filter/tex.cpp 2019-01-27 22:08:42.491707000 +0200 +@@ -174,7 +174,7 @@ + + if (c == '{') { + +- if (top.in_what == Parm || top.in_what == Opt || top.do_check == '\0') ++ if (top.in_what == Parm || top.in_what == Opt || top.do_check == "\0") + push_command(Parm); + + top.in_what = Parm; diff --git a/text/aspell/files/patch-x-modules-speller-default-affix.cpp b/text/aspell/files/patch-x-modules-speller-default-affix.cpp new file mode 100644 index 00000000..b3bcf487 --- /dev/null +++ b/text/aspell/files/patch-x-modules-speller-default-affix.cpp @@ -0,0 +1,14 @@ +--- ./modules/speller/default/affix.cpp.orig 2011-07-03 00:09:09.000000000 +0300 ++++ ./modules/speller/default/affix.cpp 2014-12-23 09:52:46.000000000 +0200 +@@ -796,7 +796,10 @@ + if (se->check(linf, word, ci, gi, sfxopts, ppfx)) return true; + se = se->next; + } +- ++ ++ if (word.size() == 0) ++ return false; ++ + // now handle the general case + byte sp = *((const byte *)(word + word.size() - 1)); + SfxEntry * sptr = sStart[sp]; diff --git a/text/aspell/files/patch-x-modules-speller-default-vector_hash-t.hpp b/text/aspell/files/patch-x-modules-speller-default-vector_hash-t.hpp new file mode 100644 index 00000000..d532634c --- /dev/null +++ b/text/aspell/files/patch-x-modules-speller-default-vector_hash-t.hpp @@ -0,0 +1,11 @@ +--- ./modules/speller/default/vector_hash-t.hpp.orig 2011-07-03 00:09:09.000000000 +0300 ++++ ./modules/speller/default/vector_hash-t.hpp 2025-08-26 09:08:32.414920000 +0200 +@@ -183,7 +183,7 @@ + template + void VectorHashTable::recalc_size() { + size_ = 0; +- for (iterator i = begin(); i != this->e; ++i, ++this->_size); ++ for (iterator i = begin(), e = end(); i != e; ++i, ++size_); + } + + } diff --git a/text/aspell/files/patch-x-prog-aspell.cpp b/text/aspell/files/patch-x-prog-aspell.cpp new file mode 100644 index 00000000..cc4d2678 --- /dev/null +++ b/text/aspell/files/patch-x-prog-aspell.cpp @@ -0,0 +1,18 @@ +--- ./prog/aspell.cpp.orig 2011-07-04 12:13:58.000000000 +0300 ++++ ./prog/aspell.cpp 2014-12-23 09:52:46.000000000 +0200 +@@ -25,6 +25,7 @@ + # include + #endif + ++#include "errors.hpp" + #include "aspell.h" + + #ifdef USE_FILE_INO +@@ -40,7 +41,6 @@ + #include "convert.hpp" + #include "document_checker.hpp" + #include "enumeration.hpp" +-#include "errors.hpp" + #include "file_util.hpp" + #include "fstream.hpp" + #include "info.hpp" diff --git a/text/aspell/files/patch-x-prog-check_funs.cpp b/text/aspell/files/patch-x-prog-check_funs.cpp new file mode 100644 index 00000000..5e91c4df --- /dev/null +++ b/text/aspell/files/patch-x-prog-check_funs.cpp @@ -0,0 +1,11 @@ +--- ./prog/check_funs.cpp.orig 2011-07-04 12:17:27.000000000 +0300 ++++ ./prog/check_funs.cpp 2019-01-27 22:10:53.781397000 +0200 +@@ -647,7 +647,7 @@ + } + } + if (i == width-1) { +- if (word == '\0') ++ if (word == "\0") + put(out,' '); + else if (word[len] == '\0') + put(out, word, len); diff --git a/text/aspell/files/patch-x-prog-checker_string.cpp b/text/aspell/files/patch-x-prog-checker_string.cpp new file mode 100644 index 00000000..1140f217 --- /dev/null +++ b/text/aspell/files/patch-x-prog-checker_string.cpp @@ -0,0 +1,10 @@ +--- ./prog/checker_string.cpp.orig 2011-07-04 12:22:23.000000000 +0300 ++++ ./prog/checker_string.cpp 2014-12-23 09:52:46.000000000 +0200 +@@ -6,6 +6,7 @@ + + #include + ++#include + #include "checker_string.hpp" + #include "speller.hpp" + #include "document_checker.hpp" diff --git a/text/aspell/files/patch-x-prog-checker_string.hpp b/text/aspell/files/patch-x-prog-checker_string.hpp new file mode 100644 index 00000000..4e21d731 --- /dev/null +++ b/text/aspell/files/patch-x-prog-checker_string.hpp @@ -0,0 +1,10 @@ +--- ./prog/checker_string.hpp.orig 2011-07-03 00:09:09.000000000 +0300 ++++ ./prog/checker_string.hpp 2014-12-23 09:52:46.000000000 +0200 +@@ -6,6 +6,7 @@ + + #include + ++#include "errors.hpp" + #include "aspell.h" + + #include "vector.hpp" diff --git a/text/aspell/pkg-descr b/text/aspell/pkg-descr new file mode 100644 index 00000000..7e3ff185 --- /dev/null +++ b/text/aspell/pkg-descr @@ -0,0 +1,8 @@ +Aspell is a spelling checker designed to eventually replace +ispell, although it currently lacks many of ispell's basic +functions. Aspell's main feature is that it does a much better +job of coming up with possible suggestions than ispell. Aspell +also includes a powerful C++ library with C and Perl interfaces +in the works. + +WWW: http://aspell.sourceforge.net/ diff --git a/text/aspell/pkg-plist b/text/aspell/pkg-plist new file mode 100644 index 00000000..0b431979 --- /dev/null +++ b/text/aspell/pkg-plist @@ -0,0 +1,187 @@ +bin/aspell +bin/aspell-import +bin/precat +bin/preunzip +bin/prezip +bin/prezip-bin +bin/pspell-config +bin/run-with-aspell +bin/word-list-compress +include/aspell.h +include/pspell/pspell.h +lib/aspell/cp1250.cmap +lib/aspell/cp1250.cset +lib/aspell/cp1251.cmap +lib/aspell/cp1251.cset +lib/aspell/cp1252.cmap +lib/aspell/cp1252.cset +lib/aspell/cp1253.cmap +lib/aspell/cp1253.cset +lib/aspell/cp1254.cmap +lib/aspell/cp1254.cset +lib/aspell/cp1255.cmap +lib/aspell/cp1255.cset +lib/aspell/cp1256.cmap +lib/aspell/cp1256.cset +lib/aspell/cp1257.cmap +lib/aspell/cp1257.cset +lib/aspell/cp1258.cmap +lib/aspell/cp1258.cset +lib/aspell/dvorak.kbd +lib/aspell/iso-8859-1.cmap +lib/aspell/iso-8859-1.cset +lib/aspell/iso-8859-10.cmap +lib/aspell/iso-8859-10.cset +lib/aspell/iso-8859-11.cmap +lib/aspell/iso-8859-11.cset +lib/aspell/iso-8859-13.cmap +lib/aspell/iso-8859-13.cset +lib/aspell/iso-8859-14.cmap +lib/aspell/iso-8859-14.cset +lib/aspell/iso-8859-15.cmap +lib/aspell/iso-8859-15.cset +lib/aspell/iso-8859-16.cmap +lib/aspell/iso-8859-16.cset +lib/aspell/iso-8859-2.cmap +lib/aspell/iso-8859-2.cset +lib/aspell/iso-8859-3.cmap +lib/aspell/iso-8859-3.cset +lib/aspell/iso-8859-4.cmap +lib/aspell/iso-8859-4.cset +lib/aspell/iso-8859-5.cmap +lib/aspell/iso-8859-5.cset +lib/aspell/iso-8859-6.cmap +lib/aspell/iso-8859-6.cset +lib/aspell/iso-8859-7.cmap +lib/aspell/iso-8859-7.cset +lib/aspell/iso-8859-8.cmap +lib/aspell/iso-8859-8.cset +lib/aspell/iso-8859-9.cmap +lib/aspell/iso-8859-9.cset +lib/aspell/ispell +lib/aspell/koi8-r.cmap +lib/aspell/koi8-r.cset +lib/aspell/koi8-u.cmap +lib/aspell/koi8-u.cset +lib/aspell/spell +lib/aspell/split.kbd +lib/aspell/standard.kbd +lib/libaspell.a +lib/libaspell.la +lib/libaspell.so +lib/libaspell.so.16 +lib/libpspell.a +lib/libpspell.la +lib/libpspell.so +lib/libpspell.so.16 +share/aspell/ccpp.amf +share/aspell/comment.amf +share/aspell/email.amf +share/aspell/html.amf +share/aspell/none.amf +share/aspell/nroff.amf +share/aspell/perl.amf +share/aspell/sgml.amf +share/aspell/tex.amf +share/aspell/texinfo.amf +share/aspell/url.amf +share/locale/ast/LC_MESSAGES/aspell.mo +share/locale/be/LC_MESSAGES/aspell.mo +share/locale/ca/LC_MESSAGES/aspell.mo +share/locale/cs/LC_MESSAGES/aspell.mo +share/locale/da/LC_MESSAGES/aspell.mo +share/locale/de/LC_MESSAGES/aspell.mo +share/locale/en_GB/LC_MESSAGES/aspell.mo +share/locale/es/LC_MESSAGES/aspell.mo +share/locale/fi/LC_MESSAGES/aspell.mo +share/locale/fr/LC_MESSAGES/aspell.mo +share/locale/ga/LC_MESSAGES/aspell.mo +share/locale/id/LC_MESSAGES/aspell.mo +share/locale/it/LC_MESSAGES/aspell.mo +share/locale/ja/LC_MESSAGES/aspell.mo +share/locale/mn/LC_MESSAGES/aspell.mo +share/locale/ms/LC_MESSAGES/aspell.mo +share/locale/nl/LC_MESSAGES/aspell.mo +share/locale/pt_BR/LC_MESSAGES/aspell.mo +share/locale/ro/LC_MESSAGES/aspell.mo +share/locale/ru/LC_MESSAGES/aspell.mo +share/locale/rw/LC_MESSAGES/aspell.mo +share/locale/sk/LC_MESSAGES/aspell.mo +share/locale/sl/LC_MESSAGES/aspell.mo +share/locale/sr/LC_MESSAGES/aspell.mo +share/locale/sv/LC_MESSAGES/aspell.mo +share/locale/tg/LC_MESSAGES/aspell.mo +share/locale/uk/LC_MESSAGES/aspell.mo +share/locale/vi/LC_MESSAGES/aspell.mo +share/locale/wa/LC_MESSAGES/aspell.mo +share/locale/zh_CN/LC_MESSAGES/aspell.mo +man/man1/aspell-import.1.gz +man/man1/aspell.1.gz +man/man1/prezip-bin.1.gz +man/man1/pspell-config.1.gz +man/man1/run-with-aspell.1.gz +man/man1/word-list-compress.1.gz +@dir include/pspell +@dir lib/aspell +@dir share/aspell +@dir share/locale/ast/LC_MESSAGES +@dir share/locale/ast +@dir share/locale/be/LC_MESSAGES +@dir share/locale/be +@dir share/locale/ca/LC_MESSAGES +@dir share/locale/ca +@dir share/locale/cs/LC_MESSAGES +@dir share/locale/cs +@dir share/locale/da/LC_MESSAGES +@dir share/locale/da +@dir share/locale/de/LC_MESSAGES +@dir share/locale/de +@dir share/locale/en_GB/LC_MESSAGES +@dir share/locale/en_GB +@dir share/locale/es/LC_MESSAGES +@dir share/locale/es +@dir share/locale/fi/LC_MESSAGES +@dir share/locale/fi +@dir share/locale/fr/LC_MESSAGES +@dir share/locale/fr +@dir share/locale/ga/LC_MESSAGES +@dir share/locale/ga +@dir share/locale/id/LC_MESSAGES +@dir share/locale/id +@dir share/locale/it/LC_MESSAGES +@dir share/locale/it +@dir share/locale/ja/LC_MESSAGES +@dir share/locale/ja +@dir share/locale/mn/LC_MESSAGES +@dir share/locale/mn +@dir share/locale/ms/LC_MESSAGES +@dir share/locale/ms +@dir share/locale/nl/LC_MESSAGES +@dir share/locale/nl +@dir share/locale/pt_BR/LC_MESSAGES +@dir share/locale/pt_BR +@dir share/locale/ro/LC_MESSAGES +@dir share/locale/ro +@dir share/locale/ru/LC_MESSAGES +@dir share/locale/ru +@dir share/locale/rw/LC_MESSAGES +@dir share/locale/rw +@dir share/locale/sk/LC_MESSAGES +@dir share/locale/sk +@dir share/locale/sl/LC_MESSAGES +@dir share/locale/sl +@dir share/locale/sr/LC_MESSAGES +@dir share/locale/sr +@dir share/locale/sv/LC_MESSAGES +@dir share/locale/sv +@dir share/locale/tg/LC_MESSAGES +@dir share/locale/tg +@dir share/locale/uk/LC_MESSAGES +@dir share/locale/uk +@dir share/locale/vi/LC_MESSAGES +@dir share/locale/vi +@dir share/locale/wa/LC_MESSAGES +@dir share/locale/wa +@dir share/locale/zh_CN/LC_MESSAGES +@dir share/locale/zh_CN +@dir share/locale diff --git a/text/hunspell/Makefile b/text/hunspell/Makefile new file mode 100644 index 00000000..0355626f --- /dev/null +++ b/text/hunspell/Makefile @@ -0,0 +1,63 @@ +# +# $Id$ +# +PORTNAME= hunspell +PORTVERSION= 1.3.3 +CATEGORIES= hungarian textproc +MASTER_SITES+= SF/${PORTNAME}/Hunspell/${PORTVERSION}:code +MASTER_SITES+= SF/magyarispell/Magyar%20Ispell/${DICTVERSION}:data +DISTFILES+= ${PORTNAME}-${PORTVERSION}${EXTRACT_SUFX}:code +DISTFILES+= hu_HU-${DICTVERSION}${EXTRACT_SUFX}:data + +DICTVERSION= 1.6.1 + +MAINTAINER= onborodin@gmail.com +COMMENT= Improved spell-checker for Hungarian and other languages + +LIB_DEPENDS+= libintl.so:devel/gettext +LIB_DEPENDS+= libiconv.so:text/libiconv + +USES+= gmake +GNU_CONFIGURE= yes +CONFIGURE_ARGS+= --with-ui +CONFIGURE_ARGS+= --with-readline +CONFIGURE_ARGS+= --mandir=${PREFIX}/man +CONFIGURE_ARGS+= --program-transform-name="" + +CPPFLAGS+= -I${PREFIX}/include +LDFLAGS+= -L${PREFIX}/lib + +USE_LDCONFIG= yes + +post-patch: + ${REINPLACE_CMD} -e 's|%%PREFIX%%|${PREFIX}|g' \ + ${WRKSRC}/src/tools/hunspell.cxx + cd ${WRKSRC} && ${REINPLACE_CMD} -e 's/hunspell-1.2/hunspell/g' \ + $$(${FIND} . -name Makefile.in) *.pc.in + cd ${WRKSRC} && ${REINPLACE_CMD} -e 's/hunspell_1_2/hunspell/g' \ + $$(${FIND} . -name Makefile.in) + cd ${WRKSRC} && ${REINPLACE_CMD} -e 's/-@HUNSPELL_VERSION_MAJOR@.@HUNSPELL_VERSION_MINOR@//g' \ + *.pc.in + ${REINPLACE_CMD} \ + -e 's,/usr/share/hunspell,${PREFIX}/share/hunspell,' \ + -e 's,/usr/share/myspell,${PREFIX}/share/myspell,' \ + -e 's,/usr/share/myspell/dicts,${PREFIX}/share/myspell/dicts,' \ + ${WRKSRC}/src/tools/hunspell.cxx + ${REINPLACE_CMD} -e '/^SUBDIRS/s| hu| .|' ${WRKSRC}/man/Makefile.in + + + +post-install: + ${MKDIR} ${STAGEDIR}${PREFIX}/share/myspell/ + ${INSTALL_DATA} ${WRKDIR}/hu_HU-${DICTVERSION}/hu_HU.dic \ + ${WRKDIR}/hu_HU-${DICTVERSION}/hu_HU.aff \ + ${STAGEDIR}${PREFIX}/share/myspell/ + ${LN} -sf ${LOCALBASE}/share/myspell/hu_HU.dic ${STAGEDIR}${PREFIX}/share/myspell/magyar.dic + ${LN} -sf ${LOCALBASE}/share/myspell/hu_HU.dic ${STAGEDIR}${PREFIX}/share/myspell/hungarian.dic + ${LN} -sf ${LOCALBASE}/share/myspell/hu_HU.dic ${STAGEDIR}${PREFIX}/share/myspell/default.dic + ${LN} -sf ${LOCALBASE}/share/myspell/hu_HU.aff ${STAGEDIR}${PREFIX}/share/myspell/magyar.aff + ${LN} -sf ${LOCALBASE}/share/myspell/hu_HU.aff ${STAGEDIR}${PREFIX}/share/myspell/hungarian.aff + ${LN} -sf ${LOCALBASE}/share/myspell/hu_HU.aff ${STAGEDIR}${PREFIX}/share/myspell/default.aff + +.include +#EOF diff --git a/text/hunspell/distinfo b/text/hunspell/distinfo new file mode 100644 index 00000000..11177f96 --- /dev/null +++ b/text/hunspell/distinfo @@ -0,0 +1,4 @@ +SHA256 (hunspell-1.3.3.tar.gz) = a7b2c0de0e2ce17426821dc1ac8eb115029959b3ada9d80a81739fa19373246c +SIZE (hunspell-1.3.3.tar.gz) = 986081 +SHA256 (hu_HU-1.6.1.tar.gz) = 0a1ab4672bf75acc1c29c4b3fbcab5d10b7883ba1e7fc25e8054d2209f0352c2 +SIZE (hu_HU-1.6.1.tar.gz) = 730641 diff --git a/text/hunspell/files/patch-x-configure b/text/hunspell/files/patch-x-configure new file mode 100644 index 00000000..2ba1757f --- /dev/null +++ b/text/hunspell/files/patch-x-configure @@ -0,0 +1,80 @@ +--- ./configure.orig 2014-06-02 12:22:28.000000000 +0300 ++++ ./configure 2014-12-23 10:15:50.000000000 +0200 +@@ -9801,7 +9801,7 @@ + hardcode_shlibpath_var=no + ;; + +- freebsd1*) ++ freebsd1.*) + ld_shlibs=no + ;; + +@@ -10676,7 +10676,7 @@ + shlibpath_var=LD_LIBRARY_PATH + ;; + +-freebsd1*) ++freebsd1.*) + dynamic_linker=no + ;; + +@@ -10687,7 +10687,7 @@ + objformat=`/usr/bin/objformat` + else + case $host_os in +- freebsd[123]*) objformat=aout ;; ++ freebsd[123].*) objformat=aout ;; + *) objformat=elf ;; + esac + fi +@@ -11897,6 +11897,7 @@ + + # Allow CC to be a program name with arguments. + lt_save_CC=$CC ++ lt_save_CFLAGS=$CFLAGS + lt_save_LD=$LD + lt_save_GCC=$GCC + GCC=$GXX +@@ -11914,6 +11915,7 @@ + fi + test -z "${LDCXX+set}" || LD=$LDCXX + CC=${CXX-"c++"} ++ CFLAGS=$CXXFLAGS + compiler=$CC + compiler_CXX=$CC + for cc_temp in $compiler""; do +@@ -12374,7 +12376,7 @@ + esac + ;; + +- freebsd[12]*) ++ freebsd[12].*) + # C++ shared libraries reported to be fairly broken before + # switch to ELF + ld_shlibs_CXX=no +@@ -14132,7 +14134,7 @@ + shlibpath_var=LD_LIBRARY_PATH + ;; + +-freebsd1*) ++freebsd1.*) + dynamic_linker=no + ;; + +@@ -14143,7 +14145,7 @@ + objformat=`/usr/bin/objformat` + else + case $host_os in +- freebsd[123]*) objformat=aout ;; ++ freebsd[123].*) objformat=aout ;; + *) objformat=elf ;; + esac + fi +@@ -14635,6 +14637,7 @@ + fi # test -n "$compiler" + + CC=$lt_save_CC ++ CFLAGS=$lt_save_CFLAGS + LDCXX=$LD + LD=$lt_save_LD + GCC=$lt_save_GCC diff --git a/text/hunspell/files/patch-x-src-hunspell-Makefile.in b/text/hunspell/files/patch-x-src-hunspell-Makefile.in new file mode 100644 index 00000000..cfbf5700 --- /dev/null +++ b/text/hunspell/files/patch-x-src-hunspell-Makefile.in @@ -0,0 +1,163 @@ +--- ./src/hunspell/Makefile.in.orig 2014-12-23 10:15:50.000000000 +0200 ++++ ./src/hunspell/Makefile.in 2014-12-23 10:22:27.000000000 +0200 +@@ -37,7 +37,7 @@ + host_triplet = @host@ + target_triplet = @target@ + subdir = src/hunspell +-DIST_COMMON = README $(libhunspell_1_3_include_HEADERS) \ ++DIST_COMMON = README $(libhunspell_include_HEADERS) \ + $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ + $(srcdir)/hunvisapi.h.in + ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +@@ -93,16 +93,16 @@ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } + am__installdirs = "$(DESTDIR)$(libdir)" \ +- "$(DESTDIR)$(libhunspell_1_3_includedir)" ++ "$(DESTDIR)$(libhunspell_includedir)" + LTLIBRARIES = $(lib_LTLIBRARIES) +-libhunspell_1_3_la_LIBADD = +-am_libhunspell_1_3_la_OBJECTS = affentry.lo affixmgr.lo csutil.lo \ ++libhunspell_la_LIBADD = ++am_libhunspell_la_OBJECTS = affentry.lo affixmgr.lo csutil.lo \ + dictmgr.lo hashmgr.lo hunspell.lo suggestmgr.lo phonet.lo \ + filemgr.lo hunzip.lo replist.lo +-libhunspell_1_3_la_OBJECTS = $(am_libhunspell_1_3_la_OBJECTS) +-libhunspell_1_3_la_LINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) \ ++libhunspell_la_OBJECTS = $(am_libhunspell_la_OBJECTS) ++libhunspell_la_LINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \ +- $(CXXFLAGS) $(libhunspell_1_3_la_LDFLAGS) $(LDFLAGS) -o $@ ++ $(CXXFLAGS) $(libhunspell_la_LDFLAGS) $(LDFLAGS) -o $@ + DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) + depcomp = $(SHELL) $(top_srcdir)/depcomp + am__depfiles_maybe = depfiles +@@ -116,9 +116,9 @@ + CXXLINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ + --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \ + $(LDFLAGS) -o $@ +-SOURCES = $(libhunspell_1_3_la_SOURCES) +-DIST_SOURCES = $(libhunspell_1_3_la_SOURCES) +-HEADERS = $(libhunspell_1_3_include_HEADERS) ++SOURCES = $(libhunspell_la_SOURCES) ++DIST_SOURCES = $(libhunspell_la_SOURCES) ++HEADERS = $(libhunspell_include_HEADERS) + ETAGS = etags + CTAGS = ctags + DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +@@ -296,21 +296,21 @@ + top_build_prefix = @top_build_prefix@ + top_builddir = @top_builddir@ + top_srcdir = @top_srcdir@ +-lib_LTLIBRARIES = libhunspell-1.3.la +-libhunspell_1_3_includedir = $(includedir)/hunspell +-libhunspell_1_3_la_SOURCES = affentry.cxx affixmgr.cxx csutil.cxx \ ++lib_LTLIBRARIES = libhunspell.la ++libhunspell_includedir = $(includedir)/hunspell ++libhunspell_la_SOURCES = affentry.cxx affixmgr.cxx csutil.cxx \ + dictmgr.cxx hashmgr.cxx hunspell.cxx \ + suggestmgr.cxx license.myspell license.hunspell \ + phonet.cxx filemgr.cxx hunzip.cxx replist.cxx + +-libhunspell_1_3_include_HEADERS = affentry.hxx htypes.hxx affixmgr.hxx \ ++libhunspell_include_HEADERS = affentry.hxx htypes.hxx affixmgr.hxx \ + csutil.hxx hunspell.hxx atypes.hxx dictmgr.hxx hunspell.h \ + suggestmgr.hxx baseaffix.hxx hashmgr.hxx langnum.hxx \ + phonet.hxx filemgr.hxx hunzip.hxx w_char.hxx replist.hxx \ + hunvisapi.h + +-libhunspell_1_3_la_DEPENDENCIES = utf_info.cxx +-libhunspell_1_3_la_LDFLAGS = -no-undefined ++libhunspell_la_DEPENDENCIES = utf_info.cxx ++libhunspell_la_LDFLAGS = -no-undefined + AM_CXXFLAGS = $(CFLAG_VISIBILITY) -DBUILDING_LIBHUNSPELL + EXTRA_DIST = hunspell.dsp makefile.mk README utf_info.cxx + all: all-am +@@ -380,8 +380,8 @@ + echo "rm -f \"$${dir}/so_locations\""; \ + rm -f "$${dir}/so_locations"; \ + done +-libhunspell-1.3.la: $(libhunspell_1_3_la_OBJECTS) $(libhunspell_1_3_la_DEPENDENCIES) $(EXTRA_libhunspell_1_3_la_DEPENDENCIES) +- $(libhunspell_1_3_la_LINK) -rpath $(libdir) $(libhunspell_1_3_la_OBJECTS) $(libhunspell_1_3_la_LIBADD) $(LIBS) ++libhunspell.la: $(libhunspell_la_OBJECTS) $(libhunspell_la_DEPENDENCIES) $(EXTRA_libhunspell_la_DEPENDENCIES) ++ $(libhunspell_la_LINK) -rpath $(libdir) $(libhunspell_la_OBJECTS) $(libhunspell_la_LIBADD) $(LIBS) + + mostlyclean-compile: + -rm -f *.$(OBJEXT) +@@ -427,24 +427,24 @@ + + clean-libtool: + -rm -rf .libs _libs +-install-libhunspell_1_3_includeHEADERS: $(libhunspell_1_3_include_HEADERS) ++install-libhunspell_includeHEADERS: $(libhunspell_include_HEADERS) + @$(NORMAL_INSTALL) +- test -z "$(libhunspell_1_3_includedir)" || $(MKDIR_P) "$(DESTDIR)$(libhunspell_1_3_includedir)" +- @list='$(libhunspell_1_3_include_HEADERS)'; test -n "$(libhunspell_1_3_includedir)" || list=; \ ++ test -z "$(libhunspell_includedir)" || $(MKDIR_P) "$(DESTDIR)$(libhunspell_includedir)" ++ @list='$(libhunspell_include_HEADERS)'; test -n "$(libhunspell_includedir)" || list=; \ + for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + echo "$$d$$p"; \ + done | $(am__base_list) | \ + while read files; do \ +- echo " $(INSTALL_HEADER) $$files '$(DESTDIR)$(libhunspell_1_3_includedir)'"; \ +- $(INSTALL_HEADER) $$files "$(DESTDIR)$(libhunspell_1_3_includedir)" || exit $$?; \ ++ echo " $(INSTALL_HEADER) $$files '$(DESTDIR)$(libhunspell_includedir)'"; \ ++ $(INSTALL_HEADER) $$files "$(DESTDIR)$(libhunspell_includedir)" || exit $$?; \ + done + +-uninstall-libhunspell_1_3_includeHEADERS: ++uninstall-libhunspell_includeHEADERS: + @$(NORMAL_UNINSTALL) +- @list='$(libhunspell_1_3_include_HEADERS)'; test -n "$(libhunspell_1_3_includedir)" || list=; \ ++ @list='$(libhunspell_include_HEADERS)'; test -n "$(libhunspell_includedir)" || list=; \ + files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ +- dir='$(DESTDIR)$(libhunspell_1_3_includedir)'; $(am__uninstall_files_from_dir) ++ dir='$(DESTDIR)$(libhunspell_includedir)'; $(am__uninstall_files_from_dir) + + ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ +@@ -532,7 +532,7 @@ + check: check-am + all-am: Makefile $(LTLIBRARIES) $(HEADERS) + installdirs: +- for dir in "$(DESTDIR)$(libdir)" "$(DESTDIR)$(libhunspell_1_3_includedir)"; do \ ++ for dir in "$(DESTDIR)$(libdir)" "$(DESTDIR)$(libhunspell_includedir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done + install: install-am +@@ -588,7 +588,7 @@ + + info-am: + +-install-data-am: install-libhunspell_1_3_includeHEADERS ++install-data-am: install-libhunspell_includeHEADERS + + install-dvi: install-dvi-am + +@@ -635,7 +635,7 @@ + ps-am: + + uninstall-am: uninstall-libLTLIBRARIES \ +- uninstall-libhunspell_1_3_includeHEADERS ++ uninstall-libhunspell_includeHEADERS + + .MAKE: install-am install-strip + +@@ -646,14 +646,14 @@ + install install-am install-data install-data-am install-dvi \ + install-dvi-am install-exec install-exec-am install-html \ + install-html-am install-info install-info-am \ +- install-libLTLIBRARIES install-libhunspell_1_3_includeHEADERS \ ++ install-libLTLIBRARIES install-libhunspell_includeHEADERS \ + install-man install-pdf install-pdf-am install-ps \ + install-ps-am install-strip installcheck installcheck-am \ + installdirs maintainer-clean maintainer-clean-generic \ + mostlyclean mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool pdf pdf-am ps ps-am tags uninstall \ + uninstall-am uninstall-libLTLIBRARIES \ +- uninstall-libhunspell_1_3_includeHEADERS ++ uninstall-libhunspell_includeHEADERS + + + # Tell versions [3.59,3.63) of GNU make to not export all variables. diff --git a/text/hunspell/files/patch-x-src-hunspell-affentry.hxx b/text/hunspell/files/patch-x-src-hunspell-affentry.hxx new file mode 100644 index 00000000..738d2364 --- /dev/null +++ b/text/hunspell/files/patch-x-src-hunspell-affentry.hxx @@ -0,0 +1,20 @@ +--- ./src/hunspell/affentry.hxx.orig 2012-06-30 00:12:08.000000000 +0300 ++++ ./src/hunspell/affentry.hxx 2018-06-21 10:55:31.698305000 +0200 +@@ -31,7 +31,7 @@ + struct hentry * checkword(const char * word, int len, char in_compound, + const FLAG needflag = FLAG_NULL); + +- struct hentry * check_twosfx(const char * word, int len, char in_compound, const FLAG needflag = NULL); ++ struct hentry * check_twosfx(const char * word, int len, char in_compound, const FLAG needflag); + + char * check_morph(const char * word, int len, char in_compound, + const FLAG needflag = FLAG_NULL); +@@ -98,7 +98,7 @@ + // const FLAG cclass = FLAG_NULL, const FLAG needflag = FLAG_NULL, char in_compound=IN_CPD_NOT); + const FLAG cclass = FLAG_NULL, const FLAG needflag = FLAG_NULL, const FLAG badflag = 0); + +- struct hentry * check_twosfx(const char * word, int len, int optflags, PfxEntry* ppfx, const FLAG needflag = NULL); ++ struct hentry * check_twosfx(const char * word, int len, int optflags, PfxEntry* ppfx, const FLAG needflag = 0); + + char * check_twosfx_morph(const char * word, int len, int optflags, + PfxEntry* ppfx, const FLAG needflag = FLAG_NULL); diff --git a/text/hunspell/files/patch-x-src-parsers-Makefile.in b/text/hunspell/files/patch-x-src-parsers-Makefile.in new file mode 100644 index 00000000..aa21d8aa --- /dev/null +++ b/text/hunspell/files/patch-x-src-parsers-Makefile.in @@ -0,0 +1,20 @@ +--- ./src/parsers/Makefile.in.orig 2014-12-23 10:15:50.000000000 +0200 ++++ ./src/parsers/Makefile.in 2014-12-23 10:25:45.000000000 +0200 +@@ -78,7 +78,7 @@ + textparser.$(OBJEXT) htmlparser.$(OBJEXT) odfparser.$(OBJEXT) + testparser_OBJECTS = $(am_testparser_OBJECTS) + testparser_LDADD = $(LDADD) +-testparser_DEPENDENCIES = ../hunspell/libhunspell-1.3.la ++testparser_DEPENDENCIES = ../hunspell/libhunspell.la + DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) + depcomp = $(SHELL) $(top_srcdir)/depcomp + am__depfiles_maybe = depfiles +@@ -295,7 +295,7 @@ + + + # need mystrdup() +-LDADD = ../hunspell/libhunspell-1.3.la ++LDADD = ../hunspell/libhunspell.la + all: all-am + + .SUFFIXES: diff --git a/text/hunspell/files/patch-x-src-tools-Makefile.in b/text/hunspell/files/patch-x-src-tools-Makefile.in new file mode 100644 index 00000000..cdfd8d10 --- /dev/null +++ b/text/hunspell/files/patch-x-src-tools-Makefile.in @@ -0,0 +1,54 @@ +--- ./src/tools/Makefile.in.orig 2014-12-23 10:15:50.000000000 +0200 ++++ ./src/tools/Makefile.in 2014-12-23 10:26:01.000000000 +0200 +@@ -71,21 +71,21 @@ + PROGRAMS = $(bin_PROGRAMS) $(noinst_PROGRAMS) + am_analyze_OBJECTS = analyze.$(OBJEXT) + analyze_OBJECTS = $(am_analyze_OBJECTS) +-analyze_DEPENDENCIES = ../hunspell/libhunspell-1.3.la ++analyze_DEPENDENCIES = ../hunspell/libhunspell.la + am_chmorph_OBJECTS = chmorph.$(OBJEXT) + chmorph_OBJECTS = $(am_chmorph_OBJECTS) + chmorph_DEPENDENCIES = ../parsers/libparsers.a \ +- ../hunspell/libhunspell-1.3.la ++ ../hunspell/libhunspell.la + am_example_OBJECTS = example.$(OBJEXT) + example_OBJECTS = $(am_example_OBJECTS) +-example_DEPENDENCIES = ../hunspell/libhunspell-1.3.la ++example_DEPENDENCIES = ../hunspell/libhunspell.la + am_hunspell_OBJECTS = hunspell.$(OBJEXT) + hunspell_OBJECTS = $(am_hunspell_OBJECTS) + hunspell_DEPENDENCIES = ../parsers/libparsers.a \ +- ../hunspell/libhunspell-1.3.la ++ ../hunspell/libhunspell.la + am_hunzip_OBJECTS = hunzip.$(OBJEXT) + hunzip_OBJECTS = $(am_hunzip_OBJECTS) +-hunzip_DEPENDENCIES = ../hunspell/libhunspell-1.3.la ++hunzip_DEPENDENCIES = ../hunspell/libhunspell.la + am_hzip_OBJECTS = hzip.$(OBJEXT) + hzip_OBJECTS = $(am_hzip_OBJECTS) + hzip_LDADD = $(LDADD) +@@ -332,19 +332,19 @@ + INCLUDES = -I${top_srcdir}/src/hunspell -I${top_srcdir}/src/parsers + hzip_SOURCES = hzip.c + hunzip_SOURCES = hunzip.cxx +-hunzip_LDADD = ../hunspell/libhunspell-1.3.la ++hunzip_LDADD = ../hunspell/libhunspell.la + munch_SOURCES = munch.c munch.h + unmunch_SOURCES = unmunch.c unmunch.h + example_SOURCES = example.cxx +-example_LDADD = ../hunspell/libhunspell-1.3.la ++example_LDADD = ../hunspell/libhunspell.la + hunspell_SOURCES = hunspell.cxx + hunspell_LDADD = @LIBINTL@ @LIBICONV@ ../parsers/libparsers.a \ +- ../hunspell/libhunspell-1.3.la @CURSESLIB@ @READLINELIB@ ++ ../hunspell/libhunspell.la @CURSESLIB@ @READLINELIB@ + + analyze_SOURCES = analyze.cxx +-analyze_LDADD = ../hunspell/libhunspell-1.3.la ++analyze_LDADD = ../hunspell/libhunspell.la + chmorph_SOURCES = chmorph.cxx +-chmorph_LDADD = ../parsers/libparsers.a ../hunspell/libhunspell-1.3.la ++chmorph_LDADD = ../parsers/libparsers.a ../hunspell/libhunspell.la + dist_bin_SCRIPTS = makealias affixcompress wordforms ispellaff2myspell wordlist2hunspell + all: all-am + diff --git a/text/hunspell/files/patch-x-src-tools-hunspell.cxx b/text/hunspell/files/patch-x-src-tools-hunspell.cxx new file mode 100644 index 00000000..d3e16a17 --- /dev/null +++ b/text/hunspell/files/patch-x-src-tools-hunspell.cxx @@ -0,0 +1,51 @@ +--- ./src/tools/hunspell.cxx.orig 2014-06-02 14:35:50.000000000 +0300 ++++ ./src/tools/hunspell.cxx 2018-06-21 11:37:45.434427000 +0200 +@@ -17,7 +17,7 @@ + #define HUNSPELL_VERSION VERSION + #define INPUTLEN 50 + +-#define HUNSPELL_PIPE_HEADING "@(#) International Ispell Version 3.2.06 (but really Hunspell "VERSION")\n" ++#define HUNSPELL_PIPE_HEADING "@(#) International Ispell Version 3.2.06\n" + #define HUNSPELL_HEADING "Hunspell " + #define ODF_EXT "odt|ott|odp|otp|odg|otg|ods|ots" + #define ENTITY_APOS "'" +@@ -68,28 +68,23 @@ + #include "odfparser.hxx" + + #define LIBDIR \ +- "/usr/share/hunspell:" \ +- "/usr/share/myspell:" \ +- "/usr/share/myspell/dicts:" \ +- "/Library/Spelling" ++ "/usr/local/share/hunspell:" \ ++ "/usr/local/share/myspell:" \ ++ "/usr/local/share/myspell/dicts:" + #define USEROOODIR \ + ".openoffice.org/3/user/wordbook:" \ + ".openoffice.org2/user/wordbook:" \ + ".openoffice.org2.0/user/wordbook:" \ + "Library/Spelling" + #define OOODIR \ +- "/opt/openoffice.org/basis3.0/share/dict/ooo:" \ +- "/usr/lib/openoffice.org/basis3.0/share/dict/ooo:" \ +- "/opt/openoffice.org2.4/share/dict/ooo:" \ +- "/usr/lib/openoffice.org2.4/share/dict/ooo:" \ +- "/opt/openoffice.org2.3/share/dict/ooo:" \ +- "/usr/lib/openoffice.org2.3/share/dict/ooo:" \ +- "/opt/openoffice.org2.2/share/dict/ooo:" \ +- "/usr/lib/openoffice.org2.2/share/dict/ooo:" \ +- "/opt/openoffice.org2.1/share/dict/ooo:" \ +- "/usr/lib/openoffice.org2.1/share/dict/ooo:" \ +- "/opt/openoffice.org2.0/share/dict/ooo:" \ +- "/usr/lib/openoffice.org2.0/share/dict/ooo" ++ "/usr/local/openoffice.org3/share/dict/ooo:" \ ++ "/usr/local/openoffice.org-3.0.0/share/dict/ooo:" \ ++ "/usr/local/openoffice.org-2.4.2/share/dict/ooo:" \ ++ "/usr/local/openoffice.org-2.4.1/share/dict/ooo:" \ ++ "/usr/local/openoffice.org-2.4/share/dict/ooo:" \ ++ "/usr/local/openoffice.org-2.2/share/dict/ooo:" \ ++ "/usr/local/openoffice.org-2.1/share/dict/ooo:" \ ++ "/usr/local/openoffice.org2.0/share/dict/ooo:" + #define HOME getenv("HOME") + #define DICBASENAME ".hunspell_" + #define LOGFILE "/tmp/hunspell.log" diff --git a/text/hunspell/files/patch-x-tests-suggestiontest-Makefile b/text/hunspell/files/patch-x-tests-suggestiontest-Makefile new file mode 100644 index 00000000..50829c5e --- /dev/null +++ b/text/hunspell/files/patch-x-tests-suggestiontest-Makefile @@ -0,0 +1,452 @@ +--- ./tests/suggestiontest/Makefile.orig 2011-01-24 13:43:05.000000000 +0200 ++++ ./tests/suggestiontest/Makefile 2014-12-23 10:16:21.000000000 +0200 +@@ -1,11 +1,440 @@ +-all: +- ./prepare +- ./test +- +-single: +- ./prepare2 +- ./test ++# Makefile.in generated by automake 1.11.3 from Makefile.am. ++# tests/suggestiontest/Makefile. Generated from Makefile.in by configure. + +-clean: +- rm *.[1-5] result.* ++# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ++# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software ++# Foundation, Inc. ++# This Makefile.in is free software; the Free Software Foundation ++# gives unlimited permission to copy and/or distribute it, ++# with or without modifications, as long as this notice is preserved. + ++# This program is distributed in the hope that it will be useful, ++# but WITHOUT ANY WARRANTY, to the extent permitted by law; without ++# even the implied warranty of MERCHANTABILITY or FITNESS FOR A ++# PARTICULAR PURPOSE. ++ ++ ++ ++pkgdatadir = $(datadir)/hunspell ++pkgincludedir = $(includedir)/hunspell ++pkglibdir = $(libdir)/hunspell ++pkglibexecdir = $(libexecdir)/hunspell ++am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd ++install_sh_DATA = $(install_sh) -c -m 644 ++install_sh_PROGRAM = $(install_sh) -c ++install_sh_SCRIPT = $(install_sh) -c ++INSTALL_HEADER = $(INSTALL_DATA) ++transform = $(program_transform_name) ++NORMAL_INSTALL = : ++PRE_INSTALL = : ++POST_INSTALL = : ++NORMAL_UNINSTALL = : ++PRE_UNINSTALL = : ++POST_UNINSTALL = : ++build_triplet = i386-pc-freebsd10 ++host_triplet = i386-pc-freebsd10 ++target_triplet = i386-pc-freebsd10 ++subdir = tests/suggestiontest ++DIST_COMMON = README $(srcdir)/Makefile.am $(srcdir)/Makefile.in ++ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 ++am__aclocal_m4_deps = $(top_srcdir)/m4/codeset.m4 \ ++ $(top_srcdir)/m4/gettext.m4 $(top_srcdir)/m4/glibc2.m4 \ ++ $(top_srcdir)/m4/glibc21.m4 $(top_srcdir)/m4/iconv.m4 \ ++ $(top_srcdir)/m4/intdiv0.m4 $(top_srcdir)/m4/intl.m4 \ ++ $(top_srcdir)/m4/intlmacosx.m4 $(top_srcdir)/m4/intmax.m4 \ ++ $(top_srcdir)/m4/inttypes-pri.m4 \ ++ $(top_srcdir)/m4/inttypes_h.m4 $(top_srcdir)/m4/lcmessage.m4 \ ++ $(top_srcdir)/m4/lib-ld.m4 $(top_srcdir)/m4/lib-link.m4 \ ++ $(top_srcdir)/m4/lib-prefix.m4 $(top_srcdir)/m4/libtool.m4 \ ++ $(top_srcdir)/m4/lock.m4 $(top_srcdir)/m4/longlong.m4 \ ++ $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ ++ $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ ++ $(top_srcdir)/m4/nls.m4 $(top_srcdir)/m4/po.m4 \ ++ $(top_srcdir)/m4/printf-posix.m4 $(top_srcdir)/m4/progtest.m4 \ ++ $(top_srcdir)/m4/size_max.m4 $(top_srcdir)/m4/stdint_h.m4 \ ++ $(top_srcdir)/m4/uintmax_t.m4 $(top_srcdir)/m4/visibility.m4 \ ++ $(top_srcdir)/m4/wchar_t.m4 $(top_srcdir)/m4/wint_t.m4 \ ++ $(top_srcdir)/m4/xsize.m4 $(top_srcdir)/configure.ac ++am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ ++ $(ACLOCAL_M4) ++mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs ++CONFIG_HEADER = $(top_builddir)/config.h ++CONFIG_CLEAN_FILES = ++CONFIG_CLEAN_VPATH_FILES = ++SOURCES = ++DIST_SOURCES = ++DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ++ACLOCAL = ${SHELL} /data/ports10/text/hunspell/work/hunspell-1.3.3/missing --run aclocal-1.11 ++ALLOCA = ++AMTAR = $${TAR-tar} ++AR = ar ++AS = as ++AUTOCONF = ${SHELL} /data/ports10/text/hunspell/work/hunspell-1.3.3/missing --run autoconf ++AUTOHEADER = ${SHELL} /data/ports10/text/hunspell/work/hunspell-1.3.3/missing --run autoheader ++AUTOMAKE = ${SHELL} /data/ports10/text/hunspell/work/hunspell-1.3.3/missing --run automake-1.11 ++AWK = gawk ++BUILD_INCLUDED_LIBINTL = no ++CATOBJEXT = .gmo ++CC = clang ++CCDEPMODE = depmode=gcc3 ++CFLAGS = -fomit-frame-pointer -O2 -pipe -march=pentium4 -fno-strict-aliasing ++CFLAG_VISIBILITY = -fvisibility=hidden ++CPP = clang-cpp ++CPPFLAGS = -I/usr/local/include -D_THREAD_SAFE ++CURSESLIB = -lncursesw ++CXX = clang++ ++CXXCPP = clang++ -E ++CXXDEPMODE = depmode=gcc3 ++CXXFLAGS = -fomit-frame-pointer -O2 -pipe -march=pentium4 -fno-strict-aliasing -O -pipe ++CYGPATH_W = echo ++DATADIRNAME = share ++DEFS = -DHAVE_CONFIG_H ++DEPDIR = .deps ++DLLTOOL = dlltool ++DSYMUTIL = ++DUMPBIN = ++ECHO_C = ++ECHO_N = -n ++ECHO_T = ++EGREP = /usr/bin/grep -E ++EXEEXT = ++FGREP = /usr/bin/grep -F ++GENCAT = gencat ++GETTEXT_MACRO_VERSION = 0.17 ++GLIBC2 = no ++GLIBC21 = no ++GMSGFMT = /usr/local/bin/msgfmt ++GMSGFMT_015 = /usr/local/bin/msgfmt ++GREP = /usr/bin/grep ++HAVE_ASPRINTF = 1 ++HAVE_POSIX_PRINTF = 1 ++HAVE_SNPRINTF = 1 ++HAVE_VISIBILITY = 1 ++HAVE_WPRINTF = 0 ++HUNSPELL_VERSION_MAJOR = 1 ++HUNSPELL_VERSION_MINOR = 3 ++INSTALL = /usr/bin/install -c -o root -g wheel ++INSTALL_DATA = install -o root -g wheel -m 444 ++INSTALL_PROGRAM = install -s -o root -g wheel -m 555 ++INSTALL_SCRIPT = install -o root -g wheel -m 555 ++INSTALL_STRIP_PROGRAM = $(install_sh) -c -s ++INSTOBJEXT = .mo ++INTLBISON = bison ++INTLLIBS = /usr/local/lib/libintl.so /usr/local/lib/libiconv.so -Wl,-rpath -Wl,/usr/local/lib ++INTLOBJS = ++INTL_LIBTOOL_SUFFIX_PREFIX = ++INTL_MACOSX_LIBS = ++LD = /usr/bin/ld ++LDFLAGS = -L/usr/local/lib ++LIBICONV = /usr/local/lib/libiconv.so -Wl,-rpath -Wl,/usr/local/lib ++LIBINTL = /usr/local/lib/libintl.so /usr/local/lib/libiconv.so -Wl,-rpath -Wl,/usr/local/lib ++LIBMULTITHREAD = -lpthread ++LIBOBJS = ${LIBOBJDIR}error$U.o ++LIBPTH = ++LIBPTH_PREFIX = ++LIBS = ++LIBTHREAD = ++LIBTOOL = $(SHELL) $(top_builddir)/libtool ++LIPO = ++LN_S = ln -s ++LTLIBC = -lc ++LTLIBICONV = -L/usr/local/lib -liconv -R/usr/local/lib ++LTLIBINTL = -L/usr/local/lib -lintl -L/usr/local/lib -liconv -R/usr/local/lib ++LTLIBMULTITHREAD = -lpthread ++LTLIBOBJS = ${LIBOBJDIR}error$U.lo ++LTLIBPTH = ++LTLIBTHREAD = ++MAKEINFO = ${SHELL} /data/ports10/text/hunspell/work/hunspell-1.3.3/missing --run makeinfo ++MKDIR_P = /usr/local/bin/gmkdir -p ++MSGFMT = /usr/local/bin/msgfmt ++MSGFMT_015 = /usr/local/bin/msgfmt ++MSGMERGE = /usr/local/bin/msgmerge ++NM = /usr/bin/nm -B ++NMEDIT = ++OBJDUMP = objdump ++OBJEXT = o ++OTOOL = ++OTOOL64 = ++PACKAGE = hunspell ++PACKAGE_BUGREPORT = nemeth@numbertext.org ++PACKAGE_NAME = hunspell ++PACKAGE_STRING = hunspell 1.3.3 ++PACKAGE_TARNAME = hunspell ++PACKAGE_URL = ++PACKAGE_VERSION = 1.3.3 ++PATH_SEPARATOR = : ++POSUB = po ++PRI_MACROS_BROKEN = 0 ++RANLIB = ranlib ++READLINELIB = -lreadline -lncurses ++SED = /usr/local/bin/gsed ++SET_MAKE = ++SHELL = /bin/sh ++STRIP = strip ++USE_INCLUDED_LIBINTL = no ++USE_NLS = yes ++VERSION = 1.3.3 ++WINDRES = ++WOE32 = no ++WOE32DLL = no ++XFAILED = ++XGETTEXT = /usr/local/bin/xgettext ++XGETTEXT_015 = /usr/local/bin/xgettext ++XGETTEXT_EXTRA_OPTIONS = ++abs_builddir = /data/ports10/text/hunspell/work/hunspell-1.3.3/tests/suggestiontest ++abs_srcdir = /data/ports10/text/hunspell/work/hunspell-1.3.3/tests/suggestiontest ++abs_top_builddir = /data/ports10/text/hunspell/work/hunspell-1.3.3 ++abs_top_srcdir = /data/ports10/text/hunspell/work/hunspell-1.3.3 ++ac_ct_CC = clang ++ac_ct_CXX = ++ac_ct_DUMPBIN = ++am__include = include ++am__leading_dot = . ++am__quote = ++am__tar = $${TAR-tar} chof - "$$tardir" ++am__untar = $${TAR-tar} xf - ++bindir = ${exec_prefix}/bin ++build = i386-pc-freebsd10 ++build_alias = i386-pc-freebsd10 ++build_cpu = i386 ++build_os = freebsd10 ++build_vendor = pc ++builddir = . ++datadir = ${datarootdir} ++datarootdir = ${prefix}/share ++docdir = ${datarootdir}/doc/${PACKAGE_TARNAME} ++dvidir = ${docdir} ++exec_prefix = ${prefix} ++host = i386-pc-freebsd10 ++host_alias = ++host_cpu = i386 ++host_os = freebsd10 ++host_vendor = pc ++htmldir = ${docdir} ++includedir = ${prefix}/include ++infodir = /usr/local/info ++install_sh = ${SHELL} /data/ports10/text/hunspell/work/hunspell-1.3.3/install-sh ++libdir = ${exec_prefix}/lib ++libexecdir = ${exec_prefix}/libexec ++localedir = ${datarootdir}/locale ++localstatedir = ${prefix}/var ++lt_ECHO = echo ++mandir = /usr/local/man ++mkdir_p = /usr/local/bin/gmkdir -p ++oldincludedir = /usr/include ++pdfdir = ${docdir} ++prefix = /usr/local ++program_transform_name = ++psdir = ${docdir} ++sbindir = ${exec_prefix}/sbin ++sharedstatedir = ${prefix}/com ++srcdir = . ++sysconfdir = ${prefix}/etc ++target = i386-pc-freebsd10 ++target_alias = ++target_cpu = i386 ++target_os = freebsd10 ++target_vendor = pc ++top_build_prefix = ../../ ++top_builddir = ../.. ++top_srcdir = ../.. ++EXTRA_DIST = \ ++List_of_common_misspellings.txt \ ++Makefile.orig \ ++prepare \ ++README \ ++test ++ ++all: all-am ++ ++.SUFFIXES: ++$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) ++ @for dep in $?; do \ ++ case '$(am__configure_deps)' in \ ++ *$$dep*) \ ++ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ ++ && { if test -f $@; then exit 0; else break; fi; }; \ ++ exit 1;; \ ++ esac; \ ++ done; \ ++ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu tests/suggestiontest/Makefile'; \ ++ $(am__cd) $(top_srcdir) && \ ++ $(AUTOMAKE) --gnu tests/suggestiontest/Makefile ++.PRECIOUS: Makefile ++Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status ++ @case '$?' in \ ++ *config.status*) \ ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ ++ *) \ ++ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ ++ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ ++ esac; ++ ++$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++ ++$(top_srcdir)/configure: $(am__configure_deps) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++$(ACLOCAL_M4): $(am__aclocal_m4_deps) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++$(am__aclocal_m4_deps): ++ ++mostlyclean-libtool: ++ -rm -f *.lo ++ ++clean-libtool: ++ -rm -rf .libs _libs ++tags: TAGS ++TAGS: ++ ++ctags: CTAGS ++CTAGS: ++ ++ ++distdir: $(DISTFILES) ++ @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ++ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ++ list='$(DISTFILES)'; \ ++ dist_files=`for file in $$list; do echo $$file; done | \ ++ sed -e "s|^$$srcdirstrip/||;t" \ ++ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ ++ case $$dist_files in \ ++ */*) $(MKDIR_P) `echo "$$dist_files" | \ ++ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ ++ sort -u` ;; \ ++ esac; \ ++ for file in $$dist_files; do \ ++ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ ++ if test -d $$d/$$file; then \ ++ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ ++ if test -d "$(distdir)/$$file"; then \ ++ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ ++ fi; \ ++ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ ++ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ ++ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ ++ fi; \ ++ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ ++ else \ ++ test -f "$(distdir)/$$file" \ ++ || cp -p $$d/$$file "$(distdir)/$$file" \ ++ || exit 1; \ ++ fi; \ ++ done ++check-am: all-am ++check: check-am ++all-am: Makefile ++installdirs: ++install: install-am ++install-exec: install-exec-am ++install-data: install-data-am ++uninstall: uninstall-am ++ ++install-am: all-am ++ @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am ++ ++installcheck: installcheck-am ++install-strip: ++ if test -z '$(STRIP)'; then \ ++ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ ++ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ ++ install; \ ++ else \ ++ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ ++ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ ++ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ ++ fi ++mostlyclean-generic: ++ ++clean-generic: ++ ++distclean-generic: ++ -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) ++ -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) ++ ++maintainer-clean-generic: ++ @echo "This command is intended for maintainers to use" ++ @echo "it deletes files that may require special tools to rebuild." ++clean: clean-am ++ ++clean-am: clean-generic clean-libtool mostlyclean-am ++ ++distclean: distclean-am ++ -rm -f Makefile ++distclean-am: clean-am distclean-generic ++ ++dvi: dvi-am ++ ++dvi-am: ++ ++html: html-am ++ ++html-am: ++ ++info: info-am ++ ++info-am: ++ ++install-data-am: ++ ++install-dvi: install-dvi-am ++ ++install-dvi-am: ++ ++install-exec-am: ++ ++install-html: install-html-am ++ ++install-html-am: ++ ++install-info: install-info-am ++ ++install-info-am: ++ ++install-man: ++ ++install-pdf: install-pdf-am ++ ++install-pdf-am: ++ ++install-ps: install-ps-am ++ ++install-ps-am: ++ ++installcheck-am: ++ ++maintainer-clean: maintainer-clean-am ++ -rm -f Makefile ++maintainer-clean-am: distclean-am maintainer-clean-generic ++ ++mostlyclean: mostlyclean-am ++ ++mostlyclean-am: mostlyclean-generic mostlyclean-libtool ++ ++pdf: pdf-am ++ ++pdf-am: ++ ++ps: ps-am ++ ++ps-am: ++ ++uninstall-am: ++ ++.MAKE: install-am install-strip ++ ++.PHONY: all all-am check check-am clean clean-generic clean-libtool \ ++ distclean distclean-generic distclean-libtool distdir dvi \ ++ dvi-am html html-am info info-am install install-am \ ++ install-data install-data-am install-dvi install-dvi-am \ ++ install-exec install-exec-am install-html install-html-am \ ++ install-info install-info-am install-man install-pdf \ ++ install-pdf-am install-ps install-ps-am install-strip \ ++ installcheck installcheck-am installdirs maintainer-clean \ ++ maintainer-clean-generic mostlyclean mostlyclean-generic \ ++ mostlyclean-libtool pdf pdf-am ps ps-am uninstall uninstall-am ++ ++ ++# Tell versions [3.59,3.63) of GNU make to not export all variables. ++# Otherwise a system limit (for SysV at least) may be exceeded. ++.NOEXPORT: diff --git a/text/hunspell/pkg-descr b/text/hunspell/pkg-descr new file mode 100644 index 00000000..12b12100 --- /dev/null +++ b/text/hunspell/pkg-descr @@ -0,0 +1,19 @@ +Hungarian Spell Checher utility with Hungarian dictionary +and affix files. It has several advantages over ispell. +It has better affix rules than hu-ispell. + +It is installing hungarian dictionary by default, but other dictionaries can +be found at: http://wiki.services.openoffice.org/wiki/Dictionaries + +Magyar helyes.r.s ellen.rz. hunspell. El.ny.k az ispell-hez k.pest: +- T.bb karakter v.ltoz.ssal j.r. tipikus hib.kra jav.t.si javaslat. +- Helyes .sszetett sz.nak l.tsz. szavak tilt.sa. +- 6-3-as szab.ly +- mozg.szab.ly +- .sszet.teli szab.lyok +- t.bbsz.r.s k.pz.k helyes haszn.lata +- .kezetes.t.si javaslatok +Alepesetben csak a magyar sz.t.rat install.lja, de tov.bbi sz.t.rak +el.rhet.ek: http://wiki.services.openoffice.org/wiki/Dictionaries + +WWW: http://magyarispell.sourceforge.net/ diff --git a/text/hunspell/pkg-plist b/text/hunspell/pkg-plist new file mode 100644 index 00000000..1f85b724 --- /dev/null +++ b/text/hunspell/pkg-plist @@ -0,0 +1,57 @@ +bin/affixcompress +bin/analyze +bin/chmorph +bin/hunspell +bin/hunzip +bin/hzip +bin/ispellaff2myspell +bin/makealias +bin/munch +bin/unmunch +bin/wordforms +bin/wordlist2hunspell +include/hunspell/affentry.hxx +include/hunspell/affixmgr.hxx +include/hunspell/atypes.hxx +include/hunspell/baseaffix.hxx +include/hunspell/csutil.hxx +include/hunspell/dictmgr.hxx +include/hunspell/filemgr.hxx +include/hunspell/hashmgr.hxx +include/hunspell/htypes.hxx +include/hunspell/hunspell.h +include/hunspell/hunspell.hxx +include/hunspell/hunvisapi.h +include/hunspell/hunzip.hxx +include/hunspell/langnum.hxx +include/hunspell/phonet.hxx +include/hunspell/replist.hxx +include/hunspell/suggestmgr.hxx +include/hunspell/w_char.hxx +lib/libhunspell.a +lib/libhunspell.la +lib/libhunspell.so +lib/libhunspell.so.0 +lib/pkgconfig/hunspell.pc +share/locale/hu/LC_MESSAGES/hunspell.mo +share/locale/it/LC_MESSAGES/hunspell.mo +share/myspell/default.aff +share/myspell/default.dic +share/myspell/hu_HU.aff +share/myspell/hu_HU.dic +share/myspell/hungarian.aff +share/myspell/hungarian.dic +share/myspell/magyar.aff +share/myspell/magyar.dic +man/man1/hunspell.1.gz +man/man1/hunzip.1.gz +man/man1/hzip.1.gz +man/man3/hunspell.3.gz +man/man5/hunspell.5.gz +@dir include/hunspell +@dir share/locale/hu/LC_MESSAGES +@dir share/locale/hu +@dir share/locale/it/LC_MESSAGES +@dir share/locale/it +@dir share/locale +@dir share/myspell diff --git a/text/libenchant/Makefile b/text/libenchant/Makefile new file mode 100644 index 00000000..eb6cb581 --- /dev/null +++ b/text/libenchant/Makefile @@ -0,0 +1,72 @@ +# +# $Id$ +# +PORTNAME= enchant +PORTVERSION= 1.6.0 +CATEGORIES= textproc gnome +MASTER_SITES= http://www.abisource.com/downloads/${PORTNAME}/${PORTVERSION}/ +DIST_SUBDIR= gnome2 +PKGNAMEPREFIX= lib + +MAINTAINER= onborodin@gmail.com +COMMENT= Dictionary/spellchecking framework + +LIB_DEPENDS+= libglib.so:devel/libglib +LIB_DEPENDS+= libgmodule.so:devel/libglib + +LIB_DEPENDS+= libaspell.so:text/aspell +LIB_DEPENDS+= libhunspell.so:text/hunspell + +USES+= gmake +GNU_CONFIGURE= yes +USE_LDCONFIG= yes +CONFIGURE_ARGS+= --disable-uspell +CONFIGURE_ARGS+= --disable-voikko +MAKE_JOBS_SAFE= yes + +CONFIGURE_ENV+= CPPFLAGS="-I${LOCALBASE}/include" +CONFIGURE_ENV+= LDFLAGS="-L${LOCALBASE}/lib" +CFLAGS+= -I${LOCALBASE}/include + +PLIST_FILES+= man/man1/enchant.1.gz + +CONFIGURE_ARGS+=--enable-aspell --with-aspell-prefix=${LOCALBASE} +CONFIGURE_ARGS+=--enable-myspell --with-myspell-prefix==${LOCALBASE} + +CONFIGURE_ARGS+=--enable-hspell +CONFIGURE_ARGS+=--disable-ispell +CONFIGURE_ARGS+=--disable-zemberek + +CONFIGURE_ARGS+= --mandir=${PREFIX}/man +CONFIGURE_ARGS+= --infodir=${PREFIX}/info + + +post-patch: + ${REINPLACE_CMD} -e 's|MKDIRPROG-mkdir|MKDIRPROG-mkdir -p|g' \ + ${WRKSRC}/install-sh +.for filename in Makefile.in configure *.pc.in + for file in $$(${FIND} ${WRKSRC} -name '${filename}'); do \ + ${REINPLACE_CMD} -e 's|glib-2.0|glib|g' $${file}; \ + ${REINPLACE_CMD} -e 's|gmodule-2.0|gmodule|g' $${file}; \ + ${REINPLACE_CMD} -e 's|gmodule-export-2.0|gmodule-export|g' $${file}; \ + ${REINPLACE_CMD} -e 's|gmodule-no-export-2.0|gmodule-no-export|g' $${file}; \ + ${REINPLACE_CMD} -e 's|gthread-2.0|gthread|g' $${file}; \ + ${REINPLACE_CMD} -e 's|gobject-2.0|gobject|g' $${file}; \ + ${REINPLACE_CMD} -e 's|gio-2.0|gio|g' $${file}; \ + ${REINPLACE_CMD} -e 's|gio-unix-2.0|gio-unix|g' $${file}; \ + ${REINPLACE_CMD} -e 's|atk-1.0|atk|g' $${file}; \ + ${REINPLACE_CMD} -e 's|gdk-2.0|gdk|g' $${file}; \ + ${REINPLACE_CMD} -e 's|gtk+-2.0|gtk+|g' $${file}; \ + ${REINPLACE_CMD} -e 's|libxml-2.0|libxml2|g' $${file}; \ + ${REINPLACE_CMD} -e 's|libcroco-0.6|libcroco|g' $${file}; \ + ${REINPLACE_CMD} -e 's|libgsf-1|libgsf|g' $${file}; \ + ${REINPLACE_CMD} -e 's|gdk-pixbuf-2.0|gdk-pixbuf|g' $${file}; \ + ${REINPLACE_CMD} -e 's|gdk-x11-2.0|gdk-x11|g' $${file}; \ + done +.endfor +# ${REINPLACE_CMD} -e '/SUBDIRS/s|reference||g' ${WRKSRC}/glib/Makefile.in + + +.include +##EOF + diff --git a/text/libenchant/distinfo b/text/libenchant/distinfo new file mode 100644 index 00000000..a24660c9 --- /dev/null +++ b/text/libenchant/distinfo @@ -0,0 +1,2 @@ +SHA256 (gnome2/enchant-1.6.0.tar.gz) = 2fac9e7be7e9424b2c5570d8affe568db39f7572c10ed48d4e13cddf03f7097f +SIZE (gnome2/enchant-1.6.0.tar.gz) = 607018 diff --git a/text/libenchant/files/patch-configure b/text/libenchant/files/patch-configure new file mode 100644 index 00000000..9c5605d3 --- /dev/null +++ b/text/libenchant/files/patch-configure @@ -0,0 +1,11 @@ +--- configure.orig 2013-08-16 18:30:56.000000000 +0200 ++++ configure 2013-08-16 18:31:33.000000000 +0200 +@@ -18213,7 +18213,7 @@ + fi + + +- ASPELL_CFLAGS+=" -DHAVE_PSPELL_H" ++ ASPELL_CFLAGS="${ASPELL_CFLAGS} -DHAVE_PSPELL_H" + elif test -f "$aspell_prefix/include/aspell.h"; then + { $as_echo "$as_me:$LINENO: result: yes (aspell)" >&5 + $as_echo "yes (aspell)" >&6; } diff --git a/text/libenchant/pkg-descr b/text/libenchant/pkg-descr new file mode 100644 index 00000000..04cf4afb --- /dev/null +++ b/text/libenchant/pkg-descr @@ -0,0 +1,16 @@ +On the surface, Enchant appears to be a generic spell checking library. You +can request dictionaries from it, ask if a word is correctly spelled, get +corrections for a misspelled word, etc... + +Beneath the surface, Enchant is a whole lot more - and less - than that. +You'll see that Enchant isn't really a spell checking library at all. + +"What's that?" you ask. Well, Enchant doesn't try to do any of the work +itself. It's lazy, and requires backends to do most of its dirty work. Looking +closer, you'll see the Enchant is more-or-less a fancy wrapper around the +dlopen() system call. Enchant steps in to provide uniformity and conformity +on top of these libraries, and implement certain features that may be lacking +in any individual provider library. Everything should "just work" for any and +every definition of "just working." + +WWW: http://www.abisource.com/projects/enchant/ diff --git a/text/libenchant/pkg-plist b/text/libenchant/pkg-plist new file mode 100644 index 00000000..2937c21c --- /dev/null +++ b/text/libenchant/pkg-plist @@ -0,0 +1,20 @@ +bin/enchant +bin/enchant-lsmod +include/enchant/enchant++.h +include/enchant/enchant-provider.h +include/enchant/enchant.h +lib/enchant/libenchant_aspell.a +lib/enchant/libenchant_aspell.la +lib/enchant/libenchant_aspell.so +lib/enchant/libenchant_myspell.a +lib/enchant/libenchant_myspell.la +lib/enchant/libenchant_myspell.so +lib/libenchant.a +lib/libenchant.la +lib/libenchant.so +lib/libenchant.so.7 +lib/pkgconfig/enchant.pc +share/enchant/enchant.ordering +@dir lib/enchant +@dir share/enchant +@dir include/enchant diff --git a/text/xmlcatmgr/pkg-plist b/text/xmlcatmgr/pkg-plist index 34c4a94c..3584f34a 100644 --- a/text/xmlcatmgr/pkg-plist +++ b/text/xmlcatmgr/pkg-plist @@ -1,4 +1,2 @@ bin/xmlcatmgr -@exec test -r %%CATALOG_SGML%% || %%PREFIX%%/bin/xmlcatmgr -sc %%CATALOG_SGML%% create -@exec test -r %%CATALOG_XML%% || %%PREFIX%%/bin/xmlcatmgr -c %%CATALOG_XML%% create diff --git a/x11/libICE/Makefile b/x11/libICE/Makefile new file mode 100644 index 00000000..de2b77db --- /dev/null +++ b/x11/libICE/Makefile @@ -0,0 +1,37 @@ +# +# $Id: Makefile 834 2007-08-27 08:11:11Z root $ +# $URL: file:///usr2/svn/ports5/x11/libICE/Makefile $ +# +PORTNAME= libICE +PORTVERSION= 1.0.9 +X11_CATEGORY= lib +MASTER_SITES+= ftp://ftp.x.org/pub/individual/${X11_CATEGORY}/ +CATEGORIES= x11 +DIST_SUBDIR= x11 + +MAINTAINER= onborodin@gmail.com +COMMENT= X.org X11R7 module + +BUILD_DEPENDS+= pkg-config:devel/pkg-config +BUILD_DEPENDS+= xproto>=0:xproto/xproto +BUILD_DEPENDS+= xtransproto>=0:xproto/xtransproto + +USES+= tar:bzip2 +USES+= gmake +GNU_CONFIGURE= yes + +CONFIGURE_ARGS+= --mandir=${PREFIX}/man +CPPFLAGS+= -I${LOCALBASE}/include +LDFLAGS+= -L${LOCALBASE}/lib + + +CONFIGURE_ARGS+= --disable-docs +CONFIGURE_ARGS+= --disable-specs + +CONFIGURE_ARGS+= --enable-ipv6 +#CONFIGURE_ARGS+= --enable-local-transport +#CONFIGURE_ARGS+= --enable-tcp-transport +#CONFIGURE_ARGS+= --enable-unix-transport + +.include +#EOF diff --git a/x11/libICE/distinfo b/x11/libICE/distinfo new file mode 100644 index 00000000..e9c09249 --- /dev/null +++ b/x11/libICE/distinfo @@ -0,0 +1,2 @@ +SHA256 (x11/libICE-1.0.9.tar.bz2) = 8f7032f2c1c64352b5423f6b48a8ebdc339cc63064af34d66a6c9aa79759e202 +SIZE (x11/libICE-1.0.9.tar.bz2) = 384921 diff --git a/x11/libICE/pkg-descr b/x11/libICE/pkg-descr new file mode 100644 index 00000000..71dbc12d --- /dev/null +++ b/x11/libICE/pkg-descr @@ -0,0 +1,20 @@ +X - a portable, network-transparent window system + +The X Window System is a network transparent window system which +runs on a wide range of computing and graphics machines. It should +be relatively straightforward to build the X.Org Foundation software +distribution on most ANSI C and POSIX compliant systems. Commercial +implementations are also available for a wide range of platforms. + +The X.Org Foundation requests that the following names be used when +referring to this software: + X + X Window System + X Version 11 + X Window System, Version 11 + X11 + +X Window System is a trademark of The Open Group. + +WWW: http://www.X.org + diff --git a/x11/libICE/pkg-plist b/x11/libICE/pkg-plist new file mode 100644 index 00000000..865d29c0 --- /dev/null +++ b/x11/libICE/pkg-plist @@ -0,0 +1,12 @@ +include/X11/ICE/ICE.h +include/X11/ICE/ICEconn.h +include/X11/ICE/ICElib.h +include/X11/ICE/ICEmsg.h +include/X11/ICE/ICEproto.h +include/X11/ICE/ICEutil.h +lib/libICE.a +lib/libICE.la +lib/libICE.so +lib/libICE.so.6 +lib/pkgconfig/ice.pc +@dir include/X11/ICE diff --git a/x11/libSM/Makefile b/x11/libSM/Makefile new file mode 100644 index 00000000..50b7da75 --- /dev/null +++ b/x11/libSM/Makefile @@ -0,0 +1,33 @@ +# +# $Id: Makefile 831 2007-08-24 11:11:18Z root $ +# $URL: file:///usr2/svn/ports5/x11/libSM/Makefile $ +# +PORTNAME= libSM +PORTVERSION= 1.2.2 +X11_CATEGORY= lib +MASTER_SITES+= ftp://ftp.x.org/pub/individual/${X11_CATEGORY}/ +CATEGORIES= x11 +DIST_SUBDIR= x11 + +MAINTAINER= onborodin@gmail.com +COMMENT= X.org X11R7 module + +BUILD_DEPENDS+= pkg-config:devel/pkg-config +BUILD_DEPENDS+= libICE>=0:x11/libICE +BUILD_DEPENDS+= xproto>=0:xproto/xproto + +LIB_DEPENDS+= libICE.so:x11/libICE + +USES+= tar:bzip2 +USES+= gmake +GNU_CONFIGURE= yes +CONFIGURE_ARGS+= --mandir=${PREFIX}/man +CPPFLAGS+= -I${LOCALBASE}/include +LDFLAGS+= -L${LOCALBASE}/lib +CONFIGURE_ARGS+= --disable-docs +CONFIGURE_ARGS+= --disable-specs + + + +.include +#EOF diff --git a/x11/libSM/distinfo b/x11/libSM/distinfo new file mode 100644 index 00000000..32afc61e --- /dev/null +++ b/x11/libSM/distinfo @@ -0,0 +1,2 @@ +SHA256 (x11/libSM-1.2.2.tar.bz2) = 0baca8c9f5d934450a70896c4ad38d06475521255ca63b717a6510fdb6e287bd +SIZE (x11/libSM-1.2.2.tar.bz2) = 348908 diff --git a/x11/libSM/pkg-descr b/x11/libSM/pkg-descr new file mode 100644 index 00000000..71dbc12d --- /dev/null +++ b/x11/libSM/pkg-descr @@ -0,0 +1,20 @@ +X - a portable, network-transparent window system + +The X Window System is a network transparent window system which +runs on a wide range of computing and graphics machines. It should +be relatively straightforward to build the X.Org Foundation software +distribution on most ANSI C and POSIX compliant systems. Commercial +implementations are also available for a wide range of platforms. + +The X.Org Foundation requests that the following names be used when +referring to this software: + X + X Window System + X Version 11 + X Window System, Version 11 + X11 + +X Window System is a trademark of The Open Group. + +WWW: http://www.X.org + diff --git a/x11/libSM/pkg-plist b/x11/libSM/pkg-plist new file mode 100644 index 00000000..deb4e303 --- /dev/null +++ b/x11/libSM/pkg-plist @@ -0,0 +1,9 @@ +include/X11/SM/SM.h +include/X11/SM/SMlib.h +include/X11/SM/SMproto.h +lib/libSM.a +lib/libSM.la +lib/libSM.so +lib/libSM.so.6 +lib/pkgconfig/sm.pc +@dir include/X11/SM diff --git a/x11/libX11/Makefile b/x11/libX11/Makefile new file mode 100644 index 00000000..7ee87841 --- /dev/null +++ b/x11/libX11/Makefile @@ -0,0 +1,495 @@ +# +# $Id: Makefile 831 2007-08-24 11:11:18Z root $ +# $URL: file:///usr2/svn/ports5/x11/libX11/Makefile $ +# +PORTNAME= libX11 +PORTVERSION= 1.6.5 +X11_CATEGORY= lib +MASTER_SITES+= ftp://ftp.x.org/pub/individual/${X11_CATEGORY}/ +CATEGORIES= x11 +#DIST_SUBDIR= x11 +DIST_SUBDIR= x11 + +MAINTAINER= onborodin@gmail.com +COMMENT= X.org X11R7 module + +BUILD_DEPENDS+= pkg-config:devel/pkg-config +BUILD_DEPENDS+= xproto>=0:xproto/xproto +BUILD_DEPENDS+= xextproto>=0:xproto/xextproto +BUILD_DEPENDS+= xcmiscproto>=0:xproto/xcmiscproto +BUILD_DEPENDS+= bigreqsproto>=0:xproto/bigreqsproto +BUILD_DEPENDS+= kbproto>=0:xproto/kbproto +BUILD_DEPENDS+= inputproto>=0:xproto/inputproto +BUILD_DEPENDS+= libXau>=0:x11/libXau +BUILD_DEPENDS+= libXdmcp>=0:x11/libXdmcp +BUILD_DEPENDS+= xtransproto>=0:xproto/xtransproto + + +LIB_DEPENDS+= libXau.so:x11/libXau +LIB_DEPENDS+= libXdmcp.so:x11/libXdmcp +LIB_DEPENDS+= libxcb.so:x11/libxcb + +RUN_DEPENDS+= kbproto>=0:xproto/kbproto +RUN_DEPENDS+= xproto>=0:xproto/xproto + + +USES+= tar:bzip2 +USES+= gmake +GNU_CONFIGURE= yes + + +CONFIGURE_ARGS+= --mandir=${PREFIX}/man +CFLAGS+= -I${LOCALBASE}/include +CPPFLAGS+= -I${LOCALBASE}/include +LDFLAGS+= -L${LOCALBASE}/lib + +CONFIGURE_ARGS+= --enable-loadable-i18n +CONFIGURE_ARGS+= --enable-secure-rpc + +CONFIGURE_ARGS+= --disable-specs +CONFIGURE_ARGS+= --enable-ipv6 +CONFIGURE_ARGS+= --without-xmlto +CONFIGURE_ARGS+= --without-xsltproc + + + + +post-install: + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf AllPlanes.3 BlackPixel.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf AllPlanes.3 ConnectionNumber.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf AllPlanes.3 DefaultColormap.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf AllPlanes.3 DefaultDepth.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf AllPlanes.3 DefaultGC.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf AllPlanes.3 DefaultRootWindow.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf AllPlanes.3 DefaultScreen.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf AllPlanes.3 DefaultScreenOfDisplay.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf AllPlanes.3 DefaultVisual.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf AllPlanes.3 DisplayCells.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf AllPlanes.3 DisplayPlanes.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf AllPlanes.3 DisplayString.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf AllPlanes.3 LastKnownRequestProcessed.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf AllPlanes.3 NextRequest.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf AllPlanes.3 ProtocolRevision.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf AllPlanes.3 ProtocolVersion.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf AllPlanes.3 QLength.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf AllPlanes.3 RootWindow.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf AllPlanes.3 ScreenCount.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf AllPlanes.3 ScreenOfDisplay.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf AllPlanes.3 ServerVendor.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf AllPlanes.3 VendorRelease.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf AllPlanes.3 WhitePixel.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf AllPlanes.3 XExtendedMaxRequestSize.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf AllPlanes.3 XListDepths.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf AllPlanes.3 XMaxRequestSize.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf BlackPixelOfScreen.3 CellsOfScreen.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf BlackPixelOfScreen.3 DefaultColormapOfScreen.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf BlackPixelOfScreen.3 DefaultDepthOfScreen.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf BlackPixelOfScreen.3 DefaultGCOfScreen.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf BlackPixelOfScreen.3 DefaultVisualOfScreen.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf BlackPixelOfScreen.3 DisplayOfScreen.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf BlackPixelOfScreen.3 DoesBackingStore.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf BlackPixelOfScreen.3 DoesSaveUnders.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf BlackPixelOfScreen.3 EventMaskOfScreen.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf BlackPixelOfScreen.3 HeightMMOfScreen.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf BlackPixelOfScreen.3 HeightOfScreen.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf BlackPixelOfScreen.3 MaxCmapsOfScreen.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf BlackPixelOfScreen.3 MinCmapsOfScreen.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf BlackPixelOfScreen.3 PlanesOfScreen.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf BlackPixelOfScreen.3 RootWindowOfScreen.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf BlackPixelOfScreen.3 WhitePixelOfScreen.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf BlackPixelOfScreen.3 WidthMMOfScreen.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf BlackPixelOfScreen.3 WidthOfScreen.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf BlackPixelOfScreen.3 XScreenNumberOfScreen.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf Compose.5 XCompose.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf Compose.5 XCompose.5 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf DisplayOfCCC.3 ClientWhitePointOfCCC.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf DisplayOfCCC.3 ScreenNumberOfCCC.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf DisplayOfCCC.3 ScreenWhitePointOfCCC.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf DisplayOfCCC.3 VisualOfCCC.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf ImageByteOrder.3 BitmapBitOrder.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf ImageByteOrder.3 BitmapPad.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf ImageByteOrder.3 BitmapUnit.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf ImageByteOrder.3 DisplayHeight.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf ImageByteOrder.3 DisplayHeightMM.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf ImageByteOrder.3 DisplayWidth.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf ImageByteOrder.3 DisplayWidthMM.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf ImageByteOrder.3 XListPixmapFormats.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf ImageByteOrder.3 XPixmapFormatValues.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf IsCursorKey.3 IsFunctionKey.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf IsCursorKey.3 IsKeypadKey.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf IsCursorKey.3 IsMiscFunctionKey.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf IsCursorKey.3 IsModifierKey.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf IsCursorKey.3 IsPFKey.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf IsCursorKey.3 IsPrivateKeypadKey.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XAddConnectionWatch.3 XInternalConnectionNumbers.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XAddConnectionWatch.3 XProcessInternalConnection.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XAddConnectionWatch.3 XRemoveConnectionWatch.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XAddHost.3 XAddHosts.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XAddHost.3 XDisableAccessControl.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XAddHost.3 XEnableAccessControl.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XAddHost.3 XHostAddress.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XAddHost.3 XListHosts.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XAddHost.3 XRemoveHost.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XAddHost.3 XRemoveHosts.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XAddHost.3 XSetAccessControl.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XAllocClassHint.3 XClassHint.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XAllocClassHint.3 XGetClassHint.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XAllocClassHint.3 XSetClassHint.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XAllocColor.3 XAllocColorCells.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XAllocColor.3 XAllocColorPlanes.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XAllocColor.3 XAllocNamedColor.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XAllocColor.3 XFreeColors.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XAllocIconSize.3 XGetIconSizes.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XAllocIconSize.3 XIconSize.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XAllocIconSize.3 XSetIconSizes.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XAllocSizeHints.3 XGetWMNormalHints.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XAllocSizeHints.3 XGetWMSizeHints.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XAllocSizeHints.3 XSetWMNormalHints.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XAllocSizeHints.3 XSetWMSizeHints.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XAllocSizeHints.3 XSizeHints.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XAllocStandardColormap.3 XGetRGBColormaps.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XAllocStandardColormap.3 XSetRGBColormaps.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XAllocStandardColormap.3 XStandardColormap.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XAllocWMHints.3 XGetWMHints.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XAllocWMHints.3 XSetWMHints.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XAllocWMHints.3 XWMHints.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XAnyEvent.3 XEvent.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XButtonEvent.3 XKeyEvent.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XButtonEvent.3 XMotionEvent.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XChangeKeyboardControl.3 XAutoRepeatOff.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XChangeKeyboardControl.3 XAutoRepeatOn.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XChangeKeyboardControl.3 XBell.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XChangeKeyboardControl.3 XGetKeyboardControl.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XChangeKeyboardControl.3 XKeyboardControl.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XChangeKeyboardControl.3 XQueryKeymap.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XChangeKeyboardMapping.3 XDeleteModifiermapEntry.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XChangeKeyboardMapping.3 XDisplayKeycodes.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XChangeKeyboardMapping.3 XFreeModifiermap.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XChangeKeyboardMapping.3 XGetKeyboardMapping.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XChangeKeyboardMapping.3 XGetModifierMapping.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XChangeKeyboardMapping.3 XInsertModifiermapEntry.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XChangeKeyboardMapping.3 XModifierKeymap.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XChangeKeyboardMapping.3 XNewModifiermap.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XChangeKeyboardMapping.3 XSetModifierMapping.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XChangePointerControl.3 XGetPointerControl.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XChangeSaveSet.3 XAddToSaveSet.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XChangeSaveSet.3 XRemoveFromSaveSet.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XChangeWindowAttributes.3 XSetWindowBackground.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XChangeWindowAttributes.3 XSetWindowBackgroundPixmap.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XChangeWindowAttributes.3 XSetWindowBorder.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XChangeWindowAttributes.3 XSetWindowBorderPixmap.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XChangeWindowAttributes.3 XSetWindowColormap.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XClearArea.3 XClearWindow.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XConfigureWindow.3 XMoveResizeWindow.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XConfigureWindow.3 XMoveWindow.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XConfigureWindow.3 XResizeWindow.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XConfigureWindow.3 XSetWindowBorderWidth.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XConfigureWindow.3 XWindowChanges.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XCopyArea.3 XCopyPlane.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XCreateColormap.3 XColor.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XCreateColormap.3 XCopyColormapAndFree.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XCreateColormap.3 XFreeColormap.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XCreateFontCursor.3 XCreateGlyphCursor.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XCreateFontCursor.3 XCreatePixmapCursor.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XCreateFontSet.3 XFreeFontSet.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XCreateGC.3 XChangeGC.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XCreateGC.3 XCopyGC.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XCreateGC.3 XFreeGC.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XCreateGC.3 XGCValues.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XCreateGC.3 XGContextFromGC.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XCreateGC.3 XGetGCValues.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XCreateIC.3 XDestroyIC.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XCreateIC.3 XIMOfIC.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XCreateOC.3 XDestroyOC.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XCreateOC.3 XGetOCValues.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XCreateOC.3 XOMOfOC.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XCreateOC.3 XSetOCValues.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XCreatePixmap.3 XFreePixmap.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XCreateRegion.3 XDestroyRegion.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XCreateRegion.3 XSetRegion.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XCreateWindow.3 XCreateSimpleWindow.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XCreateWindow.3 XSetWindowAttributes.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XDefineCursor.3 XUndefineCursor.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XDestroyWindow.3 XDestroySubwindows.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XDrawArc.3 XArc.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XDrawArc.3 XDrawArcs.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XDrawImageString.3 XDrawImageString16.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XDrawLine.3 XDrawLines.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XDrawLine.3 XDrawSegments.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XDrawLine.3 XSegment.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XDrawPoint.3 XDrawPoints.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XDrawPoint.3 XPoint.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XDrawRectangle.3 XDrawRectangles.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XDrawRectangle.3 XRectangle.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XDrawString.3 XDrawString16.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XDrawText.3 XDrawText16.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XDrawText.3 XTextItem.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XDrawText.3 XTextItem16.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XEmptyRegion.3 XEqualRegion.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XEmptyRegion.3 XPointInRegion.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XEmptyRegion.3 XRectInRegion.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XFillRectangle.3 XFillArc.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XFillRectangle.3 XFillArcs.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XFillRectangle.3 XFillPolygon.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XFillRectangle.3 XFillRectangles.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XFlush.3 XEventsQueued.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XFlush.3 XPending.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XFlush.3 XSync.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XFontsOfFontSet.3 XBaseFontNameListOfFontSet.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XFontsOfFontSet.3 XContextDependentDrawing.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XFontsOfFontSet.3 XContextualDrawing.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XFontsOfFontSet.3 XDirectionalDependentDrawing.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XFontsOfFontSet.3 XLocaleOfFontSet.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XGetEventData.3 XFreeEventData.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XGetEventData.3 XGenericEventCookie.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XGetVisualInfo.3 XMatchVisualInfo.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XGetVisualInfo.3 XVisualIDFromVisual.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XGetVisualInfo.3 XVisualInfo.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XGetWindowAttributes.3 XGetGeometry.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XGetWindowAttributes.3 XWindowAttributes.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XGetWindowProperty.3 XChangeProperty.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XGetWindowProperty.3 XDeleteProperty.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XGetWindowProperty.3 XListProperties.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XGetWindowProperty.3 XRotateWindowProperties.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XGrabButton.3 XUngrabButton.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XGrabKey.3 XUngrabKey.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XGrabKeyboard.3 XUngrabKeyboard.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XGrabPointer.3 XChangeActivePointerGrab.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XGrabPointer.3 XUngrabPointer.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XGrabServer.3 XUngrabServer.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XGraphicsExposeEvent.3 XNoExposeEvent.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XIconifyWindow.3 XReconfigureWMWindow.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XIconifyWindow.3 XWithdrawWindow.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XIfEvent.3 XCheckIfEvent.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XIfEvent.3 XPeekIfEvent.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XInitImage.3 XAddPixel.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XInitImage.3 XCreateImage.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XInitImage.3 XDestroyImage.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XInitImage.3 XGetPixel.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XInitImage.3 XPutPixel.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XInitImage.3 XSubImage.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XInitThreads.3 XLockDisplay.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XInitThreads.3 XUnlockDisplay.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XInstallColormap.3 XListInstalledColormaps.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XInstallColormap.3 XUninstallColormap.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XInternAtom.3 XGetAtomName.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XInternAtom.3 XGetAtomNames.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XInternAtom.3 XInternAtoms.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XIntersectRegion.3 XOffsetRegion.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XIntersectRegion.3 XShrinkRegion.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XIntersectRegion.3 XSubtractRegion.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XIntersectRegion.3 XUnionRectWithRegion.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XIntersectRegion.3 XUnionRegion.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XIntersectRegion.3 XXorRegion.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XListFonts.3 XFreeFontInfo.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XListFonts.3 XFreeFontNames.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XListFonts.3 XListFontsWithInfo.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XLoadFont.3 XChar2b.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XLoadFont.3 XCharStruct.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XLoadFont.3 XFontProp.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XLoadFont.3 XFontStruct.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XLoadFont.3 XFreeFont.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XLoadFont.3 XGetFontProperty.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XLoadFont.3 XLoadQueryFont.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XLoadFont.3 XQueryFont.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XLoadFont.3 XUnloadFont.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XLookupKeysym.3 XLookupString.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XLookupKeysym.3 XRebindKeysym.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XLookupKeysym.3 XRefreshKeyboardMapping.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XMapEvent.3 XMappingEvent.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XMapWindow.3 XMapRaised.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XMapWindow.3 XMapSubwindows.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XNextEvent.3 XCheckMaskEvent.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XNextEvent.3 XCheckTypedEvent.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XNextEvent.3 XCheckTypedWindowEvent.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XNextEvent.3 XCheckWindowEvent.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XNextEvent.3 XMaskEvent.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XNextEvent.3 XPeekEvent.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XNextEvent.3 XWindowEvent.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XOpenDisplay.3 XCloseDisplay.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XOpenIM.3 XCloseIM.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XOpenIM.3 XDisplayOfIM.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XOpenIM.3 XGetIMValues.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XOpenIM.3 XLocaleOfIM.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XOpenIM.3 XRegisterIMInstantiateCallback.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XOpenIM.3 XSetIMValues.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XOpenIM.3 XUnregisterIMInstantiateCallback.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XOpenOM.3 XCloseOM.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XOpenOM.3 XDisplayOfOM.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XOpenOM.3 XGetOMValues.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XOpenOM.3 XLocaleOfOM.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XOpenOM.3 XSetOMValues.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XParseGeometry.3 XWMGeometry.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XPolygonRegion.3 XClipBox.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XPutImage.3 XGetImage.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XPutImage.3 XGetSubImage.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XQueryBestSize.3 XQueryBestStipple.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XQueryBestSize.3 XQueryBestTile.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XQueryColor.3 XLookupColor.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XQueryColor.3 XParseColor.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XQueryColor.3 XQueryColors.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XQueryExtension.3 XFreeExtensionList.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XQueryExtension.3 XListExtensions.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XRaiseWindow.3 XCirculateSubwindows.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XRaiseWindow.3 XCirculateSubwindowsDown.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XRaiseWindow.3 XCirculateSubwindowsUp.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XRaiseWindow.3 XLowerWindow.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XRaiseWindow.3 XRestackWindows.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XReadBitmapFile.3 XCreateBitmapFromData.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XReadBitmapFile.3 XCreatePixmapFromBitmapData.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XReadBitmapFile.3 XReadBitmapFileData.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XReadBitmapFile.3 XWriteBitmapFile.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XRecolorCursor.3 XFreeCursor.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XRecolorCursor.3 XQueryBestCursor.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XResourceManagerString.3 XScreenResourceString.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XSaveContext.3 XDeleteContext.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XSaveContext.3 XFindContext.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XSaveContext.3 XUniqueContext.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XSendEvent.3 XDisplayMotionBufferSize.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XSendEvent.3 XGetMotionEvents.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XSendEvent.3 XTimeCoord.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XSetArcMode.3 XSetGraphicsExposure.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XSetArcMode.3 XSetSubwindowMode.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XSetClipOrigin.3 XSetClipMask.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XSetClipOrigin.3 XSetClipRectangles.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XSetCloseDownMode.3 XKillClient.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XSetCommand.3 XGetCommand.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XSetErrorHandler.3 XDisplayName.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XSetErrorHandler.3 XGetErrorDatabaseText.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XSetErrorHandler.3 XGetErrorText.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XSetErrorHandler.3 XSetIOErrorHandler.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XSetFillStyle.3 XSetFillRule.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XSetFontPath.3 XFreeFontPath.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XSetFontPath.3 XGetFontPath.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XSetICFocus.3 XUnsetICFocus.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XSetICValues.3 XGetICValues.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XSetInputFocus.3 XGetInputFocus.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XSetLineAttributes.3 XSetDashes.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XSetPointerMapping.3 XGetPointerMapping.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XSetScreenSaver.3 XActivateScreenSaver.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XSetScreenSaver.3 XForceScreenSaver.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XSetScreenSaver.3 XGetScreenSaver.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XSetScreenSaver.3 XResetScreenSaver.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XSetSelectionOwner.3 XConvertSelection.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XSetSelectionOwner.3 XGetSelectionOwner.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XSetState.3 XSetBackground.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XSetState.3 XSetForeground.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XSetState.3 XSetFunction.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XSetState.3 XSetPlaneMask.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XSetTextProperty.3 XGetTextProperty.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XSetTile.3 XSetStipple.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XSetTile.3 XSetTSOrigin.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XSetTransientForHint.3 XGetTransientForHint.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XSetWMClientMachine.3 XGetWMClientMachine.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XSetWMColormapWindows.3 XGetWMColormapWindows.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XSetWMIconName.3 XGetIconName.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XSetWMIconName.3 XGetWMIconName.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XSetWMIconName.3 XSetIconName.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XSetWMName.3 XFetchName.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XSetWMName.3 XGetWMName.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XSetWMName.3 XStoreName.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XSetWMProperties.3 XmbSetWMProperties.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XSetWMProperties.3 Xutf8SetWMProperties.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XSetWMProtocols.3 XGetWMProtocols.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XStoreBytes.3 XFetchBuffer.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XStoreBytes.3 XFetchBytes.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XStoreBytes.3 XRotateBuffers.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XStoreBytes.3 XStoreBuffer.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XStoreColors.3 XStoreColor.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XStoreColors.3 XStoreNamedColor.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XStringListToTextProperty.3 XFreeStringList.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XStringListToTextProperty.3 XTextProperty.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XStringListToTextProperty.3 XTextPropertyToStringList.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XStringToKeysym.3 XConvertCase.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XStringToKeysym.3 XKeycodeToKeysym.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XStringToKeysym.3 XKeysymToKeycode.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XStringToKeysym.3 XKeysymToString.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XSupportsLocale.3 XSetLocaleModifiers.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XSynchronize.3 XSetAfterFunction.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XTextExtents.3 XQueryTextExtents.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XTextExtents.3 XQueryTextExtents16.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XTextExtents.3 XTextExtents16.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XTextWidth.3 XTextWidth16.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XUnmapWindow.3 XUnmapSubwindows.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XcmsAllocColor.3 XcmsAllocNamedColor.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XcmsCCCOfColormap.3 XcmsSetCCCOfColormap.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XcmsCIELabQueryMaxC.3 XcmsCIELabQueryMaxL.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XcmsCIELabQueryMaxC.3 XcmsCIELabQueryMaxLC.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XcmsCIELabQueryMaxC.3 XcmsCIELabQueryMinL.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XcmsCIELuvQueryMaxC.3 XcmsCIELuvQueryMaxL.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XcmsCIELuvQueryMaxC.3 XcmsCIELuvQueryMaxLC.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XcmsCIELuvQueryMaxC.3 XcmsCIELuvQueryMinL.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XcmsColor.3 XcmsCIELab.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XcmsColor.3 XcmsCIELuv.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XcmsColor.3 XcmsCIEXYZ.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XcmsColor.3 XcmsCIEuvY.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XcmsColor.3 XcmsCIExyY.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XcmsColor.3 XcmsPad.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XcmsColor.3 XcmsRGB.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XcmsColor.3 XcmsRGBi.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XcmsColor.3 XcmsTekHVC.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XcmsCreateCCC.3 XcmsFreeCCC.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XcmsQueryBlack.3 XcmsQueryBlue.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XcmsQueryBlack.3 XcmsQueryGreen.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XcmsQueryBlack.3 XcmsQueryRed.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XcmsQueryBlack.3 XcmsQueryWhite.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XcmsQueryColor.3 XcmsLookupColor.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XcmsQueryColor.3 XcmsQueryColors.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XcmsSetWhitePoint.3 XcmsSetWhiteAdjustProc.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XcmsStoreColor.3 XcmsStoreColors.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XcmsTekHVCQueryMaxC.3 XcmsTekHVCQueryMaxV.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XcmsTekHVCQueryMaxC.3 XcmsTekHVCQueryMaxVC.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XcmsTekHVCQueryMaxC.3 XcmsTekHVCQueryMaxVSamples.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XcmsTekHVCQueryMaxC.3 XcmsTekHVCQueryMinV.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XmbDrawImageString.3 Xutf8DrawImageString.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XmbDrawImageString.3 XwcDrawImageString.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XmbDrawString.3 Xutf8DrawString.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XmbDrawString.3 XwcDrawString.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XmbDrawText.3 Xutf8DrawText.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XmbDrawText.3 XwcDrawText.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XmbLookupString.3 Xutf8LookupString.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XmbLookupString.3 XwcLookupString.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XmbResetIC.3 Xutf8ResetIC.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XmbResetIC.3 XwcResetIC.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XmbTextEscapement.3 Xutf8TextEscapement.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XmbTextEscapement.3 XwcTextEscapement.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XmbTextExtents.3 Xutf8TextExtents.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XmbTextExtents.3 XwcTextExtents.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XmbTextListToTextProperty.3 XDefaultString.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XmbTextListToTextProperty.3 XmbTextPropertyToTextList.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XmbTextListToTextProperty.3 Xutf8TextListToTextProperty.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XmbTextListToTextProperty.3 Xutf8TextPropertyToTextList.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XmbTextListToTextProperty.3 XwcFreeStringList.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XmbTextListToTextProperty.3 XwcTextListToTextProperty.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XmbTextListToTextProperty.3 XwcTextPropertyToTextList.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XmbTextPerCharExtents.3 Xutf8TextPerCharExtents.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XmbTextPerCharExtents.3 XwcTextPerCharExtents.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XrmGetFileDatabase.3 XrmDestroyDatabase.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XrmGetFileDatabase.3 XrmGetDatabase.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XrmGetFileDatabase.3 XrmGetStringDatabase.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XrmGetFileDatabase.3 XrmLocaleOfDatabase.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XrmGetFileDatabase.3 XrmPutFileDatabase.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XrmGetFileDatabase.3 XrmSetDatabase.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XrmGetResource.3 XrmQGetResource.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XrmGetResource.3 XrmQGetSearchList.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XrmGetResource.3 XrmQGetSearchResource.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XrmInitialize.3 XrmOptionDescRec.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XrmInitialize.3 XrmOptionKind.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XrmInitialize.3 XrmParseCommand.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XrmInitialize.3 XrmValue.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XrmMergeDatabases.3 XrmCombineDatabase.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XrmMergeDatabases.3 XrmCombineFileDatabase.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XrmPutResource.3 XrmPutLineResource.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XrmPutResource.3 XrmPutStringResource.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XrmPutResource.3 XrmQPutResource.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XrmPutResource.3 XrmQPutStringResource.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XrmUniqueQuark.3 XrmPermStringToQuark.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XrmUniqueQuark.3 XrmQuarkToString.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XrmUniqueQuark.3 XrmStringToBindingQuarkList.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XrmUniqueQuark.3 XrmStringToQuark.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XrmUniqueQuark.3 XrmStringToQuarkList.3 + + cd ${STAGEDIR}/${PREFIX}/man/man5 && ${LN} -sf Compose.5 XCompose.5 + +.include +#EOF diff --git a/x11/libX11/distinfo b/x11/libX11/distinfo new file mode 100644 index 00000000..68136f2d --- /dev/null +++ b/x11/libX11/distinfo @@ -0,0 +1,2 @@ +SHA256 (x11/libX11-1.6.5.tar.bz2) = 4d3890db2ba225ba8c55ca63c6409c1ebb078a2806de59fb16342768ae63435d +SIZE (x11/libX11-1.6.5.tar.bz2) = 2361556 diff --git a/x11/libX11/files/patch-x-ltmain.sh b/x11/libX11/files/patch-x-ltmain.sh new file mode 100644 index 00000000..7c3de441 --- /dev/null +++ b/x11/libX11/files/patch-x-ltmain.sh @@ -0,0 +1,36 @@ +--- ./ltmain.sh.orig 2017-02-26 07:55:28.000000000 +0200 ++++ ./ltmain.sh 2017-04-24 20:13:45.997252000 +0200 +@@ -8805,13 +8805,13 @@ + # + case $version_type in + # correct linux to gnu/linux during the next big refactor +- darwin|freebsd-elf|linux|osf|windows|none) ++ darwin|linux|osf|windows|none) + func_arith $number_major + $number_minor + current=$func_arith_result + age=$number_minor + revision=$number_revision + ;; +- freebsd-aout|qnx|sunos) ++ freebsd*|qnx|sunos) + current=$number_major + revision=$number_minor + age=0 +@@ -8891,15 +8891,9 @@ + esac + ;; + +- freebsd-aout) ++ freebsd*) + major=.$current +- versuffix=.$current.$revision +- ;; +- +- freebsd-elf) +- func_arith $current - $age +- major=.$func_arith_result +- versuffix=$major.$age.$revision ++ versuffix=.$current + ;; + + irix | nonstopux) diff --git a/x11/libX11/pkg-descr b/x11/libX11/pkg-descr new file mode 100644 index 00000000..71dbc12d --- /dev/null +++ b/x11/libX11/pkg-descr @@ -0,0 +1,20 @@ +X - a portable, network-transparent window system + +The X Window System is a network transparent window system which +runs on a wide range of computing and graphics machines. It should +be relatively straightforward to build the X.Org Foundation software +distribution on most ANSI C and POSIX compliant systems. Commercial +implementations are also available for a wide range of platforms. + +The X.Org Foundation requests that the following names be used when +referring to this software: + X + X Window System + X Version 11 + X Window System, Version 11 + X11 + +X Window System is a trademark of The Open Group. + +WWW: http://www.X.org + diff --git a/x11/libX11/pkg-plist b/x11/libX11/pkg-plist new file mode 100644 index 00000000..9721a8ce --- /dev/null +++ b/x11/libX11/pkg-plist @@ -0,0 +1,1121 @@ +include/X11/cursorfont.h +include/X11/ImUtil.h +include/X11/Xcms.h +include/X11/XKBlib.h +include/X11/Xlib-xcb.h +include/X11/Xlib.h +include/X11/XlibConf.h +include/X11/Xlibint.h +include/X11/Xlocale.h +include/X11/Xregion.h +include/X11/Xresource.h +include/X11/Xutil.h +lib/libX11-xcb.a +lib/libX11-xcb.la +lib/libX11-xcb.so +lib/libX11-xcb.so.1 +lib/libX11.a +lib/libX11.la +lib/libX11.so +lib/libX11.so.6 +lib/pkgconfig/x11-xcb.pc +lib/pkgconfig/x11.pc +lib/X11/locale/common/ximcp.a +lib/X11/locale/common/ximcp.la +lib/X11/locale/common/ximcp.so +lib/X11/locale/common/ximcp.so.2 +lib/X11/locale/common/xlcDef.a +lib/X11/locale/common/xlcDef.la +lib/X11/locale/common/xlcDef.so +lib/X11/locale/common/xlcDef.so.2 +lib/X11/locale/common/xlcUTF8Load.a +lib/X11/locale/common/xlcUTF8Load.la +lib/X11/locale/common/xlcUTF8Load.so +lib/X11/locale/common/xlcUTF8Load.so.2 +lib/X11/locale/common/xlibi18n.a +lib/X11/locale/common/xlibi18n.la +lib/X11/locale/common/xlibi18n.so +lib/X11/locale/common/xlibi18n.so.2 +lib/X11/locale/common/xomGeneric.a +lib/X11/locale/common/xomGeneric.la +lib/X11/locale/common/xomGeneric.so +lib/X11/locale/common/xomGeneric.so.2 +man/man3/AllPlanes.3.gz +man/man3/BitmapBitOrder.3.gz +man/man3/BitmapPad.3.gz +man/man3/BitmapUnit.3.gz +man/man3/BlackPixel.3.gz +man/man3/BlackPixelOfScreen.3.gz +man/man3/CellsOfScreen.3.gz +man/man3/ClientWhitePointOfCCC.3.gz +man/man3/ConnectionNumber.3.gz +man/man3/DefaultColormap.3.gz +man/man3/DefaultColormapOfScreen.3.gz +man/man3/DefaultDepth.3.gz +man/man3/DefaultDepthOfScreen.3.gz +man/man3/DefaultGC.3.gz +man/man3/DefaultGCOfScreen.3.gz +man/man3/DefaultRootWindow.3.gz +man/man3/DefaultScreen.3.gz +man/man3/DefaultScreenOfDisplay.3.gz +man/man3/DefaultVisual.3.gz +man/man3/DefaultVisualOfScreen.3.gz +man/man3/DisplayCells.3.gz +man/man3/DisplayHeight.3.gz +man/man3/DisplayHeightMM.3.gz +man/man3/DisplayOfCCC.3.gz +man/man3/DisplayOfScreen.3.gz +man/man3/DisplayPlanes.3.gz +man/man3/DisplayString.3.gz +man/man3/DisplayWidth.3.gz +man/man3/DisplayWidthMM.3.gz +man/man3/DoesBackingStore.3.gz +man/man3/DoesSaveUnders.3.gz +man/man3/EventMaskOfScreen.3.gz +man/man3/HeightMMOfScreen.3.gz +man/man3/HeightOfScreen.3.gz +man/man3/ImageByteOrder.3.gz +man/man3/IsCursorKey.3.gz +man/man3/IsFunctionKey.3.gz +man/man3/IsKeypadKey.3.gz +man/man3/IsMiscFunctionKey.3.gz +man/man3/IsModifierKey.3.gz +man/man3/IsPFKey.3.gz +man/man3/IsPrivateKeypadKey.3.gz +man/man3/LastKnownRequestProcessed.3.gz +man/man3/MaxCmapsOfScreen.3.gz +man/man3/MinCmapsOfScreen.3.gz +man/man3/NextRequest.3.gz +man/man3/PlanesOfScreen.3.gz +man/man3/ProtocolRevision.3.gz +man/man3/ProtocolVersion.3.gz +man/man3/QLength.3.gz +man/man3/RootWindow.3.gz +man/man3/RootWindowOfScreen.3.gz +man/man3/ScreenCount.3.gz +man/man3/ScreenNumberOfCCC.3.gz +man/man3/ScreenOfDisplay.3.gz +man/man3/ScreenWhitePointOfCCC.3.gz +man/man3/ServerVendor.3.gz +man/man3/VendorRelease.3.gz +man/man3/VisualOfCCC.3.gz +man/man3/WhitePixel.3.gz +man/man3/WhitePixelOfScreen.3.gz +man/man3/WidthMMOfScreen.3.gz +man/man3/WidthOfScreen.3.gz +man/man3/XActivateScreenSaver.3.gz +man/man3/XAddConnectionWatch.3.gz +man/man3/XAddHost.3.gz +man/man3/XAddHosts.3.gz +man/man3/XAddPixel.3.gz +man/man3/XAddToSaveSet.3.gz +man/man3/XAllocClassHint.3.gz +man/man3/XAllocColor.3.gz +man/man3/XAllocColorCells.3.gz +man/man3/XAllocColorPlanes.3.gz +man/man3/XAllocIconSize.3.gz +man/man3/XAllocNamedColor.3.gz +man/man3/XAllocSizeHints.3.gz +man/man3/XAllocStandardColormap.3.gz +man/man3/XAllocWMHints.3.gz +man/man3/XAllowEvents.3.gz +man/man3/XAnyEvent.3.gz +man/man3/XArc.3.gz +man/man3/XAutoRepeatOff.3.gz +man/man3/XAutoRepeatOn.3.gz +man/man3/XBaseFontNameListOfFontSet.3.gz +man/man3/XBell.3.gz +man/man3/XButtonEvent.3.gz +man/man3/XChangeActivePointerGrab.3.gz +man/man3/XChangeGC.3.gz +man/man3/XChangeKeyboardControl.3.gz +man/man3/XChangeKeyboardMapping.3.gz +man/man3/XChangePointerControl.3.gz +man/man3/XChangeProperty.3.gz +man/man3/XChangeSaveSet.3.gz +man/man3/XChangeWindowAttributes.3.gz +man/man3/XChar2b.3.gz +man/man3/XCharStruct.3.gz +man/man3/XCheckIfEvent.3.gz +man/man3/XCheckMaskEvent.3.gz +man/man3/XCheckTypedEvent.3.gz +man/man3/XCheckTypedWindowEvent.3.gz +man/man3/XCheckWindowEvent.3.gz +man/man3/XCirculateEvent.3.gz +man/man3/XCirculateRequestEvent.3.gz +man/man3/XCirculateSubwindows.3.gz +man/man3/XCirculateSubwindowsDown.3.gz +man/man3/XCirculateSubwindowsUp.3.gz +man/man3/XClassHint.3.gz +man/man3/XClearArea.3.gz +man/man3/XClearWindow.3.gz +man/man3/XClientMessageEvent.3.gz +man/man3/XClipBox.3.gz +man/man3/XCloseDisplay.3.gz +man/man3/XCloseIM.3.gz +man/man3/XCloseOM.3.gz +man/man3/XcmsAllocColor.3.gz +man/man3/XcmsAllocNamedColor.3.gz +man/man3/XcmsCCCOfColormap.3.gz +man/man3/XcmsCIELab.3.gz +man/man3/XcmsCIELabQueryMaxC.3.gz +man/man3/XcmsCIELabQueryMaxL.3.gz +man/man3/XcmsCIELabQueryMaxLC.3.gz +man/man3/XcmsCIELabQueryMinL.3.gz +man/man3/XcmsCIELuv.3.gz +man/man3/XcmsCIELuvQueryMaxC.3.gz +man/man3/XcmsCIELuvQueryMaxL.3.gz +man/man3/XcmsCIELuvQueryMaxLC.3.gz +man/man3/XcmsCIELuvQueryMinL.3.gz +man/man3/XcmsCIEuvY.3.gz +man/man3/XcmsCIExyY.3.gz +man/man3/XcmsCIEXYZ.3.gz +man/man3/XcmsColor.3.gz +man/man3/XcmsConvertColors.3.gz +man/man3/XcmsCreateCCC.3.gz +man/man3/XcmsDefaultCCC.3.gz +man/man3/XcmsFreeCCC.3.gz +man/man3/XcmsLookupColor.3.gz +man/man3/XcmsPad.3.gz +man/man3/XcmsQueryBlack.3.gz +man/man3/XcmsQueryBlue.3.gz +man/man3/XcmsQueryColor.3.gz +man/man3/XcmsQueryColors.3.gz +man/man3/XcmsQueryGreen.3.gz +man/man3/XcmsQueryRed.3.gz +man/man3/XcmsQueryWhite.3.gz +man/man3/XcmsRGB.3.gz +man/man3/XcmsRGBi.3.gz +man/man3/XcmsSetCCCOfColormap.3.gz +man/man3/XcmsSetWhiteAdjustProc.3.gz +man/man3/XcmsSetWhitePoint.3.gz +man/man3/XcmsStoreColor.3.gz +man/man3/XcmsStoreColors.3.gz +man/man3/XcmsTekHVC.3.gz +man/man3/XcmsTekHVCQueryMaxC.3.gz +man/man3/XcmsTekHVCQueryMaxV.3.gz +man/man3/XcmsTekHVCQueryMaxVC.3.gz +man/man3/XcmsTekHVCQueryMaxVSamples.3.gz +man/man3/XcmsTekHVCQueryMinV.3.gz +man/man3/XColor.3.gz +man/man3/XColormapEvent.3.gz +man/man3/XCompose.3.gz +man/man3/XCompose.5.gz +man/man3/XConfigureEvent.3.gz +man/man3/XConfigureRequestEvent.3.gz +man/man3/XConfigureWindow.3.gz +man/man3/XContextDependentDrawing.3.gz +man/man3/XContextualDrawing.3.gz +man/man3/XConvertCase.3.gz +man/man3/XConvertSelection.3.gz +man/man3/XCopyArea.3.gz +man/man3/XCopyColormapAndFree.3.gz +man/man3/XCopyGC.3.gz +man/man3/XCopyPlane.3.gz +man/man3/XCreateBitmapFromData.3.gz +man/man3/XCreateColormap.3.gz +man/man3/XCreateFontCursor.3.gz +man/man3/XCreateFontSet.3.gz +man/man3/XCreateGC.3.gz +man/man3/XCreateGlyphCursor.3.gz +man/man3/XCreateIC.3.gz +man/man3/XCreateImage.3.gz +man/man3/XCreateOC.3.gz +man/man3/XCreatePixmap.3.gz +man/man3/XCreatePixmapCursor.3.gz +man/man3/XCreatePixmapFromBitmapData.3.gz +man/man3/XCreateRegion.3.gz +man/man3/XCreateSimpleWindow.3.gz +man/man3/XCreateWindow.3.gz +man/man3/XCreateWindowEvent.3.gz +man/man3/XCrossingEvent.3.gz +man/man3/XDefaultString.3.gz +man/man3/XDefineCursor.3.gz +man/man3/XDeleteContext.3.gz +man/man3/XDeleteModifiermapEntry.3.gz +man/man3/XDeleteProperty.3.gz +man/man3/XDestroyIC.3.gz +man/man3/XDestroyImage.3.gz +man/man3/XDestroyOC.3.gz +man/man3/XDestroyRegion.3.gz +man/man3/XDestroySubwindows.3.gz +man/man3/XDestroyWindow.3.gz +man/man3/XDestroyWindowEvent.3.gz +man/man3/XDirectionalDependentDrawing.3.gz +man/man3/XDisableAccessControl.3.gz +man/man3/XDisplayKeycodes.3.gz +man/man3/XDisplayMotionBufferSize.3.gz +man/man3/XDisplayName.3.gz +man/man3/XDisplayOfIM.3.gz +man/man3/XDisplayOfOM.3.gz +man/man3/XDrawArc.3.gz +man/man3/XDrawArcs.3.gz +man/man3/XDrawImageString.3.gz +man/man3/XDrawImageString16.3.gz +man/man3/XDrawLine.3.gz +man/man3/XDrawLines.3.gz +man/man3/XDrawPoint.3.gz +man/man3/XDrawPoints.3.gz +man/man3/XDrawRectangle.3.gz +man/man3/XDrawRectangles.3.gz +man/man3/XDrawSegments.3.gz +man/man3/XDrawString.3.gz +man/man3/XDrawString16.3.gz +man/man3/XDrawText.3.gz +man/man3/XDrawText16.3.gz +man/man3/XEmptyRegion.3.gz +man/man3/XEnableAccessControl.3.gz +man/man3/XEqualRegion.3.gz +man/man3/XErrorEvent.3.gz +man/man3/XEvent.3.gz +man/man3/XEventsQueued.3.gz +man/man3/XExposeEvent.3.gz +man/man3/XExtendedMaxRequestSize.3.gz +man/man3/XExtentsOfFontSet.3.gz +man/man3/XFetchBuffer.3.gz +man/man3/XFetchBytes.3.gz +man/man3/XFetchName.3.gz +man/man3/XFillArc.3.gz +man/man3/XFillArcs.3.gz +man/man3/XFillPolygon.3.gz +man/man3/XFillRectangle.3.gz +man/man3/XFillRectangles.3.gz +man/man3/XFilterEvent.3.gz +man/man3/XFindContext.3.gz +man/man3/XFlush.3.gz +man/man3/XFocusChangeEvent.3.gz +man/man3/XFontProp.3.gz +man/man3/XFontSetExtents.3.gz +man/man3/XFontsOfFontSet.3.gz +man/man3/XFontStruct.3.gz +man/man3/XForceScreenSaver.3.gz +man/man3/XFree.3.gz +man/man3/XFreeColormap.3.gz +man/man3/XFreeColors.3.gz +man/man3/XFreeCursor.3.gz +man/man3/XFreeEventData.3.gz +man/man3/XFreeExtensionList.3.gz +man/man3/XFreeFont.3.gz +man/man3/XFreeFontInfo.3.gz +man/man3/XFreeFontNames.3.gz +man/man3/XFreeFontPath.3.gz +man/man3/XFreeFontSet.3.gz +man/man3/XFreeGC.3.gz +man/man3/XFreeModifiermap.3.gz +man/man3/XFreePixmap.3.gz +man/man3/XFreeStringList.3.gz +man/man3/XGContextFromGC.3.gz +man/man3/XGCValues.3.gz +man/man3/XGenericEventCookie.3.gz +man/man3/XGetAtomName.3.gz +man/man3/XGetAtomNames.3.gz +man/man3/XGetClassHint.3.gz +man/man3/XGetCommand.3.gz +man/man3/XGetErrorDatabaseText.3.gz +man/man3/XGetErrorText.3.gz +man/man3/XGetEventData.3.gz +man/man3/XGetFontPath.3.gz +man/man3/XGetFontProperty.3.gz +man/man3/XGetGCValues.3.gz +man/man3/XGetGeometry.3.gz +man/man3/XGetIconName.3.gz +man/man3/XGetIconSizes.3.gz +man/man3/XGetICValues.3.gz +man/man3/XGetImage.3.gz +man/man3/XGetIMValues.3.gz +man/man3/XGetInputFocus.3.gz +man/man3/XGetKeyboardControl.3.gz +man/man3/XGetKeyboardMapping.3.gz +man/man3/XGetModifierMapping.3.gz +man/man3/XGetMotionEvents.3.gz +man/man3/XGetOCValues.3.gz +man/man3/XGetOMValues.3.gz +man/man3/XGetPixel.3.gz +man/man3/XGetPointerControl.3.gz +man/man3/XGetPointerMapping.3.gz +man/man3/XGetRGBColormaps.3.gz +man/man3/XGetScreenSaver.3.gz +man/man3/XGetSelectionOwner.3.gz +man/man3/XGetSubImage.3.gz +man/man3/XGetTextProperty.3.gz +man/man3/XGetTransientForHint.3.gz +man/man3/XGetVisualInfo.3.gz +man/man3/XGetWindowAttributes.3.gz +man/man3/XGetWindowProperty.3.gz +man/man3/XGetWMClientMachine.3.gz +man/man3/XGetWMColormapWindows.3.gz +man/man3/XGetWMHints.3.gz +man/man3/XGetWMIconName.3.gz +man/man3/XGetWMName.3.gz +man/man3/XGetWMNormalHints.3.gz +man/man3/XGetWMProtocols.3.gz +man/man3/XGetWMSizeHints.3.gz +man/man3/XGetXCBConnection.3.gz +man/man3/XGrabButton.3.gz +man/man3/XGrabKey.3.gz +man/man3/XGrabKeyboard.3.gz +man/man3/XGrabPointer.3.gz +man/man3/XGrabServer.3.gz +man/man3/XGraphicsExposeEvent.3.gz +man/man3/XGravityEvent.3.gz +man/man3/XHostAddress.3.gz +man/man3/XIconifyWindow.3.gz +man/man3/XIconSize.3.gz +man/man3/XIfEvent.3.gz +man/man3/XIMOfIC.3.gz +man/man3/XInitImage.3.gz +man/man3/XInitThreads.3.gz +man/man3/XInsertModifiermapEntry.3.gz +man/man3/XInstallColormap.3.gz +man/man3/XInternalConnectionNumbers.3.gz +man/man3/XInternAtom.3.gz +man/man3/XInternAtoms.3.gz +man/man3/XIntersectRegion.3.gz +man/man3/XkbActionCtrls.3.gz +man/man3/XkbAddDeviceLedInfo.3.gz +man/man3/XkbAddGeomColor.3.gz +man/man3/XkbAddGeomDoodad.3.gz +man/man3/XkbAddGeomKey.3.gz +man/man3/XkbAddGeomKeyAlias.3.gz +man/man3/XkbAddGeomOutline.3.gz +man/man3/XkbAddGeomOverlay.3.gz +man/man3/XkbAddGeomOverlayKey.3.gz +man/man3/XkbAddGeomOverlayRow.3.gz +man/man3/XkbAddGeomProperty.3.gz +man/man3/XkbAddGeomRow.3.gz +man/man3/XkbAddGeomSection.3.gz +man/man3/XkbAddGeomShape.3.gz +man/man3/XkbAddSymInterpret.3.gz +man/man3/XkbAllocClientMap.3.gz +man/man3/XkbAllocCompatMap.3.gz +man/man3/XkbAllocControls.3.gz +man/man3/XkbAllocDeviceInfo.3.gz +man/man3/XkbAllocDeviceLedInfo.3.gz +man/man3/XkbAllocGeomColors.3.gz +man/man3/XkbAllocGeomDoodads.3.gz +man/man3/XkbAllocGeometry.3.gz +man/man3/XkbAllocGeomKeyAliases.3.gz +man/man3/XkbAllocGeomKeys.3.gz +man/man3/XkbAllocGeomOutlines.3.gz +man/man3/XkbAllocGeomOverlayKey.3.gz +man/man3/XkbAllocGeomOverlayRows.3.gz +man/man3/XkbAllocGeomOverlays.3.gz +man/man3/XkbAllocGeomPoints.3.gz +man/man3/XkbAllocGeomProps.3.gz +man/man3/XkbAllocGeomRows.3.gz +man/man3/XkbAllocGeomSectionDoodads.3.gz +man/man3/XkbAllocGeomSections.3.gz +man/man3/XkbAllocGeomShapes.3.gz +man/man3/XkbAllocIndicatorMaps.3.gz +man/man3/XkbAllocKeyboard.3.gz +man/man3/XkbAllocNames.3.gz +man/man3/XkbAllocServerMap.3.gz +man/man3/XkbApplyCompatMapToKey.3.gz +man/man3/XkbBell.3.gz +man/man3/XkbBellEvent.3.gz +man/man3/XkbChangeControls.3.gz +man/man3/XkbChangeDeviceInfo.3.gz +man/man3/XkbChangeEnabledControls.3.gz +man/man3/XkbChangeIndicators.3.gz +man/man3/XkbChangeMap.3.gz +man/man3/XkbChangeNames.3.gz +man/man3/XkbChangeTypesOfKey.3.gz +man/man3/XkbComputeRowBounds.3.gz +man/man3/XkbComputeSectionBounds.3.gz +man/man3/XkbComputeShapeBounds.3.gz +man/man3/XkbComputeShapeTop.3.gz +man/man3/XkbCopyKeyType.3.gz +man/man3/XkbCopyKeyTypes.3.gz +man/man3/XkbDeviceBell.3.gz +man/man3/XkbDeviceBellEvent.3.gz +man/man3/XkbFindOverlayForKey.3.gz +man/man3/XkbForceBell.3.gz +man/man3/XkbForceDeviceBell.3.gz +man/man3/XkbFreeClientMap.3.gz +man/man3/XkbFreeCompatMap.3.gz +man/man3/XkbFreeComponentList.3.gz +man/man3/XkbFreeControls.3.gz +man/man3/XkbFreeDeviceInfo.3.gz +man/man3/XkbFreeGeomColors.3.gz +man/man3/XkbFreeGeomDoodads.3.gz +man/man3/XkbFreeGeometry.3.gz +man/man3/XkbFreeGeomKeyAliases.3.gz +man/man3/XkbFreeGeomKeys.3.gz +man/man3/XkbFreeGeomOutlines.3.gz +man/man3/XkbFreeGeomOverlayKeys.3.gz +man/man3/XkbFreeGeomOverlayRows.3.gz +man/man3/XkbFreeGeomOverlays.3.gz +man/man3/XkbFreeGeomPoints.3.gz +man/man3/XkbFreeGeomProperties.3.gz +man/man3/XkbFreeGeomRows.3.gz +man/man3/XkbFreeGeomSections.3.gz +man/man3/XkbFreeGeomShapes.3.gz +man/man3/XkbFreeIndicatorMaps.3.gz +man/man3/XkbFreeKeyboard.3.gz +man/man3/XkbFreeNames.3.gz +man/man3/XkbFreeServerMap.3.gz +man/man3/XkbGetAccessXTimeout.3.gz +man/man3/XkbGetAutoRepeatRate.3.gz +man/man3/XkbGetAutoResetControls.3.gz +man/man3/XkbGetBounceKeysDelay.3.gz +man/man3/XkbGetCompatMap.3.gz +man/man3/XkbGetControls.3.gz +man/man3/XkbGetControlsChanges.3.gz +man/man3/XkbGetDetectableAutoRepeat.3.gz +man/man3/XkbGetDeviceButtonActions.3.gz +man/man3/XkbGetDeviceInfo.3.gz +man/man3/XkbGetDeviceInfoChanges.3.gz +man/man3/XkbGetDeviceLedInfo.3.gz +man/man3/XkbGetGeometry.3.gz +man/man3/XkbGetIndicatorChanges.3.gz +man/man3/XkbGetIndicatorMap.3.gz +man/man3/XkbGetIndicatorState.3.gz +man/man3/XkbGetKeyActions.3.gz +man/man3/XkbGetKeyBehaviors.3.gz +man/man3/XkbGetKeyboard.3.gz +man/man3/XkbGetKeyboardByName.3.gz +man/man3/XkbGetKeyExplicitComponents.3.gz +man/man3/XkbGetKeyModifierMap.3.gz +man/man3/XkbGetKeySyms.3.gz +man/man3/XkbGetKeyTypes.3.gz +man/man3/XkbGetKeyVirtualModMap.3.gz +man/man3/XkbGetMap.3.gz +man/man3/XkbGetNameChanges.3.gz +man/man3/XkbGetNamedGeometry.3.gz +man/man3/XkbGetNamedIndicator.3.gz +man/man3/XkbGetNames.3.gz +man/man3/XkbGetSlowKeysDelay.3.gz +man/man3/XkbGetState.3.gz +man/man3/XkbGetStickyKeysOptions.3.gz +man/man3/XkbGetUpdatedMap.3.gz +man/man3/XkbGetVirtualMods.3.gz +man/man3/XkbGetXlibControls.3.gz +man/man3/XkbIgnoreExtension.3.gz +man/man3/XkbInitCanonicalKeyTypes.3.gz +man/man3/XkbKeyAction.3.gz +man/man3/XkbKeyActionEntry.3.gz +man/man3/XkbKeyActionsPtr.3.gz +man/man3/XkbKeycodeToKeysym.3.gz +man/man3/XkbKeyGroupInfo.3.gz +man/man3/XkbKeyGroupsWidth.3.gz +man/man3/XkbKeyGroupWidth.3.gz +man/man3/XkbKeyHasActions.3.gz +man/man3/XkbKeyNumActions.3.gz +man/man3/XkbKeyNumGroups.3.gz +man/man3/XkbKeyNumSyms.3.gz +man/man3/XkbKeySymEntry.3.gz +man/man3/XkbKeySymsOffset.3.gz +man/man3/XkbKeySymsPtr.3.gz +man/man3/XkbKeysymToModifiers.3.gz +man/man3/XkbKeyType.3.gz +man/man3/XkbKeyTypeIndex.3.gz +man/man3/XkbKeyTypesForCoreSymbols.3.gz +man/man3/XkbLatchGroup.3.gz +man/man3/XkbLatchModifiers.3.gz +man/man3/XkbLibraryVersion.3.gz +man/man3/XkbListComponents.3.gz +man/man3/XkbLockGroup.3.gz +man/man3/XkbLockModifiers.3.gz +man/man3/XkbLookupKeyBinding.3.gz +man/man3/XkbLookupKeySym.3.gz +man/man3/XkbModActionVMods.3.gz +man/man3/XkbNoteControlsChanges.3.gz +man/man3/XkbNoteDeviceChanges.3.gz +man/man3/XkbNoteIndicatorChanges.3.gz +man/man3/XkbNoteNameChanges.3.gz +man/man3/XkbOpenDisplay.3.gz +man/man3/XkbOutOfRangeGroupInfo.3.gz +man/man3/XkbOutOfRangeGroupNumber.3.gz +man/man3/XkbPtrActionX.3.gz +man/man3/XkbPtrActionY.3.gz +man/man3/XkbQueryExtension.3.gz +man/man3/XkbRefreshKeyboardMapping.3.gz +man/man3/XkbResizeDeviceButtonActions.3.gz +man/man3/XkbResizeKeyActions.3.gz +man/man3/XkbResizeKeySyms.3.gz +man/man3/XkbResizeKeyType.3.gz +man/man3/XkbSAActionSetCtrls.3.gz +man/man3/XkbSAGroup.3.gz +man/man3/XkbSAPtrDfltValue.3.gz +man/man3/XkbSARedirectSetVMods.3.gz +man/man3/XkbSARedirectSetVModsMask.3.gz +man/man3/XkbSARedirectVMods.3.gz +man/man3/XkbSARedirectVModsMask.3.gz +man/man3/XkbSAScreen.3.gz +man/man3/XkbSASetGroup.3.gz +man/man3/XkbSASetPtrDfltValue.3.gz +man/man3/XkbSASetScreen.3.gz +man/man3/XkbSelectEventDetails.3.gz +man/man3/XkbSelectEvents.3.gz +man/man3/XkbSetAccessXTimeout.3.gz +man/man3/XkbSetAutoRepeatRate.3.gz +man/man3/XkbSetAutoResetControls.3.gz +man/man3/XkbSetBounceKeysDelay.3.gz +man/man3/XkbSetCompatMap.3.gz +man/man3/XkbSetControls.3.gz +man/man3/XkbSetDebuggingFlags.3.gz +man/man3/XkbSetDetectableAutoRepeat.3.gz +man/man3/XkbSetDeviceButtonActions.3.gz +man/man3/XkbSetDeviceInfo.3.gz +man/man3/XkbSetIgnoreLockMods.3.gz +man/man3/XkbSetIndicatorMap.3.gz +man/man3/XkbSetMap.3.gz +man/man3/XkbSetModActionVMods.3.gz +man/man3/XkbSetNamedIndicator.3.gz +man/man3/XkbSetNames.3.gz +man/man3/XkbSetPtrActionX.3.gz +man/man3/XkbSetPtrActionY.3.gz +man/man3/XkbSetServerInternalMods.3.gz +man/man3/XkbSetXlibControls.3.gz +man/man3/XkbTranslateKeyCode.3.gz +man/man3/XkbTranslateKeySym.3.gz +man/man3/XkbUpdateMapFromCore.3.gz +man/man3/XkbVirtualModsToReal.3.gz +man/man3/XKeyboardControl.3.gz +man/man3/XKeycodeToKeysym.3.gz +man/man3/XKeyEvent.3.gz +man/man3/XKeymapEvent.3.gz +man/man3/XKeysymToKeycode.3.gz +man/man3/XKeysymToString.3.gz +man/man3/XKillClient.3.gz +man/man3/XListDepths.3.gz +man/man3/XListExtensions.3.gz +man/man3/XListFonts.3.gz +man/man3/XListFontsWithInfo.3.gz +man/man3/XListHosts.3.gz +man/man3/XListInstalledColormaps.3.gz +man/man3/XListPixmapFormats.3.gz +man/man3/XListProperties.3.gz +man/man3/XLoadFont.3.gz +man/man3/XLoadQueryFont.3.gz +man/man3/XLocaleOfFontSet.3.gz +man/man3/XLocaleOfIM.3.gz +man/man3/XLocaleOfOM.3.gz +man/man3/XLockDisplay.3.gz +man/man3/XLookupColor.3.gz +man/man3/XLookupKeysym.3.gz +man/man3/XLookupString.3.gz +man/man3/XLowerWindow.3.gz +man/man3/XMapEvent.3.gz +man/man3/XMappingEvent.3.gz +man/man3/XMapRaised.3.gz +man/man3/XMapRequestEvent.3.gz +man/man3/XMapSubwindows.3.gz +man/man3/XMapWindow.3.gz +man/man3/XMaskEvent.3.gz +man/man3/XMatchVisualInfo.3.gz +man/man3/XMaxRequestSize.3.gz +man/man3/XmbDrawImageString.3.gz +man/man3/XmbDrawString.3.gz +man/man3/XmbDrawText.3.gz +man/man3/XmbLookupString.3.gz +man/man3/XmbResetIC.3.gz +man/man3/XmbSetWMProperties.3.gz +man/man3/XmbTextEscapement.3.gz +man/man3/XmbTextExtents.3.gz +man/man3/XmbTextListToTextProperty.3.gz +man/man3/XmbTextPerCharExtents.3.gz +man/man3/XmbTextPropertyToTextList.3.gz +man/man3/XModifierKeymap.3.gz +man/man3/XMotionEvent.3.gz +man/man3/XMoveResizeWindow.3.gz +man/man3/XMoveWindow.3.gz +man/man3/XNewModifiermap.3.gz +man/man3/XNextEvent.3.gz +man/man3/XNoExposeEvent.3.gz +man/man3/XNoOp.3.gz +man/man3/XOffsetRegion.3.gz +man/man3/XOMOfOC.3.gz +man/man3/XOpenDisplay.3.gz +man/man3/XOpenIM.3.gz +man/man3/XOpenOM.3.gz +man/man3/XParseColor.3.gz +man/man3/XParseGeometry.3.gz +man/man3/XPeekEvent.3.gz +man/man3/XPeekIfEvent.3.gz +man/man3/XPending.3.gz +man/man3/XPixmapFormatValues.3.gz +man/man3/XPoint.3.gz +man/man3/XPointInRegion.3.gz +man/man3/XPolygonRegion.3.gz +man/man3/XProcessInternalConnection.3.gz +man/man3/XPropertyEvent.3.gz +man/man3/XPutBackEvent.3.gz +man/man3/XPutImage.3.gz +man/man3/XPutPixel.3.gz +man/man3/XQueryBestCursor.3.gz +man/man3/XQueryBestSize.3.gz +man/man3/XQueryBestStipple.3.gz +man/man3/XQueryBestTile.3.gz +man/man3/XQueryColor.3.gz +man/man3/XQueryColors.3.gz +man/man3/XQueryExtension.3.gz +man/man3/XQueryFont.3.gz +man/man3/XQueryKeymap.3.gz +man/man3/XQueryPointer.3.gz +man/man3/XQueryTextExtents.3.gz +man/man3/XQueryTextExtents16.3.gz +man/man3/XQueryTree.3.gz +man/man3/XRaiseWindow.3.gz +man/man3/XReadBitmapFile.3.gz +man/man3/XReadBitmapFileData.3.gz +man/man3/XRebindKeysym.3.gz +man/man3/XRecolorCursor.3.gz +man/man3/XReconfigureWMWindow.3.gz +man/man3/XRectangle.3.gz +man/man3/XRectInRegion.3.gz +man/man3/XRefreshKeyboardMapping.3.gz +man/man3/XRegisterIMInstantiateCallback.3.gz +man/man3/XRemoveConnectionWatch.3.gz +man/man3/XRemoveFromSaveSet.3.gz +man/man3/XRemoveHost.3.gz +man/man3/XRemoveHosts.3.gz +man/man3/XReparentEvent.3.gz +man/man3/XReparentWindow.3.gz +man/man3/XResetScreenSaver.3.gz +man/man3/XResizeRequestEvent.3.gz +man/man3/XResizeWindow.3.gz +man/man3/XResourceManagerString.3.gz +man/man3/XRestackWindows.3.gz +man/man3/XrmCombineDatabase.3.gz +man/man3/XrmCombineFileDatabase.3.gz +man/man3/XrmDestroyDatabase.3.gz +man/man3/XrmEnumerateDatabase.3.gz +man/man3/XrmGetDatabase.3.gz +man/man3/XrmGetFileDatabase.3.gz +man/man3/XrmGetResource.3.gz +man/man3/XrmGetStringDatabase.3.gz +man/man3/XrmInitialize.3.gz +man/man3/XrmLocaleOfDatabase.3.gz +man/man3/XrmMergeDatabases.3.gz +man/man3/XrmOptionDescRec.3.gz +man/man3/XrmOptionKind.3.gz +man/man3/XrmParseCommand.3.gz +man/man3/XrmPermStringToQuark.3.gz +man/man3/XrmPutFileDatabase.3.gz +man/man3/XrmPutLineResource.3.gz +man/man3/XrmPutResource.3.gz +man/man3/XrmPutStringResource.3.gz +man/man3/XrmQGetResource.3.gz +man/man3/XrmQGetSearchList.3.gz +man/man3/XrmQGetSearchResource.3.gz +man/man3/XrmQPutResource.3.gz +man/man3/XrmQPutStringResource.3.gz +man/man3/XrmQuarkToString.3.gz +man/man3/XrmSetDatabase.3.gz +man/man3/XrmStringToBindingQuarkList.3.gz +man/man3/XrmStringToQuark.3.gz +man/man3/XrmStringToQuarkList.3.gz +man/man3/XrmUniqueQuark.3.gz +man/man3/XrmValue.3.gz +man/man3/XRotateBuffers.3.gz +man/man3/XRotateWindowProperties.3.gz +man/man3/XSaveContext.3.gz +man/man3/XScreenNumberOfScreen.3.gz +man/man3/XScreenResourceString.3.gz +man/man3/XSegment.3.gz +man/man3/XSelectInput.3.gz +man/man3/XSelectionClearEvent.3.gz +man/man3/XSelectionEvent.3.gz +man/man3/XSelectionRequestEvent.3.gz +man/man3/XSendEvent.3.gz +man/man3/XSetAccessControl.3.gz +man/man3/XSetAfterFunction.3.gz +man/man3/XSetArcMode.3.gz +man/man3/XSetBackground.3.gz +man/man3/XSetClassHint.3.gz +man/man3/XSetClipMask.3.gz +man/man3/XSetClipOrigin.3.gz +man/man3/XSetClipRectangles.3.gz +man/man3/XSetCloseDownMode.3.gz +man/man3/XSetCommand.3.gz +man/man3/XSetDashes.3.gz +man/man3/XSetErrorHandler.3.gz +man/man3/XSetEventQueueOwner.3.gz +man/man3/XSetFillRule.3.gz +man/man3/XSetFillStyle.3.gz +man/man3/XSetFont.3.gz +man/man3/XSetFontPath.3.gz +man/man3/XSetForeground.3.gz +man/man3/XSetFunction.3.gz +man/man3/XSetGraphicsExposure.3.gz +man/man3/XSetICFocus.3.gz +man/man3/XSetIconName.3.gz +man/man3/XSetIconSizes.3.gz +man/man3/XSetICValues.3.gz +man/man3/XSetIMValues.3.gz +man/man3/XSetInputFocus.3.gz +man/man3/XSetIOErrorHandler.3.gz +man/man3/XSetLineAttributes.3.gz +man/man3/XSetLocaleModifiers.3.gz +man/man3/XSetModifierMapping.3.gz +man/man3/XSetOCValues.3.gz +man/man3/XSetOMValues.3.gz +man/man3/XSetPlaneMask.3.gz +man/man3/XSetPointerMapping.3.gz +man/man3/XSetRegion.3.gz +man/man3/XSetRGBColormaps.3.gz +man/man3/XSetScreenSaver.3.gz +man/man3/XSetSelectionOwner.3.gz +man/man3/XSetState.3.gz +man/man3/XSetStipple.3.gz +man/man3/XSetSubwindowMode.3.gz +man/man3/XSetTextProperty.3.gz +man/man3/XSetTile.3.gz +man/man3/XSetTransientForHint.3.gz +man/man3/XSetTSOrigin.3.gz +man/man3/XSetWindowAttributes.3.gz +man/man3/XSetWindowBackground.3.gz +man/man3/XSetWindowBackgroundPixmap.3.gz +man/man3/XSetWindowBorder.3.gz +man/man3/XSetWindowBorderPixmap.3.gz +man/man3/XSetWindowBorderWidth.3.gz +man/man3/XSetWindowColormap.3.gz +man/man3/XSetWMClientMachine.3.gz +man/man3/XSetWMColormapWindows.3.gz +man/man3/XSetWMHints.3.gz +man/man3/XSetWMIconName.3.gz +man/man3/XSetWMName.3.gz +man/man3/XSetWMNormalHints.3.gz +man/man3/XSetWMProperties.3.gz +man/man3/XSetWMProtocols.3.gz +man/man3/XSetWMSizeHints.3.gz +man/man3/XShrinkRegion.3.gz +man/man3/XSizeHints.3.gz +man/man3/XStandardColormap.3.gz +man/man3/XStoreBuffer.3.gz +man/man3/XStoreBytes.3.gz +man/man3/XStoreColor.3.gz +man/man3/XStoreColors.3.gz +man/man3/XStoreName.3.gz +man/man3/XStoreNamedColor.3.gz +man/man3/XStringListToTextProperty.3.gz +man/man3/XStringToKeysym.3.gz +man/man3/XSubImage.3.gz +man/man3/XSubtractRegion.3.gz +man/man3/XSupportsLocale.3.gz +man/man3/XSync.3.gz +man/man3/XSynchronize.3.gz +man/man3/XTextExtents.3.gz +man/man3/XTextExtents16.3.gz +man/man3/XTextItem.3.gz +man/man3/XTextItem16.3.gz +man/man3/XTextProperty.3.gz +man/man3/XTextPropertyToStringList.3.gz +man/man3/XTextWidth.3.gz +man/man3/XTextWidth16.3.gz +man/man3/XTimeCoord.3.gz +man/man3/XTranslateCoordinates.3.gz +man/man3/XUndefineCursor.3.gz +man/man3/XUngrabButton.3.gz +man/man3/XUngrabKey.3.gz +man/man3/XUngrabKeyboard.3.gz +man/man3/XUngrabPointer.3.gz +man/man3/XUngrabServer.3.gz +man/man3/XUninstallColormap.3.gz +man/man3/XUnionRectWithRegion.3.gz +man/man3/XUnionRegion.3.gz +man/man3/XUniqueContext.3.gz +man/man3/XUnloadFont.3.gz +man/man3/XUnlockDisplay.3.gz +man/man3/XUnmapEvent.3.gz +man/man3/XUnmapSubwindows.3.gz +man/man3/XUnmapWindow.3.gz +man/man3/XUnregisterIMInstantiateCallback.3.gz +man/man3/XUnsetICFocus.3.gz +man/man3/Xutf8DrawImageString.3.gz +man/man3/Xutf8DrawString.3.gz +man/man3/Xutf8DrawText.3.gz +man/man3/Xutf8LookupString.3.gz +man/man3/Xutf8ResetIC.3.gz +man/man3/Xutf8SetWMProperties.3.gz +man/man3/Xutf8TextEscapement.3.gz +man/man3/Xutf8TextExtents.3.gz +man/man3/Xutf8TextListToTextProperty.3.gz +man/man3/Xutf8TextPerCharExtents.3.gz +man/man3/Xutf8TextPropertyToTextList.3.gz +man/man3/XVaCreateNestedList.3.gz +man/man3/XVisibilityEvent.3.gz +man/man3/XVisualIDFromVisual.3.gz +man/man3/XVisualInfo.3.gz +man/man3/XWarpPointer.3.gz +man/man3/XwcDrawImageString.3.gz +man/man3/XwcDrawString.3.gz +man/man3/XwcDrawText.3.gz +man/man3/XwcFreeStringList.3.gz +man/man3/XwcLookupString.3.gz +man/man3/XwcResetIC.3.gz +man/man3/XwcTextEscapement.3.gz +man/man3/XwcTextExtents.3.gz +man/man3/XwcTextListToTextProperty.3.gz +man/man3/XwcTextPerCharExtents.3.gz +man/man3/XwcTextPropertyToTextList.3.gz +man/man3/XWindowAttributes.3.gz +man/man3/XWindowChanges.3.gz +man/man3/XWindowEvent.3.gz +man/man3/XWithdrawWindow.3.gz +man/man3/XWMGeometry.3.gz +man/man3/XWMHints.3.gz +man/man3/XWriteBitmapFile.3.gz +man/man3/XXorRegion.3.gz +man/man5/Compose.5.gz +man/man5/XCompose.5.gz +share/X11/locale/am_ET.UTF-8/Compose +share/X11/locale/am_ET.UTF-8/XI18N_OBJS +share/X11/locale/am_ET.UTF-8/XLC_LOCALE +share/X11/locale/armscii-8/Compose +share/X11/locale/armscii-8/XI18N_OBJS +share/X11/locale/armscii-8/XLC_LOCALE +share/X11/locale/C/Compose +share/X11/locale/C/XI18N_OBJS +share/X11/locale/C/XLC_LOCALE +share/X11/locale/compose.dir +share/X11/locale/cs_CZ.UTF-8/Compose +share/X11/locale/cs_CZ.UTF-8/XI18N_OBJS +share/X11/locale/cs_CZ.UTF-8/XLC_LOCALE +share/X11/locale/el_GR.UTF-8/Compose +share/X11/locale/el_GR.UTF-8/XI18N_OBJS +share/X11/locale/el_GR.UTF-8/XLC_LOCALE +share/X11/locale/en_US.UTF-8/Compose +share/X11/locale/en_US.UTF-8/XI18N_OBJS +share/X11/locale/en_US.UTF-8/XLC_LOCALE +share/X11/locale/fi_FI.UTF-8/Compose +share/X11/locale/fi_FI.UTF-8/XI18N_OBJS +share/X11/locale/fi_FI.UTF-8/XLC_LOCALE +share/X11/locale/georgian-academy/Compose +share/X11/locale/georgian-academy/XI18N_OBJS +share/X11/locale/georgian-academy/XLC_LOCALE +share/X11/locale/georgian-ps/Compose +share/X11/locale/georgian-ps/XI18N_OBJS +share/X11/locale/georgian-ps/XLC_LOCALE +share/X11/locale/ibm-cp1133/Compose +share/X11/locale/ibm-cp1133/XI18N_OBJS +share/X11/locale/ibm-cp1133/XLC_LOCALE +share/X11/locale/iscii-dev/Compose +share/X11/locale/iscii-dev/XI18N_OBJS +share/X11/locale/iscii-dev/XLC_LOCALE +share/X11/locale/isiri-3342/Compose +share/X11/locale/isiri-3342/XI18N_OBJS +share/X11/locale/isiri-3342/XLC_LOCALE +share/X11/locale/iso8859-1/Compose +share/X11/locale/iso8859-1/XI18N_OBJS +share/X11/locale/iso8859-1/XLC_LOCALE +share/X11/locale/iso8859-10/Compose +share/X11/locale/iso8859-10/XI18N_OBJS +share/X11/locale/iso8859-10/XLC_LOCALE +share/X11/locale/iso8859-11/Compose +share/X11/locale/iso8859-11/XI18N_OBJS +share/X11/locale/iso8859-11/XLC_LOCALE +share/X11/locale/iso8859-13/Compose +share/X11/locale/iso8859-13/XI18N_OBJS +share/X11/locale/iso8859-13/XLC_LOCALE +share/X11/locale/iso8859-14/Compose +share/X11/locale/iso8859-14/XI18N_OBJS +share/X11/locale/iso8859-14/XLC_LOCALE +share/X11/locale/iso8859-15/Compose +share/X11/locale/iso8859-15/XI18N_OBJS +share/X11/locale/iso8859-15/XLC_LOCALE +share/X11/locale/iso8859-2/Compose +share/X11/locale/iso8859-2/XI18N_OBJS +share/X11/locale/iso8859-2/XLC_LOCALE +share/X11/locale/iso8859-3/Compose +share/X11/locale/iso8859-3/XI18N_OBJS +share/X11/locale/iso8859-3/XLC_LOCALE +share/X11/locale/iso8859-4/Compose +share/X11/locale/iso8859-4/XI18N_OBJS +share/X11/locale/iso8859-4/XLC_LOCALE +share/X11/locale/iso8859-5/Compose +share/X11/locale/iso8859-5/XI18N_OBJS +share/X11/locale/iso8859-5/XLC_LOCALE +share/X11/locale/iso8859-6/Compose +share/X11/locale/iso8859-6/XI18N_OBJS +share/X11/locale/iso8859-6/XLC_LOCALE +share/X11/locale/iso8859-7/Compose +share/X11/locale/iso8859-7/XI18N_OBJS +share/X11/locale/iso8859-7/XLC_LOCALE +share/X11/locale/iso8859-8/Compose +share/X11/locale/iso8859-8/XI18N_OBJS +share/X11/locale/iso8859-8/XLC_LOCALE +share/X11/locale/iso8859-9/Compose +share/X11/locale/iso8859-9/XI18N_OBJS +share/X11/locale/iso8859-9/XLC_LOCALE +share/X11/locale/iso8859-9e/Compose +share/X11/locale/iso8859-9e/XI18N_OBJS +share/X11/locale/iso8859-9e/XLC_LOCALE +share/X11/locale/ja_JP.UTF-8/Compose +share/X11/locale/ja_JP.UTF-8/XI18N_OBJS +share/X11/locale/ja_JP.UTF-8/XLC_LOCALE +share/X11/locale/ja.JIS/Compose +share/X11/locale/ja.JIS/XI18N_OBJS +share/X11/locale/ja.JIS/XLC_LOCALE +share/X11/locale/ja.SJIS/Compose +share/X11/locale/ja.SJIS/XI18N_OBJS +share/X11/locale/ja.SJIS/XLC_LOCALE +share/X11/locale/ja/Compose +share/X11/locale/ja/XI18N_OBJS +share/X11/locale/ja/XLC_LOCALE +share/X11/locale/km_KH.UTF-8/Compose +share/X11/locale/km_KH.UTF-8/XI18N_OBJS +share/X11/locale/km_KH.UTF-8/XLC_LOCALE +share/X11/locale/ko_KR.UTF-8/Compose +share/X11/locale/ko_KR.UTF-8/XI18N_OBJS +share/X11/locale/ko_KR.UTF-8/XLC_LOCALE +share/X11/locale/ko/Compose +share/X11/locale/ko/XI18N_OBJS +share/X11/locale/ko/XLC_LOCALE +share/X11/locale/koi8-c/Compose +share/X11/locale/koi8-c/XI18N_OBJS +share/X11/locale/koi8-c/XLC_LOCALE +share/X11/locale/koi8-r/Compose +share/X11/locale/koi8-r/XI18N_OBJS +share/X11/locale/koi8-r/XLC_LOCALE +share/X11/locale/koi8-u/Compose +share/X11/locale/koi8-u/XI18N_OBJS +share/X11/locale/koi8-u/XLC_LOCALE +share/X11/locale/locale.alias +share/X11/locale/locale.dir +share/X11/locale/microsoft-cp1251/Compose +share/X11/locale/microsoft-cp1251/XI18N_OBJS +share/X11/locale/microsoft-cp1251/XLC_LOCALE +share/X11/locale/microsoft-cp1255/Compose +share/X11/locale/microsoft-cp1255/XI18N_OBJS +share/X11/locale/microsoft-cp1255/XLC_LOCALE +share/X11/locale/microsoft-cp1256/Compose +share/X11/locale/microsoft-cp1256/XI18N_OBJS +share/X11/locale/microsoft-cp1256/XLC_LOCALE +share/X11/locale/mulelao-1/Compose +share/X11/locale/mulelao-1/XI18N_OBJS +share/X11/locale/mulelao-1/XLC_LOCALE +share/X11/locale/nokhchi-1/Compose +share/X11/locale/nokhchi-1/XI18N_OBJS +share/X11/locale/nokhchi-1/XLC_LOCALE +share/X11/locale/pt_BR.UTF-8/Compose +share/X11/locale/pt_BR.UTF-8/XI18N_OBJS +share/X11/locale/pt_BR.UTF-8/XLC_LOCALE +share/X11/locale/pt_PT.UTF-8/Compose +share/X11/locale/pt_PT.UTF-8/XI18N_OBJS +share/X11/locale/pt_PT.UTF-8/XLC_LOCALE +share/X11/locale/ru_RU.UTF-8/Compose +share/X11/locale/ru_RU.UTF-8/XI18N_OBJS +share/X11/locale/ru_RU.UTF-8/XLC_LOCALE +share/X11/locale/sr_CS.UTF-8/Compose +share/X11/locale/sr_CS.UTF-8/XI18N_OBJS +share/X11/locale/sr_CS.UTF-8/XLC_LOCALE +share/X11/locale/tatar-cyr/Compose +share/X11/locale/tatar-cyr/XI18N_OBJS +share/X11/locale/tatar-cyr/XLC_LOCALE +share/X11/locale/th_TH.UTF-8/Compose +share/X11/locale/th_TH.UTF-8/XI18N_OBJS +share/X11/locale/th_TH.UTF-8/XLC_LOCALE +share/X11/locale/th_TH/Compose +share/X11/locale/th_TH/XI18N_OBJS +share/X11/locale/th_TH/XLC_LOCALE +share/X11/locale/tscii-0/Compose +share/X11/locale/tscii-0/XI18N_OBJS +share/X11/locale/tscii-0/XLC_LOCALE +share/X11/locale/vi_VN.tcvn/Compose +share/X11/locale/vi_VN.tcvn/XI18N_OBJS +share/X11/locale/vi_VN.tcvn/XLC_LOCALE +share/X11/locale/vi_VN.viscii/Compose +share/X11/locale/vi_VN.viscii/XI18N_OBJS +share/X11/locale/vi_VN.viscii/XLC_LOCALE +share/X11/locale/zh_CN.gb18030/Compose +share/X11/locale/zh_CN.gb18030/XI18N_OBJS +share/X11/locale/zh_CN.gb18030/XLC_LOCALE +share/X11/locale/zh_CN.gbk/Compose +share/X11/locale/zh_CN.gbk/XI18N_OBJS +share/X11/locale/zh_CN.gbk/XLC_LOCALE +share/X11/locale/zh_CN.UTF-8/Compose +share/X11/locale/zh_CN.UTF-8/XI18N_OBJS +share/X11/locale/zh_CN.UTF-8/XLC_LOCALE +share/X11/locale/zh_CN/Compose +share/X11/locale/zh_CN/XI18N_OBJS +share/X11/locale/zh_CN/XLC_LOCALE +share/X11/locale/zh_HK.big5/Compose +share/X11/locale/zh_HK.big5/XI18N_OBJS +share/X11/locale/zh_HK.big5/XLC_LOCALE +share/X11/locale/zh_HK.big5hkscs/Compose +share/X11/locale/zh_HK.big5hkscs/XI18N_OBJS +share/X11/locale/zh_HK.big5hkscs/XLC_LOCALE +share/X11/locale/zh_HK.UTF-8/Compose +share/X11/locale/zh_HK.UTF-8/XI18N_OBJS +share/X11/locale/zh_HK.UTF-8/XLC_LOCALE +share/X11/locale/zh_TW.big5/Compose +share/X11/locale/zh_TW.big5/XI18N_OBJS +share/X11/locale/zh_TW.big5/XLC_LOCALE +share/X11/locale/zh_TW.UTF-8/Compose +share/X11/locale/zh_TW.UTF-8/XI18N_OBJS +share/X11/locale/zh_TW.UTF-8/XLC_LOCALE +share/X11/locale/zh_TW/Compose +share/X11/locale/zh_TW/XI18N_OBJS +share/X11/locale/zh_TW/XLC_LOCALE +share/X11/Xcms.txt +share/X11/XErrorDB +@dir include/X11 +@dir lib/X11/locale/common +@dir lib/X11/locale +@dir lib/X11 +@dir share/X11/locale/am_ET.UTF-8 +@dir share/X11/locale/armscii-8 +@dir share/X11/locale/C +@dir share/X11/locale/cs_CZ.UTF-8 +@dir share/X11/locale/el_GR.UTF-8 +@dir share/X11/locale/en_US.UTF-8 +@dir share/X11/locale/fi_FI.UTF-8 +@dir share/X11/locale/georgian-academy +@dir share/X11/locale/georgian-ps +@dir share/X11/locale/ibm-cp1133 +@dir share/X11/locale/iscii-dev +@dir share/X11/locale/isiri-3342 +@dir share/X11/locale/iso8859-1 +@dir share/X11/locale/iso8859-10 +@dir share/X11/locale/iso8859-11 +@dir share/X11/locale/iso8859-13 +@dir share/X11/locale/iso8859-14 +@dir share/X11/locale/iso8859-15 +@dir share/X11/locale/iso8859-2 +@dir share/X11/locale/iso8859-3 +@dir share/X11/locale/iso8859-4 +@dir share/X11/locale/iso8859-5 +@dir share/X11/locale/iso8859-6 +@dir share/X11/locale/iso8859-7 +@dir share/X11/locale/iso8859-8 +@dir share/X11/locale/iso8859-9 +@dir share/X11/locale/iso8859-9e +@dir share/X11/locale/ja +@dir share/X11/locale/ja_JP.UTF-8 +@dir share/X11/locale/ja.JIS +@dir share/X11/locale/ja.SJIS +@dir share/X11/locale/km_KH.UTF-8 +@dir share/X11/locale/ko +@dir share/X11/locale/ko_KR.UTF-8 +@dir share/X11/locale/koi8-c +@dir share/X11/locale/koi8-r +@dir share/X11/locale/koi8-u +@dir share/X11/locale/microsoft-cp1251 +@dir share/X11/locale/microsoft-cp1255 +@dir share/X11/locale/microsoft-cp1256 +@dir share/X11/locale/mulelao-1 +@dir share/X11/locale/nokhchi-1 +@dir share/X11/locale/pt_BR.UTF-8 +@dir share/X11/locale/pt_PT.UTF-8 +@dir share/X11/locale/ru_RU.UTF-8 +@dir share/X11/locale/sr_CS.UTF-8 +@dir share/X11/locale/tatar-cyr +@dir share/X11/locale/th_TH +@dir share/X11/locale/th_TH.UTF-8 +@dir share/X11/locale/tscii-0 +@dir share/X11/locale/vi_VN.tcvn +@dir share/X11/locale/vi_VN.viscii +@dir share/X11/locale/zh_CN +@dir share/X11/locale/zh_CN.gb18030 +@dir share/X11/locale/zh_CN.gbk +@dir share/X11/locale/zh_CN.UTF-8 +@dir share/X11/locale/zh_HK.big5 +@dir share/X11/locale/zh_HK.big5hkscs +@dir share/X11/locale/zh_HK.UTF-8 +@dir share/X11/locale/zh_TW +@dir share/X11/locale/zh_TW.big5 +@dir share/X11/locale/zh_TW.UTF-8 +@dir share/X11/locale +@dir share/X11 diff --git a/x11/libXau/Makefile b/x11/libXau/Makefile new file mode 100644 index 00000000..0a0f3c41 --- /dev/null +++ b/x11/libXau/Makefile @@ -0,0 +1,53 @@ +# +# $Id: Makefile 831 2007-08-24 11:11:18Z root $ +# $URL: file:///usr2/svn/ports5/x11/libXau/Makefile $ +# +PORTNAME= libXau +PORTVERSION= 1.0.0 +X11_CATEGORY= lib +MASTER_SITES+= ftp://ftp.x.org/pub/individual/${X11_CATEGORY}/ +CATEGORIES= x11 +DIST_SUBDIR= x11 + +MAINTAINER= onborodin@gmail.com +COMMENT= X.org X11R7 module + +BUILD_DEPENDS+= pkg-config:devel/pkg-config +BUILD_DEPENDS+= xproto>=0:xproto/xproto + +RUN_DEPENDS+= xproto>=0:xproto/xproto + +USE_X_PREFIX= yes +USES+= tar:bzip2 +USES+= gmake +GNU_CONFIGURE= yes + +CONFIGURE_ARGS+= --mandir=${PREFIX}/man +CPPFLAGS+= -I${LOCALBASE}/include +LDFLAGS+= -L${LOCALBASE}/lib + +PLIST_FILES+= man/man3/Xau.3.gz + + +PLIST_FILES+= man/man3/XauDisposeAuth.3.gz +PLIST_FILES+= man/man3/XauFileName.3.gz +PLIST_FILES+= man/man3/XauGetAuthByAddr.3.gz +PLIST_FILES+= man/man3/XauGetBestAuthByAddr.3.gz +PLIST_FILES+= man/man3/XauLockAuth.3.gz +PLIST_FILES+= man/man3/XauReadAuth.3.gz +PLIST_FILES+= man/man3/XauUnlockAuth.3.gz +PLIST_FILES+= man/man3/XauWriteAuth.3.gz + +post-stage: + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf Xau.3 XauDisposeAuth.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf Xau.3 XauFileName.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf Xau.3 XauGetAuthByAddr.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf Xau.3 XauGetBestAuthByAddr.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf Xau.3 XauLockAuth.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf Xau.3 XauReadAuth.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf Xau.3 XauUnlockAuth.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf Xau.3 XauWriteAuth.3 + cd ${STAGEDIR}/${PREFIX}/lib && ${LN} -sf libXau.so.? libXau.so + +.include +#EOF diff --git a/x11/libXau/distinfo b/x11/libXau/distinfo new file mode 100644 index 00000000..6f04037c --- /dev/null +++ b/x11/libXau/distinfo @@ -0,0 +1,2 @@ +SHA256 (x11/libXau-1.0.0.tar.bz2) = 71741bb6bcdb65ab6a9e5fd12647c6e6d355f2c239bd86e815ed325cecffce3b +SIZE (x11/libXau-1.0.0.tar.bz2) = 218003 diff --git a/x11/libXau/files/patch-x-ltmain.sh b/x11/libXau/files/patch-x-ltmain.sh new file mode 100644 index 00000000..0cf7bb54 --- /dev/null +++ b/x11/libXau/files/patch-x-ltmain.sh @@ -0,0 +1,25 @@ +--- ./ltmain.sh.orig 2005-12-21 08:57:56.000000000 +0200 ++++ ./ltmain.sh 2014-11-29 16:15:25.000000000 +0200 +@@ -2923,7 +2923,7 @@ + age="$number_minor" + revision="$number_revision" + ;; +- freebsd-aout|freebsd-elf|sunos) ++ freebsd*|sunos) + current="$number_major" + revision="$number_minor" + age="0" +@@ -2993,12 +2993,7 @@ + verstring="-compatibility_version $minor_current -current_version $minor_current.$revision" + ;; + +- freebsd-aout) +- major=".$current" +- versuffix=".$current.$revision"; +- ;; +- +- freebsd-elf) ++ freebsd*) + major=".$current" + versuffix=".$current"; + ;; diff --git a/x11/libXau/pkg-descr b/x11/libXau/pkg-descr new file mode 100644 index 00000000..71dbc12d --- /dev/null +++ b/x11/libXau/pkg-descr @@ -0,0 +1,20 @@ +X - a portable, network-transparent window system + +The X Window System is a network transparent window system which +runs on a wide range of computing and graphics machines. It should +be relatively straightforward to build the X.Org Foundation software +distribution on most ANSI C and POSIX compliant systems. Commercial +implementations are also available for a wide range of platforms. + +The X.Org Foundation requests that the following names be used when +referring to this software: + X + X Window System + X Version 11 + X Window System, Version 11 + X11 + +X Window System is a trademark of The Open Group. + +WWW: http://www.X.org + diff --git a/x11/libXau/pkg-plist b/x11/libXau/pkg-plist new file mode 100644 index 00000000..9a8c8e3c --- /dev/null +++ b/x11/libXau/pkg-plist @@ -0,0 +1,6 @@ +include/X11/Xauth.h +lib/libXau.a +lib/libXau.la +lib/libXau.so.6 +lib/libXau.so +lib/pkgconfig/xau.pc diff --git a/x11/libXdmcp/Makefile b/x11/libXdmcp/Makefile new file mode 100644 index 00000000..07a8e111 --- /dev/null +++ b/x11/libXdmcp/Makefile @@ -0,0 +1,31 @@ +# +# $Id: Makefile 831 2007-08-24 11:11:18Z root $ +# $URL: file:///usr2/svn/ports5/x11/libXdmcp/Makefile $ +# +PORTNAME= libXdmcp +PORTVERSION= 1.1.1 +X11_CATEGORY= lib +MASTER_SITES+= ftp://ftp.x.org/pub/individual/${X11_CATEGORY}/ +CATEGORIES= x11 +DIST_SUBDIR= x11 + +MAINTAINER= onborodin@gmail.com +COMMENT= X.org X11R7 module + +BUILD_DEPENDS+= pkg-config:devel/pkg-config +BUILD_DEPENDS+= xproto>=0:xproto/xproto +RUN_DEPENDS+= xproto>=0:xproto/xproto + +USE_X_PREFIX= yes +USES+= tar:bzip2 +USES+= gmake +GNU_CONFIGURE= yes + +CONFIGURE_ARGS+=--disable-docs --without-xmlto + +CONFIGURE_ARGS+= --mandir=${PREFIX}/man +CPPFLAGS+= -I${LOCALBASE}/include +LDFLAGS+= -L${LOCALBASE}/lib + +.include +#EOF diff --git a/x11/libXdmcp/distinfo b/x11/libXdmcp/distinfo new file mode 100644 index 00000000..995d763d --- /dev/null +++ b/x11/libXdmcp/distinfo @@ -0,0 +1,2 @@ +SHA256 (x11/libXdmcp-1.1.1.tar.bz2) = 9ace6d4230f9dce4ed090692f82f613253ada8f887b23b3d8ff3dd4e3a7c118e +SIZE (x11/libXdmcp-1.1.1.tar.bz2) = 310878 diff --git a/x11/libXdmcp/files/patch-x-ltmain.sh b/x11/libXdmcp/files/patch-x-ltmain.sh new file mode 100644 index 00000000..cbd0d082 --- /dev/null +++ b/x11/libXdmcp/files/patch-x-ltmain.sh @@ -0,0 +1,16 @@ +--- ./ltmain.sh.orig 2012-03-08 06:46:47.000000000 +0300 ++++ ./ltmain.sh 2014-11-29 16:22:55.000000000 +0200 +@@ -7393,12 +7393,7 @@ + verstring="-compatibility_version $minor_current -current_version $minor_current.$revision" + ;; + +- freebsd-aout) +- major=".$current" +- versuffix=".$current.$revision"; +- ;; +- +- freebsd-elf) ++ freebsd*) + major=".$current" + versuffix=".$current" + ;; diff --git a/x11/libXdmcp/pkg-descr b/x11/libXdmcp/pkg-descr new file mode 100644 index 00000000..71dbc12d --- /dev/null +++ b/x11/libXdmcp/pkg-descr @@ -0,0 +1,20 @@ +X - a portable, network-transparent window system + +The X Window System is a network transparent window system which +runs on a wide range of computing and graphics machines. It should +be relatively straightforward to build the X.Org Foundation software +distribution on most ANSI C and POSIX compliant systems. Commercial +implementations are also available for a wide range of platforms. + +The X.Org Foundation requests that the following names be used when +referring to this software: + X + X Window System + X Version 11 + X Window System, Version 11 + X11 + +X Window System is a trademark of The Open Group. + +WWW: http://www.X.org + diff --git a/x11/libXdmcp/pkg-plist b/x11/libXdmcp/pkg-plist new file mode 100644 index 00000000..83c1700d --- /dev/null +++ b/x11/libXdmcp/pkg-plist @@ -0,0 +1,6 @@ +include/X11/Xdmcp.h +lib/libXdmcp.a +lib/libXdmcp.la +lib/libXdmcp.so +lib/libXdmcp.so.6 +lib/pkgconfig/xdmcp.pc diff --git a/x11/libXext/Makefile b/x11/libXext/Makefile new file mode 100644 index 00000000..632a1b07 --- /dev/null +++ b/x11/libXext/Makefile @@ -0,0 +1,139 @@ +# +# $Id: Makefile 831 2007-08-24 11:11:18Z root $ +# $URL: file:///usr2/svn/ports5/x11/libXext/Makefile $ +# +PORTNAME= libXext +PORTVERSION= 1.3.3 +X11_CATEGORY= lib +MASTER_SITES+= ftp://ftp.x.org/pub/individual/${X11_CATEGORY}/ +CATEGORIES= x11 +DIST_SUBDIR= x11 + +MAINTAINER= onborodin@gmail.com +COMMENT= X.org X11R7 module + +BUILD_DEPENDS+= pkg-config:devel/pkg-config +#BUILD_DEPENDS+= xextproto>=0:xproto/xextproto +#BUILD_DEPENDS+= libX11>=0:x11/libX11 +#BUILD_DEPENDS+= libXau>=0:x11/libXau + +LIB_DEPENDS+= libX11.so:x11/libX11 +LIB_DEPENDS+= libXau.so:x11/libXau +LIB_DEPENDS+= libXdmcp.so:x11/libXdmcp + +RUN_DEPENDS+= xextproto>=0:xproto/xextproto + + +USES+= tar:bzip2 +USES+= gmake +GNU_CONFIGURE= yes +CONFIGURE_ARGS+= --mandir=${PREFIX}/man +CPPFLAGS+= -I${LOCALBASE}/include +LDFLAGS+= -L${LOCALBASE}/lib + +CONFIGURE_ARGS+=--disable-specs --without-xmlto + +PLIST_FILES+= man/man3/DBE.3.gz +PLIST_FILES+= man/man3/DPMSCapable.3.gz +PLIST_FILES+= man/man3/DPMSDisable.3.gz +PLIST_FILES+= man/man3/DPMSEnable.3.gz +PLIST_FILES+= man/man3/DPMSForceLevel.3.gz +PLIST_FILES+= man/man3/DPMSGetTimeouts.3.gz +PLIST_FILES+= man/man3/DPMSGetVersion.3.gz +PLIST_FILES+= man/man3/DPMSInfo.3.gz +PLIST_FILES+= man/man3/DPMSQueryExtension.3.gz +PLIST_FILES+= man/man3/DPMSSetTimeouts.3.gz +PLIST_FILES+= man/man3/XShape.3.gz +PLIST_FILES+= man/man3/XShm.3.gz +PLIST_FILES+= man/man3/XcupGetReservedColormapEntries.3.gz +PLIST_FILES+= man/man3/XcupQueryVersion.3.gz +PLIST_FILES+= man/man3/XcupStoreColors.3.gz +PLIST_FILES+= man/man3/XdbeAllocateBackBufferName.3.gz +PLIST_FILES+= man/man3/XdbeBeginIdiom.3.gz +PLIST_FILES+= man/man3/XdbeDeallocateBackBufferName.3.gz +PLIST_FILES+= man/man3/XdbeEndIdiom.3.gz +PLIST_FILES+= man/man3/XdbeFreeVisualInfo.3.gz +PLIST_FILES+= man/man3/XdbeGetBackBufferAttributes.3.gz +PLIST_FILES+= man/man3/XdbeGetVisualInfo.3.gz +PLIST_FILES+= man/man3/XdbeQueryExtension.3.gz +PLIST_FILES+= man/man3/XdbeSwapBuffers.3.gz +PLIST_FILES+= man/man3/Xevi.3.gz +PLIST_FILES+= man/man3/Xmbuf.3.gz + + + +PLIST_FILES+= man/man3/XShapeCombineMask.3.gz +PLIST_FILES+= man/man3/XShapeCombineRectangles.3.gz +PLIST_FILES+= man/man3/XShapeCombineRegion.3.gz +PLIST_FILES+= man/man3/XShapeCombineShape.3.gz +PLIST_FILES+= man/man3/XShapeGetRectangles.3.gz +PLIST_FILES+= man/man3/XShapeInputSelected.3.gz +PLIST_FILES+= man/man3/XShapeOffsetShape.3.gz +PLIST_FILES+= man/man3/XShapeQueryExtension.3.gz +PLIST_FILES+= man/man3/XShapeQueryExtents.3.gz +PLIST_FILES+= man/man3/XShapeQueryVersion.3.gz +PLIST_FILES+= man/man3/XShapeSelectInput.3.gz +PLIST_FILES+= man/man3/XShmAttach.3.gz +PLIST_FILES+= man/man3/XShmCreateImage.3.gz +PLIST_FILES+= man/man3/XShmCreatePixmap.3.gz +PLIST_FILES+= man/man3/XShmDetach.3.gz +PLIST_FILES+= man/man3/XShmGetEventBase.3.gz +PLIST_FILES+= man/man3/XShmGetImage.3.gz +PLIST_FILES+= man/man3/XShmPixmapFormat.3.gz +PLIST_FILES+= man/man3/XShmPutImage.3.gz +PLIST_FILES+= man/man3/XShmQueryExtension.3.gz +PLIST_FILES+= man/man3/XShmQueryVersion.3.gz +PLIST_FILES+= man/man3/XeviGetVisualInfo.3.gz +PLIST_FILES+= man/man3/XeviQueryExtension.3.gz +PLIST_FILES+= man/man3/XeviQueryVersion.3.gz +PLIST_FILES+= man/man3/XmbufChangeBufferAttributes.3.gz +PLIST_FILES+= man/man3/XmbufChangeWindowAttributes.3.gz +PLIST_FILES+= man/man3/XmbufCreateBuffers.3.gz +PLIST_FILES+= man/man3/XmbufCreateStereoWindow.3.gz +PLIST_FILES+= man/man3/XmbufDestroyBuffers.3.gz +PLIST_FILES+= man/man3/XmbufDisplayBuffers.3.gz +PLIST_FILES+= man/man3/XmbufGetBufferAttributes.3.gz +PLIST_FILES+= man/man3/XmbufGetScreenInfo.3.gz +PLIST_FILES+= man/man3/XmbufGetVersion.3.gz +PLIST_FILES+= man/man3/XmbufGetWindowAttributes.3.gz +PLIST_FILES+= man/man3/XmbufQueryExtension.3.gz + +post-stage: + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XShape.3 XShapeCombineMask.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XShape.3 XShapeCombineRectangles.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XShape.3 XShapeCombineRegion.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XShape.3 XShapeCombineShape.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XShape.3 XShapeGetRectangles.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XShape.3 XShapeInputSelected.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XShape.3 XShapeOffsetShape.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XShape.3 XShapeQueryExtension.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XShape.3 XShapeQueryExtents.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XShape.3 XShapeQueryVersion.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XShape.3 XShapeSelectInput.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XShm.3 XShmAttach.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XShm.3 XShmCreateImage.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XShm.3 XShmCreatePixmap.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XShm.3 XShmDetach.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XShm.3 XShmGetEventBase.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XShm.3 XShmGetImage.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XShm.3 XShmPixmapFormat.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XShm.3 XShmPutImage.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XShm.3 XShmQueryExtension.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XShm.3 XShmQueryVersion.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf Xevi.3 XeviGetVisualInfo.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf Xevi.3 XeviQueryExtension.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf Xevi.3 XeviQueryVersion.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf Xmbuf.3 XmbufChangeBufferAttributes.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf Xmbuf.3 XmbufChangeWindowAttributes.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf Xmbuf.3 XmbufCreateBuffers.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf Xmbuf.3 XmbufCreateStereoWindow.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf Xmbuf.3 XmbufDestroyBuffers.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf Xmbuf.3 XmbufDisplayBuffers.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf Xmbuf.3 XmbufGetBufferAttributes.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf Xmbuf.3 XmbufGetScreenInfo.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf Xmbuf.3 XmbufGetVersion.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf Xmbuf.3 XmbufGetWindowAttributes.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf Xmbuf.3 XmbufQueryExtension.3 + +.include +#EOF diff --git a/x11/libXext/distinfo b/x11/libXext/distinfo new file mode 100644 index 00000000..37b16001 --- /dev/null +++ b/x11/libXext/distinfo @@ -0,0 +1,2 @@ +SHA256 (x11/libXext-1.3.3.tar.bz2) = b518d4d332231f313371fdefac59e3776f4f0823bcb23cf7c7305bfb57b16e35 +SIZE (x11/libXext-1.3.3.tar.bz2) = 389523 diff --git a/x11/libXext/pkg-descr b/x11/libXext/pkg-descr new file mode 100644 index 00000000..71dbc12d --- /dev/null +++ b/x11/libXext/pkg-descr @@ -0,0 +1,20 @@ +X - a portable, network-transparent window system + +The X Window System is a network transparent window system which +runs on a wide range of computing and graphics machines. It should +be relatively straightforward to build the X.Org Foundation software +distribution on most ANSI C and POSIX compliant systems. Commercial +implementations are also available for a wide range of platforms. + +The X.Org Foundation requests that the following names be used when +referring to this software: + X + X Window System + X Version 11 + X Window System, Version 11 + X11 + +X Window System is a trademark of The Open Group. + +WWW: http://www.X.org + diff --git a/x11/libXext/pkg-plist b/x11/libXext/pkg-plist new file mode 100644 index 00000000..79512acc --- /dev/null +++ b/x11/libXext/pkg-plist @@ -0,0 +1,21 @@ +include/X11/extensions/MITMisc.h +include/X11/extensions/XEVI.h +include/X11/extensions/XLbx.h +include/X11/extensions/XShm.h +include/X11/extensions/Xag.h +include/X11/extensions/Xcup.h +include/X11/extensions/Xdbe.h +include/X11/extensions/Xext.h +include/X11/extensions/Xge.h +include/X11/extensions/dpms.h +include/X11/extensions/extutil.h +include/X11/extensions/multibuf.h +include/X11/extensions/security.h +include/X11/extensions/shape.h +include/X11/extensions/sync.h +include/X11/extensions/xtestext1.h +lib/libXext.a +lib/libXext.la +lib/libXext.so +lib/libXext.so.6 +lib/pkgconfig/xext.pc diff --git a/x11/libXpm/Makefile b/x11/libXpm/Makefile new file mode 100644 index 00000000..18f61ff1 --- /dev/null +++ b/x11/libXpm/Makefile @@ -0,0 +1,44 @@ +# +# $Id: Makefile 831 2007-08-24 11:11:18Z root $ +# $URL: file:///usr2/svn/ports5/x11/libXpm/Makefile $ +# +PORTNAME= libXpm +PORTVERSION= 3.5.11 +X11_CATEGORY= lib +MASTER_SITES+= ftp://ftp.x.org/pub/individual/${X11_CATEGORY}/ +CATEGORIES= x11 +DIST_SUBDIR= x11 + +MAINTAINER= onborodin@gmail.com +COMMENT= X.org X11R7 module + +BUILD_DEPENDS+= pkg-config:devel/pkg-config + +BUILD_DEPENDS+= libX11>=0:x11/libX11 +BUILD_DEPENDS+= xproto>=0:xproto/xproto + +LIB_DEPENDS+= libintl.so:devel/gettext +LIB_DEPENDS+= libiconv.so:text/libiconv +LIB_DEPENDS+= libICE.so:x11/libICE +LIB_DEPENDS+= libSM.so:x11/libSM +LIB_DEPENDS+= libX11.so:x11/libX11 +LIB_DEPENDS+= libXau.so:x11/libXau +LIB_DEPENDS+= libXdmcp.so:x11/libXdmcp +LIB_DEPENDS+= libXext.so:x11/libXext +LIB_DEPENDS+= libXt.so:x11/libXt + + +USE_X_PREFIX= yes +USES+= tar:bzip2 +USES+= gmake +GNU_CONFIGURE= yes + +CONFIGURE_ARGS+= --mandir=${PREFIX}/man +CPPFLAGS+= -I${LOCALBASE}/include +LDFLAGS+= -L${LOCALBASE}/lib + +PLIST_FILES+= man/man1/cxpm.1.gz +PLIST_FILES+= man/man1/sxpm.1.gz + +.include +#EOF diff --git a/x11/libXpm/distinfo b/x11/libXpm/distinfo new file mode 100644 index 00000000..bc98a955 --- /dev/null +++ b/x11/libXpm/distinfo @@ -0,0 +1,2 @@ +SHA256 (x11/libXpm-3.5.11.tar.bz2) = c5bdafa51d1ae30086fac01ab83be8d47fe117b238d3437f8e965434090e041c +SIZE (x11/libXpm-3.5.11.tar.bz2) = 443496 diff --git a/x11/libXpm/pkg-descr b/x11/libXpm/pkg-descr new file mode 100644 index 00000000..71dbc12d --- /dev/null +++ b/x11/libXpm/pkg-descr @@ -0,0 +1,20 @@ +X - a portable, network-transparent window system + +The X Window System is a network transparent window system which +runs on a wide range of computing and graphics machines. It should +be relatively straightforward to build the X.Org Foundation software +distribution on most ANSI C and POSIX compliant systems. Commercial +implementations are also available for a wide range of platforms. + +The X.Org Foundation requests that the following names be used when +referring to this software: + X + X Window System + X Version 11 + X Window System, Version 11 + X11 + +X Window System is a trademark of The Open Group. + +WWW: http://www.X.org + diff --git a/x11/libXpm/pkg-plist b/x11/libXpm/pkg-plist new file mode 100644 index 00000000..ed820ff9 --- /dev/null +++ b/x11/libXpm/pkg-plist @@ -0,0 +1,8 @@ +bin/cxpm +bin/sxpm +include/X11/xpm.h +lib/libXpm.a +lib/libXpm.la +lib/libXpm.so +lib/libXpm.so.4 +lib/pkgconfig/xpm.pc diff --git a/x11/libXt/Makefile b/x11/libXt/Makefile new file mode 100644 index 00000000..c0c050cb --- /dev/null +++ b/x11/libXt/Makefile @@ -0,0 +1,473 @@ +# +# $Id: Makefile 831 2007-08-24 11:11:18Z root $ +# $URL: file:///usr2/svn/ports5/x11/libXt/Makefile $ +# +PORTNAME= libXt +PORTVERSION= 1.1.4 +X11_CATEGORY= lib +MASTER_SITES+= ftp://ftp.x.org/pub/individual/${X11_CATEGORY}/ +CATEGORIES= x11 +DIST_SUBDIR= x11 + +MAINTAINER= onborodin@gmail.com +COMMENT= X.org X11R7 module + +BUILD_DEPENDS+= pkg-config:devel/pkg-config +BUILD_DEPENDS+= xproto>=0:xproto/xproto +BUILD_DEPENDS+= libX11>=0:x11/libX11 +BUILD_DEPENDS+= libSM>=0:x11/libSM + +LIB_DEPENDS+= libICE.so:x11/libICE +LIB_DEPENDS+= libSM.so:x11/libSM +LIB_DEPENDS+= libX11.so:x11/libX11 +LIB_DEPENDS+= libXau.so:x11/libXau +LIB_DEPENDS+= libXdmcp.so:x11/libXdmcp + +USE_X_PREFIX= yes +USES+= tar:bzip2 +USES+= gmake +GNU_CONFIGURE= yes + +CONFIGURE_ARGS+= --mandir=${PREFIX}/man +CPPFLAGS+= -I${LOCALBASE}/include +LDFLAGS+= -L${LOCALBASE}/lib +CONFIGURE_ARGS+= --disable-docs +CONFIGURE_ARGS+= --disable-specs + + +PLIST_FILES+= man/man3/XtAsprintf.3.gz + +PLIST_FILES+= man/man3/XtAddActions.3.gz +PLIST_FILES+= man/man3/XtAddCallback.3.gz +PLIST_FILES+= man/man3/XtAddEventHandler.3.gz +PLIST_FILES+= man/man3/XtAddExposureToRegion.3.gz +PLIST_FILES+= man/man3/XtAddGrab.3.gz +PLIST_FILES+= man/man3/XtAddInput.3.gz +PLIST_FILES+= man/man3/XtAllocateGC.3.gz +PLIST_FILES+= man/man3/XtAppAddActionHook.3.gz +PLIST_FILES+= man/man3/XtAppAddActions.3.gz +PLIST_FILES+= man/man3/XtAppAddBlockHook.3.gz +PLIST_FILES+= man/man3/XtAppAddConverter.3.gz +PLIST_FILES+= man/man3/XtAppAddInput.3.gz +PLIST_FILES+= man/man3/XtAppAddSignal.3.gz +PLIST_FILES+= man/man3/XtAppAddTimeOut.3.gz +PLIST_FILES+= man/man3/XtAppAddWorkProc.3.gz +PLIST_FILES+= man/man3/XtAppCreateShell.3.gz +PLIST_FILES+= man/man3/XtAppError.3.gz +PLIST_FILES+= man/man3/XtAppErrorMsg.3.gz +PLIST_FILES+= man/man3/XtAppGetErrorDatabase.3.gz +PLIST_FILES+= man/man3/XtAppGetSelectionTimeout.3.gz +PLIST_FILES+= man/man3/XtAppInitialize.3.gz +PLIST_FILES+= man/man3/XtAppLock.3.gz +PLIST_FILES+= man/man3/XtAppNextEvent.3.gz +PLIST_FILES+= man/man3/XtAppReleaseCacheRefs.3.gz +PLIST_FILES+= man/man3/XtAppSetExitFlag.3.gz +PLIST_FILES+= man/man3/XtAppSetFallbackResources.3.gz +PLIST_FILES+= man/man3/XtAppSetTypeConverter.3.gz +PLIST_FILES+= man/man3/XtBuildEventMask.3.gz +PLIST_FILES+= man/man3/XtCallAcceptFocus.3.gz +PLIST_FILES+= man/man3/XtCallActionProc.3.gz +PLIST_FILES+= man/man3/XtCallCallbacks.3.gz +PLIST_FILES+= man/man3/XtClass.3.gz +PLIST_FILES+= man/man3/XtConfigureWidget.3.gz +PLIST_FILES+= man/man3/XtConvert.3.gz +PLIST_FILES+= man/man3/XtConvertAndStore.3.gz +PLIST_FILES+= man/man3/XtCreateApplicationContext.3.gz +PLIST_FILES+= man/man3/XtCreateApplicationShell.3.gz +PLIST_FILES+= man/man3/XtCreatePopupShell.3.gz +PLIST_FILES+= man/man3/XtCreateSelectionRequest.3.gz +PLIST_FILES+= man/man3/XtCreateWidget.3.gz +PLIST_FILES+= man/man3/XtCreateWindow.3.gz +PLIST_FILES+= man/man3/XtDisplay.3.gz +PLIST_FILES+= man/man3/XtDisplayInitialize.3.gz +PLIST_FILES+= man/man3/XtDisplayStringConversionWarning.3.gz +PLIST_FILES+= man/man3/XtDisplayToApplicationContext.3.gz +PLIST_FILES+= man/man3/XtError.3.gz +PLIST_FILES+= man/man3/XtErrorMsg.3.gz +PLIST_FILES+= man/man3/XtFindFile.3.gz +PLIST_FILES+= man/man3/XtGetActionKeysym.3.gz +PLIST_FILES+= man/man3/XtGetActionList.3.gz +PLIST_FILES+= man/man3/XtGetApplicationNameAndClass.3.gz +PLIST_FILES+= man/man3/XtGetApplicationResources.3.gz +PLIST_FILES+= man/man3/XtGetClassExtension.3.gz +PLIST_FILES+= man/man3/XtGetDisplays.3.gz +PLIST_FILES+= man/man3/XtGetErrorDatabase.3.gz +PLIST_FILES+= man/man3/XtGetGC.3.gz +PLIST_FILES+= man/man3/XtGetKeyboardFocusWidget.3.gz +PLIST_FILES+= man/man3/XtGetKeysymTable.3.gz +PLIST_FILES+= man/man3/XtGetResourceList.3.gz +PLIST_FILES+= man/man3/XtGetSelectionParameters.3.gz +PLIST_FILES+= man/man3/XtGetSelectionRequest.3.gz +PLIST_FILES+= man/man3/XtGetSelectionTimeout.3.gz +PLIST_FILES+= man/man3/XtGetSelectionValue.3.gz +PLIST_FILES+= man/man3/XtGetSelectionValueIncremental.3.gz +PLIST_FILES+= man/man3/XtGetSubresources.3.gz +PLIST_FILES+= man/man3/XtGrabKey.3.gz +PLIST_FILES+= man/man3/XtHooksOfDisplay.3.gz +PLIST_FILES+= man/man3/XtInitialize.3.gz +PLIST_FILES+= man/man3/XtInitializeWidgetClass.3.gz +PLIST_FILES+= man/man3/XtInsertEventTypeHandler.3.gz +PLIST_FILES+= man/man3/XtLastEventProcessed.3.gz +PLIST_FILES+= man/man3/XtMakeGeometryRequest.3.gz +PLIST_FILES+= man/man3/XtMalloc.3.gz +PLIST_FILES+= man/man3/XtManageChildren.3.gz +PLIST_FILES+= man/man3/XtMapWidget.3.gz +PLIST_FILES+= man/man3/XtName.3.gz +PLIST_FILES+= man/man3/XtNameToWidget.3.gz +PLIST_FILES+= man/man3/XtNextEvent.3.gz +PLIST_FILES+= man/man3/XtOffset.3.gz +PLIST_FILES+= man/man3/XtOpenApplication.3.gz +PLIST_FILES+= man/man3/XtOwnSelection.3.gz +PLIST_FILES+= man/man3/XtParent.3.gz +PLIST_FILES+= man/man3/XtParseAcceleratorTable.3.gz +PLIST_FILES+= man/man3/XtParseTranslationTable.3.gz +PLIST_FILES+= man/man3/XtPopdown.3.gz +PLIST_FILES+= man/man3/XtPopup.3.gz +PLIST_FILES+= man/man3/XtProcessLock.3.gz +PLIST_FILES+= man/man3/XtQueryGeometry.3.gz +PLIST_FILES+= man/man3/XtRealizeWidget.3.gz +PLIST_FILES+= man/man3/XtRegisterDrawable.3.gz +PLIST_FILES+= man/man3/XtRegisterGrabAction.3.gz +PLIST_FILES+= man/man3/XtReservePropertyAtom.3.gz +PLIST_FILES+= man/man3/XtResolvePathname.3.gz +PLIST_FILES+= man/man3/XtSessionGetToken.3.gz +PLIST_FILES+= man/man3/XtSetArg.3.gz +PLIST_FILES+= man/man3/XtSetKeyTranslator.3.gz +PLIST_FILES+= man/man3/XtSetKeyboardFocus.3.gz +PLIST_FILES+= man/man3/XtSetLanguageProc.3.gz +PLIST_FILES+= man/man3/XtSetMultiClickTime.3.gz +PLIST_FILES+= man/man3/XtSetSelectionParameters.3.gz +PLIST_FILES+= man/man3/XtSetSensitive.3.gz +PLIST_FILES+= man/man3/XtSetValues.3.gz +PLIST_FILES+= man/man3/XtSetWMColormapWindows.3.gz +PLIST_FILES+= man/man3/XtStringConversionWarning.3.gz +PLIST_FILES+= man/man3/XtToolkitThreadInitialize.3.gz +PLIST_FILES+= man/man3/XtTranslateCoords.3.gz +PLIST_FILES+= man/man3/XtVaCreateArgsList.3.gz + + +PLIST_FILES+= man/man3/XtAddCallbacks.3.gz +PLIST_FILES+= man/man3/XtRemoveAllCallbacks.3.gz +PLIST_FILES+= man/man3/XtRemoveCallback.3.gz +PLIST_FILES+= man/man3/XtRemoveCallbacks.3.gz +PLIST_FILES+= man/man3/XtAddRawEventHandler.3.gz +PLIST_FILES+= man/man3/XtInsertEventHandler.3.gz +PLIST_FILES+= man/man3/XtInsertRawEventHandler.3.gz +PLIST_FILES+= man/man3/XtRemoveEventHandler.3.gz +PLIST_FILES+= man/man3/XtRemoveRawEventHandler.3.gz +PLIST_FILES+= man/man3/XtRemoveGrab.3.gz +PLIST_FILES+= man/man3/XtAddTimeOut.3.gz +PLIST_FILES+= man/man3/XtAddWorkProc.3.gz +PLIST_FILES+= man/man3/XtRemoveActionHook.3.gz +PLIST_FILES+= man/man3/XtRemoveBlockHook.3.gz +PLIST_FILES+= man/man3/XtAddConverter.3.gz +PLIST_FILES+= man/man3/XtRemoveInput.3.gz +PLIST_FILES+= man/man3/XtNoticeSignal.3.gz +PLIST_FILES+= man/man3/XtRemoveSignal.3.gz +PLIST_FILES+= man/man3/XtRemoveTimeOut.3.gz +PLIST_FILES+= man/man3/XtRemoveWorkProc.3.gz +PLIST_FILES+= man/man3/XtVaAppCreateShell.3.gz +PLIST_FILES+= man/man3/XtAppSetErrorHandler.3.gz +PLIST_FILES+= man/man3/XtAppSetWarningHandler.3.gz +PLIST_FILES+= man/man3/XtAppWarning.3.gz +PLIST_FILES+= man/man3/XtAppSetErrorMsgHandler.3.gz +PLIST_FILES+= man/man3/XtAppSetWarningMsgHandler.3.gz +PLIST_FILES+= man/man3/XtAppWarningMsg.3.gz +PLIST_FILES+= man/man3/XtAppGetErrorDatabaseText.3.gz +PLIST_FILES+= man/man3/XtAppSetSelectionTimeout.3.gz +PLIST_FILES+= man/man3/XtVaAppInitialize.3.gz +PLIST_FILES+= man/man3/XtAppUnlock.3.gz +PLIST_FILES+= man/man3/XtAppMainLoop.3.gz +PLIST_FILES+= man/man3/XtAppPeekEvent.3.gz +PLIST_FILES+= man/man3/XtAppPending.3.gz +PLIST_FILES+= man/man3/XtAppProcessEvent.3.gz +PLIST_FILES+= man/man3/XtDispatchEvent.3.gz +PLIST_FILES+= man/man3/XtAppGetExitFlag.3.gz +PLIST_FILES+= man/man3/XtSetTypeConverter.3.gz +PLIST_FILES+= man/man3/XtCallCallbackList.3.gz +PLIST_FILES+= man/man3/XtHasCallbacks.3.gz +PLIST_FILES+= man/man3/XtCheckSubclass.3.gz +PLIST_FILES+= man/man3/XtIsApplicationShell.3.gz +PLIST_FILES+= man/man3/XtIsComposite.3.gz +PLIST_FILES+= man/man3/XtIsConstraint.3.gz +PLIST_FILES+= man/man3/XtIsObject.3.gz +PLIST_FILES+= man/man3/XtIsOverrideShell.3.gz +PLIST_FILES+= man/man3/XtIsRectObj.3.gz +PLIST_FILES+= man/man3/XtIsSessionShell.3.gz +PLIST_FILES+= man/man3/XtIsShell.3.gz +PLIST_FILES+= man/man3/XtIsSubclass.3.gz +PLIST_FILES+= man/man3/XtIsTopLevelShell.3.gz +PLIST_FILES+= man/man3/XtIsTransientShell.3.gz +PLIST_FILES+= man/man3/XtIsVendorShell.3.gz +PLIST_FILES+= man/man3/XtIsWMShell.3.gz +PLIST_FILES+= man/man3/XtIsWidget.3.gz +PLIST_FILES+= man/man3/XtSuperclass.3.gz +PLIST_FILES+= man/man3/XtMoveWidget.3.gz +PLIST_FILES+= man/man3/XtResizeWidget.3.gz +PLIST_FILES+= man/man3/XtDirectConvert.3.gz +PLIST_FILES+= man/man3/XtCallConverter.3.gz +PLIST_FILES+= man/man3/XtDestroyApplicationContext.3.gz +PLIST_FILES+= man/man3/XtToolkitInitialize.3.gz +PLIST_FILES+= man/man3/XtWidgetToApplicationContext.3.gz +PLIST_FILES+= man/man3/XtVaCreatePopupShell.3.gz +PLIST_FILES+= man/man3/XtCancelSelectionRequest.3.gz +PLIST_FILES+= man/man3/XtSendSelectionRequest.3.gz +PLIST_FILES+= man/man3/XtCreateManagedWidget.3.gz +PLIST_FILES+= man/man3/XtDestroyWidget.3.gz +PLIST_FILES+= man/man3/XtVaCreateManagedWidget.3.gz +PLIST_FILES+= man/man3/XtVaCreateWidget.3.gz +PLIST_FILES+= man/man3/XtDisplayOfObject.3.gz +PLIST_FILES+= man/man3/XtScreen.3.gz +PLIST_FILES+= man/man3/XtScreenOfObject.3.gz +PLIST_FILES+= man/man3/XtWindow.3.gz +PLIST_FILES+= man/man3/XtWindowOfObject.3.gz +PLIST_FILES+= man/man3/XtCloseDisplay.3.gz +PLIST_FILES+= man/man3/XtDatabase.3.gz +PLIST_FILES+= man/man3/XtOpenDisplay.3.gz +PLIST_FILES+= man/man3/XtScreenDatabase.3.gz +PLIST_FILES+= man/man3/XtSetErrorHandler.3.gz +PLIST_FILES+= man/man3/XtSetWarningHandler.3.gz +PLIST_FILES+= man/man3/XtWarning.3.gz +PLIST_FILES+= man/man3/XtSetErrorMsgHandler.3.gz +PLIST_FILES+= man/man3/XtSetWarningMsgHandler.3.gz +PLIST_FILES+= man/man3/XtWarningMsg.3.gz +PLIST_FILES+= man/man3/XtVaGetApplicationResources.3.gz +PLIST_FILES+= man/man3/XtGetErrorDatabaseText.3.gz +PLIST_FILES+= man/man3/XtReleaseGC.3.gz +PLIST_FILES+= man/man3/XtKeysymToKeycodeList.3.gz +PLIST_FILES+= man/man3/XtGetConstraintResourceList.3.gz +PLIST_FILES+= man/man3/XtSetSelectionTimeout.3.gz +PLIST_FILES+= man/man3/XtGetSelectionValues.3.gz +PLIST_FILES+= man/man3/XtGetSelectionValuesIncremental.3.gz +PLIST_FILES+= man/man3/XtVaGetSubresources.3.gz +PLIST_FILES+= man/man3/XtGrabButton.3.gz +PLIST_FILES+= man/man3/XtGrabKeyboard.3.gz +PLIST_FILES+= man/man3/XtGrabPointer.3.gz +PLIST_FILES+= man/man3/XtUngrabButton.3.gz +PLIST_FILES+= man/man3/XtUngrabKey.3.gz +PLIST_FILES+= man/man3/XtUngrabKeyboard.3.gz +PLIST_FILES+= man/man3/XtUngrabPointer.3.gz +PLIST_FILES+= man/man3/XtDispatchEventToWidget.3.gz +PLIST_FILES+= man/man3/XtRegisterExtensionSelector.3.gz +PLIST_FILES+= man/man3/XtRemoveEventTypeHandler.3.gz +PLIST_FILES+= man/man3/XtSetEventDispatcher.3.gz +PLIST_FILES+= man/man3/XtLastTimestampProcessed.3.gz +PLIST_FILES+= man/man3/XtMakeResizeRequest.3.gz +PLIST_FILES+= man/man3/XtCalloc.3.gz +PLIST_FILES+= man/man3/XtFree.3.gz +PLIST_FILES+= man/man3/XtNew.3.gz +PLIST_FILES+= man/man3/XtNewString.3.gz +PLIST_FILES+= man/man3/XtRealloc.3.gz +PLIST_FILES+= man/man3/XtChangeManagedSet.3.gz +PLIST_FILES+= man/man3/XtIsManaged.3.gz +PLIST_FILES+= man/man3/XtManageChild.3.gz +PLIST_FILES+= man/man3/XtUnmanageChild.3.gz +PLIST_FILES+= man/man3/XtUnmanageChildren.3.gz +PLIST_FILES+= man/man3/XtSetMappedWhenManaged.3.gz +PLIST_FILES+= man/man3/XtUnmapWidget.3.gz +PLIST_FILES+= man/man3/XtWindowToWidget.3.gz +PLIST_FILES+= man/man3/XtMainLoop.3.gz +PLIST_FILES+= man/man3/XtPeekEvent.3.gz +PLIST_FILES+= man/man3/XtPending.3.gz +PLIST_FILES+= man/man3/XtProcessEvent.3.gz +PLIST_FILES+= man/man3/XtNumber.3.gz +PLIST_FILES+= man/man3/XtOffsetOf.3.gz +PLIST_FILES+= man/man3/XtVaOpenApplication.3.gz +PLIST_FILES+= man/man3/XtDisownSelection.3.gz +PLIST_FILES+= man/man3/XtOwnSelectionIncremental.3.gz +PLIST_FILES+= man/man3/XtInstallAccelerators.3.gz +PLIST_FILES+= man/man3/XtInstallAllAccelerators.3.gz +PLIST_FILES+= man/man3/XtAugmentTranslations.3.gz +PLIST_FILES+= man/man3/XtOverrideTranslations.3.gz +PLIST_FILES+= man/man3/XtUninstallTranslations.3.gz +PLIST_FILES+= man/man3/MenuPopdown.3.gz +PLIST_FILES+= man/man3/XtCallbackPopdown.3.gz +PLIST_FILES+= man/man3/MenuPopup.3.gz +PLIST_FILES+= man/man3/XtCallbackExclusive.3.gz +PLIST_FILES+= man/man3/XtCallbackNone.3.gz +PLIST_FILES+= man/man3/XtCallbackNonexclusive.3.gz +PLIST_FILES+= man/man3/XtPopupSpringLoaded.3.gz +PLIST_FILES+= man/man3/XtProcessUnlock.3.gz +PLIST_FILES+= man/man3/XtIsRealized.3.gz +PLIST_FILES+= man/man3/XtUnrealizeWidget.3.gz +PLIST_FILES+= man/man3/XtUnregisterDrawable.3.gz +PLIST_FILES+= man/man3/XtReleasePropertyAtom.3.gz +PLIST_FILES+= man/man3/XtSessionReturnToken.3.gz +PLIST_FILES+= man/man3/XtMergeArgLists.3.gz +PLIST_FILES+= man/man3/XtConvertCase.3.gz +PLIST_FILES+= man/man3/XtRegisterCaseConverter.3.gz +PLIST_FILES+= man/man3/XtTranslateKeycode.3.gz +PLIST_FILES+= man/man3/XtGetMultiClickTime.3.gz +PLIST_FILES+= man/man3/XtIsSensitive.3.gz +PLIST_FILES+= man/man3/XtGetSubvalues.3.gz +PLIST_FILES+= man/man3/XtGetValues.3.gz +PLIST_FILES+= man/man3/XtSetSubvalues.3.gz +PLIST_FILES+= man/man3/XtVaGetSubvalues.3.gz +PLIST_FILES+= man/man3/XtVaGetValues.3.gz +PLIST_FILES+= man/man3/XtVaSetSubvalues.3.gz +PLIST_FILES+= man/man3/XtVaSetValues.3.gz + +post-stage: + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtAddCallback.3 XtAddCallbacks.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtAddCallback.3 XtRemoveAllCallbacks.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtAddCallback.3 XtRemoveCallback.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtAddCallback.3 XtRemoveCallbacks.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtAddEventHandler.3 XtAddRawEventHandler.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtAddEventHandler.3 XtInsertEventHandler.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtAddEventHandler.3 XtInsertRawEventHandler.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtAddEventHandler.3 XtRemoveEventHandler.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtAddEventHandler.3 XtRemoveRawEventHandler.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtAddGrab.3 XtRemoveGrab.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtAddInput.3 XtAddTimeOut.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtAddInput.3 XtAddWorkProc.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtAppAddActionHook.3 XtRemoveActionHook.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtAppAddBlockHook.3 XtRemoveBlockHook.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtAppAddConverter.3 XtAddConverter.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtAppAddInput.3 XtRemoveInput.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtAppAddSignal.3 XtNoticeSignal.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtAppAddSignal.3 XtRemoveSignal.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtAppAddTimeOut.3 XtRemoveTimeOut.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtAppAddWorkProc.3 XtRemoveWorkProc.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtAppCreateShell.3 XtVaAppCreateShell.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtAppError.3 XtAppSetErrorHandler.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtAppError.3 XtAppSetWarningHandler.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtAppError.3 XtAppWarning.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtAppErrorMsg.3 XtAppSetErrorMsgHandler.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtAppErrorMsg.3 XtAppSetWarningMsgHandler.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtAppErrorMsg.3 XtAppWarningMsg.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtAppGetErrorDatabase.3 XtAppGetErrorDatabaseText.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtAppGetSelectionTimeout.3 XtAppSetSelectionTimeout.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtAppInitialize.3 XtVaAppInitialize.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtAppLock.3 XtAppUnlock.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtAppNextEvent.3 XtAppMainLoop.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtAppNextEvent.3 XtAppPeekEvent.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtAppNextEvent.3 XtAppPending.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtAppNextEvent.3 XtAppProcessEvent.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtAppNextEvent.3 XtDispatchEvent.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtAppSetExitFlag.3 XtAppGetExitFlag.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtAppSetTypeConverter.3 XtSetTypeConverter.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtCallCallbacks.3 XtCallCallbackList.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtCallCallbacks.3 XtHasCallbacks.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtClass.3 XtCheckSubclass.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtClass.3 XtIsApplicationShell.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtClass.3 XtIsComposite.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtClass.3 XtIsConstraint.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtClass.3 XtIsObject.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtClass.3 XtIsOverrideShell.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtClass.3 XtIsRectObj.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtClass.3 XtIsSessionShell.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtClass.3 XtIsShell.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtClass.3 XtIsSubclass.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtClass.3 XtIsTopLevelShell.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtClass.3 XtIsTransientShell.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtClass.3 XtIsVendorShell.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtClass.3 XtIsWMShell.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtClass.3 XtIsWidget.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtClass.3 XtSuperclass.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtConfigureWidget.3 XtMoveWidget.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtConfigureWidget.3 XtResizeWidget.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtConvert.3 XtDirectConvert.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtConvertAndStore.3 XtCallConverter.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtCreateApplicationContext.3 XtDestroyApplicationContext.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtCreateApplicationContext.3 XtToolkitInitialize.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtCreateApplicationContext.3 XtWidgetToApplicationContext.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtCreatePopupShell.3 XtVaCreatePopupShell.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtCreateSelectionRequest.3 XtCancelSelectionRequest.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtCreateSelectionRequest.3 XtSendSelectionRequest.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtCreateWidget.3 XtCreateManagedWidget.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtCreateWidget.3 XtDestroyWidget.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtCreateWidget.3 XtVaCreateManagedWidget.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtCreateWidget.3 XtVaCreateWidget.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtDisplay.3 XtDisplayOfObject.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtDisplay.3 XtScreen.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtDisplay.3 XtScreenOfObject.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtDisplay.3 XtWindow.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtDisplay.3 XtWindowOfObject.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtDisplayInitialize.3 XtCloseDisplay.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtDisplayInitialize.3 XtDatabase.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtDisplayInitialize.3 XtOpenDisplay.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtDisplayInitialize.3 XtScreenDatabase.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtError.3 XtSetErrorHandler.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtError.3 XtSetWarningHandler.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtError.3 XtWarning.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtErrorMsg.3 XtSetErrorMsgHandler.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtErrorMsg.3 XtSetWarningMsgHandler.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtErrorMsg.3 XtWarningMsg.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtGetApplicationResources.3 XtVaGetApplicationResources.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtGetErrorDatabase.3 XtGetErrorDatabaseText.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtGetGC.3 XtReleaseGC.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtGetKeysymTable.3 XtKeysymToKeycodeList.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtGetResourceList.3 XtGetConstraintResourceList.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtGetSelectionTimeout.3 XtSetSelectionTimeout.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtGetSelectionValue.3 XtGetSelectionValues.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtGetSelectionValueIncremental.3 XtGetSelectionValuesIncremental.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtGetSubresources.3 XtVaGetSubresources.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtGrabKey.3 XtGrabButton.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtGrabKey.3 XtGrabKeyboard.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtGrabKey.3 XtGrabPointer.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtGrabKey.3 XtUngrabButton.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtGrabKey.3 XtUngrabKey.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtGrabKey.3 XtUngrabKeyboard.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtGrabKey.3 XtUngrabPointer.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtInsertEventTypeHandler.3 XtDispatchEventToWidget.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtInsertEventTypeHandler.3 XtRegisterExtensionSelector.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtInsertEventTypeHandler.3 XtRemoveEventTypeHandler.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtInsertEventTypeHandler.3 XtSetEventDispatcher.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtLastEventProcessed.3 XtLastTimestampProcessed.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtMakeGeometryRequest.3 XtMakeResizeRequest.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtMalloc.3 XtCalloc.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtMalloc.3 XtFree.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtMalloc.3 XtNew.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtMalloc.3 XtNewString.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtMalloc.3 XtRealloc.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtManageChildren.3 XtChangeManagedSet.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtManageChildren.3 XtIsManaged.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtManageChildren.3 XtManageChild.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtManageChildren.3 XtUnmanageChild.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtManageChildren.3 XtUnmanageChildren.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtMapWidget.3 XtSetMappedWhenManaged.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtMapWidget.3 XtUnmapWidget.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtNameToWidget.3 XtWindowToWidget.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtNextEvent.3 XtMainLoop.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtNextEvent.3 XtPeekEvent.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtNextEvent.3 XtPending.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtNextEvent.3 XtProcessEvent.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtOffset.3 XtNumber.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtOffset.3 XtOffsetOf.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtOpenApplication.3 XtVaOpenApplication.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtOwnSelection.3 XtDisownSelection.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtOwnSelection.3 XtOwnSelectionIncremental.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtParseAcceleratorTable.3 XtInstallAccelerators.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtParseAcceleratorTable.3 XtInstallAllAccelerators.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtParseTranslationTable.3 XtAugmentTranslations.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtParseTranslationTable.3 XtOverrideTranslations.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtParseTranslationTable.3 XtUninstallTranslations.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtPopdown.3 MenuPopdown.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtPopdown.3 XtCallbackPopdown.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtPopup.3 MenuPopup.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtPopup.3 XtCallbackExclusive.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtPopup.3 XtCallbackNone.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtPopup.3 XtCallbackNonexclusive.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtPopup.3 XtPopupSpringLoaded.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtProcessLock.3 XtProcessUnlock.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtRealizeWidget.3 XtIsRealized.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtRealizeWidget.3 XtUnrealizeWidget.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtRegisterDrawable.3 XtUnregisterDrawable.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtReservePropertyAtom.3 XtReleasePropertyAtom.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtSessionGetToken.3 XtSessionReturnToken.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtSetArg.3 XtMergeArgLists.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtSetKeyTranslator.3 XtConvertCase.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtSetKeyTranslator.3 XtRegisterCaseConverter.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtSetKeyTranslator.3 XtTranslateKeycode.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtSetMultiClickTime.3 XtGetMultiClickTime.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtSetSensitive.3 XtIsSensitive.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtSetValues.3 XtGetSubvalues.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtSetValues.3 XtGetValues.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtSetValues.3 XtSetSubvalues.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtSetValues.3 XtVaGetSubvalues.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtSetValues.3 XtVaGetValues.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtSetValues.3 XtVaSetSubvalues.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf XtSetValues.3 XtVaSetValues.3 + +.include +#EOF diff --git a/x11/libXt/distinfo b/x11/libXt/distinfo new file mode 100644 index 00000000..fd7258c8 --- /dev/null +++ b/x11/libXt/distinfo @@ -0,0 +1,2 @@ +SHA256 (x11/libXt-1.1.4.tar.bz2) = 843a97a988f5654872682a4120486d987d853a71651515472f55519ffae2dd57 +SIZE (x11/libXt-1.1.4.tar.bz2) = 762331 diff --git a/x11/libXt/pkg-descr b/x11/libXt/pkg-descr new file mode 100644 index 00000000..71dbc12d --- /dev/null +++ b/x11/libXt/pkg-descr @@ -0,0 +1,20 @@ +X - a portable, network-transparent window system + +The X Window System is a network transparent window system which +runs on a wide range of computing and graphics machines. It should +be relatively straightforward to build the X.Org Foundation software +distribution on most ANSI C and POSIX compliant systems. Commercial +implementations are also available for a wide range of platforms. + +The X.Org Foundation requests that the following names be used when +referring to this software: + X + X Window System + X Version 11 + X Window System, Version 11 + X11 + +X Window System is a trademark of The Open Group. + +WWW: http://www.X.org + diff --git a/x11/libXt/pkg-plist b/x11/libXt/pkg-plist new file mode 100644 index 00000000..92796187 --- /dev/null +++ b/x11/libXt/pkg-plist @@ -0,0 +1,38 @@ +include/X11/CallbackI.h +include/X11/Composite.h +include/X11/CompositeP.h +include/X11/ConstrainP.h +include/X11/Constraint.h +include/X11/ConvertI.h +include/X11/Core.h +include/X11/CoreP.h +include/X11/CreateI.h +include/X11/EventI.h +include/X11/HookObjI.h +include/X11/InitialI.h +include/X11/Intrinsic.h +include/X11/IntrinsicI.h +include/X11/IntrinsicP.h +include/X11/Object.h +include/X11/ObjectP.h +include/X11/PassivGraI.h +include/X11/RectObj.h +include/X11/RectObjP.h +include/X11/ResConfigP.h +include/X11/ResourceI.h +include/X11/SelectionI.h +include/X11/Shell.h +include/X11/ShellI.h +include/X11/ShellP.h +include/X11/StringDefs.h +include/X11/ThreadsI.h +include/X11/TranslateI.h +include/X11/VarargsI.h +include/X11/Vendor.h +include/X11/VendorP.h +include/X11/Xtos.h +lib/libXt.a +lib/libXt.la +lib/libXt.so +lib/libXt.so.6 +lib/pkgconfig/xt.pc diff --git a/x11/libfontconfig/Makefile b/x11/libfontconfig/Makefile new file mode 100644 index 00000000..648faa60 --- /dev/null +++ b/x11/libfontconfig/Makefile @@ -0,0 +1,49 @@ +# +# $Id: Makefile 2729 2009-12-14 09:19:08Z root $ +# $URL: file:///usr2/svn/ports5/x11/libfontconfig/Makefile $ +# +PORTNAME= fontconfig +PORTVERSION= 2.12.6 +MASTER_SITES+= http://www.fontconfig.org/release/ +MASTER_SITES+= http://www.freedesktop.org/software/fontconfig/release/ +MASTER_SITES+= http://fontconfig.org/release/ +CATEGORIES= x11 +PKGNAMEPREFIX= lib + +MAINTAINER= onborodin@gmail.com +COMMENT= Fontconfig is a library for font customization and configuration + +BUILD_DEPENDS+= gperf:devel/gperf + +BUILD_DEPENDS+= pkg-config:devel/pkg-config +LIB_DEPENDS+= libfreetype.so:graph/libfreetype2 +LIB_DEPENDS+= libpng.so:graph/libpng +LIB_DEPENDS+= libexpat.so:text/libexpat + + +USES+= gmake tar:bz2 +GNU_CONFIGURE= yes + +CFLAGS+= -I${LOCALBASE}/include +CONFIGURE_ENV+= LDFLAGS="-L${LOCALBASE}/lib" + +CONFIGURE_ARGS+= --mandir=${PREFIX}/man +CONFIGURE_ARGS+= --with-baseconfigdir=${PREFIX}/etc/fonts +CONFIGURE_ARGS+= --with-expat-includes=${LOCALBASE}/include +CONFIGURE_ARGS+= --with-expat-lib=${LOCALBASE}/lib +CONFIGURE_ARGS+= --with-default-fonts=${LOCALBASE}/share/fonts/X11 +CONFIGURE_ARGS+= --with-cache-dir=/var/cache/fontconfig + +CONFIGURE_ARGS+= --with-templatedir=${PREFIX}/etc/fonts/conf.avail + +CONFIGURE_ENV= HASDOCBOOK=no +MAKE_ENV= LC_ALL=C + +post-patch: + cd ${WRKSRC}/doc && ${REINPLACE_CMD} -e \ + "s!install-data-am:.*install-man!install-data-am: install-man!" \ + Makefile.in + ${REINPLACE_CMD} -e 's/libxml-2.0/libxml/g' ${WRKSRC}/configure + +.include +#EOF diff --git a/x11/libfontconfig/distinfo b/x11/libfontconfig/distinfo new file mode 100644 index 00000000..cc593700 --- /dev/null +++ b/x11/libfontconfig/distinfo @@ -0,0 +1,2 @@ +SHA256 (fontconfig-2.12.6.tar.bz2) = cf0c30807d08f6a28ab46c61b8dbd55c97d2f292cf88f3a07d3384687f31f017 +SIZE (fontconfig-2.12.6.tar.bz2) = 1624683 diff --git a/x11/libfontconfig/files/_patch-Makefile.in b/x11/libfontconfig/files/_patch-Makefile.in new file mode 100644 index 00000000..e992f819 --- /dev/null +++ b/x11/libfontconfig/files/_patch-Makefile.in @@ -0,0 +1,31 @@ +--- Makefile.in.orig 2016-08-05 05:49:13 UTC ++++ Makefile.in +@@ -1027,28 +1027,6 @@ fonts.conf: fonts.conf.in Makefile + mv $@.tmp $@ + + install-data-local: fonts.conf +- $(mkinstalldirs) $(DESTDIR)$(baseconfigdir) $(DESTDIR)$(fc_cachedir) +- if [ -f $(DESTDIR)$(baseconfigdir)/fonts.conf ]; then \ +- echo "backing up existing $(DESTDIR)$(baseconfigdir)/fonts.conf"; \ +- mv $(DESTDIR)$(baseconfigdir)/fonts.conf $(DESTDIR)$(baseconfigdir)/fonts.conf.bak; \ +- fi +- if [ -f $(srcdir)/fonts.conf ]; then \ +- echo " $(INSTALL_DATA) $(srcdir)/fonts.conf $(DESTDIR)$(baseconfigdir)/fonts.conf"; \ +- $(INSTALL_DATA) $(srcdir)/fonts.conf $(DESTDIR)$(baseconfigdir)/fonts.conf; \ +- else if [ -f fonts.conf ]; then \ +- echo " $(INSTALL_DATA) fonts.conf $(DESTDIR)$(baseconfigdir)/fonts.conf"; \ +- $(INSTALL_DATA) fonts.conf $(DESTDIR)$(baseconfigdir)/fonts.conf; \ +- fi; fi +- @(if $(RUN_FC_CACHE_TEST); then \ +- echo "fc-cache$(EXEEXT) -s -f -v"; \ +- fc-cache/fc-cache$(EXEEXT) -s -f -v; \ +- else \ +- echo "***"; \ +- echo "*** Warning: fonts.cache not built"; \ +- echo "***"; \ +- echo "*** Generate this file manually on host system using fc-cache"; \ +- echo "***"; \ +- fi) + + uninstall-local: + if [ -f $(srcdir)/fonts.conf ]; then \ diff --git a/x11/libfontconfig/files/patch-configure b/x11/libfontconfig/files/patch-configure new file mode 100644 index 00000000..cee01600 --- /dev/null +++ b/x11/libfontconfig/files/patch-configure @@ -0,0 +1,10 @@ +--- configure.orig 2016-08-05 05:49:14 UTC ++++ configure +@@ -654,6 +654,7 @@ ax_pthread_config + XMLDIR + CONFIGDIR + BASECONFIGDIR ++baseconfigdir + TEMPLATEDIR + FC_FONTDATE + FC_CACHEDIR diff --git a/x11/libfontconfig/files/patch-src__fccompat.c b/x11/libfontconfig/files/patch-src__fccompat.c new file mode 100644 index 00000000..d8937770 --- /dev/null +++ b/x11/libfontconfig/files/patch-src__fccompat.c @@ -0,0 +1,17 @@ +There is an undiagnosed ARMv6 core dump in this code +as discovered in FreeBSD Bug 183536 when using clang. +Removing this code from ARM builds resolves it. + +https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=183536 + +--- src/fccompat.c.orig 2016-07-11 02:41:06 UTC ++++ src/fccompat.c +@@ -191,7 +191,7 @@ FcRandom(void) + #else + random_r (&fcrandbuf, &result); + #endif +-#elif HAVE_RANDOM ++#elif HAVE_RANDOM && !defined(__arm__) + static char statebuf[256]; + char *state; + static FcBool initialized = FcFalse; diff --git a/x11/libfontconfig/files/patch-src_fcatomic.h b/x11/libfontconfig/files/patch-src_fcatomic.h new file mode 100644 index 00000000..c3927ff7 --- /dev/null +++ b/x11/libfontconfig/files/patch-src_fcatomic.h @@ -0,0 +1,20 @@ +--- src/fcatomic.h.orig 2016-07-11 02:41:06 UTC ++++ src/fcatomic.h +@@ -96,7 +96,17 @@ typedef int fc_atomic_int_t; + #define fc_atomic_int_add(AI, V) __sync_fetch_and_add (&(AI), (V)) + + #define fc_atomic_ptr_get(P) (void *) (__sync_synchronize (), *(P)) ++#if defined(__FreeBSD__) && defined(__mips_n64) ++#include ++#include ++#define fc_atomic_ptr_cmpexch(P,O,N) atomic_cmpset_rel_64 ((uint64_t *)(P), (uint64_t)(O), (uint64_t)(N)) ++#elif defined(__FreeBSD__) && defined(__mips) ++#include ++#include ++#define fc_atomic_ptr_cmpexch(P,O,N) atomic_cmpset_rel_32 ((uint32_t *)(P), (uint32_t)(O), (uint32_t)(N)) ++#else + #define fc_atomic_ptr_cmpexch(P,O,N) __sync_bool_compare_and_swap ((P), (O), (N)) ++#endif /* defined(__FreeBSD__) && defined(__mips__) */ + + + #elif !defined(FC_NO_MT) && defined(HAVE_SOLARIS_ATOMIC_OPS) diff --git a/x11/libfontconfig/files/patch-src_fclang.c b/x11/libfontconfig/files/patch-src_fclang.c new file mode 100644 index 00000000..c72967a3 --- /dev/null +++ b/x11/libfontconfig/files/patch-src_fclang.c @@ -0,0 +1,51 @@ +--- src/fclang.c.orig 2017-09-21 04:44:27 UTC ++++ src/fclang.c +@@ -183,6 +183,7 @@ FcLangNormalize (const FcChar8 *lang) + { + FcChar8 *result = NULL, *s, *orig; + char *territory, *encoding, *modifier; ++ char *script; + size_t llen, tlen = 0, mlen = 0; + + if (!lang || !*lang) +@@ -246,27 +247,33 @@ FcLangNormalize (const FcChar8 *lang) + modifier = encoding; + } + } +- territory = strchr ((const char *) s, '_'); +- if (!territory) +- territory = strchr ((const char *) s, '-'); ++ territory = strrchr ((const char *) s, '_'); + if (territory) + { + *territory = 0; + territory++; + tlen = strlen (territory); + } ++ /* There might by a script component, e.g. sr_Cyrl_RS@UTF-8. We can't assume all legal locale ++ names are in the form _.. If the script component is here, ++ skip it to define the language properly (e.g. "sr" instead of "sr_Cyrl") */ ++ script = strchr ((const char *) s, '_'); ++ if (script) ++ { ++ *script = 0; ++ } + llen = strlen ((const char *) s); + if (llen < 2 || llen > 3) + { +- fprintf (stderr, "Fontconfig warning: ignoring %s: not a valid language tag\n", +- lang); ++ fprintf (stderr, "Fontconfig warning: ignoring %s: not a valid language tag (%s)\n", ++ s, lang); + goto bail0; + } + if (territory && (tlen < 2 || tlen > 3) && + !(territory[0] == 'z' && tlen < 5)) + { +- fprintf (stderr, "Fontconfig warning: ignoring %s: not a valid region tag\n", +- lang); ++ fprintf (stderr, "Fontconfig warning: ignoring %s: not a valid region tag (%s)\n", ++ territory, lang); + goto bail0; + } + if (territory) diff --git a/x11/libfontconfig/files/patch-x-configure b/x11/libfontconfig/files/patch-x-configure new file mode 100644 index 00000000..78e8e1f6 --- /dev/null +++ b/x11/libfontconfig/files/patch-x-configure @@ -0,0 +1,17 @@ +--- ./configure.orig 2019-03-26 20:44:45.820601000 +0200 ++++ ./configure 2019-03-26 20:44:37.564706000 +0200 +@@ -13466,11 +13466,11 @@ + + + +-LIBT_CURRENT=11 +-LIBT_REVISION=1 ++LIBT_CURRENT=9 ++LIBT_REVISION=0 + + +-LIBT_AGE=10 ++LIBT_AGE=9 + + LIBT_VERSION_INFO="$LIBT_CURRENT:$LIBT_REVISION:$LIBT_AGE" + diff --git a/x11/libfontconfig/files/patch-x-ltmain.sh b/x11/libfontconfig/files/patch-x-ltmain.sh new file mode 100644 index 00000000..d2fcc2dd --- /dev/null +++ b/x11/libfontconfig/files/patch-x-ltmain.sh @@ -0,0 +1,36 @@ +--- ./ltmain.sh.orig 2017-09-21 10:07:33.000000000 +0200 ++++ ./ltmain.sh 2019-03-26 20:42:28.664800000 +0200 +@@ -8805,13 +8805,13 @@ + # + case $version_type in + # correct linux to gnu/linux during the next big refactor +- darwin|freebsd-elf|linux|osf|windows|none) ++ darwin|linux|osf|windows|none) + func_arith $number_major + $number_minor + current=$func_arith_result + age=$number_minor + revision=$number_revision + ;; +- freebsd-aout|qnx|sunos) ++ freebsd*|qnx|sunos) + current=$number_major + revision=$number_minor + age=0 +@@ -8891,15 +8891,9 @@ + esac + ;; + +- freebsd-aout) ++ freebsd*) + major=.$current +- versuffix=.$current.$revision +- ;; +- +- freebsd-elf) +- func_arith $current - $age +- major=.$func_arith_result +- versuffix=$major.$age.$revision ++ versuffix=.$current + ;; + + irix | nonstopux) diff --git a/x11/libfontconfig/files/pkg-install.in b/x11/libfontconfig/files/pkg-install.in new file mode 100644 index 00000000..4dc92cbb --- /dev/null +++ b/x11/libfontconfig/files/pkg-install.in @@ -0,0 +1,10 @@ +#!/bin/sh + +PATH=/bin:/usr/bin:/sbin:/usr/sbin:%%PREFIX%%/bin +export PATH + +if [ "$2" = "POST-INSTALL" ]; then + echo "Running fc-cache to build fontconfig cache..." + fc-cache -f -s -v + exit 0 +fi diff --git a/x11/libfontconfig/pkg-descr b/x11/libfontconfig/pkg-descr new file mode 100644 index 00000000..897b0a50 --- /dev/null +++ b/x11/libfontconfig/pkg-descr @@ -0,0 +1,7 @@ +This package contain fontconfig-2.4.0 part X.org X11R7 distribution + +WWW: http://www.X.org + +- Oleg Borodin +ziggi@inbox.ru + diff --git a/x11/libfontconfig/pkg-plist b/x11/libfontconfig/pkg-plist new file mode 100644 index 00000000..c7b0416a --- /dev/null +++ b/x11/libfontconfig/pkg-plist @@ -0,0 +1,283 @@ +bin/fc-cache +bin/fc-cat +bin/fc-list +bin/fc-match +bin/fc-pattern +bin/fc-query +bin/fc-scan +bin/fc-validate +etc/fonts/conf.avail/10-autohint.conf +etc/fonts/conf.avail/10-hinting-full.conf +etc/fonts/conf.avail/10-hinting-medium.conf +etc/fonts/conf.avail/10-hinting-none.conf +etc/fonts/conf.avail/10-hinting-slight.conf +etc/fonts/conf.avail/10-no-sub-pixel.conf +etc/fonts/conf.avail/10-scale-bitmap-fonts.conf +etc/fonts/conf.avail/10-sub-pixel-bgr.conf +etc/fonts/conf.avail/10-sub-pixel-rgb.conf +etc/fonts/conf.avail/10-sub-pixel-vbgr.conf +etc/fonts/conf.avail/10-sub-pixel-vrgb.conf +etc/fonts/conf.avail/10-unhinted.conf +etc/fonts/conf.avail/11-lcdfilter-default.conf +etc/fonts/conf.avail/11-lcdfilter-legacy.conf +etc/fonts/conf.avail/11-lcdfilter-light.conf +etc/fonts/conf.avail/20-unhint-small-vera.conf +etc/fonts/conf.avail/25-unhint-nonlatin.conf +etc/fonts/conf.avail/30-metric-aliases.conf +etc/fonts/conf.avail/40-nonlatin.conf +etc/fonts/conf.avail/45-generic.conf +etc/fonts/conf.avail/45-latin.conf +etc/fonts/conf.avail/49-sansserif.conf +etc/fonts/conf.avail/50-user.conf +etc/fonts/conf.avail/51-local.conf +etc/fonts/conf.avail/60-generic.conf +etc/fonts/conf.avail/60-latin.conf +etc/fonts/conf.avail/65-fonts-persian.conf +etc/fonts/conf.avail/65-khmer.conf +etc/fonts/conf.avail/65-nonlatin.conf +etc/fonts/conf.avail/69-unifont.conf +etc/fonts/conf.avail/70-no-bitmaps.conf +etc/fonts/conf.avail/70-yes-bitmaps.conf +etc/fonts/conf.avail/80-delicious.conf +etc/fonts/conf.avail/90-synthetic.conf +etc/fonts/conf.d/10-hinting-slight.conf +etc/fonts/conf.d/10-scale-bitmap-fonts.conf +etc/fonts/conf.d/20-unhint-small-vera.conf +etc/fonts/conf.d/30-metric-aliases.conf +etc/fonts/conf.d/40-nonlatin.conf +etc/fonts/conf.d/45-generic.conf +etc/fonts/conf.d/45-latin.conf +etc/fonts/conf.d/49-sansserif.conf +etc/fonts/conf.d/50-user.conf +etc/fonts/conf.d/51-local.conf +etc/fonts/conf.d/60-generic.conf +etc/fonts/conf.d/60-latin.conf +etc/fonts/conf.d/65-fonts-persian.conf +etc/fonts/conf.d/65-nonlatin.conf +etc/fonts/conf.d/69-unifont.conf +etc/fonts/conf.d/80-delicious.conf +etc/fonts/conf.d/90-synthetic.conf +etc/fonts/conf.d/README +etc/fonts/fonts.conf +include/fontconfig/fcfreetype.h +include/fontconfig/fcprivate.h +include/fontconfig/fontconfig.h +lib/libfontconfig.la +lib/libfontconfig.so +lib/libfontconfig.so.9 +lib/pkgconfig/fontconfig.pc +man/man1/fc-cache.1.gz +man/man1/fc-cat.1.gz +man/man1/fc-list.1.gz +man/man1/fc-match.1.gz +man/man1/fc-pattern.1.gz +man/man1/fc-query.1.gz +man/man1/fc-scan.1.gz +man/man1/fc-validate.1.gz +man/man3/FcAtomicCreate.3.gz +man/man3/FcAtomicDeleteNew.3.gz +man/man3/FcAtomicDestroy.3.gz +man/man3/FcAtomicLock.3.gz +man/man3/FcAtomicNewFile.3.gz +man/man3/FcAtomicOrigFile.3.gz +man/man3/FcAtomicReplaceOrig.3.gz +man/man3/FcAtomicUnlock.3.gz +man/man3/FcBlanksAdd.3.gz +man/man3/FcBlanksCreate.3.gz +man/man3/FcBlanksDestroy.3.gz +man/man3/FcBlanksIsMember.3.gz +man/man3/FcCacheCopySet.3.gz +man/man3/FcCacheCreateTagFile.3.gz +man/man3/FcCacheDir.3.gz +man/man3/FcCacheNumFont.3.gz +man/man3/FcCacheNumSubdir.3.gz +man/man3/FcCacheSubdir.3.gz +man/man3/FcCharSetAddChar.3.gz +man/man3/FcCharSetCopy.3.gz +man/man3/FcCharSetCount.3.gz +man/man3/FcCharSetCoverage.3.gz +man/man3/FcCharSetCreate.3.gz +man/man3/FcCharSetDelChar.3.gz +man/man3/FcCharSetDestroy.3.gz +man/man3/FcCharSetEqual.3.gz +man/man3/FcCharSetFirstPage.3.gz +man/man3/FcCharSetHasChar.3.gz +man/man3/FcCharSetIntersect.3.gz +man/man3/FcCharSetIntersectCount.3.gz +man/man3/FcCharSetIsSubset.3.gz +man/man3/FcCharSetMerge.3.gz +man/man3/FcCharSetNew.3.gz +man/man3/FcCharSetNextPage.3.gz +man/man3/FcCharSetSubtract.3.gz +man/man3/FcCharSetSubtractCount.3.gz +man/man3/FcCharSetUnion.3.gz +man/man3/FcConfigAppFontAddDir.3.gz +man/man3/FcConfigAppFontAddFile.3.gz +man/man3/FcConfigAppFontClear.3.gz +man/man3/FcConfigBuildFonts.3.gz +man/man3/FcConfigCreate.3.gz +man/man3/FcConfigDestroy.3.gz +man/man3/FcConfigEnableHome.3.gz +man/man3/FcConfigFilename.3.gz +man/man3/FcConfigGetBlanks.3.gz +man/man3/FcConfigGetCache.3.gz +man/man3/FcConfigGetCacheDirs.3.gz +man/man3/FcConfigGetConfigDirs.3.gz +man/man3/FcConfigGetConfigFiles.3.gz +man/man3/FcConfigGetCurrent.3.gz +man/man3/FcConfigGetFontDirs.3.gz +man/man3/FcConfigGetFonts.3.gz +man/man3/FcConfigGetRescanInterval.3.gz +man/man3/FcConfigGetSysRoot.3.gz +man/man3/FcConfigHome.3.gz +man/man3/FcConfigParseAndLoad.3.gz +man/man3/FcConfigParseAndLoadFromMemory.3.gz +man/man3/FcConfigReference.3.gz +man/man3/FcConfigSetCurrent.3.gz +man/man3/FcConfigSetRescanInterval.3.gz +man/man3/FcConfigSetSysRoot.3.gz +man/man3/FcConfigSubstitute.3.gz +man/man3/FcConfigSubstituteWithPat.3.gz +man/man3/FcConfigUptoDate.3.gz +man/man3/FcDefaultSubstitute.3.gz +man/man3/FcDirCacheClean.3.gz +man/man3/FcDirCacheLoad.3.gz +man/man3/FcDirCacheLoadFile.3.gz +man/man3/FcDirCacheRead.3.gz +man/man3/FcDirCacheRescan.3.gz +man/man3/FcDirCacheUnlink.3.gz +man/man3/FcDirCacheUnload.3.gz +man/man3/FcDirCacheValid.3.gz +man/man3/FcDirSave.3.gz +man/man3/FcDirScan.3.gz +man/man3/FcFileIsDir.3.gz +man/man3/FcFileScan.3.gz +man/man3/FcFini.3.gz +man/man3/FcFontList.3.gz +man/man3/FcFontMatch.3.gz +man/man3/FcFontRenderPrepare.3.gz +man/man3/FcFontSetAdd.3.gz +man/man3/FcFontSetCreate.3.gz +man/man3/FcFontSetDestroy.3.gz +man/man3/FcFontSetList.3.gz +man/man3/FcFontSetMatch.3.gz +man/man3/FcFontSetPrint.3.gz +man/man3/FcFontSetSort.3.gz +man/man3/FcFontSetSortDestroy.3.gz +man/man3/FcFontSort.3.gz +man/man3/FcFreeTypeCharIndex.3.gz +man/man3/FcFreeTypeCharSet.3.gz +man/man3/FcFreeTypeCharSetAndSpacing.3.gz +man/man3/FcFreeTypeQuery.3.gz +man/man3/FcFreeTypeQueryFace.3.gz +man/man3/FcGetDefaultLangs.3.gz +man/man3/FcGetLangs.3.gz +man/man3/FcGetVersion.3.gz +man/man3/FcInit.3.gz +man/man3/FcInitBringUptoDate.3.gz +man/man3/FcInitLoadConfig.3.gz +man/man3/FcInitLoadConfigAndFonts.3.gz +man/man3/FcInitReinitialize.3.gz +man/man3/FcIsLower.3.gz +man/man3/FcIsUpper.3.gz +man/man3/FcLangGetCharSet.3.gz +man/man3/FcLangNormalize.3.gz +man/man3/FcLangSetAdd.3.gz +man/man3/FcLangSetCompare.3.gz +man/man3/FcLangSetContains.3.gz +man/man3/FcLangSetCopy.3.gz +man/man3/FcLangSetCreate.3.gz +man/man3/FcLangSetDel.3.gz +man/man3/FcLangSetDestroy.3.gz +man/man3/FcLangSetEqual.3.gz +man/man3/FcLangSetGetLangs.3.gz +man/man3/FcLangSetHash.3.gz +man/man3/FcLangSetHasLang.3.gz +man/man3/FcLangSetSubtract.3.gz +man/man3/FcLangSetUnion.3.gz +man/man3/FcMatrixCopy.3.gz +man/man3/FcMatrixEqual.3.gz +man/man3/FcMatrixInit.3.gz +man/man3/FcMatrixMultiply.3.gz +man/man3/FcMatrixRotate.3.gz +man/man3/FcMatrixScale.3.gz +man/man3/FcMatrixShear.3.gz +man/man3/FcNameConstant.3.gz +man/man3/FcNameGetConstant.3.gz +man/man3/FcNameGetObjectType.3.gz +man/man3/FcNameParse.3.gz +man/man3/FcNameRegisterConstants.3.gz +man/man3/FcNameRegisterObjectTypes.3.gz +man/man3/FcNameUnparse.3.gz +man/man3/FcNameUnregisterConstants.3.gz +man/man3/FcNameUnregisterObjectTypes.3.gz +man/man3/FcObjectSetAdd.3.gz +man/man3/FcObjectSetBuild.3.gz +man/man3/FcObjectSetCreate.3.gz +man/man3/FcObjectSetDestroy.3.gz +man/man3/FcPatternAdd-Type.3.gz +man/man3/FcPatternAdd.3.gz +man/man3/FcPatternAddWeak.3.gz +man/man3/FcPatternBuild.3.gz +man/man3/FcPatternCreate.3.gz +man/man3/FcPatternDel.3.gz +man/man3/FcPatternDestroy.3.gz +man/man3/FcPatternDuplicate.3.gz +man/man3/FcPatternEqual.3.gz +man/man3/FcPatternEqualSubset.3.gz +man/man3/FcPatternFilter.3.gz +man/man3/FcPatternFormat.3.gz +man/man3/FcPatternGet-Type.3.gz +man/man3/FcPatternGet.3.gz +man/man3/FcPatternGetWithBinding.3.gz +man/man3/FcPatternHash.3.gz +man/man3/FcPatternPrint.3.gz +man/man3/FcPatternReference.3.gz +man/man3/FcPatternRemove.3.gz +man/man3/FcRangeCopy.3.gz +man/man3/FcRangeCreateDouble.3.gz +man/man3/FcRangeCreateInteger.3.gz +man/man3/FcRangeDestroy.3.gz +man/man3/FcRangeGetDouble.3.gz +man/man3/FcStrBasename.3.gz +man/man3/FcStrCmp.3.gz +man/man3/FcStrCmpIgnoreCase.3.gz +man/man3/FcStrCopy.3.gz +man/man3/FcStrCopyFilename.3.gz +man/man3/FcStrDirname.3.gz +man/man3/FcStrDowncase.3.gz +man/man3/FcStrFree.3.gz +man/man3/FcStrListCreate.3.gz +man/man3/FcStrListDone.3.gz +man/man3/FcStrListFirst.3.gz +man/man3/FcStrListNext.3.gz +man/man3/FcStrPlus.3.gz +man/man3/FcStrSetAdd.3.gz +man/man3/FcStrSetAddFilename.3.gz +man/man3/FcStrSetCreate.3.gz +man/man3/FcStrSetDel.3.gz +man/man3/FcStrSetDestroy.3.gz +man/man3/FcStrSetEqual.3.gz +man/man3/FcStrSetMember.3.gz +man/man3/FcStrStr.3.gz +man/man3/FcStrStrIgnoreCase.3.gz +man/man3/FcToLower.3.gz +man/man3/FcUcs4ToUtf8.3.gz +man/man3/FcUtf16Len.3.gz +man/man3/FcUtf16ToUcs4.3.gz +man/man3/FcUtf8Len.3.gz +man/man3/FcUtf8ToUcs4.3.gz +man/man3/FcValueDestroy.3.gz +man/man3/FcValueEqual.3.gz +man/man3/FcValuePrint.3.gz +man/man3/FcValueSave.3.gz +man/man3/FcWeightFromOpenType.3.gz +man/man3/FcWeightToOpenType.3.gz +man/man5/fonts-conf.5.gz +share/xml/fontconfig/fonts.dtd +@dir etc/fonts/conf.avail +@dir etc/fonts/conf.d +@dir etc/fonts +@dir include/fontconfig +@dir share/xml/fontconfig +@dir share/xml diff --git a/x11/libpthread-stubs/Makefile b/x11/libpthread-stubs/Makefile new file mode 100644 index 00000000..3b26afa5 --- /dev/null +++ b/x11/libpthread-stubs/Makefile @@ -0,0 +1,28 @@ +# +# $Id: Makefile 831 2007-08-24 11:11:18Z root $ +# $URL: file:///usr2/svn/ports5/x11/libpthread-stubs/Makefile $ +# +PORTNAME= libpthread-stubs +PORTVERSION= 0.4 +X11_CATEGORY= lib +MASTER_SITES+= ftp://ftp.x.org/pub/individual/${X11_CATEGORY}/ +MASTER_SITES= http://xcb.freedesktop.org/dist/ +CATEGORIES= x11 +DIST_SUBDIR= x11 + +MAINTAINER= onborodin@gmail.com +COMMENT= X.org X11R7 module + +BUILD_DEPENDS+= pkg-config:devel/pkg-config + +USES+= tar:bzip2 +USES+= gmake +GNU_CONFIGURE= yes + +CONFIGURE_ARGS+= --mandir=${PREFIX}/man +CPPFLAGS+= ${CFLAGS} -pthread -I${LOCALBASE}/include +LDFLAGS+= -pthread -L${LOCALBASE}/lib + + +.include +#EOF diff --git a/x11/libpthread-stubs/distinfo b/x11/libpthread-stubs/distinfo new file mode 100644 index 00000000..b8683b2a --- /dev/null +++ b/x11/libpthread-stubs/distinfo @@ -0,0 +1,2 @@ +SHA256 (x11/libpthread-stubs-0.4.tar.bz2) = e4d05911a3165d3b18321cc067fdd2f023f06436e391c6a28dff618a78d2e733 +SIZE (x11/libpthread-stubs-0.4.tar.bz2) = 57565 diff --git a/x11/libpthread-stubs/pkg-descr b/x11/libpthread-stubs/pkg-descr new file mode 100644 index 00000000..71dbc12d --- /dev/null +++ b/x11/libpthread-stubs/pkg-descr @@ -0,0 +1,20 @@ +X - a portable, network-transparent window system + +The X Window System is a network transparent window system which +runs on a wide range of computing and graphics machines. It should +be relatively straightforward to build the X.Org Foundation software +distribution on most ANSI C and POSIX compliant systems. Commercial +implementations are also available for a wide range of platforms. + +The X.Org Foundation requests that the following names be used when +referring to this software: + X + X Window System + X Version 11 + X Window System, Version 11 + X11 + +X Window System is a trademark of The Open Group. + +WWW: http://www.X.org + diff --git a/x11/libpthread-stubs/pkg-plist b/x11/libpthread-stubs/pkg-plist new file mode 100644 index 00000000..54e13077 --- /dev/null +++ b/x11/libpthread-stubs/pkg-plist @@ -0,0 +1 @@ +lib/pkgconfig/pthread-stubs.pc diff --git a/x11/libxcb/Makefile b/x11/libxcb/Makefile new file mode 100644 index 00000000..be131471 --- /dev/null +++ b/x11/libxcb/Makefile @@ -0,0 +1,1627 @@ +# +# $Id: Makefile 1387 2007-11-03 00:59:33Z root $ +# $URL: file:///usr2/svn/ports5/x11/xlib-libX11/Makefile $ +# +PORTNAME= libxcb +PORTVERSION= 1.13.1 +X11_CATEGORY= lib +MASTER_SITES+= http://xcb.freedesktop.org/dist/ +CATEGORIES= x11 +DIST_SUBDIR= x11 + +MAINTAINER= onborodin@gmail.com +COMMENT= X.org X11R7 module + +BUILD_DEPENDS+= python:lang/python27 +BUILD_DEPENDS+= xmllint:text/libxml2 +BUILD_DEPENDS+= xsltproc:text/libxslt +BUILD_DEPENDS+= pkg-config:devel/pkg-config + +BUILD_DEPENDS+= xcb-proto>=0:xproto/xcb-proto +BUILD_DEPENDS+= libpthread-stubs>=0:x11/libpthread-stubs + +RUN_DEPENDS+= xcb-proto>=0:xproto/xcb-proto +RUN_DEPENDS+= libpthread-stubs>=0:x11/libpthread-stubs + +#BUILD_DEPENDS+= glproto>=0:xproto/glproto +#BUILD_DEPENDS+= bigreqsproto>=0:xproto/bigreqsproto +#BUILD_DEPENDS+= compositeproto>=0:xproto/compositeproto +#BUILD_DEPENDS+= damageproto>=0:xproto/damageproto +#BUILD_DEPENDS+= dmxproto>=0:xproto/dmxproto +#BUILD_DEPENDS+= dri2proto>=0:xproto/dri2proto +#BUILD_DEPENDS+= dri3proto>=0:xproto/dri3proto +#BUILD_DEPENDS+= fixesproto>=0:xproto/fixesproto +#BUILD_DEPENDS+= fontcacheproto>=0:xproto/fontcacheproto +#BUILD_DEPENDS+= fontsproto>=0:xproto/fontsproto +#BUILD_DEPENDS+= inputproto>=0:xproto/inputproto +#BUILD_DEPENDS+= kbproto>=0:xproto/kbproto +#BUILD_DEPENDS+= presentproto>=0:xproto/presentproto +#BUILD_DEPENDS+= printproto>=0:xproto/printproto +#BUILD_DEPENDS+= randrproto>=0:xproto/randrproto +#BUILD_DEPENDS+= recordproto>=0:xproto/recordproto +#BUILD_DEPENDS+= renderproto>=0:xproto/renderproto +#BUILD_DEPENDS+= resourceproto>=0:xproto/resourceproto +#BUILD_DEPENDS+= scrnsaverproto>=0:xproto/scrnsaverproto +#BUILD_DEPENDS+= trapproto>=0:xproto/trapproto +#BUILD_DEPENDS+= videoproto>=0:xproto/videoproto +#BUILD_DEPENDS+= xcb-proto>=0:xproto/xcb-proto +#BUILD_DEPENDS+= xcmiscproto>=0:xproto/xcmiscproto +#BUILD_DEPENDS+= xextproto>=0:xproto/xextproto +#BUILD_DEPENDS+= xf86dgaproto>=0:xproto/xf86dgaproto +#BUILD_DEPENDS+= xf86driproto>=0:xproto/xf86driproto +#BUILD_DEPENDS+= xf86miscproto>=0:xproto/xf86miscproto +#BUILD_DEPENDS+= xf86vidmodeproto>=0:xproto/xf86vidmodeproto +#BUILD_DEPENDS+= xineramaproto>=0:xproto/xineramaproto +BUILD_DEPENDS+= xproto>=0:xproto/xproto + +LIB_DEPENDS+= libXau.so:x11/libXau +LIB_DEPENDS+= libXdmcp.so:x11/libXdmcp +##LIB_DEPENDS+= pthread-stubs.0:x11/xlib-libpthread-stubs + +USES+= tar:bzip2 +USES+= gmake +GNU_CONFIGURE= yes +CONFIGURE_ARGS+= --mandir=${PREFIX}/man +CFLAGS+= -I${LOCALBASE}/include +LDFLAGS+= -L${LOCALBASE}/lib + +#CONFIGURE_ARGS+= --disable-xcms +#CONFIGURE_ARGS+= --disable-xlocale +#CONFIGURE_ARGS+= --disable-xkb +CONFIGURE_ARGS+= --without-doxygen + +CONFIGURE_ARGS+= --enable-composite +CONFIGURE_ARGS+= --enable-damage +CONFIGURE_ARGS+= --enable-dpms +CONFIGURE_ARGS+= --enable-dri2 +CONFIGURE_ARGS+= --enable-glx +CONFIGURE_ARGS+= --enable-randr +CONFIGURE_ARGS+= --enable-record +CONFIGURE_ARGS+= --enable-render +CONFIGURE_ARGS+= --enable-resource +CONFIGURE_ARGS+= --enable-screensaver +CONFIGURE_ARGS+= --enable-shape +CONFIGURE_ARGS+= --enable-shm +CONFIGURE_ARGS+= --enable-sync +CONFIGURE_ARGS+= --enable-xevie +CONFIGURE_ARGS+= --enable-xfixes +CONFIGURE_ARGS+= --enable-xfree86-dri +CONFIGURE_ARGS+= --enable-xinerama +CONFIGURE_ARGS+= --enable-xprint +CONFIGURE_ARGS+= --enable-xtest +CONFIGURE_ARGS+= --enable-xv +CONFIGURE_ARGS+= --enable-xvmc +CONFIGURE_ARGS+= --enable-xinput + + +#PYTHON?= ${LOCALBASE}/bin/python +#PYTHON_INCDIR= ${LOCALBASE}/include/python +#PYTHON_VERSION!= ${PYTHON} -c 'import sys; print sys.version[:3]' +#PYTHON_BASE!= ${PYTHON} -c 'import sys; print sys.prefix' +##PYTHON_SITELIBDIR_FULL= ${PYTHON_BASE}/python/${PYTHON_VERSION}/site-packages +#PYTHON_SITELIBDIR!= ${PYTHON} -c "import sys; from distutils import sysconfig; sys.stdout.write(sysconfig.get_python_lib(1,0,prefix=''))" +#PLIST_SUB+= PYTHON_SITELIBDIR=${PYTHON_SITELIBDIR} + + +post-patch: + ${REINPLACE_CMD} -e 's,install:.*,install:,' ${WRKSRC}/doc/Makefile.in + +post-stage: + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_alloc_color.3 xcb_alloc_color_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_alloc_color.3 xcb_alloc_color_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_alloc_color_cells.3 xcb_alloc_color_cells_masks.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_alloc_color_cells.3 xcb_alloc_color_cells_masks_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_alloc_color_cells.3 xcb_alloc_color_cells_masks_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_alloc_color_cells.3 xcb_alloc_color_cells_pixels.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_alloc_color_cells.3 xcb_alloc_color_cells_pixels_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_alloc_color_cells.3 xcb_alloc_color_cells_pixels_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_alloc_color_cells.3 xcb_alloc_color_cells_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_alloc_color_cells.3 xcb_alloc_color_cells_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_alloc_color_planes.3 xcb_alloc_color_planes_pixels.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_alloc_color_planes.3 xcb_alloc_color_planes_pixels_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_alloc_color_planes.3 xcb_alloc_color_planes_pixels_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_alloc_color_planes.3 xcb_alloc_color_planes_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_alloc_color_planes.3 xcb_alloc_color_planes_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_alloc_named_color.3 xcb_alloc_named_color_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_alloc_named_color.3 xcb_alloc_named_color_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_allow_events.3 xcb_allow_events_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_bell.3 xcb_bell_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_big_requests_enable.3 xcb_big_requests_enable_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_big_requests_enable.3 xcb_big_requests_enable_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_change_active_pointer_grab.3 xcb_change_active_pointer_grab_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_change_gc.3 xcb_change_gc_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_change_hosts.3 xcb_change_hosts_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_change_keyboard_control.3 xcb_change_keyboard_control_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_change_keyboard_mapping.3 xcb_change_keyboard_mapping_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_change_pointer_control.3 xcb_change_pointer_control_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_change_property.3 xcb_change_property_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_change_save_set.3 xcb_change_save_set_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_change_window_attributes.3 xcb_change_window_attributes_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_circulate_window.3 xcb_circulate_window_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_clear_area.3 xcb_clear_area_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_close_font.3 xcb_close_font_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_composite_create_region_from_border_clip.3 xcb_composite_create_region_from_border_clip_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_composite_get_overlay_window.3 xcb_composite_get_overlay_window_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_composite_get_overlay_window.3 xcb_composite_get_overlay_window_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_composite_name_window_pixmap.3 xcb_composite_name_window_pixmap_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_composite_query_version.3 xcb_composite_query_version_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_composite_query_version.3 xcb_composite_query_version_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_composite_redirect_subwindows.3 xcb_composite_redirect_subwindows_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_composite_redirect_window.3 xcb_composite_redirect_window_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_composite_release_overlay_window.3 xcb_composite_release_overlay_window_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_composite_unredirect_subwindows.3 xcb_composite_unredirect_subwindows_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_composite_unredirect_window.3 xcb_composite_unredirect_window_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_configure_window.3 xcb_configure_window_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_convert_selection.3 xcb_convert_selection_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_copy_area.3 xcb_copy_area_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_copy_colormap_and_free.3 xcb_copy_colormap_and_free_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_copy_gc.3 xcb_copy_gc_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_copy_plane.3 xcb_copy_plane_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_create_colormap.3 xcb_create_colormap_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_create_cursor.3 xcb_create_cursor_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_create_gc.3 xcb_create_gc_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_create_glyph_cursor.3 xcb_create_glyph_cursor_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_create_pixmap.3 xcb_create_pixmap_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_create_window.3 xcb_create_window_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_damage_add.3 xcb_damage_add_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_damage_create.3 xcb_damage_create_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_damage_destroy.3 xcb_damage_destroy_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_damage_query_version.3 xcb_damage_query_version_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_damage_query_version.3 xcb_damage_query_version_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_damage_subtract.3 xcb_damage_subtract_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_delete_property.3 xcb_delete_property_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_destroy_subwindows.3 xcb_destroy_subwindows_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_destroy_window.3 xcb_destroy_window_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_dpms_capable.3 xcb_dpms_capable_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_dpms_capable.3 xcb_dpms_capable_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_dpms_disable.3 xcb_dpms_disable_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_dpms_enable.3 xcb_dpms_enable_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_dpms_force_level.3 xcb_dpms_force_level_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_dpms_get_timeouts.3 xcb_dpms_get_timeouts_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_dpms_get_timeouts.3 xcb_dpms_get_timeouts_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_dpms_get_version.3 xcb_dpms_get_version_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_dpms_get_version.3 xcb_dpms_get_version_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_dpms_info.3 xcb_dpms_info_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_dpms_info.3 xcb_dpms_info_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_dpms_set_timeouts.3 xcb_dpms_set_timeouts_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_dri2_authenticate.3 xcb_dri2_authenticate_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_dri2_authenticate.3 xcb_dri2_authenticate_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_dri2_connect.3 xcb_dri2_connect_alignment_pad.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_dri2_connect.3 xcb_dri2_connect_alignment_pad_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_dri2_connect.3 xcb_dri2_connect_alignment_pad_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_dri2_connect.3 xcb_dri2_connect_device_name.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_dri2_connect.3 xcb_dri2_connect_device_name_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_dri2_connect.3 xcb_dri2_connect_device_name_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_dri2_connect.3 xcb_dri2_connect_driver_name.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_dri2_connect.3 xcb_dri2_connect_driver_name_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_dri2_connect.3 xcb_dri2_connect_driver_name_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_dri2_connect.3 xcb_dri2_connect_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_dri2_connect.3 xcb_dri2_connect_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_dri2_copy_region.3 xcb_dri2_copy_region_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_dri2_copy_region.3 xcb_dri2_copy_region_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_dri2_create_drawable.3 xcb_dri2_create_drawable_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_dri2_destroy_drawable.3 xcb_dri2_destroy_drawable_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_dri2_get_buffers.3 xcb_dri2_get_buffers_buffers.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_dri2_get_buffers.3 xcb_dri2_get_buffers_buffers_iterator.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_dri2_get_buffers.3 xcb_dri2_get_buffers_buffers_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_dri2_get_buffers.3 xcb_dri2_get_buffers_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_dri2_get_buffers.3 xcb_dri2_get_buffers_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_dri2_get_buffers_with_format.3 xcb_dri2_get_buffers_with_format_buffers.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_dri2_get_buffers_with_format.3 xcb_dri2_get_buffers_with_format_buffers_iterator.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_dri2_get_buffers_with_format.3 xcb_dri2_get_buffers_with_format_buffers_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_dri2_get_buffers_with_format.3 xcb_dri2_get_buffers_with_format_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_dri2_get_buffers_with_format.3 xcb_dri2_get_buffers_with_format_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_dri2_get_msc.3 xcb_dri2_get_msc_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_dri2_get_msc.3 xcb_dri2_get_msc_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_dri2_get_param.3 xcb_dri2_get_param_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_dri2_get_param.3 xcb_dri2_get_param_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_dri2_query_version.3 xcb_dri2_query_version_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_dri2_query_version.3 xcb_dri2_query_version_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_dri2_swap_buffers.3 xcb_dri2_swap_buffers_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_dri2_swap_buffers.3 xcb_dri2_swap_buffers_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_dri2_swap_interval.3 xcb_dri2_swap_interval_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_dri2_wait_msc.3 xcb_dri2_wait_msc_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_dri2_wait_msc.3 xcb_dri2_wait_msc_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_dri2_wait_sbc.3 xcb_dri2_wait_sbc_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_dri2_wait_sbc.3 xcb_dri2_wait_sbc_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_dri3_buffer_from_pixmap.3 xcb_dri3_buffer_from_pixmap_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_dri3_buffer_from_pixmap.3 xcb_dri3_buffer_from_pixmap_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_dri3_fd_from_fence.3 xcb_dri3_fd_from_fence_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_dri3_fd_from_fence.3 xcb_dri3_fd_from_fence_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_dri3_fence_from_fd.3 xcb_dri3_fence_from_fd_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_dri3_open.3 xcb_dri3_open_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_dri3_open.3 xcb_dri3_open_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_dri3_pixmap_from_buffer.3 xcb_dri3_pixmap_from_buffer_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_dri3_query_version.3 xcb_dri3_query_version_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_dri3_query_version.3 xcb_dri3_query_version_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_fill_poly.3 xcb_fill_poly_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_force_screen_saver.3 xcb_force_screen_saver_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_free_colormap.3 xcb_free_colormap_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_free_colors.3 xcb_free_colors_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_free_cursor.3 xcb_free_cursor_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_free_gc.3 xcb_free_gc_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_free_pixmap.3 xcb_free_pixmap_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_get_atom_name.3 xcb_get_atom_name_name.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_get_atom_name.3 xcb_get_atom_name_name_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_get_atom_name.3 xcb_get_atom_name_name_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_get_atom_name.3 xcb_get_atom_name_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_get_atom_name.3 xcb_get_atom_name_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_get_font_path.3 xcb_get_font_path_path_iterator.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_get_font_path.3 xcb_get_font_path_path_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_get_font_path.3 xcb_get_font_path_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_get_font_path.3 xcb_get_font_path_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_get_geometry.3 xcb_get_geometry_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_get_geometry.3 xcb_get_geometry_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_get_image.3 xcb_get_image_data.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_get_image.3 xcb_get_image_data_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_get_image.3 xcb_get_image_data_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_get_image.3 xcb_get_image_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_get_image.3 xcb_get_image_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_get_input_focus.3 xcb_get_input_focus_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_get_input_focus.3 xcb_get_input_focus_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_get_keyboard_control.3 xcb_get_keyboard_control_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_get_keyboard_control.3 xcb_get_keyboard_control_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_get_keyboard_mapping.3 xcb_get_keyboard_mapping_keysyms.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_get_keyboard_mapping.3 xcb_get_keyboard_mapping_keysyms_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_get_keyboard_mapping.3 xcb_get_keyboard_mapping_keysyms_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_get_keyboard_mapping.3 xcb_get_keyboard_mapping_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_get_keyboard_mapping.3 xcb_get_keyboard_mapping_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_get_modifier_mapping.3 xcb_get_modifier_mapping_keycodes.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_get_modifier_mapping.3 xcb_get_modifier_mapping_keycodes_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_get_modifier_mapping.3 xcb_get_modifier_mapping_keycodes_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_get_modifier_mapping.3 xcb_get_modifier_mapping_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_get_modifier_mapping.3 xcb_get_modifier_mapping_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_get_motion_events.3 xcb_get_motion_events_events.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_get_motion_events.3 xcb_get_motion_events_events_iterator.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_get_motion_events.3 xcb_get_motion_events_events_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_get_motion_events.3 xcb_get_motion_events_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_get_motion_events.3 xcb_get_motion_events_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_get_pointer_control.3 xcb_get_pointer_control_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_get_pointer_control.3 xcb_get_pointer_control_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_get_pointer_mapping.3 xcb_get_pointer_mapping_map.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_get_pointer_mapping.3 xcb_get_pointer_mapping_map_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_get_pointer_mapping.3 xcb_get_pointer_mapping_map_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_get_pointer_mapping.3 xcb_get_pointer_mapping_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_get_pointer_mapping.3 xcb_get_pointer_mapping_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_get_property.3 xcb_get_property_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_get_property.3 xcb_get_property_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_get_property.3 xcb_get_property_value.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_get_property.3 xcb_get_property_value_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_get_property.3 xcb_get_property_value_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_get_screen_saver.3 xcb_get_screen_saver_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_get_screen_saver.3 xcb_get_screen_saver_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_get_selection_owner.3 xcb_get_selection_owner_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_get_selection_owner.3 xcb_get_selection_owner_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_get_window_attributes.3 xcb_get_window_attributes_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_get_window_attributes.3 xcb_get_window_attributes_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_are_textures_resident.3 xcb_glx_are_textures_resident_data.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_are_textures_resident.3 xcb_glx_are_textures_resident_data_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_are_textures_resident.3 xcb_glx_are_textures_resident_data_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_are_textures_resident.3 xcb_glx_are_textures_resident_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_are_textures_resident.3 xcb_glx_are_textures_resident_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_change_drawable_attributes.3 xcb_glx_change_drawable_attributes_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_client_info.3 xcb_glx_client_info_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_copy_context.3 xcb_glx_copy_context_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_create_context.3 xcb_glx_create_context_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_create_context_attribs_arb.3 xcb_glx_create_context_attribs_arb_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_create_glx_pixmap.3 xcb_glx_create_glx_pixmap_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_create_new_context.3 xcb_glx_create_new_context_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_create_pbuffer.3 xcb_glx_create_pbuffer_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_create_pixmap.3 xcb_glx_create_pixmap_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_create_window.3 xcb_glx_create_window_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_delete_lists.3 xcb_glx_delete_lists_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_delete_queries_arb.3 xcb_glx_delete_queries_arb_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_delete_textures.3 xcb_glx_delete_textures_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_delete_window.3 xcb_glx_delete_window_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_destroy_context.3 xcb_glx_destroy_context_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_destroy_glx_pixmap.3 xcb_glx_destroy_glx_pixmap_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_destroy_pbuffer.3 xcb_glx_destroy_pbuffer_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_destroy_pixmap.3 xcb_glx_destroy_pixmap_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_end_list.3 xcb_glx_end_list_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_feedback_buffer.3 xcb_glx_feedback_buffer_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_finish.3 xcb_glx_finish_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_finish.3 xcb_glx_finish_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_flush.3 xcb_glx_flush_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_gen_lists.3 xcb_glx_gen_lists_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_gen_lists.3 xcb_glx_gen_lists_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_gen_queries_arb.3 xcb_glx_gen_queries_arb_data.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_gen_queries_arb.3 xcb_glx_gen_queries_arb_data_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_gen_queries_arb.3 xcb_glx_gen_queries_arb_data_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_gen_queries_arb.3 xcb_glx_gen_queries_arb_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_gen_queries_arb.3 xcb_glx_gen_queries_arb_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_gen_textures.3 xcb_glx_gen_textures_data.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_gen_textures.3 xcb_glx_gen_textures_data_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_gen_textures.3 xcb_glx_gen_textures_data_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_gen_textures.3 xcb_glx_gen_textures_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_gen_textures.3 xcb_glx_gen_textures_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_booleanv.3 xcb_glx_get_booleanv_data.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_booleanv.3 xcb_glx_get_booleanv_data_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_booleanv.3 xcb_glx_get_booleanv_data_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_booleanv.3 xcb_glx_get_booleanv_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_booleanv.3 xcb_glx_get_booleanv_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_clip_plane.3 xcb_glx_get_clip_plane_data.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_clip_plane.3 xcb_glx_get_clip_plane_data_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_clip_plane.3 xcb_glx_get_clip_plane_data_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_clip_plane.3 xcb_glx_get_clip_plane_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_clip_plane.3 xcb_glx_get_clip_plane_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_color_table.3 xcb_glx_get_color_table_data.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_color_table.3 xcb_glx_get_color_table_data_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_color_table.3 xcb_glx_get_color_table_data_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_color_table.3 xcb_glx_get_color_table_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_color_table.3 xcb_glx_get_color_table_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_color_table_parameterfv.3 xcb_glx_get_color_table_parameterfv_data.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_color_table_parameterfv.3 xcb_glx_get_color_table_parameterfv_data_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_color_table_parameterfv.3 xcb_glx_get_color_table_parameterfv_data_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_color_table_parameterfv.3 xcb_glx_get_color_table_parameterfv_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_color_table_parameterfv.3 xcb_glx_get_color_table_parameterfv_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_color_table_parameteriv.3 xcb_glx_get_color_table_parameteriv_data.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_color_table_parameteriv.3 xcb_glx_get_color_table_parameteriv_data_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_color_table_parameteriv.3 xcb_glx_get_color_table_parameteriv_data_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_color_table_parameteriv.3 xcb_glx_get_color_table_parameteriv_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_color_table_parameteriv.3 xcb_glx_get_color_table_parameteriv_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_compressed_tex_image_arb.3 xcb_glx_get_compressed_tex_image_arb_data.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_compressed_tex_image_arb.3 xcb_glx_get_compressed_tex_image_arb_data_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_compressed_tex_image_arb.3 xcb_glx_get_compressed_tex_image_arb_data_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_compressed_tex_image_arb.3 xcb_glx_get_compressed_tex_image_arb_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_compressed_tex_image_arb.3 xcb_glx_get_compressed_tex_image_arb_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_convolution_filter.3 xcb_glx_get_convolution_filter_data.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_convolution_filter.3 xcb_glx_get_convolution_filter_data_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_convolution_filter.3 xcb_glx_get_convolution_filter_data_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_convolution_filter.3 xcb_glx_get_convolution_filter_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_convolution_filter.3 xcb_glx_get_convolution_filter_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_convolution_parameterfv.3 xcb_glx_get_convolution_parameterfv_data.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_convolution_parameterfv.3 xcb_glx_get_convolution_parameterfv_data_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_convolution_parameterfv.3 xcb_glx_get_convolution_parameterfv_data_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_convolution_parameterfv.3 xcb_glx_get_convolution_parameterfv_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_convolution_parameterfv.3 xcb_glx_get_convolution_parameterfv_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_convolution_parameteriv.3 xcb_glx_get_convolution_parameteriv_data.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_convolution_parameteriv.3 xcb_glx_get_convolution_parameteriv_data_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_convolution_parameteriv.3 xcb_glx_get_convolution_parameteriv_data_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_convolution_parameteriv.3 xcb_glx_get_convolution_parameteriv_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_convolution_parameteriv.3 xcb_glx_get_convolution_parameteriv_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_doublev.3 xcb_glx_get_doublev_data.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_doublev.3 xcb_glx_get_doublev_data_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_doublev.3 xcb_glx_get_doublev_data_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_doublev.3 xcb_glx_get_doublev_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_doublev.3 xcb_glx_get_doublev_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_drawable_attributes.3 xcb_glx_get_drawable_attributes_attribs.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_drawable_attributes.3 xcb_glx_get_drawable_attributes_attribs_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_drawable_attributes.3 xcb_glx_get_drawable_attributes_attribs_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_drawable_attributes.3 xcb_glx_get_drawable_attributes_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_drawable_attributes.3 xcb_glx_get_drawable_attributes_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_error.3 xcb_glx_get_error_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_error.3 xcb_glx_get_error_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_fb_configs.3 xcb_glx_get_fb_configs_property_list.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_fb_configs.3 xcb_glx_get_fb_configs_property_list_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_fb_configs.3 xcb_glx_get_fb_configs_property_list_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_fb_configs.3 xcb_glx_get_fb_configs_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_fb_configs.3 xcb_glx_get_fb_configs_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_floatv.3 xcb_glx_get_floatv_data.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_floatv.3 xcb_glx_get_floatv_data_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_floatv.3 xcb_glx_get_floatv_data_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_floatv.3 xcb_glx_get_floatv_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_floatv.3 xcb_glx_get_floatv_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_histogram.3 xcb_glx_get_histogram_data.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_histogram.3 xcb_glx_get_histogram_data_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_histogram.3 xcb_glx_get_histogram_data_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_histogram.3 xcb_glx_get_histogram_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_histogram.3 xcb_glx_get_histogram_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_histogram_parameterfv.3 xcb_glx_get_histogram_parameterfv_data.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_histogram_parameterfv.3 xcb_glx_get_histogram_parameterfv_data_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_histogram_parameterfv.3 xcb_glx_get_histogram_parameterfv_data_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_histogram_parameterfv.3 xcb_glx_get_histogram_parameterfv_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_histogram_parameterfv.3 xcb_glx_get_histogram_parameterfv_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_histogram_parameteriv.3 xcb_glx_get_histogram_parameteriv_data.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_histogram_parameteriv.3 xcb_glx_get_histogram_parameteriv_data_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_histogram_parameteriv.3 xcb_glx_get_histogram_parameteriv_data_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_histogram_parameteriv.3 xcb_glx_get_histogram_parameteriv_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_histogram_parameteriv.3 xcb_glx_get_histogram_parameteriv_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_integerv.3 xcb_glx_get_integerv_data.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_integerv.3 xcb_glx_get_integerv_data_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_integerv.3 xcb_glx_get_integerv_data_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_integerv.3 xcb_glx_get_integerv_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_integerv.3 xcb_glx_get_integerv_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_lightfv.3 xcb_glx_get_lightfv_data.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_lightfv.3 xcb_glx_get_lightfv_data_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_lightfv.3 xcb_glx_get_lightfv_data_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_lightfv.3 xcb_glx_get_lightfv_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_lightfv.3 xcb_glx_get_lightfv_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_lightiv.3 xcb_glx_get_lightiv_data.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_lightiv.3 xcb_glx_get_lightiv_data_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_lightiv.3 xcb_glx_get_lightiv_data_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_lightiv.3 xcb_glx_get_lightiv_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_lightiv.3 xcb_glx_get_lightiv_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_mapdv.3 xcb_glx_get_mapdv_data.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_mapdv.3 xcb_glx_get_mapdv_data_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_mapdv.3 xcb_glx_get_mapdv_data_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_mapdv.3 xcb_glx_get_mapdv_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_mapdv.3 xcb_glx_get_mapdv_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_mapfv.3 xcb_glx_get_mapfv_data.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_mapfv.3 xcb_glx_get_mapfv_data_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_mapfv.3 xcb_glx_get_mapfv_data_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_mapfv.3 xcb_glx_get_mapfv_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_mapfv.3 xcb_glx_get_mapfv_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_mapiv.3 xcb_glx_get_mapiv_data.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_mapiv.3 xcb_glx_get_mapiv_data_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_mapiv.3 xcb_glx_get_mapiv_data_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_mapiv.3 xcb_glx_get_mapiv_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_mapiv.3 xcb_glx_get_mapiv_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_materialfv.3 xcb_glx_get_materialfv_data.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_materialfv.3 xcb_glx_get_materialfv_data_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_materialfv.3 xcb_glx_get_materialfv_data_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_materialfv.3 xcb_glx_get_materialfv_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_materialfv.3 xcb_glx_get_materialfv_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_materialiv.3 xcb_glx_get_materialiv_data.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_materialiv.3 xcb_glx_get_materialiv_data_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_materialiv.3 xcb_glx_get_materialiv_data_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_materialiv.3 xcb_glx_get_materialiv_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_materialiv.3 xcb_glx_get_materialiv_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_minmax.3 xcb_glx_get_minmax_data.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_minmax.3 xcb_glx_get_minmax_data_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_minmax.3 xcb_glx_get_minmax_data_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_minmax.3 xcb_glx_get_minmax_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_minmax.3 xcb_glx_get_minmax_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_minmax_parameterfv.3 xcb_glx_get_minmax_parameterfv_data.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_minmax_parameterfv.3 xcb_glx_get_minmax_parameterfv_data_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_minmax_parameterfv.3 xcb_glx_get_minmax_parameterfv_data_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_minmax_parameterfv.3 xcb_glx_get_minmax_parameterfv_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_minmax_parameterfv.3 xcb_glx_get_minmax_parameterfv_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_minmax_parameteriv.3 xcb_glx_get_minmax_parameteriv_data.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_minmax_parameteriv.3 xcb_glx_get_minmax_parameteriv_data_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_minmax_parameteriv.3 xcb_glx_get_minmax_parameteriv_data_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_minmax_parameteriv.3 xcb_glx_get_minmax_parameteriv_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_minmax_parameteriv.3 xcb_glx_get_minmax_parameteriv_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_pixel_mapfv.3 xcb_glx_get_pixel_mapfv_data.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_pixel_mapfv.3 xcb_glx_get_pixel_mapfv_data_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_pixel_mapfv.3 xcb_glx_get_pixel_mapfv_data_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_pixel_mapfv.3 xcb_glx_get_pixel_mapfv_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_pixel_mapfv.3 xcb_glx_get_pixel_mapfv_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_pixel_mapuiv.3 xcb_glx_get_pixel_mapuiv_data.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_pixel_mapuiv.3 xcb_glx_get_pixel_mapuiv_data_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_pixel_mapuiv.3 xcb_glx_get_pixel_mapuiv_data_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_pixel_mapuiv.3 xcb_glx_get_pixel_mapuiv_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_pixel_mapuiv.3 xcb_glx_get_pixel_mapuiv_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_pixel_mapusv.3 xcb_glx_get_pixel_mapusv_data.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_pixel_mapusv.3 xcb_glx_get_pixel_mapusv_data_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_pixel_mapusv.3 xcb_glx_get_pixel_mapusv_data_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_pixel_mapusv.3 xcb_glx_get_pixel_mapusv_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_pixel_mapusv.3 xcb_glx_get_pixel_mapusv_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_polygon_stipple.3 xcb_glx_get_polygon_stipple_data.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_polygon_stipple.3 xcb_glx_get_polygon_stipple_data_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_polygon_stipple.3 xcb_glx_get_polygon_stipple_data_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_polygon_stipple.3 xcb_glx_get_polygon_stipple_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_polygon_stipple.3 xcb_glx_get_polygon_stipple_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_query_objectiv_arb.3 xcb_glx_get_query_objectiv_arb_data.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_query_objectiv_arb.3 xcb_glx_get_query_objectiv_arb_data_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_query_objectiv_arb.3 xcb_glx_get_query_objectiv_arb_data_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_query_objectiv_arb.3 xcb_glx_get_query_objectiv_arb_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_query_objectiv_arb.3 xcb_glx_get_query_objectiv_arb_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_query_objectuiv_arb.3 xcb_glx_get_query_objectuiv_arb_data.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_query_objectuiv_arb.3 xcb_glx_get_query_objectuiv_arb_data_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_query_objectuiv_arb.3 xcb_glx_get_query_objectuiv_arb_data_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_query_objectuiv_arb.3 xcb_glx_get_query_objectuiv_arb_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_query_objectuiv_arb.3 xcb_glx_get_query_objectuiv_arb_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_queryiv_arb.3 xcb_glx_get_queryiv_arb_data.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_queryiv_arb.3 xcb_glx_get_queryiv_arb_data_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_queryiv_arb.3 xcb_glx_get_queryiv_arb_data_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_queryiv_arb.3 xcb_glx_get_queryiv_arb_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_queryiv_arb.3 xcb_glx_get_queryiv_arb_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_separable_filter.3 xcb_glx_get_separable_filter_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_separable_filter.3 xcb_glx_get_separable_filter_rows_and_cols.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_separable_filter.3 xcb_glx_get_separable_filter_rows_and_cols_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_separable_filter.3 xcb_glx_get_separable_filter_rows_and_cols_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_separable_filter.3 xcb_glx_get_separable_filter_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_string.3 xcb_glx_get_string_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_string.3 xcb_glx_get_string_string.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_string.3 xcb_glx_get_string_string_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_string.3 xcb_glx_get_string_string_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_string.3 xcb_glx_get_string_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_tex_envfv.3 xcb_glx_get_tex_envfv_data.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_tex_envfv.3 xcb_glx_get_tex_envfv_data_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_tex_envfv.3 xcb_glx_get_tex_envfv_data_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_tex_envfv.3 xcb_glx_get_tex_envfv_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_tex_envfv.3 xcb_glx_get_tex_envfv_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_tex_enviv.3 xcb_glx_get_tex_enviv_data.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_tex_enviv.3 xcb_glx_get_tex_enviv_data_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_tex_enviv.3 xcb_glx_get_tex_enviv_data_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_tex_enviv.3 xcb_glx_get_tex_enviv_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_tex_enviv.3 xcb_glx_get_tex_enviv_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_tex_gendv.3 xcb_glx_get_tex_gendv_data.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_tex_gendv.3 xcb_glx_get_tex_gendv_data_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_tex_gendv.3 xcb_glx_get_tex_gendv_data_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_tex_gendv.3 xcb_glx_get_tex_gendv_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_tex_gendv.3 xcb_glx_get_tex_gendv_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_tex_genfv.3 xcb_glx_get_tex_genfv_data.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_tex_genfv.3 xcb_glx_get_tex_genfv_data_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_tex_genfv.3 xcb_glx_get_tex_genfv_data_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_tex_genfv.3 xcb_glx_get_tex_genfv_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_tex_genfv.3 xcb_glx_get_tex_genfv_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_tex_geniv.3 xcb_glx_get_tex_geniv_data.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_tex_geniv.3 xcb_glx_get_tex_geniv_data_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_tex_geniv.3 xcb_glx_get_tex_geniv_data_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_tex_geniv.3 xcb_glx_get_tex_geniv_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_tex_geniv.3 xcb_glx_get_tex_geniv_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_tex_image.3 xcb_glx_get_tex_image_data.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_tex_image.3 xcb_glx_get_tex_image_data_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_tex_image.3 xcb_glx_get_tex_image_data_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_tex_image.3 xcb_glx_get_tex_image_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_tex_image.3 xcb_glx_get_tex_image_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_tex_level_parameterfv.3 xcb_glx_get_tex_level_parameterfv_data.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_tex_level_parameterfv.3 xcb_glx_get_tex_level_parameterfv_data_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_tex_level_parameterfv.3 xcb_glx_get_tex_level_parameterfv_data_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_tex_level_parameterfv.3 xcb_glx_get_tex_level_parameterfv_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_tex_level_parameterfv.3 xcb_glx_get_tex_level_parameterfv_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_tex_level_parameteriv.3 xcb_glx_get_tex_level_parameteriv_data.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_tex_level_parameteriv.3 xcb_glx_get_tex_level_parameteriv_data_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_tex_level_parameteriv.3 xcb_glx_get_tex_level_parameteriv_data_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_tex_level_parameteriv.3 xcb_glx_get_tex_level_parameteriv_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_tex_level_parameteriv.3 xcb_glx_get_tex_level_parameteriv_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_tex_parameterfv.3 xcb_glx_get_tex_parameterfv_data.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_tex_parameterfv.3 xcb_glx_get_tex_parameterfv_data_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_tex_parameterfv.3 xcb_glx_get_tex_parameterfv_data_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_tex_parameterfv.3 xcb_glx_get_tex_parameterfv_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_tex_parameterfv.3 xcb_glx_get_tex_parameterfv_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_tex_parameteriv.3 xcb_glx_get_tex_parameteriv_data.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_tex_parameteriv.3 xcb_glx_get_tex_parameteriv_data_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_tex_parameteriv.3 xcb_glx_get_tex_parameteriv_data_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_tex_parameteriv.3 xcb_glx_get_tex_parameteriv_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_tex_parameteriv.3 xcb_glx_get_tex_parameteriv_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_visual_configs.3 xcb_glx_get_visual_configs_property_list.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_visual_configs.3 xcb_glx_get_visual_configs_property_list_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_visual_configs.3 xcb_glx_get_visual_configs_property_list_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_visual_configs.3 xcb_glx_get_visual_configs_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_get_visual_configs.3 xcb_glx_get_visual_configs_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_is_direct.3 xcb_glx_is_direct_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_is_direct.3 xcb_glx_is_direct_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_is_list.3 xcb_glx_is_list_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_is_list.3 xcb_glx_is_list_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_is_query_arb.3 xcb_glx_is_query_arb_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_is_query_arb.3 xcb_glx_is_query_arb_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_is_texture.3 xcb_glx_is_texture_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_is_texture.3 xcb_glx_is_texture_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_make_context_current.3 xcb_glx_make_context_current_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_make_context_current.3 xcb_glx_make_context_current_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_make_current.3 xcb_glx_make_current_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_make_current.3 xcb_glx_make_current_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_new_list.3 xcb_glx_new_list_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_pixel_storef.3 xcb_glx_pixel_storef_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_pixel_storei.3 xcb_glx_pixel_storei_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_query_context.3 xcb_glx_query_context_attribs.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_query_context.3 xcb_glx_query_context_attribs_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_query_context.3 xcb_glx_query_context_attribs_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_query_context.3 xcb_glx_query_context_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_query_context.3 xcb_glx_query_context_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_query_extensions_string.3 xcb_glx_query_extensions_string_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_query_extensions_string.3 xcb_glx_query_extensions_string_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_query_server_string.3 xcb_glx_query_server_string_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_query_server_string.3 xcb_glx_query_server_string_string.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_query_server_string.3 xcb_glx_query_server_string_string_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_query_server_string.3 xcb_glx_query_server_string_string_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_query_server_string.3 xcb_glx_query_server_string_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_query_version.3 xcb_glx_query_version_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_query_version.3 xcb_glx_query_version_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_read_pixels.3 xcb_glx_read_pixels_data.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_read_pixels.3 xcb_glx_read_pixels_data_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_read_pixels.3 xcb_glx_read_pixels_data_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_read_pixels.3 xcb_glx_read_pixels_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_read_pixels.3 xcb_glx_read_pixels_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_render.3 xcb_glx_render_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_render_large.3 xcb_glx_render_large_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_render_mode.3 xcb_glx_render_mode_data.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_render_mode.3 xcb_glx_render_mode_data_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_render_mode.3 xcb_glx_render_mode_data_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_render_mode.3 xcb_glx_render_mode_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_render_mode.3 xcb_glx_render_mode_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_select_buffer.3 xcb_glx_select_buffer_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_set_client_info_2arb.3 xcb_glx_set_client_info_2arb_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_set_client_info_arb.3 xcb_glx_set_client_info_arb_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_swap_buffers.3 xcb_glx_swap_buffers_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_use_x_font.3 xcb_glx_use_x_font_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_vendor_private.3 xcb_glx_vendor_private_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_vendor_private_with_reply.3 xcb_glx_vendor_private_with_reply_data_2.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_vendor_private_with_reply.3 xcb_glx_vendor_private_with_reply_data_2_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_vendor_private_with_reply.3 xcb_glx_vendor_private_with_reply_data_2_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_vendor_private_with_reply.3 xcb_glx_vendor_private_with_reply_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_vendor_private_with_reply.3 xcb_glx_vendor_private_with_reply_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_wait_gl.3 xcb_glx_wait_gl_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_glx_wait_x.3 xcb_glx_wait_x_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_grab_button.3 xcb_grab_button_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_grab_key.3 xcb_grab_key_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_grab_keyboard.3 xcb_grab_keyboard_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_grab_keyboard.3 xcb_grab_keyboard_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_grab_pointer.3 xcb_grab_pointer_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_grab_pointer.3 xcb_grab_pointer_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_grab_server.3 xcb_grab_server_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_image_text_16.3 xcb_image_text_16_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_image_text_8.3 xcb_image_text_8_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_allow_device_events.3 xcb_input_allow_device_events_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_change_device_control.3 xcb_input_change_device_control_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_change_device_control.3 xcb_input_change_device_control_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_change_device_dont_propagate_list.3 xcb_input_change_device_dont_propagate_list_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_change_device_key_mapping.3 xcb_input_change_device_key_mapping_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_change_device_property.3 xcb_input_change_device_property_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_change_feedback_control.3 xcb_input_change_feedback_control_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_change_keyboard_device.3 xcb_input_change_keyboard_device_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_change_keyboard_device.3 xcb_input_change_keyboard_device_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_change_pointer_device.3 xcb_input_change_pointer_device_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_change_pointer_device.3 xcb_input_change_pointer_device_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_close_device.3 xcb_input_close_device_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_delete_device_property.3 xcb_input_delete_device_property_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_device_bell.3 xcb_input_device_bell_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_get_device_button_mapping.3 xcb_input_get_device_button_mapping_map.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_get_device_button_mapping.3 xcb_input_get_device_button_mapping_map_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_get_device_button_mapping.3 xcb_input_get_device_button_mapping_map_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_get_device_button_mapping.3 xcb_input_get_device_button_mapping_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_get_device_button_mapping.3 xcb_input_get_device_button_mapping_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_get_device_control.3 xcb_input_get_device_control_control.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_get_device_control.3 xcb_input_get_device_control_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_get_device_control.3 xcb_input_get_device_control_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_get_device_dont_propagate_list.3 xcb_input_get_device_dont_propagate_list_classes.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_get_device_dont_propagate_list.3 xcb_input_get_device_dont_propagate_list_classes_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_get_device_dont_propagate_list.3 xcb_input_get_device_dont_propagate_list_classes_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_get_device_dont_propagate_list.3 xcb_input_get_device_dont_propagate_list_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_get_device_dont_propagate_list.3 xcb_input_get_device_dont_propagate_list_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_get_device_focus.3 xcb_input_get_device_focus_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_get_device_focus.3 xcb_input_get_device_focus_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_get_device_key_mapping.3 xcb_input_get_device_key_mapping_keysyms.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_get_device_key_mapping.3 xcb_input_get_device_key_mapping_keysyms_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_get_device_key_mapping.3 xcb_input_get_device_key_mapping_keysyms_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_get_device_key_mapping.3 xcb_input_get_device_key_mapping_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_get_device_key_mapping.3 xcb_input_get_device_key_mapping_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_get_device_modifier_mapping.3 xcb_input_get_device_modifier_mapping_keymaps.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_get_device_modifier_mapping.3 xcb_input_get_device_modifier_mapping_keymaps_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_get_device_modifier_mapping.3 xcb_input_get_device_modifier_mapping_keymaps_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_get_device_modifier_mapping.3 xcb_input_get_device_modifier_mapping_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_get_device_modifier_mapping.3 xcb_input_get_device_modifier_mapping_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_get_device_motion_events.3 xcb_input_get_device_motion_events_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_get_device_motion_events.3 xcb_input_get_device_motion_events_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_get_device_property.3 xcb_input_get_device_property_items.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_get_device_property.3 xcb_input_get_device_property_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_get_device_property.3 xcb_input_get_device_property_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_get_extension_version.3 xcb_input_get_extension_version_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_get_extension_version.3 xcb_input_get_extension_version_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_get_feedback_control.3 xcb_input_get_feedback_control_feedbacks_iterator.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_get_feedback_control.3 xcb_input_get_feedback_control_feedbacks_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_get_feedback_control.3 xcb_input_get_feedback_control_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_get_feedback_control.3 xcb_input_get_feedback_control_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_get_selected_extension_events.3 xcb_input_get_selected_extension_events_all_classes.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_get_selected_extension_events.3 xcb_input_get_selected_extension_events_all_classes_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_get_selected_extension_events.3 xcb_input_get_selected_extension_events_all_classes_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_get_selected_extension_events.3 xcb_input_get_selected_extension_events_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_get_selected_extension_events.3 xcb_input_get_selected_extension_events_this_classes.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_get_selected_extension_events.3 xcb_input_get_selected_extension_events_this_classes_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_get_selected_extension_events.3 xcb_input_get_selected_extension_events_this_classes_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_get_selected_extension_events.3 xcb_input_get_selected_extension_events_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_grab_device.3 xcb_input_grab_device_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_grab_device.3 xcb_input_grab_device_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_grab_device_button.3 xcb_input_grab_device_button_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_grab_device_key.3 xcb_input_grab_device_key_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_list_device_properties.3 xcb_input_list_device_properties_atoms.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_list_device_properties.3 xcb_input_list_device_properties_atoms_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_list_device_properties.3 xcb_input_list_device_properties_atoms_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_list_device_properties.3 xcb_input_list_device_properties_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_list_device_properties.3 xcb_input_list_device_properties_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_list_input_devices.3 xcb_input_list_input_devices_devices.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_list_input_devices.3 xcb_input_list_input_devices_devices_iterator.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_list_input_devices.3 xcb_input_list_input_devices_devices_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_list_input_devices.3 xcb_input_list_input_devices_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_list_input_devices.3 xcb_input_list_input_devices_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_open_device.3 xcb_input_open_device_class_info.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_open_device.3 xcb_input_open_device_class_info_iterator.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_open_device.3 xcb_input_open_device_class_info_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_open_device.3 xcb_input_open_device_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_open_device.3 xcb_input_open_device_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_query_device_state.3 xcb_input_query_device_state_classes_iterator.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_query_device_state.3 xcb_input_query_device_state_classes_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_query_device_state.3 xcb_input_query_device_state_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_query_device_state.3 xcb_input_query_device_state_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_select_extension_event.3 xcb_input_select_extension_event_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_send_extension_event.3 xcb_input_send_extension_event_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_set_device_button_mapping.3 xcb_input_set_device_button_mapping_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_set_device_button_mapping.3 xcb_input_set_device_button_mapping_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_set_device_focus.3 xcb_input_set_device_focus_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_set_device_mode.3 xcb_input_set_device_mode_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_set_device_mode.3 xcb_input_set_device_mode_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_set_device_modifier_mapping.3 xcb_input_set_device_modifier_mapping_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_set_device_modifier_mapping.3 xcb_input_set_device_modifier_mapping_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_set_device_valuators.3 xcb_input_set_device_valuators_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_set_device_valuators.3 xcb_input_set_device_valuators_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_ungrab_device.3 xcb_input_ungrab_device_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_ungrab_device_button.3 xcb_input_ungrab_device_button_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_ungrab_device_key.3 xcb_input_ungrab_device_key_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_xi_allow_events.3 xcb_input_xi_allow_events_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_xi_barrier_release_pointer.3 xcb_input_xi_barrier_release_pointer_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_xi_change_cursor.3 xcb_input_xi_change_cursor_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_xi_change_hierarchy.3 xcb_input_xi_change_hierarchy_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_xi_change_property.3 xcb_input_xi_change_property_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_xi_delete_property.3 xcb_input_xi_delete_property_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_xi_get_client_pointer.3 xcb_input_xi_get_client_pointer_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_xi_get_client_pointer.3 xcb_input_xi_get_client_pointer_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_xi_get_focus.3 xcb_input_xi_get_focus_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_xi_get_focus.3 xcb_input_xi_get_focus_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_xi_get_property.3 xcb_input_xi_get_property_items.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_xi_get_property.3 xcb_input_xi_get_property_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_xi_get_property.3 xcb_input_xi_get_property_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_xi_get_selected_events.3 xcb_input_xi_get_selected_events_masks_iterator.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_xi_get_selected_events.3 xcb_input_xi_get_selected_events_masks_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_xi_get_selected_events.3 xcb_input_xi_get_selected_events_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_xi_get_selected_events.3 xcb_input_xi_get_selected_events_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_xi_grab_device.3 xcb_input_xi_grab_device_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_xi_grab_device.3 xcb_input_xi_grab_device_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_xi_list_properties.3 xcb_input_xi_list_properties_properties.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_xi_list_properties.3 xcb_input_xi_list_properties_properties_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_xi_list_properties.3 xcb_input_xi_list_properties_properties_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_xi_list_properties.3 xcb_input_xi_list_properties_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_xi_list_properties.3 xcb_input_xi_list_properties_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_xi_passive_grab_device.3 xcb_input_xi_passive_grab_device_modifiers.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_xi_passive_grab_device.3 xcb_input_xi_passive_grab_device_modifiers_iterator.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_xi_passive_grab_device.3 xcb_input_xi_passive_grab_device_modifiers_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_xi_passive_grab_device.3 xcb_input_xi_passive_grab_device_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_xi_passive_grab_device.3 xcb_input_xi_passive_grab_device_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_xi_passive_ungrab_device.3 xcb_input_xi_passive_ungrab_device_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_xi_query_device.3 xcb_input_xi_query_device_infos_iterator.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_xi_query_device.3 xcb_input_xi_query_device_infos_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_xi_query_device.3 xcb_input_xi_query_device_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_xi_query_device.3 xcb_input_xi_query_device_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_xi_query_pointer.3 xcb_input_xi_query_pointer_buttons.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_xi_query_pointer.3 xcb_input_xi_query_pointer_buttons_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_xi_query_pointer.3 xcb_input_xi_query_pointer_buttons_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_xi_query_pointer.3 xcb_input_xi_query_pointer_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_xi_query_pointer.3 xcb_input_xi_query_pointer_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_xi_query_version.3 xcb_input_xi_query_version_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_xi_query_version.3 xcb_input_xi_query_version_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_xi_select_events.3 xcb_input_xi_select_events_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_xi_set_client_pointer.3 xcb_input_xi_set_client_pointer_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_xi_set_focus.3 xcb_input_xi_set_focus_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_xi_ungrab_device.3 xcb_input_xi_ungrab_device_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_input_xi_warp_pointer.3 xcb_input_xi_warp_pointer_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_install_colormap.3 xcb_install_colormap_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_intern_atom.3 xcb_intern_atom_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_intern_atom.3 xcb_intern_atom_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_kill_client.3 xcb_kill_client_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_list_extensions.3 xcb_list_extensions_names_iterator.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_list_extensions.3 xcb_list_extensions_names_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_list_extensions.3 xcb_list_extensions_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_list_extensions.3 xcb_list_extensions_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_list_fonts.3 xcb_list_fonts_names_iterator.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_list_fonts.3 xcb_list_fonts_names_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_list_fonts.3 xcb_list_fonts_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_list_fonts.3 xcb_list_fonts_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_list_fonts_with_info.3 xcb_list_fonts_with_info_name.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_list_fonts_with_info.3 xcb_list_fonts_with_info_name_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_list_fonts_with_info.3 xcb_list_fonts_with_info_name_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_list_fonts_with_info.3 xcb_list_fonts_with_info_properties.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_list_fonts_with_info.3 xcb_list_fonts_with_info_properties_iterator.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_list_fonts_with_info.3 xcb_list_fonts_with_info_properties_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_list_fonts_with_info.3 xcb_list_fonts_with_info_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_list_fonts_with_info.3 xcb_list_fonts_with_info_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_list_hosts.3 xcb_list_hosts_hosts_iterator.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_list_hosts.3 xcb_list_hosts_hosts_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_list_hosts.3 xcb_list_hosts_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_list_hosts.3 xcb_list_hosts_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_list_installed_colormaps.3 xcb_list_installed_colormaps_cmaps.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_list_installed_colormaps.3 xcb_list_installed_colormaps_cmaps_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_list_installed_colormaps.3 xcb_list_installed_colormaps_cmaps_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_list_installed_colormaps.3 xcb_list_installed_colormaps_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_list_installed_colormaps.3 xcb_list_installed_colormaps_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_list_properties.3 xcb_list_properties_atoms.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_list_properties.3 xcb_list_properties_atoms_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_list_properties.3 xcb_list_properties_atoms_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_list_properties.3 xcb_list_properties_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_list_properties.3 xcb_list_properties_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_lookup_color.3 xcb_lookup_color_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_lookup_color.3 xcb_lookup_color_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_map_subwindows.3 xcb_map_subwindows_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_map_window.3 xcb_map_window_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_no_operation.3 xcb_no_operation_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_open_font.3 xcb_open_font_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_poly_arc.3 xcb_poly_arc_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_poly_fill_arc.3 xcb_poly_fill_arc_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_poly_fill_rectangle.3 xcb_poly_fill_rectangle_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_poly_line.3 xcb_poly_line_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_poly_point.3 xcb_poly_point_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_poly_rectangle.3 xcb_poly_rectangle_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_poly_segment.3 xcb_poly_segment_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_poly_text_16.3 xcb_poly_text_16_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_poly_text_8.3 xcb_poly_text_8_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_present_notify_msc.3 xcb_present_notify_msc_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_present_pixmap.3 xcb_present_pixmap_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_present_query_capabilities.3 xcb_present_query_capabilities_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_present_query_capabilities.3 xcb_present_query_capabilities_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_present_query_version.3 xcb_present_query_version_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_present_query_version.3 xcb_present_query_version_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_present_select_input.3 xcb_present_select_input_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_put_image.3 xcb_put_image_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_query_best_size.3 xcb_query_best_size_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_query_best_size.3 xcb_query_best_size_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_query_colors.3 xcb_query_colors_colors.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_query_colors.3 xcb_query_colors_colors_iterator.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_query_colors.3 xcb_query_colors_colors_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_query_colors.3 xcb_query_colors_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_query_colors.3 xcb_query_colors_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_query_extension.3 xcb_query_extension_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_query_extension.3 xcb_query_extension_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_query_font.3 xcb_query_font_char_infos.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_query_font.3 xcb_query_font_char_infos_iterator.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_query_font.3 xcb_query_font_char_infos_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_query_font.3 xcb_query_font_properties.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_query_font.3 xcb_query_font_properties_iterator.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_query_font.3 xcb_query_font_properties_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_query_font.3 xcb_query_font_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_query_font.3 xcb_query_font_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_query_keymap.3 xcb_query_keymap_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_query_keymap.3 xcb_query_keymap_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_query_pointer.3 xcb_query_pointer_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_query_pointer.3 xcb_query_pointer_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_query_text_extents.3 xcb_query_text_extents_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_query_text_extents.3 xcb_query_text_extents_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_query_tree.3 xcb_query_tree_children.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_query_tree.3 xcb_query_tree_children_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_query_tree.3 xcb_query_tree_children_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_query_tree.3 xcb_query_tree_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_query_tree.3 xcb_query_tree_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_add_output_mode.3 xcb_randr_add_output_mode_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_change_output_property.3 xcb_randr_change_output_property_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_change_provider_property.3 xcb_randr_change_provider_property_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_configure_output_property.3 xcb_randr_configure_output_property_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_configure_provider_property.3 xcb_randr_configure_provider_property_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_create_mode.3 xcb_randr_create_mode_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_create_mode.3 xcb_randr_create_mode_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_delete_output_mode.3 xcb_randr_delete_output_mode_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_delete_output_property.3 xcb_randr_delete_output_property_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_delete_provider_property.3 xcb_randr_delete_provider_property_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_destroy_mode.3 xcb_randr_destroy_mode_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_crtc_gamma.3 xcb_randr_get_crtc_gamma_blue.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_crtc_gamma.3 xcb_randr_get_crtc_gamma_blue_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_crtc_gamma.3 xcb_randr_get_crtc_gamma_blue_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_crtc_gamma.3 xcb_randr_get_crtc_gamma_green.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_crtc_gamma.3 xcb_randr_get_crtc_gamma_green_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_crtc_gamma.3 xcb_randr_get_crtc_gamma_green_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_crtc_gamma.3 xcb_randr_get_crtc_gamma_red.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_crtc_gamma.3 xcb_randr_get_crtc_gamma_red_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_crtc_gamma.3 xcb_randr_get_crtc_gamma_red_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_crtc_gamma.3 xcb_randr_get_crtc_gamma_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_crtc_gamma.3 xcb_randr_get_crtc_gamma_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_crtc_gamma_size.3 xcb_randr_get_crtc_gamma_size_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_crtc_gamma_size.3 xcb_randr_get_crtc_gamma_size_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_crtc_info.3 xcb_randr_get_crtc_info_outputs.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_crtc_info.3 xcb_randr_get_crtc_info_outputs_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_crtc_info.3 xcb_randr_get_crtc_info_outputs_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_crtc_info.3 xcb_randr_get_crtc_info_possible.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_crtc_info.3 xcb_randr_get_crtc_info_possible_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_crtc_info.3 xcb_randr_get_crtc_info_possible_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_crtc_info.3 xcb_randr_get_crtc_info_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_crtc_info.3 xcb_randr_get_crtc_info_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_crtc_transform.3 xcb_randr_get_crtc_transform_current_filter_name.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_crtc_transform.3 xcb_randr_get_crtc_transform_current_filter_name_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_crtc_transform.3 xcb_randr_get_crtc_transform_current_filter_name_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_crtc_transform.3 xcb_randr_get_crtc_transform_current_params.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_crtc_transform.3 xcb_randr_get_crtc_transform_current_params_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_crtc_transform.3 xcb_randr_get_crtc_transform_current_params_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_crtc_transform.3 xcb_randr_get_crtc_transform_pending_filter_name.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_crtc_transform.3 xcb_randr_get_crtc_transform_pending_filter_name_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_crtc_transform.3 xcb_randr_get_crtc_transform_pending_filter_name_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_crtc_transform.3 xcb_randr_get_crtc_transform_pending_params.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_crtc_transform.3 xcb_randr_get_crtc_transform_pending_params_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_crtc_transform.3 xcb_randr_get_crtc_transform_pending_params_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_crtc_transform.3 xcb_randr_get_crtc_transform_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_crtc_transform.3 xcb_randr_get_crtc_transform_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_output_info.3 xcb_randr_get_output_info_clones.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_output_info.3 xcb_randr_get_output_info_clones_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_output_info.3 xcb_randr_get_output_info_clones_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_output_info.3 xcb_randr_get_output_info_crtcs.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_output_info.3 xcb_randr_get_output_info_crtcs_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_output_info.3 xcb_randr_get_output_info_crtcs_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_output_info.3 xcb_randr_get_output_info_modes.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_output_info.3 xcb_randr_get_output_info_modes_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_output_info.3 xcb_randr_get_output_info_modes_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_output_info.3 xcb_randr_get_output_info_name.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_output_info.3 xcb_randr_get_output_info_name_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_output_info.3 xcb_randr_get_output_info_name_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_output_info.3 xcb_randr_get_output_info_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_output_info.3 xcb_randr_get_output_info_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_output_primary.3 xcb_randr_get_output_primary_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_output_primary.3 xcb_randr_get_output_primary_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_output_property.3 xcb_randr_get_output_property_data.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_output_property.3 xcb_randr_get_output_property_data_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_output_property.3 xcb_randr_get_output_property_data_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_output_property.3 xcb_randr_get_output_property_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_output_property.3 xcb_randr_get_output_property_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_panning.3 xcb_randr_get_panning_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_panning.3 xcb_randr_get_panning_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_provider_info.3 xcb_randr_get_provider_info_associated_capability.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_provider_info.3 xcb_randr_get_provider_info_associated_capability_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_provider_info.3 xcb_randr_get_provider_info_associated_capability_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_provider_info.3 xcb_randr_get_provider_info_associated_providers.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_provider_info.3 xcb_randr_get_provider_info_associated_providers_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_provider_info.3 xcb_randr_get_provider_info_associated_providers_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_provider_info.3 xcb_randr_get_provider_info_crtcs.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_provider_info.3 xcb_randr_get_provider_info_crtcs_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_provider_info.3 xcb_randr_get_provider_info_crtcs_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_provider_info.3 xcb_randr_get_provider_info_name.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_provider_info.3 xcb_randr_get_provider_info_name_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_provider_info.3 xcb_randr_get_provider_info_name_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_provider_info.3 xcb_randr_get_provider_info_outputs.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_provider_info.3 xcb_randr_get_provider_info_outputs_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_provider_info.3 xcb_randr_get_provider_info_outputs_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_provider_info.3 xcb_randr_get_provider_info_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_provider_info.3 xcb_randr_get_provider_info_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_provider_property.3 xcb_randr_get_provider_property_data.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_provider_property.3 xcb_randr_get_provider_property_data_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_provider_property.3 xcb_randr_get_provider_property_data_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_provider_property.3 xcb_randr_get_provider_property_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_provider_property.3 xcb_randr_get_provider_property_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_providers.3 xcb_randr_get_providers_providers.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_providers.3 xcb_randr_get_providers_providers_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_providers.3 xcb_randr_get_providers_providers_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_providers.3 xcb_randr_get_providers_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_providers.3 xcb_randr_get_providers_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_screen_info.3 xcb_randr_get_screen_info_rates_iterator.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_screen_info.3 xcb_randr_get_screen_info_rates_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_screen_info.3 xcb_randr_get_screen_info_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_screen_info.3 xcb_randr_get_screen_info_sizes.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_screen_info.3 xcb_randr_get_screen_info_sizes_iterator.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_screen_info.3 xcb_randr_get_screen_info_sizes_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_screen_info.3 xcb_randr_get_screen_info_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_screen_resources.3 xcb_randr_get_screen_resources_crtcs.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_screen_resources.3 xcb_randr_get_screen_resources_crtcs_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_screen_resources.3 xcb_randr_get_screen_resources_crtcs_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_screen_resources.3 xcb_randr_get_screen_resources_modes.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_screen_resources.3 xcb_randr_get_screen_resources_modes_iterator.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_screen_resources.3 xcb_randr_get_screen_resources_modes_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_screen_resources.3 xcb_randr_get_screen_resources_names.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_screen_resources.3 xcb_randr_get_screen_resources_names_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_screen_resources.3 xcb_randr_get_screen_resources_names_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_screen_resources.3 xcb_randr_get_screen_resources_outputs.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_screen_resources.3 xcb_randr_get_screen_resources_outputs_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_screen_resources.3 xcb_randr_get_screen_resources_outputs_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_screen_resources.3 xcb_randr_get_screen_resources_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_screen_resources.3 xcb_randr_get_screen_resources_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_screen_resources_current.3 xcb_randr_get_screen_resources_current_crtcs.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_screen_resources_current.3 xcb_randr_get_screen_resources_current_crtcs_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_screen_resources_current.3 xcb_randr_get_screen_resources_current_crtcs_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_screen_resources_current.3 xcb_randr_get_screen_resources_current_modes.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_screen_resources_current.3 xcb_randr_get_screen_resources_current_modes_iterator.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_screen_resources_current.3 xcb_randr_get_screen_resources_current_modes_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_screen_resources_current.3 xcb_randr_get_screen_resources_current_names.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_screen_resources_current.3 xcb_randr_get_screen_resources_current_names_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_screen_resources_current.3 xcb_randr_get_screen_resources_current_names_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_screen_resources_current.3 xcb_randr_get_screen_resources_current_outputs.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_screen_resources_current.3 xcb_randr_get_screen_resources_current_outputs_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_screen_resources_current.3 xcb_randr_get_screen_resources_current_outputs_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_screen_resources_current.3 xcb_randr_get_screen_resources_current_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_screen_resources_current.3 xcb_randr_get_screen_resources_current_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_screen_size_range.3 xcb_randr_get_screen_size_range_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_get_screen_size_range.3 xcb_randr_get_screen_size_range_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_list_output_properties.3 xcb_randr_list_output_properties_atoms.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_list_output_properties.3 xcb_randr_list_output_properties_atoms_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_list_output_properties.3 xcb_randr_list_output_properties_atoms_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_list_output_properties.3 xcb_randr_list_output_properties_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_list_output_properties.3 xcb_randr_list_output_properties_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_list_provider_properties.3 xcb_randr_list_provider_properties_atoms.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_list_provider_properties.3 xcb_randr_list_provider_properties_atoms_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_list_provider_properties.3 xcb_randr_list_provider_properties_atoms_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_list_provider_properties.3 xcb_randr_list_provider_properties_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_list_provider_properties.3 xcb_randr_list_provider_properties_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_query_output_property.3 xcb_randr_query_output_property_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_query_output_property.3 xcb_randr_query_output_property_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_query_output_property.3 xcb_randr_query_output_property_valid_values.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_query_output_property.3 xcb_randr_query_output_property_valid_values_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_query_output_property.3 xcb_randr_query_output_property_valid_values_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_query_provider_property.3 xcb_randr_query_provider_property_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_query_provider_property.3 xcb_randr_query_provider_property_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_query_provider_property.3 xcb_randr_query_provider_property_valid_values.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_query_provider_property.3 xcb_randr_query_provider_property_valid_values_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_query_provider_property.3 xcb_randr_query_provider_property_valid_values_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_query_version.3 xcb_randr_query_version_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_query_version.3 xcb_randr_query_version_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_select_input.3 xcb_randr_select_input_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_set_crtc_config.3 xcb_randr_set_crtc_config_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_set_crtc_config.3 xcb_randr_set_crtc_config_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_set_crtc_gamma.3 xcb_randr_set_crtc_gamma_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_set_crtc_transform.3 xcb_randr_set_crtc_transform_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_set_output_primary.3 xcb_randr_set_output_primary_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_set_panning.3 xcb_randr_set_panning_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_set_panning.3 xcb_randr_set_panning_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_set_provider_offload_sink.3 xcb_randr_set_provider_offload_sink_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_set_provider_output_source.3 xcb_randr_set_provider_output_source_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_set_screen_config.3 xcb_randr_set_screen_config_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_set_screen_config.3 xcb_randr_set_screen_config_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_randr_set_screen_size.3 xcb_randr_set_screen_size_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_recolor_cursor.3 xcb_recolor_cursor_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_record_create_context.3 xcb_record_create_context_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_record_disable_context.3 xcb_record_disable_context_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_record_enable_context.3 xcb_record_enable_context_data.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_record_enable_context.3 xcb_record_enable_context_data_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_record_enable_context.3 xcb_record_enable_context_data_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_record_enable_context.3 xcb_record_enable_context_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_record_enable_context.3 xcb_record_enable_context_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_record_free_context.3 xcb_record_free_context_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_record_get_context.3 xcb_record_get_context_intercepted_clients_iterator.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_record_get_context.3 xcb_record_get_context_intercepted_clients_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_record_get_context.3 xcb_record_get_context_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_record_get_context.3 xcb_record_get_context_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_record_query_version.3 xcb_record_query_version_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_record_query_version.3 xcb_record_query_version_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_record_register_clients.3 xcb_record_register_clients_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_record_unregister_clients.3 xcb_record_unregister_clients_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_render_add_glyphs.3 xcb_render_add_glyphs_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_render_add_traps.3 xcb_render_add_traps_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_render_change_picture.3 xcb_render_change_picture_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_render_composite.3 xcb_render_composite_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_render_composite_glyphs_16.3 xcb_render_composite_glyphs_16_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_render_composite_glyphs_32.3 xcb_render_composite_glyphs_32_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_render_composite_glyphs_8.3 xcb_render_composite_glyphs_8_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_render_create_anim_cursor.3 xcb_render_create_anim_cursor_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_render_create_conical_gradient.3 xcb_render_create_conical_gradient_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_render_create_cursor.3 xcb_render_create_cursor_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_render_create_glyph_set.3 xcb_render_create_glyph_set_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_render_create_linear_gradient.3 xcb_render_create_linear_gradient_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_render_create_picture.3 xcb_render_create_picture_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_render_create_radial_gradient.3 xcb_render_create_radial_gradient_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_render_create_solid_fill.3 xcb_render_create_solid_fill_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_render_fill_rectangles.3 xcb_render_fill_rectangles_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_render_free_glyph_set.3 xcb_render_free_glyph_set_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_render_free_glyphs.3 xcb_render_free_glyphs_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_render_free_picture.3 xcb_render_free_picture_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_render_query_filters.3 xcb_render_query_filters_aliases.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_render_query_filters.3 xcb_render_query_filters_aliases_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_render_query_filters.3 xcb_render_query_filters_aliases_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_render_query_filters.3 xcb_render_query_filters_filters_iterator.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_render_query_filters.3 xcb_render_query_filters_filters_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_render_query_filters.3 xcb_render_query_filters_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_render_query_filters.3 xcb_render_query_filters_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_render_query_pict_formats.3 xcb_render_query_pict_formats_formats.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_render_query_pict_formats.3 xcb_render_query_pict_formats_formats_iterator.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_render_query_pict_formats.3 xcb_render_query_pict_formats_formats_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_render_query_pict_formats.3 xcb_render_query_pict_formats_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_render_query_pict_formats.3 xcb_render_query_pict_formats_screens_iterator.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_render_query_pict_formats.3 xcb_render_query_pict_formats_screens_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_render_query_pict_formats.3 xcb_render_query_pict_formats_subpixels.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_render_query_pict_formats.3 xcb_render_query_pict_formats_subpixels_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_render_query_pict_formats.3 xcb_render_query_pict_formats_subpixels_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_render_query_pict_formats.3 xcb_render_query_pict_formats_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_render_query_pict_index_values.3 xcb_render_query_pict_index_values_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_render_query_pict_index_values.3 xcb_render_query_pict_index_values_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_render_query_pict_index_values.3 xcb_render_query_pict_index_values_values.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_render_query_pict_index_values.3 xcb_render_query_pict_index_values_values_iterator.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_render_query_pict_index_values.3 xcb_render_query_pict_index_values_values_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_render_query_version.3 xcb_render_query_version_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_render_query_version.3 xcb_render_query_version_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_render_reference_glyph_set.3 xcb_render_reference_glyph_set_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_render_set_picture_clip_rectangles.3 xcb_render_set_picture_clip_rectangles_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_render_set_picture_filter.3 xcb_render_set_picture_filter_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_render_set_picture_transform.3 xcb_render_set_picture_transform_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_render_trapezoids.3 xcb_render_trapezoids_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_render_tri_fan.3 xcb_render_tri_fan_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_render_tri_strip.3 xcb_render_tri_strip_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_render_triangles.3 xcb_render_triangles_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_reparent_window.3 xcb_reparent_window_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_res_query_client_ids.3 xcb_res_query_client_ids_ids_iterator.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_res_query_client_ids.3 xcb_res_query_client_ids_ids_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_res_query_client_ids.3 xcb_res_query_client_ids_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_res_query_client_ids.3 xcb_res_query_client_ids_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_res_query_client_pixmap_bytes.3 xcb_res_query_client_pixmap_bytes_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_res_query_client_pixmap_bytes.3 xcb_res_query_client_pixmap_bytes_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_res_query_client_resources.3 xcb_res_query_client_resources_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_res_query_client_resources.3 xcb_res_query_client_resources_types.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_res_query_client_resources.3 xcb_res_query_client_resources_types_iterator.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_res_query_client_resources.3 xcb_res_query_client_resources_types_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_res_query_client_resources.3 xcb_res_query_client_resources_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_res_query_clients.3 xcb_res_query_clients_clients.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_res_query_clients.3 xcb_res_query_clients_clients_iterator.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_res_query_clients.3 xcb_res_query_clients_clients_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_res_query_clients.3 xcb_res_query_clients_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_res_query_clients.3 xcb_res_query_clients_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_res_query_resource_bytes.3 xcb_res_query_resource_bytes_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_res_query_resource_bytes.3 xcb_res_query_resource_bytes_sizes_iterator.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_res_query_resource_bytes.3 xcb_res_query_resource_bytes_sizes_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_res_query_resource_bytes.3 xcb_res_query_resource_bytes_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_res_query_version.3 xcb_res_query_version_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_res_query_version.3 xcb_res_query_version_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_rotate_properties.3 xcb_rotate_properties_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_screensaver_query_info.3 xcb_screensaver_query_info_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_screensaver_query_info.3 xcb_screensaver_query_info_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_screensaver_query_version.3 xcb_screensaver_query_version_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_screensaver_query_version.3 xcb_screensaver_query_version_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_screensaver_select_input.3 xcb_screensaver_select_input_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_screensaver_set_attributes.3 xcb_screensaver_set_attributes_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_screensaver_suspend.3 xcb_screensaver_suspend_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_screensaver_unset_attributes.3 xcb_screensaver_unset_attributes_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_selinux_get_client_context.3 xcb_selinux_get_client_context_context.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_selinux_get_client_context.3 xcb_selinux_get_client_context_context_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_selinux_get_client_context.3 xcb_selinux_get_client_context_context_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_selinux_get_client_context.3 xcb_selinux_get_client_context_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_selinux_get_client_context.3 xcb_selinux_get_client_context_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_selinux_get_device_context.3 xcb_selinux_get_device_context_context.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_selinux_get_device_context.3 xcb_selinux_get_device_context_context_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_selinux_get_device_context.3 xcb_selinux_get_device_context_context_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_selinux_get_device_context.3 xcb_selinux_get_device_context_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_selinux_get_device_context.3 xcb_selinux_get_device_context_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_selinux_get_device_create_context.3 xcb_selinux_get_device_create_context_context.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_selinux_get_device_create_context.3 xcb_selinux_get_device_create_context_context_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_selinux_get_device_create_context.3 xcb_selinux_get_device_create_context_context_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_selinux_get_device_create_context.3 xcb_selinux_get_device_create_context_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_selinux_get_device_create_context.3 xcb_selinux_get_device_create_context_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_selinux_get_property_context.3 xcb_selinux_get_property_context_context.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_selinux_get_property_context.3 xcb_selinux_get_property_context_context_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_selinux_get_property_context.3 xcb_selinux_get_property_context_context_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_selinux_get_property_context.3 xcb_selinux_get_property_context_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_selinux_get_property_context.3 xcb_selinux_get_property_context_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_selinux_get_property_create_context.3 xcb_selinux_get_property_create_context_context.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_selinux_get_property_create_context.3 xcb_selinux_get_property_create_context_context_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_selinux_get_property_create_context.3 xcb_selinux_get_property_create_context_context_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_selinux_get_property_create_context.3 xcb_selinux_get_property_create_context_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_selinux_get_property_create_context.3 xcb_selinux_get_property_create_context_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_selinux_get_property_data_context.3 xcb_selinux_get_property_data_context_context.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_selinux_get_property_data_context.3 xcb_selinux_get_property_data_context_context_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_selinux_get_property_data_context.3 xcb_selinux_get_property_data_context_context_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_selinux_get_property_data_context.3 xcb_selinux_get_property_data_context_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_selinux_get_property_data_context.3 xcb_selinux_get_property_data_context_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_selinux_get_property_use_context.3 xcb_selinux_get_property_use_context_context.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_selinux_get_property_use_context.3 xcb_selinux_get_property_use_context_context_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_selinux_get_property_use_context.3 xcb_selinux_get_property_use_context_context_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_selinux_get_property_use_context.3 xcb_selinux_get_property_use_context_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_selinux_get_property_use_context.3 xcb_selinux_get_property_use_context_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_selinux_get_selection_context.3 xcb_selinux_get_selection_context_context.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_selinux_get_selection_context.3 xcb_selinux_get_selection_context_context_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_selinux_get_selection_context.3 xcb_selinux_get_selection_context_context_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_selinux_get_selection_context.3 xcb_selinux_get_selection_context_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_selinux_get_selection_context.3 xcb_selinux_get_selection_context_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_selinux_get_selection_create_context.3 xcb_selinux_get_selection_create_context_context.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_selinux_get_selection_create_context.3 xcb_selinux_get_selection_create_context_context_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_selinux_get_selection_create_context.3 xcb_selinux_get_selection_create_context_context_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_selinux_get_selection_create_context.3 xcb_selinux_get_selection_create_context_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_selinux_get_selection_create_context.3 xcb_selinux_get_selection_create_context_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_selinux_get_selection_data_context.3 xcb_selinux_get_selection_data_context_context.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_selinux_get_selection_data_context.3 xcb_selinux_get_selection_data_context_context_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_selinux_get_selection_data_context.3 xcb_selinux_get_selection_data_context_context_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_selinux_get_selection_data_context.3 xcb_selinux_get_selection_data_context_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_selinux_get_selection_data_context.3 xcb_selinux_get_selection_data_context_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_selinux_get_selection_use_context.3 xcb_selinux_get_selection_use_context_context.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_selinux_get_selection_use_context.3 xcb_selinux_get_selection_use_context_context_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_selinux_get_selection_use_context.3 xcb_selinux_get_selection_use_context_context_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_selinux_get_selection_use_context.3 xcb_selinux_get_selection_use_context_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_selinux_get_selection_use_context.3 xcb_selinux_get_selection_use_context_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_selinux_get_window_context.3 xcb_selinux_get_window_context_context.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_selinux_get_window_context.3 xcb_selinux_get_window_context_context_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_selinux_get_window_context.3 xcb_selinux_get_window_context_context_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_selinux_get_window_context.3 xcb_selinux_get_window_context_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_selinux_get_window_context.3 xcb_selinux_get_window_context_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_selinux_get_window_create_context.3 xcb_selinux_get_window_create_context_context.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_selinux_get_window_create_context.3 xcb_selinux_get_window_create_context_context_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_selinux_get_window_create_context.3 xcb_selinux_get_window_create_context_context_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_selinux_get_window_create_context.3 xcb_selinux_get_window_create_context_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_selinux_get_window_create_context.3 xcb_selinux_get_window_create_context_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_selinux_list_properties.3 xcb_selinux_list_properties_properties_iterator.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_selinux_list_properties.3 xcb_selinux_list_properties_properties_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_selinux_list_properties.3 xcb_selinux_list_properties_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_selinux_list_properties.3 xcb_selinux_list_properties_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_selinux_list_selections.3 xcb_selinux_list_selections_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_selinux_list_selections.3 xcb_selinux_list_selections_selections_iterator.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_selinux_list_selections.3 xcb_selinux_list_selections_selections_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_selinux_list_selections.3 xcb_selinux_list_selections_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_selinux_query_version.3 xcb_selinux_query_version_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_selinux_query_version.3 xcb_selinux_query_version_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_selinux_set_device_context.3 xcb_selinux_set_device_context_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_selinux_set_device_create_context.3 xcb_selinux_set_device_create_context_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_selinux_set_property_create_context.3 xcb_selinux_set_property_create_context_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_selinux_set_property_use_context.3 xcb_selinux_set_property_use_context_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_selinux_set_selection_create_context.3 xcb_selinux_set_selection_create_context_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_selinux_set_selection_use_context.3 xcb_selinux_set_selection_use_context_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_selinux_set_window_create_context.3 xcb_selinux_set_window_create_context_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_send_event.3 xcb_send_event_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_set_access_control.3 xcb_set_access_control_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_set_clip_rectangles.3 xcb_set_clip_rectangles_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_set_close_down_mode.3 xcb_set_close_down_mode_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_set_dashes.3 xcb_set_dashes_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_set_font_path.3 xcb_set_font_path_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_set_input_focus.3 xcb_set_input_focus_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_set_modifier_mapping.3 xcb_set_modifier_mapping_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_set_modifier_mapping.3 xcb_set_modifier_mapping_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_set_pointer_mapping.3 xcb_set_pointer_mapping_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_set_pointer_mapping.3 xcb_set_pointer_mapping_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_set_screen_saver.3 xcb_set_screen_saver_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_set_selection_owner.3 xcb_set_selection_owner_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_shape_combine.3 xcb_shape_combine_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_shape_get_rectangles.3 xcb_shape_get_rectangles_rectangles.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_shape_get_rectangles.3 xcb_shape_get_rectangles_rectangles_iterator.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_shape_get_rectangles.3 xcb_shape_get_rectangles_rectangles_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_shape_get_rectangles.3 xcb_shape_get_rectangles_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_shape_get_rectangles.3 xcb_shape_get_rectangles_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_shape_input_selected.3 xcb_shape_input_selected_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_shape_input_selected.3 xcb_shape_input_selected_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_shape_mask.3 xcb_shape_mask_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_shape_offset.3 xcb_shape_offset_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_shape_query_extents.3 xcb_shape_query_extents_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_shape_query_extents.3 xcb_shape_query_extents_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_shape_query_version.3 xcb_shape_query_version_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_shape_query_version.3 xcb_shape_query_version_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_shape_rectangles.3 xcb_shape_rectangles_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_shape_select_input.3 xcb_shape_select_input_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_shm_attach.3 xcb_shm_attach_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_shm_attach_fd.3 xcb_shm_attach_fd_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_shm_create_pixmap.3 xcb_shm_create_pixmap_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_shm_create_segment.3 xcb_shm_create_segment_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_shm_create_segment.3 xcb_shm_create_segment_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_shm_detach.3 xcb_shm_detach_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_shm_get_image.3 xcb_shm_get_image_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_shm_get_image.3 xcb_shm_get_image_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_shm_put_image.3 xcb_shm_put_image_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_shm_query_version.3 xcb_shm_query_version_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_shm_query_version.3 xcb_shm_query_version_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_store_colors.3 xcb_store_colors_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_store_named_color.3 xcb_store_named_color_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_sync_await.3 xcb_sync_await_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_sync_await_fence.3 xcb_sync_await_fence_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_sync_change_alarm.3 xcb_sync_change_alarm_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_sync_change_counter.3 xcb_sync_change_counter_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_sync_create_alarm.3 xcb_sync_create_alarm_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_sync_create_counter.3 xcb_sync_create_counter_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_sync_create_fence.3 xcb_sync_create_fence_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_sync_destroy_alarm.3 xcb_sync_destroy_alarm_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_sync_destroy_counter.3 xcb_sync_destroy_counter_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_sync_destroy_fence.3 xcb_sync_destroy_fence_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_sync_get_priority.3 xcb_sync_get_priority_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_sync_get_priority.3 xcb_sync_get_priority_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_sync_initialize.3 xcb_sync_initialize_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_sync_initialize.3 xcb_sync_initialize_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_sync_list_system_counters.3 xcb_sync_list_system_counters_counters_iterator.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_sync_list_system_counters.3 xcb_sync_list_system_counters_counters_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_sync_list_system_counters.3 xcb_sync_list_system_counters_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_sync_list_system_counters.3 xcb_sync_list_system_counters_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_sync_query_alarm.3 xcb_sync_query_alarm_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_sync_query_alarm.3 xcb_sync_query_alarm_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_sync_query_counter.3 xcb_sync_query_counter_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_sync_query_counter.3 xcb_sync_query_counter_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_sync_query_fence.3 xcb_sync_query_fence_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_sync_query_fence.3 xcb_sync_query_fence_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_sync_reset_fence.3 xcb_sync_reset_fence_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_sync_set_counter.3 xcb_sync_set_counter_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_sync_set_priority.3 xcb_sync_set_priority_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_sync_trigger_fence.3 xcb_sync_trigger_fence_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_test_compare_cursor.3 xcb_test_compare_cursor_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_test_compare_cursor.3 xcb_test_compare_cursor_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_test_fake_input.3 xcb_test_fake_input_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_test_get_version.3 xcb_test_get_version_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_test_get_version.3 xcb_test_get_version_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_test_grab_control.3 xcb_test_grab_control_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_translate_coordinates.3 xcb_translate_coordinates_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_translate_coordinates.3 xcb_translate_coordinates_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_ungrab_button.3 xcb_ungrab_button_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_ungrab_key.3 xcb_ungrab_key_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_ungrab_keyboard.3 xcb_ungrab_keyboard_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_ungrab_pointer.3 xcb_ungrab_pointer_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_ungrab_server.3 xcb_ungrab_server_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_uninstall_colormap.3 xcb_uninstall_colormap_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_unmap_subwindows.3 xcb_unmap_subwindows_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_unmap_window.3 xcb_unmap_window_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_warp_pointer.3 xcb_warp_pointer_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_x_print_create_context.3 xcb_x_print_create_context_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_x_print_print_destroy_context.3 xcb_x_print_print_destroy_context_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_x_print_print_end_doc.3 xcb_x_print_print_end_doc_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_x_print_print_end_job.3 xcb_x_print_print_end_job_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_x_print_print_end_page.3 xcb_x_print_print_end_page_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_x_print_print_get_attributes.3 xcb_x_print_print_get_attributes_attributes.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_x_print_print_get_attributes.3 xcb_x_print_print_get_attributes_attributes_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_x_print_print_get_attributes.3 xcb_x_print_print_get_attributes_attributes_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_x_print_print_get_attributes.3 xcb_x_print_print_get_attributes_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_x_print_print_get_attributes.3 xcb_x_print_print_get_attributes_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_x_print_print_get_context.3 xcb_x_print_print_get_context_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_x_print_print_get_context.3 xcb_x_print_print_get_context_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_x_print_print_get_document_data.3 xcb_x_print_print_get_document_data_data.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_x_print_print_get_document_data.3 xcb_x_print_print_get_document_data_data_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_x_print_print_get_document_data.3 xcb_x_print_print_get_document_data_data_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_x_print_print_get_document_data.3 xcb_x_print_print_get_document_data_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_x_print_print_get_document_data.3 xcb_x_print_print_get_document_data_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_x_print_print_get_image_resolution.3 xcb_x_print_print_get_image_resolution_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_x_print_print_get_image_resolution.3 xcb_x_print_print_get_image_resolution_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_x_print_print_get_one_attributes.3 xcb_x_print_print_get_one_attributes_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_x_print_print_get_one_attributes.3 xcb_x_print_print_get_one_attributes_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_x_print_print_get_one_attributes.3 xcb_x_print_print_get_one_attributes_value.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_x_print_print_get_one_attributes.3 xcb_x_print_print_get_one_attributes_value_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_x_print_print_get_one_attributes.3 xcb_x_print_print_get_one_attributes_value_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_x_print_print_get_page_dimensions.3 xcb_x_print_print_get_page_dimensions_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_x_print_print_get_page_dimensions.3 xcb_x_print_print_get_page_dimensions_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_x_print_print_get_printer_list.3 xcb_x_print_print_get_printer_list_printers_iterator.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_x_print_print_get_printer_list.3 xcb_x_print_print_get_printer_list_printers_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_x_print_print_get_printer_list.3 xcb_x_print_print_get_printer_list_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_x_print_print_get_printer_list.3 xcb_x_print_print_get_printer_list_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_x_print_print_get_screen_of_context.3 xcb_x_print_print_get_screen_of_context_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_x_print_print_get_screen_of_context.3 xcb_x_print_print_get_screen_of_context_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_x_print_print_input_selected.3 xcb_x_print_print_input_selected_all_events_list.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_x_print_print_input_selected.3 xcb_x_print_print_input_selected_all_events_list_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_x_print_print_input_selected.3 xcb_x_print_print_input_selected_all_events_list_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_x_print_print_input_selected.3 xcb_x_print_print_input_selected_event_list.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_x_print_print_input_selected.3 xcb_x_print_print_input_selected_event_list_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_x_print_print_input_selected.3 xcb_x_print_print_input_selected_event_list_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_x_print_print_input_selected.3 xcb_x_print_print_input_selected_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_x_print_print_input_selected.3 xcb_x_print_print_input_selected_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_x_print_print_put_document_data.3 xcb_x_print_print_put_document_data_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_x_print_print_query_screens.3 xcb_x_print_print_query_screens_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_x_print_print_query_screens.3 xcb_x_print_print_query_screens_roots.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_x_print_print_query_screens.3 xcb_x_print_print_query_screens_roots_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_x_print_print_query_screens.3 xcb_x_print_print_query_screens_roots_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_x_print_print_query_screens.3 xcb_x_print_print_query_screens_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_x_print_print_query_version.3 xcb_x_print_print_query_version_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_x_print_print_query_version.3 xcb_x_print_print_query_version_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_x_print_print_rehash_printer_list.3 xcb_x_print_print_rehash_printer_list_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_x_print_print_select_input.3 xcb_x_print_print_select_input_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_x_print_print_set_attributes.3 xcb_x_print_print_set_attributes_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_x_print_print_set_context.3 xcb_x_print_print_set_context_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_x_print_print_set_image_resolution.3 xcb_x_print_print_set_image_resolution_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_x_print_print_set_image_resolution.3 xcb_x_print_print_set_image_resolution_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_x_print_print_start_doc.3 xcb_x_print_print_start_doc_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_x_print_print_start_job.3 xcb_x_print_print_start_job_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_x_print_print_start_page.3 xcb_x_print_print_start_page_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xc_misc_get_version.3 xcb_xc_misc_get_version_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xc_misc_get_version.3 xcb_xc_misc_get_version_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xc_misc_get_xid_list.3 xcb_xc_misc_get_xid_list_ids.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xc_misc_get_xid_list.3 xcb_xc_misc_get_xid_list_ids_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xc_misc_get_xid_list.3 xcb_xc_misc_get_xid_list_ids_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xc_misc_get_xid_list.3 xcb_xc_misc_get_xid_list_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xc_misc_get_xid_list.3 xcb_xc_misc_get_xid_list_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xc_misc_get_xid_range.3 xcb_xc_misc_get_xid_range_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xc_misc_get_xid_range.3 xcb_xc_misc_get_xid_range_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xevie_end.3 xcb_xevie_end_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xevie_end.3 xcb_xevie_end_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xevie_query_version.3 xcb_xevie_query_version_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xevie_query_version.3 xcb_xevie_query_version_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xevie_select_input.3 xcb_xevie_select_input_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xevie_select_input.3 xcb_xevie_select_input_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xevie_send.3 xcb_xevie_send_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xevie_send.3 xcb_xevie_send_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xevie_start.3 xcb_xevie_start_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xevie_start.3 xcb_xevie_start_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xf86dri_auth_connection.3 xcb_xf86dri_auth_connection_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xf86dri_auth_connection.3 xcb_xf86dri_auth_connection_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xf86dri_close_connection.3 xcb_xf86dri_close_connection_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xf86dri_create_context.3 xcb_xf86dri_create_context_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xf86dri_create_context.3 xcb_xf86dri_create_context_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xf86dri_create_drawable.3 xcb_xf86dri_create_drawable_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xf86dri_create_drawable.3 xcb_xf86dri_create_drawable_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xf86dri_destroy_context.3 xcb_xf86dri_destroy_context_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xf86dri_destroy_drawable.3 xcb_xf86dri_destroy_drawable_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xf86dri_get_client_driver_name.3 xcb_xf86dri_get_client_driver_name_client_driver_name.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xf86dri_get_client_driver_name.3 xcb_xf86dri_get_client_driver_name_client_driver_name_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xf86dri_get_client_driver_name.3 xcb_xf86dri_get_client_driver_name_client_driver_name_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xf86dri_get_client_driver_name.3 xcb_xf86dri_get_client_driver_name_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xf86dri_get_client_driver_name.3 xcb_xf86dri_get_client_driver_name_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xf86dri_get_device_info.3 xcb_xf86dri_get_device_info_device_private.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xf86dri_get_device_info.3 xcb_xf86dri_get_device_info_device_private_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xf86dri_get_device_info.3 xcb_xf86dri_get_device_info_device_private_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xf86dri_get_device_info.3 xcb_xf86dri_get_device_info_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xf86dri_get_device_info.3 xcb_xf86dri_get_device_info_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xf86dri_get_drawable_info.3 xcb_xf86dri_get_drawable_info_back_clip_rects.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xf86dri_get_drawable_info.3 xcb_xf86dri_get_drawable_info_back_clip_rects_iterator.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xf86dri_get_drawable_info.3 xcb_xf86dri_get_drawable_info_back_clip_rects_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xf86dri_get_drawable_info.3 xcb_xf86dri_get_drawable_info_clip_rects.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xf86dri_get_drawable_info.3 xcb_xf86dri_get_drawable_info_clip_rects_iterator.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xf86dri_get_drawable_info.3 xcb_xf86dri_get_drawable_info_clip_rects_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xf86dri_get_drawable_info.3 xcb_xf86dri_get_drawable_info_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xf86dri_get_drawable_info.3 xcb_xf86dri_get_drawable_info_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xf86dri_open_connection.3 xcb_xf86dri_open_connection_bus_id.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xf86dri_open_connection.3 xcb_xf86dri_open_connection_bus_id_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xf86dri_open_connection.3 xcb_xf86dri_open_connection_bus_id_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xf86dri_open_connection.3 xcb_xf86dri_open_connection_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xf86dri_open_connection.3 xcb_xf86dri_open_connection_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xf86dri_query_direct_rendering_capable.3 xcb_xf86dri_query_direct_rendering_capable_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xf86dri_query_direct_rendering_capable.3 xcb_xf86dri_query_direct_rendering_capable_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xf86dri_query_version.3 xcb_xf86dri_query_version_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xf86dri_query_version.3 xcb_xf86dri_query_version_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xfixes_change_cursor.3 xcb_xfixes_change_cursor_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xfixes_change_cursor_by_name.3 xcb_xfixes_change_cursor_by_name_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xfixes_change_save_set.3 xcb_xfixes_change_save_set_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xfixes_copy_region.3 xcb_xfixes_copy_region_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xfixes_create_pointer_barrier.3 xcb_xfixes_create_pointer_barrier_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xfixes_create_region.3 xcb_xfixes_create_region_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xfixes_create_region_from_bitmap.3 xcb_xfixes_create_region_from_bitmap_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xfixes_create_region_from_gc.3 xcb_xfixes_create_region_from_gc_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xfixes_create_region_from_picture.3 xcb_xfixes_create_region_from_picture_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xfixes_create_region_from_window.3 xcb_xfixes_create_region_from_window_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xfixes_delete_pointer_barrier.3 xcb_xfixes_delete_pointer_barrier_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xfixes_destroy_region.3 xcb_xfixes_destroy_region_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xfixes_expand_region.3 xcb_xfixes_expand_region_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xfixes_fetch_region.3 xcb_xfixes_fetch_region_rectangles.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xfixes_fetch_region.3 xcb_xfixes_fetch_region_rectangles_iterator.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xfixes_fetch_region.3 xcb_xfixes_fetch_region_rectangles_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xfixes_fetch_region.3 xcb_xfixes_fetch_region_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xfixes_fetch_region.3 xcb_xfixes_fetch_region_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xfixes_get_cursor_image.3 xcb_xfixes_get_cursor_image_cursor_image.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xfixes_get_cursor_image.3 xcb_xfixes_get_cursor_image_cursor_image_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xfixes_get_cursor_image.3 xcb_xfixes_get_cursor_image_cursor_image_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xfixes_get_cursor_image.3 xcb_xfixes_get_cursor_image_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xfixes_get_cursor_image.3 xcb_xfixes_get_cursor_image_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xfixes_get_cursor_image_and_name.3 xcb_xfixes_get_cursor_image_and_name_cursor_image.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xfixes_get_cursor_image_and_name.3 xcb_xfixes_get_cursor_image_and_name_cursor_image_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xfixes_get_cursor_image_and_name.3 xcb_xfixes_get_cursor_image_and_name_cursor_image_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xfixes_get_cursor_image_and_name.3 xcb_xfixes_get_cursor_image_and_name_name.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xfixes_get_cursor_image_and_name.3 xcb_xfixes_get_cursor_image_and_name_name_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xfixes_get_cursor_image_and_name.3 xcb_xfixes_get_cursor_image_and_name_name_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xfixes_get_cursor_image_and_name.3 xcb_xfixes_get_cursor_image_and_name_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xfixes_get_cursor_image_and_name.3 xcb_xfixes_get_cursor_image_and_name_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xfixes_get_cursor_name.3 xcb_xfixes_get_cursor_name_name.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xfixes_get_cursor_name.3 xcb_xfixes_get_cursor_name_name_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xfixes_get_cursor_name.3 xcb_xfixes_get_cursor_name_name_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xfixes_get_cursor_name.3 xcb_xfixes_get_cursor_name_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xfixes_get_cursor_name.3 xcb_xfixes_get_cursor_name_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xfixes_hide_cursor.3 xcb_xfixes_hide_cursor_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xfixes_intersect_region.3 xcb_xfixes_intersect_region_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xfixes_invert_region.3 xcb_xfixes_invert_region_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xfixes_query_version.3 xcb_xfixes_query_version_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xfixes_query_version.3 xcb_xfixes_query_version_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xfixes_region_extents.3 xcb_xfixes_region_extents_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xfixes_select_cursor_input.3 xcb_xfixes_select_cursor_input_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xfixes_select_selection_input.3 xcb_xfixes_select_selection_input_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xfixes_set_cursor_name.3 xcb_xfixes_set_cursor_name_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xfixes_set_gc_clip_region.3 xcb_xfixes_set_gc_clip_region_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xfixes_set_picture_clip_region.3 xcb_xfixes_set_picture_clip_region_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xfixes_set_region.3 xcb_xfixes_set_region_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xfixes_set_window_shape_region.3 xcb_xfixes_set_window_shape_region_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xfixes_show_cursor.3 xcb_xfixes_show_cursor_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xfixes_subtract_region.3 xcb_xfixes_subtract_region_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xfixes_translate_region.3 xcb_xfixes_translate_region_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xfixes_union_region.3 xcb_xfixes_union_region_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xinerama_get_screen_count.3 xcb_xinerama_get_screen_count_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xinerama_get_screen_count.3 xcb_xinerama_get_screen_count_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xinerama_get_screen_size.3 xcb_xinerama_get_screen_size_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xinerama_get_screen_size.3 xcb_xinerama_get_screen_size_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xinerama_get_state.3 xcb_xinerama_get_state_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xinerama_get_state.3 xcb_xinerama_get_state_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xinerama_is_active.3 xcb_xinerama_is_active_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xinerama_is_active.3 xcb_xinerama_is_active_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xinerama_query_screens.3 xcb_xinerama_query_screens_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xinerama_query_screens.3 xcb_xinerama_query_screens_screen_info.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xinerama_query_screens.3 xcb_xinerama_query_screens_screen_info_iterator.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xinerama_query_screens.3 xcb_xinerama_query_screens_screen_info_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xinerama_query_screens.3 xcb_xinerama_query_screens_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xinerama_query_version.3 xcb_xinerama_query_version_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xinerama_query_version.3 xcb_xinerama_query_version_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xkb_bell.3 xcb_xkb_bell_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xkb_get_compat_map.3 xcb_xkb_get_compat_map_group_rtrn.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xkb_get_compat_map.3 xcb_xkb_get_compat_map_group_rtrn_iterator.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xkb_get_compat_map.3 xcb_xkb_get_compat_map_group_rtrn_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xkb_get_compat_map.3 xcb_xkb_get_compat_map_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xkb_get_compat_map.3 xcb_xkb_get_compat_map_si_rtrn.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xkb_get_compat_map.3 xcb_xkb_get_compat_map_si_rtrn_iterator.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xkb_get_compat_map.3 xcb_xkb_get_compat_map_si_rtrn_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xkb_get_compat_map.3 xcb_xkb_get_compat_map_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xkb_get_controls.3 xcb_xkb_get_controls_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xkb_get_controls.3 xcb_xkb_get_controls_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xkb_get_device_info.3 xcb_xkb_get_device_info_btn_actions.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xkb_get_device_info.3 xcb_xkb_get_device_info_btn_actions_iterator.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xkb_get_device_info.3 xcb_xkb_get_device_info_btn_actions_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xkb_get_device_info.3 xcb_xkb_get_device_info_leds_iterator.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xkb_get_device_info.3 xcb_xkb_get_device_info_leds_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xkb_get_device_info.3 xcb_xkb_get_device_info_name.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xkb_get_device_info.3 xcb_xkb_get_device_info_name_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xkb_get_device_info.3 xcb_xkb_get_device_info_name_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xkb_get_device_info.3 xcb_xkb_get_device_info_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xkb_get_device_info.3 xcb_xkb_get_device_info_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xkb_get_indicator_map.3 xcb_xkb_get_indicator_map_maps.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xkb_get_indicator_map.3 xcb_xkb_get_indicator_map_maps_iterator.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xkb_get_indicator_map.3 xcb_xkb_get_indicator_map_maps_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xkb_get_indicator_map.3 xcb_xkb_get_indicator_map_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xkb_get_indicator_map.3 xcb_xkb_get_indicator_map_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xkb_get_indicator_state.3 xcb_xkb_get_indicator_state_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xkb_get_indicator_state.3 xcb_xkb_get_indicator_state_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xkb_get_kbd_by_name.3 xcb_xkb_get_kbd_by_name_replies.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xkb_get_kbd_by_name.3 xcb_xkb_get_kbd_by_name_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xkb_get_kbd_by_name.3 xcb_xkb_get_kbd_by_name_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xkb_get_map.3 xcb_xkb_get_map_map.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xkb_get_map.3 xcb_xkb_get_map_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xkb_get_map.3 xcb_xkb_get_map_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xkb_get_named_indicator.3 xcb_xkb_get_named_indicator_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xkb_get_named_indicator.3 xcb_xkb_get_named_indicator_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xkb_get_names.3 xcb_xkb_get_names_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xkb_get_names.3 xcb_xkb_get_names_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xkb_get_names.3 xcb_xkb_get_names_value_list.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xkb_get_state.3 xcb_xkb_get_state_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xkb_get_state.3 xcb_xkb_get_state_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xkb_latch_lock_state.3 xcb_xkb_latch_lock_state_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xkb_list_components.3 xcb_xkb_list_components_compat_maps_iterator.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xkb_list_components.3 xcb_xkb_list_components_compat_maps_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xkb_list_components.3 xcb_xkb_list_components_geometries_iterator.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xkb_list_components.3 xcb_xkb_list_components_geometries_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xkb_list_components.3 xcb_xkb_list_components_keycodes_iterator.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xkb_list_components.3 xcb_xkb_list_components_keycodes_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xkb_list_components.3 xcb_xkb_list_components_keymaps_iterator.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xkb_list_components.3 xcb_xkb_list_components_keymaps_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xkb_list_components.3 xcb_xkb_list_components_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xkb_list_components.3 xcb_xkb_list_components_symbols_iterator.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xkb_list_components.3 xcb_xkb_list_components_symbols_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xkb_list_components.3 xcb_xkb_list_components_types_iterator.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xkb_list_components.3 xcb_xkb_list_components_types_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xkb_list_components.3 xcb_xkb_list_components_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xkb_per_client_flags.3 xcb_xkb_per_client_flags_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xkb_per_client_flags.3 xcb_xkb_per_client_flags_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xkb_select_events.3 xcb_xkb_select_events_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xkb_set_compat_map.3 xcb_xkb_set_compat_map_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xkb_set_controls.3 xcb_xkb_set_controls_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xkb_set_debugging_flags.3 xcb_xkb_set_debugging_flags_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xkb_set_debugging_flags.3 xcb_xkb_set_debugging_flags_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xkb_set_device_info.3 xcb_xkb_set_device_info_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xkb_set_indicator_map.3 xcb_xkb_set_indicator_map_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xkb_set_map.3 xcb_xkb_set_map_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xkb_set_named_indicator.3 xcb_xkb_set_named_indicator_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xkb_set_names.3 xcb_xkb_set_names_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xkb_use_extension.3 xcb_xkb_use_extension_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xkb_use_extension.3 xcb_xkb_use_extension_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xv_get_port_attribute.3 xcb_xv_get_port_attribute_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xv_get_port_attribute.3 xcb_xv_get_port_attribute_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xv_get_still.3 xcb_xv_get_still_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xv_get_video.3 xcb_xv_get_video_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xv_grab_port.3 xcb_xv_grab_port_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xv_grab_port.3 xcb_xv_grab_port_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xv_list_image_formats.3 xcb_xv_list_image_formats_format.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xv_list_image_formats.3 xcb_xv_list_image_formats_format_iterator.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xv_list_image_formats.3 xcb_xv_list_image_formats_format_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xv_list_image_formats.3 xcb_xv_list_image_formats_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xv_list_image_formats.3 xcb_xv_list_image_formats_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xv_put_image.3 xcb_xv_put_image_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xv_put_still.3 xcb_xv_put_still_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xv_put_video.3 xcb_xv_put_video_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xv_query_adaptors.3 xcb_xv_query_adaptors_info_iterator.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xv_query_adaptors.3 xcb_xv_query_adaptors_info_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xv_query_adaptors.3 xcb_xv_query_adaptors_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xv_query_adaptors.3 xcb_xv_query_adaptors_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xv_query_best_size.3 xcb_xv_query_best_size_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xv_query_best_size.3 xcb_xv_query_best_size_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xv_query_encodings.3 xcb_xv_query_encodings_info_iterator.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xv_query_encodings.3 xcb_xv_query_encodings_info_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xv_query_encodings.3 xcb_xv_query_encodings_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xv_query_encodings.3 xcb_xv_query_encodings_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xv_query_extension.3 xcb_xv_query_extension_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xv_query_extension.3 xcb_xv_query_extension_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xv_query_image_attributes.3 xcb_xv_query_image_attributes_offsets.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xv_query_image_attributes.3 xcb_xv_query_image_attributes_offsets_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xv_query_image_attributes.3 xcb_xv_query_image_attributes_offsets_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xv_query_image_attributes.3 xcb_xv_query_image_attributes_pitches.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xv_query_image_attributes.3 xcb_xv_query_image_attributes_pitches_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xv_query_image_attributes.3 xcb_xv_query_image_attributes_pitches_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xv_query_image_attributes.3 xcb_xv_query_image_attributes_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xv_query_image_attributes.3 xcb_xv_query_image_attributes_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xv_query_port_attributes.3 xcb_xv_query_port_attributes_attributes_iterator.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xv_query_port_attributes.3 xcb_xv_query_port_attributes_attributes_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xv_query_port_attributes.3 xcb_xv_query_port_attributes_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xv_query_port_attributes.3 xcb_xv_query_port_attributes_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xv_select_port_notify.3 xcb_xv_select_port_notify_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xv_select_video_notify.3 xcb_xv_select_video_notify_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xv_set_port_attribute.3 xcb_xv_set_port_attribute_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xv_shm_put_image.3 xcb_xv_shm_put_image_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xv_stop_video.3 xcb_xv_stop_video_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xv_ungrab_port.3 xcb_xv_ungrab_port_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xvmc_create_context.3 xcb_xvmc_create_context_priv_data.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xvmc_create_context.3 xcb_xvmc_create_context_priv_data_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xvmc_create_context.3 xcb_xvmc_create_context_priv_data_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xvmc_create_context.3 xcb_xvmc_create_context_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xvmc_create_context.3 xcb_xvmc_create_context_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xvmc_create_subpicture.3 xcb_xvmc_create_subpicture_priv_data.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xvmc_create_subpicture.3 xcb_xvmc_create_subpicture_priv_data_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xvmc_create_subpicture.3 xcb_xvmc_create_subpicture_priv_data_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xvmc_create_subpicture.3 xcb_xvmc_create_subpicture_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xvmc_create_subpicture.3 xcb_xvmc_create_subpicture_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xvmc_create_surface.3 xcb_xvmc_create_surface_priv_data.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xvmc_create_surface.3 xcb_xvmc_create_surface_priv_data_end.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xvmc_create_surface.3 xcb_xvmc_create_surface_priv_data_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xvmc_create_surface.3 xcb_xvmc_create_surface_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xvmc_create_surface.3 xcb_xvmc_create_surface_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xvmc_destroy_context.3 xcb_xvmc_destroy_context_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xvmc_destroy_subpicture.3 xcb_xvmc_destroy_subpicture_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xvmc_destroy_surface.3 xcb_xvmc_destroy_surface_checked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xvmc_list_subpicture_types.3 xcb_xvmc_list_subpicture_types_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xvmc_list_subpicture_types.3 xcb_xvmc_list_subpicture_types_types.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xvmc_list_subpicture_types.3 xcb_xvmc_list_subpicture_types_types_iterator.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xvmc_list_subpicture_types.3 xcb_xvmc_list_subpicture_types_types_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xvmc_list_subpicture_types.3 xcb_xvmc_list_subpicture_types_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xvmc_list_surface_types.3 xcb_xvmc_list_surface_types_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xvmc_list_surface_types.3 xcb_xvmc_list_surface_types_surfaces.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xvmc_list_surface_types.3 xcb_xvmc_list_surface_types_surfaces_iterator.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xvmc_list_surface_types.3 xcb_xvmc_list_surface_types_surfaces_length.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xvmc_list_surface_types.3 xcb_xvmc_list_surface_types_unchecked.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xvmc_query_version.3 xcb_xvmc_query_version_reply.3 + cd ${STAGEDIR}/${PREFIX}/man/man3 && ${LN} -sf xcb_xvmc_query_version.3 xcb_xvmc_query_version_unchecked.3 + +.include + +#EOF diff --git a/x11/libxcb/distinfo b/x11/libxcb/distinfo new file mode 100644 index 00000000..e2d31315 --- /dev/null +++ b/x11/libxcb/distinfo @@ -0,0 +1,2 @@ +SHA256 (x11/libxcb-1.13.1.tar.bz2) = a89fb7af7a11f43d2ce84a844a4b38df688c092bf4b67683aef179cdf2a647c4 +SIZE (x11/libxcb-1.13.1.tar.bz2) = 506778 diff --git a/x11/libxcb/files/patch-x-build-aux-ltmain.sh b/x11/libxcb/files/patch-x-build-aux-ltmain.sh new file mode 100644 index 00000000..8d5f816e --- /dev/null +++ b/x11/libxcb/files/patch-x-build-aux-ltmain.sh @@ -0,0 +1,36 @@ +--- ./build-aux/ltmain.sh.orig 2016-05-18 18:44:46.000000000 +0200 ++++ ./build-aux/ltmain.sh 2017-04-24 19:58:15.099685000 +0200 +@@ -8811,13 +8811,13 @@ + # + case $version_type in + # correct linux to gnu/linux during the next big refactor +- darwin|freebsd-elf|linux|osf|windows|none) ++ darwin|linux|osf|windows|none) + func_arith $number_major + $number_minor + current=$func_arith_result + age=$number_minor + revision=$number_revision + ;; +- freebsd-aout|qnx|sunos) ++ freebsd*|qnx|sunos) + current=$number_major + revision=$number_minor + age=0 +@@ -8900,15 +8900,9 @@ + esac + ;; + +- freebsd-aout) ++ freebsd*) + major=.$current +- versuffix=.$current.$revision +- ;; +- +- freebsd-elf) +- func_arith $current - $age +- major=.$func_arith_result +- versuffix=$major.$age.$revision ++ versuffix=.$current + ;; + + irix | nonstopux) diff --git a/x11/libxcb/pkg-descr b/x11/libxcb/pkg-descr new file mode 100644 index 00000000..71dbc12d --- /dev/null +++ b/x11/libxcb/pkg-descr @@ -0,0 +1,20 @@ +X - a portable, network-transparent window system + +The X Window System is a network transparent window system which +runs on a wide range of computing and graphics machines. It should +be relatively straightforward to build the X.Org Foundation software +distribution on most ANSI C and POSIX compliant systems. Commercial +implementations are also available for a wide range of platforms. + +The X.Org Foundation requests that the following names be used when +referring to this software: + X + X Window System + X Version 11 + X Window System, Version 11 + X11 + +X Window System is a trademark of The Open Group. + +WWW: http://www.X.org + diff --git a/x11/libxcb/pkg-plist b/x11/libxcb/pkg-plist new file mode 100644 index 00000000..c4f8e716 --- /dev/null +++ b/x11/libxcb/pkg-plist @@ -0,0 +1,2441 @@ +include/xcb/bigreq.h +include/xcb/composite.h +include/xcb/damage.h +include/xcb/dpms.h +include/xcb/dri2.h +include/xcb/dri3.h +include/xcb/ge.h +include/xcb/glx.h +include/xcb/present.h +include/xcb/randr.h +include/xcb/record.h +include/xcb/render.h +include/xcb/res.h +include/xcb/screensaver.h +include/xcb/shape.h +include/xcb/shm.h +include/xcb/sync.h +include/xcb/xc_misc.h +include/xcb/xcb.h +include/xcb/xcbext.h +include/xcb/xevie.h +include/xcb/xf86dri.h +include/xcb/xfixes.h +include/xcb/xinerama.h +include/xcb/xinput.h +include/xcb/xkb.h +include/xcb/xprint.h +include/xcb/xproto.h +include/xcb/xselinux.h +include/xcb/xtest.h +include/xcb/xv.h +include/xcb/xvmc.h +lib/libxcb-composite.a +lib/libxcb-composite.la +lib/libxcb-composite.so +lib/libxcb-composite.so.0 +lib/libxcb-damage.a +lib/libxcb-damage.la +lib/libxcb-damage.so +lib/libxcb-damage.so.0 +lib/libxcb-dpms.a +lib/libxcb-dpms.la +lib/libxcb-dpms.so +lib/libxcb-dpms.so.0 +lib/libxcb-dri2.a +lib/libxcb-dri2.la +lib/libxcb-dri2.so +lib/libxcb-dri2.so.0 +lib/libxcb-dri3.a +lib/libxcb-dri3.la +lib/libxcb-dri3.so +lib/libxcb-dri3.so.0 +lib/libxcb-glx.a +lib/libxcb-glx.la +lib/libxcb-glx.so +lib/libxcb-glx.so.0 +lib/libxcb-present.a +lib/libxcb-present.la +lib/libxcb-present.so +lib/libxcb-present.so.0 +lib/libxcb-randr.a +lib/libxcb-randr.la +lib/libxcb-randr.so +lib/libxcb-randr.so.1 +lib/libxcb-record.a +lib/libxcb-record.la +lib/libxcb-record.so +lib/libxcb-record.so.0 +lib/libxcb-render.a +lib/libxcb-render.la +lib/libxcb-render.so +lib/libxcb-render.so.0 +lib/libxcb-res.a +lib/libxcb-res.la +lib/libxcb-res.so +lib/libxcb-res.so.0 +lib/libxcb-screensaver.a +lib/libxcb-screensaver.la +lib/libxcb-screensaver.so +lib/libxcb-screensaver.so.0 +lib/libxcb-shape.a +lib/libxcb-shape.la +lib/libxcb-shape.so +lib/libxcb-shape.so.0 +lib/libxcb-shm.a +lib/libxcb-shm.la +lib/libxcb-shm.so +lib/libxcb-shm.so.0 +lib/libxcb-sync.a +lib/libxcb-sync.la +lib/libxcb-sync.so +lib/libxcb-sync.so.1 +lib/libxcb-xevie.a +lib/libxcb-xevie.la +lib/libxcb-xevie.so +lib/libxcb-xevie.so.0 +lib/libxcb-xf86dri.a +lib/libxcb-xf86dri.la +lib/libxcb-xf86dri.so +lib/libxcb-xf86dri.so.0 +lib/libxcb-xfixes.a +lib/libxcb-xfixes.la +lib/libxcb-xfixes.so +lib/libxcb-xfixes.so.0 +lib/libxcb-xinerama.a +lib/libxcb-xinerama.la +lib/libxcb-xinerama.so +lib/libxcb-xinerama.so.0 +lib/libxcb-xinput.a +lib/libxcb-xinput.la +lib/libxcb-xinput.so +lib/libxcb-xinput.so.1 +lib/libxcb-xkb.a +lib/libxcb-xkb.la +lib/libxcb-xkb.so +lib/libxcb-xkb.so.1 +lib/libxcb-xprint.a +lib/libxcb-xprint.la +lib/libxcb-xprint.so +lib/libxcb-xprint.so.0 +lib/libxcb-xtest.a +lib/libxcb-xtest.la +lib/libxcb-xtest.so +lib/libxcb-xtest.so.0 +lib/libxcb-xv.a +lib/libxcb-xv.la +lib/libxcb-xv.so +lib/libxcb-xv.so.0 +lib/libxcb-xvmc.a +lib/libxcb-xvmc.la +lib/libxcb-xvmc.so +lib/libxcb-xvmc.so.0 +lib/libxcb.a +lib/libxcb.la +lib/libxcb.so +lib/libxcb.so.2 +lib/pkgconfig/xcb-composite.pc +lib/pkgconfig/xcb-damage.pc +lib/pkgconfig/xcb-dpms.pc +lib/pkgconfig/xcb-dri2.pc +lib/pkgconfig/xcb-dri3.pc +lib/pkgconfig/xcb-glx.pc +lib/pkgconfig/xcb-present.pc +lib/pkgconfig/xcb-randr.pc +lib/pkgconfig/xcb-record.pc +lib/pkgconfig/xcb-render.pc +lib/pkgconfig/xcb-res.pc +lib/pkgconfig/xcb-screensaver.pc +lib/pkgconfig/xcb-shape.pc +lib/pkgconfig/xcb-shm.pc +lib/pkgconfig/xcb-sync.pc +lib/pkgconfig/xcb-xevie.pc +lib/pkgconfig/xcb-xf86dri.pc +lib/pkgconfig/xcb-xfixes.pc +lib/pkgconfig/xcb-xinerama.pc +lib/pkgconfig/xcb-xinput.pc +lib/pkgconfig/xcb-xkb.pc +lib/pkgconfig/xcb-xprint.pc +lib/pkgconfig/xcb-xtest.pc +lib/pkgconfig/xcb-xv.pc +lib/pkgconfig/xcb-xvmc.pc +lib/pkgconfig/xcb.pc +man/man3/xcb_alloc_color_cells_masks_end.3.gz +man/man3/xcb_alloc_color_cells_masks_length.3.gz +man/man3/xcb_alloc_color_cells_masks.3.gz +man/man3/xcb_alloc_color_cells_pixels_end.3.gz +man/man3/xcb_alloc_color_cells_pixels_length.3.gz +man/man3/xcb_alloc_color_cells_pixels.3.gz +man/man3/xcb_alloc_color_cells_reply.3.gz +man/man3/xcb_alloc_color_cells_unchecked.3.gz +man/man3/xcb_alloc_color_cells.3.gz +man/man3/xcb_alloc_color_planes_pixels_end.3.gz +man/man3/xcb_alloc_color_planes_pixels_length.3.gz +man/man3/xcb_alloc_color_planes_pixels.3.gz +man/man3/xcb_alloc_color_planes_reply.3.gz +man/man3/xcb_alloc_color_planes_unchecked.3.gz +man/man3/xcb_alloc_color_planes.3.gz +man/man3/xcb_alloc_color_reply.3.gz +man/man3/xcb_alloc_color_unchecked.3.gz +man/man3/xcb_alloc_color.3.gz +man/man3/xcb_alloc_named_color_reply.3.gz +man/man3/xcb_alloc_named_color_unchecked.3.gz +man/man3/xcb_alloc_named_color.3.gz +man/man3/xcb_allow_events_checked.3.gz +man/man3/xcb_allow_events.3.gz +man/man3/xcb_bell_checked.3.gz +man/man3/xcb_bell.3.gz +man/man3/xcb_big_requests_enable_reply.3.gz +man/man3/xcb_big_requests_enable_unchecked.3.gz +man/man3/xcb_big_requests_enable.3.gz +man/man3/xcb_button_press_event_t.3.gz +man/man3/xcb_change_active_pointer_grab_checked.3.gz +man/man3/xcb_change_active_pointer_grab.3.gz +man/man3/xcb_change_gc_checked.3.gz +man/man3/xcb_change_gc.3.gz +man/man3/xcb_change_hosts_checked.3.gz +man/man3/xcb_change_hosts.3.gz +man/man3/xcb_change_keyboard_control_checked.3.gz +man/man3/xcb_change_keyboard_control.3.gz +man/man3/xcb_change_keyboard_mapping_checked.3.gz +man/man3/xcb_change_keyboard_mapping.3.gz +man/man3/xcb_change_pointer_control_checked.3.gz +man/man3/xcb_change_pointer_control.3.gz +man/man3/xcb_change_property_checked.3.gz +man/man3/xcb_change_property.3.gz +man/man3/xcb_change_save_set_checked.3.gz +man/man3/xcb_change_save_set.3.gz +man/man3/xcb_change_window_attributes_checked.3.gz +man/man3/xcb_change_window_attributes.3.gz +man/man3/xcb_circulate_notify_event_t.3.gz +man/man3/xcb_circulate_window_checked.3.gz +man/man3/xcb_circulate_window.3.gz +man/man3/xcb_clear_area_checked.3.gz +man/man3/xcb_clear_area.3.gz +man/man3/xcb_client_message_event_t.3.gz +man/man3/xcb_close_font_checked.3.gz +man/man3/xcb_close_font.3.gz +man/man3/xcb_colormap_notify_event_t.3.gz +man/man3/xcb_composite_create_region_from_border_clip_checked.3.gz +man/man3/xcb_composite_create_region_from_border_clip.3.gz +man/man3/xcb_composite_get_overlay_window_reply.3.gz +man/man3/xcb_composite_get_overlay_window_unchecked.3.gz +man/man3/xcb_composite_get_overlay_window.3.gz +man/man3/xcb_composite_name_window_pixmap_checked.3.gz +man/man3/xcb_composite_name_window_pixmap.3.gz +man/man3/xcb_composite_query_version_reply.3.gz +man/man3/xcb_composite_query_version_unchecked.3.gz +man/man3/xcb_composite_query_version.3.gz +man/man3/xcb_composite_redirect_subwindows_checked.3.gz +man/man3/xcb_composite_redirect_subwindows.3.gz +man/man3/xcb_composite_redirect_window_checked.3.gz +man/man3/xcb_composite_redirect_window.3.gz +man/man3/xcb_composite_release_overlay_window_checked.3.gz +man/man3/xcb_composite_release_overlay_window.3.gz +man/man3/xcb_composite_unredirect_subwindows_checked.3.gz +man/man3/xcb_composite_unredirect_subwindows.3.gz +man/man3/xcb_composite_unredirect_window_checked.3.gz +man/man3/xcb_composite_unredirect_window.3.gz +man/man3/xcb_configure_notify_event_t.3.gz +man/man3/xcb_configure_request_event_t.3.gz +man/man3/xcb_configure_window_checked.3.gz +man/man3/xcb_configure_window.3.gz +man/man3/xcb_convert_selection_checked.3.gz +man/man3/xcb_convert_selection.3.gz +man/man3/xcb_copy_area_checked.3.gz +man/man3/xcb_copy_area.3.gz +man/man3/xcb_copy_colormap_and_free_checked.3.gz +man/man3/xcb_copy_colormap_and_free.3.gz +man/man3/xcb_copy_gc_checked.3.gz +man/man3/xcb_copy_gc.3.gz +man/man3/xcb_copy_plane_checked.3.gz +man/man3/xcb_copy_plane.3.gz +man/man3/xcb_create_colormap_checked.3.gz +man/man3/xcb_create_colormap.3.gz +man/man3/xcb_create_cursor_checked.3.gz +man/man3/xcb_create_cursor.3.gz +man/man3/xcb_create_gc_checked.3.gz +man/man3/xcb_create_gc.3.gz +man/man3/xcb_create_glyph_cursor_checked.3.gz +man/man3/xcb_create_glyph_cursor.3.gz +man/man3/xcb_create_notify_event_t.3.gz +man/man3/xcb_create_pixmap_checked.3.gz +man/man3/xcb_create_pixmap.3.gz +man/man3/xcb_create_window_checked.3.gz +man/man3/xcb_create_window.3.gz +man/man3/xcb_damage_add_checked.3.gz +man/man3/xcb_damage_add.3.gz +man/man3/xcb_damage_create_checked.3.gz +man/man3/xcb_damage_create.3.gz +man/man3/xcb_damage_destroy_checked.3.gz +man/man3/xcb_damage_destroy.3.gz +man/man3/xcb_damage_notify_event_t.3.gz +man/man3/xcb_damage_query_version_reply.3.gz +man/man3/xcb_damage_query_version_unchecked.3.gz +man/man3/xcb_damage_query_version.3.gz +man/man3/xcb_damage_subtract_checked.3.gz +man/man3/xcb_damage_subtract.3.gz +man/man3/xcb_delete_property_checked.3.gz +man/man3/xcb_delete_property.3.gz +man/man3/xcb_destroy_notify_event_t.3.gz +man/man3/xcb_destroy_subwindows_checked.3.gz +man/man3/xcb_destroy_subwindows.3.gz +man/man3/xcb_destroy_window_checked.3.gz +man/man3/xcb_destroy_window.3.gz +man/man3/xcb_dpms_capable_reply.3.gz +man/man3/xcb_dpms_capable_unchecked.3.gz +man/man3/xcb_dpms_capable.3.gz +man/man3/xcb_dpms_disable_checked.3.gz +man/man3/xcb_dpms_disable.3.gz +man/man3/xcb_dpms_enable_checked.3.gz +man/man3/xcb_dpms_enable.3.gz +man/man3/xcb_dpms_force_level_checked.3.gz +man/man3/xcb_dpms_force_level.3.gz +man/man3/xcb_dpms_get_timeouts_reply.3.gz +man/man3/xcb_dpms_get_timeouts_unchecked.3.gz +man/man3/xcb_dpms_get_timeouts.3.gz +man/man3/xcb_dpms_get_version_reply.3.gz +man/man3/xcb_dpms_get_version_unchecked.3.gz +man/man3/xcb_dpms_get_version.3.gz +man/man3/xcb_dpms_info_reply.3.gz +man/man3/xcb_dpms_info_unchecked.3.gz +man/man3/xcb_dpms_info.3.gz +man/man3/xcb_dpms_set_timeouts_checked.3.gz +man/man3/xcb_dpms_set_timeouts.3.gz +man/man3/xcb_dri2_authenticate_reply.3.gz +man/man3/xcb_dri2_authenticate_unchecked.3.gz +man/man3/xcb_dri2_authenticate.3.gz +man/man3/xcb_dri2_buffer_swap_complete_event_t.3.gz +man/man3/xcb_dri2_connect_alignment_pad_end.3.gz +man/man3/xcb_dri2_connect_alignment_pad_length.3.gz +man/man3/xcb_dri2_connect_alignment_pad.3.gz +man/man3/xcb_dri2_connect_device_name_end.3.gz +man/man3/xcb_dri2_connect_device_name_length.3.gz +man/man3/xcb_dri2_connect_device_name.3.gz +man/man3/xcb_dri2_connect_driver_name_end.3.gz +man/man3/xcb_dri2_connect_driver_name_length.3.gz +man/man3/xcb_dri2_connect_driver_name.3.gz +man/man3/xcb_dri2_connect_reply.3.gz +man/man3/xcb_dri2_connect_unchecked.3.gz +man/man3/xcb_dri2_connect.3.gz +man/man3/xcb_dri2_copy_region_reply.3.gz +man/man3/xcb_dri2_copy_region_unchecked.3.gz +man/man3/xcb_dri2_copy_region.3.gz +man/man3/xcb_dri2_create_drawable_checked.3.gz +man/man3/xcb_dri2_create_drawable.3.gz +man/man3/xcb_dri2_destroy_drawable_checked.3.gz +man/man3/xcb_dri2_destroy_drawable.3.gz +man/man3/xcb_dri2_get_buffers_buffers_iterator.3.gz +man/man3/xcb_dri2_get_buffers_buffers_length.3.gz +man/man3/xcb_dri2_get_buffers_buffers.3.gz +man/man3/xcb_dri2_get_buffers_reply.3.gz +man/man3/xcb_dri2_get_buffers_unchecked.3.gz +man/man3/xcb_dri2_get_buffers_with_format_buffers_iterator.3.gz +man/man3/xcb_dri2_get_buffers_with_format_buffers_length.3.gz +man/man3/xcb_dri2_get_buffers_with_format_buffers.3.gz +man/man3/xcb_dri2_get_buffers_with_format_reply.3.gz +man/man3/xcb_dri2_get_buffers_with_format_unchecked.3.gz +man/man3/xcb_dri2_get_buffers_with_format.3.gz +man/man3/xcb_dri2_get_buffers.3.gz +man/man3/xcb_dri2_get_msc_reply.3.gz +man/man3/xcb_dri2_get_msc_unchecked.3.gz +man/man3/xcb_dri2_get_msc.3.gz +man/man3/xcb_dri2_get_param_reply.3.gz +man/man3/xcb_dri2_get_param_unchecked.3.gz +man/man3/xcb_dri2_get_param.3.gz +man/man3/xcb_dri2_invalidate_buffers_event_t.3.gz +man/man3/xcb_dri2_query_version_reply.3.gz +man/man3/xcb_dri2_query_version_unchecked.3.gz +man/man3/xcb_dri2_query_version.3.gz +man/man3/xcb_dri2_swap_buffers_reply.3.gz +man/man3/xcb_dri2_swap_buffers_unchecked.3.gz +man/man3/xcb_dri2_swap_buffers.3.gz +man/man3/xcb_dri2_swap_interval_checked.3.gz +man/man3/xcb_dri2_swap_interval.3.gz +man/man3/xcb_dri2_wait_msc_reply.3.gz +man/man3/xcb_dri2_wait_msc_unchecked.3.gz +man/man3/xcb_dri2_wait_msc.3.gz +man/man3/xcb_dri2_wait_sbc_reply.3.gz +man/man3/xcb_dri2_wait_sbc_unchecked.3.gz +man/man3/xcb_dri2_wait_sbc.3.gz +man/man3/xcb_dri3_buffer_from_pixmap_reply.3.gz +man/man3/xcb_dri3_buffer_from_pixmap_unchecked.3.gz +man/man3/xcb_dri3_buffer_from_pixmap.3.gz +man/man3/xcb_dri3_buffers_from_pixmap_buffers_end.3.gz +man/man3/xcb_dri3_buffers_from_pixmap_buffers_length.3.gz +man/man3/xcb_dri3_buffers_from_pixmap_buffers.3.gz +man/man3/xcb_dri3_buffers_from_pixmap_offsets_end.3.gz +man/man3/xcb_dri3_buffers_from_pixmap_offsets_length.3.gz +man/man3/xcb_dri3_buffers_from_pixmap_offsets.3.gz +man/man3/xcb_dri3_buffers_from_pixmap_reply.3.gz +man/man3/xcb_dri3_buffers_from_pixmap_strides_end.3.gz +man/man3/xcb_dri3_buffers_from_pixmap_strides_length.3.gz +man/man3/xcb_dri3_buffers_from_pixmap_strides.3.gz +man/man3/xcb_dri3_buffers_from_pixmap_unchecked.3.gz +man/man3/xcb_dri3_buffers_from_pixmap.3.gz +man/man3/xcb_dri3_fd_from_fence_reply.3.gz +man/man3/xcb_dri3_fd_from_fence_unchecked.3.gz +man/man3/xcb_dri3_fd_from_fence.3.gz +man/man3/xcb_dri3_fence_from_fd_checked.3.gz +man/man3/xcb_dri3_fence_from_fd.3.gz +man/man3/xcb_dri3_get_supported_modifiers_reply.3.gz +man/man3/xcb_dri3_get_supported_modifiers_screen_modifiers_end.3.gz +man/man3/xcb_dri3_get_supported_modifiers_screen_modifiers_length.3.gz +man/man3/xcb_dri3_get_supported_modifiers_screen_modifiers.3.gz +man/man3/xcb_dri3_get_supported_modifiers_unchecked.3.gz +man/man3/xcb_dri3_get_supported_modifiers_window_modifiers_end.3.gz +man/man3/xcb_dri3_get_supported_modifiers_window_modifiers_length.3.gz +man/man3/xcb_dri3_get_supported_modifiers_window_modifiers.3.gz +man/man3/xcb_dri3_get_supported_modifiers.3.gz +man/man3/xcb_dri3_open_reply.3.gz +man/man3/xcb_dri3_open_unchecked.3.gz +man/man3/xcb_dri3_open.3.gz +man/man3/xcb_dri3_pixmap_from_buffer_checked.3.gz +man/man3/xcb_dri3_pixmap_from_buffer.3.gz +man/man3/xcb_dri3_pixmap_from_buffers_checked.3.gz +man/man3/xcb_dri3_pixmap_from_buffers.3.gz +man/man3/xcb_dri3_query_version_reply.3.gz +man/man3/xcb_dri3_query_version_unchecked.3.gz +man/man3/xcb_dri3_query_version.3.gz +man/man3/xcb_enter_notify_event_t.3.gz +man/man3/xcb_expose_event_t.3.gz +man/man3/xcb_fill_poly_checked.3.gz +man/man3/xcb_fill_poly.3.gz +man/man3/xcb_focus_in_event_t.3.gz +man/man3/xcb_force_screen_saver_checked.3.gz +man/man3/xcb_force_screen_saver.3.gz +man/man3/xcb_free_colormap_checked.3.gz +man/man3/xcb_free_colormap.3.gz +man/man3/xcb_free_colors_checked.3.gz +man/man3/xcb_free_colors.3.gz +man/man3/xcb_free_cursor_checked.3.gz +man/man3/xcb_free_cursor.3.gz +man/man3/xcb_free_gc_checked.3.gz +man/man3/xcb_free_gc.3.gz +man/man3/xcb_free_pixmap_checked.3.gz +man/man3/xcb_free_pixmap.3.gz +man/man3/xcb_ge_generic_event_t.3.gz +man/man3/xcb_genericevent_query_version_reply.3.gz +man/man3/xcb_genericevent_query_version_unchecked.3.gz +man/man3/xcb_genericevent_query_version.3.gz +man/man3/xcb_get_atom_name_name_end.3.gz +man/man3/xcb_get_atom_name_name_length.3.gz +man/man3/xcb_get_atom_name_name.3.gz +man/man3/xcb_get_atom_name_reply.3.gz +man/man3/xcb_get_atom_name_unchecked.3.gz +man/man3/xcb_get_atom_name.3.gz +man/man3/xcb_get_font_path_path_iterator.3.gz +man/man3/xcb_get_font_path_path_length.3.gz +man/man3/xcb_get_font_path_reply.3.gz +man/man3/xcb_get_font_path_unchecked.3.gz +man/man3/xcb_get_font_path.3.gz +man/man3/xcb_get_geometry_reply.3.gz +man/man3/xcb_get_geometry_unchecked.3.gz +man/man3/xcb_get_geometry.3.gz +man/man3/xcb_get_image_data_end.3.gz +man/man3/xcb_get_image_data_length.3.gz +man/man3/xcb_get_image_data.3.gz +man/man3/xcb_get_image_reply.3.gz +man/man3/xcb_get_image_unchecked.3.gz +man/man3/xcb_get_image.3.gz +man/man3/xcb_get_input_focus_reply.3.gz +man/man3/xcb_get_input_focus_unchecked.3.gz +man/man3/xcb_get_input_focus.3.gz +man/man3/xcb_get_keyboard_control_reply.3.gz +man/man3/xcb_get_keyboard_control_unchecked.3.gz +man/man3/xcb_get_keyboard_control.3.gz +man/man3/xcb_get_keyboard_mapping_keysyms_end.3.gz +man/man3/xcb_get_keyboard_mapping_keysyms_length.3.gz +man/man3/xcb_get_keyboard_mapping_keysyms.3.gz +man/man3/xcb_get_keyboard_mapping_reply.3.gz +man/man3/xcb_get_keyboard_mapping_unchecked.3.gz +man/man3/xcb_get_keyboard_mapping.3.gz +man/man3/xcb_get_modifier_mapping_keycodes_end.3.gz +man/man3/xcb_get_modifier_mapping_keycodes_length.3.gz +man/man3/xcb_get_modifier_mapping_keycodes.3.gz +man/man3/xcb_get_modifier_mapping_reply.3.gz +man/man3/xcb_get_modifier_mapping_unchecked.3.gz +man/man3/xcb_get_modifier_mapping.3.gz +man/man3/xcb_get_motion_events_events_iterator.3.gz +man/man3/xcb_get_motion_events_events_length.3.gz +man/man3/xcb_get_motion_events_events.3.gz +man/man3/xcb_get_motion_events_reply.3.gz +man/man3/xcb_get_motion_events_unchecked.3.gz +man/man3/xcb_get_motion_events.3.gz +man/man3/xcb_get_pointer_control_reply.3.gz +man/man3/xcb_get_pointer_control_unchecked.3.gz +man/man3/xcb_get_pointer_control.3.gz +man/man3/xcb_get_pointer_mapping_map_end.3.gz +man/man3/xcb_get_pointer_mapping_map_length.3.gz +man/man3/xcb_get_pointer_mapping_map.3.gz +man/man3/xcb_get_pointer_mapping_reply.3.gz +man/man3/xcb_get_pointer_mapping_unchecked.3.gz +man/man3/xcb_get_pointer_mapping.3.gz +man/man3/xcb_get_property_reply.3.gz +man/man3/xcb_get_property_unchecked.3.gz +man/man3/xcb_get_property_value_end.3.gz +man/man3/xcb_get_property_value_length.3.gz +man/man3/xcb_get_property_value.3.gz +man/man3/xcb_get_property.3.gz +man/man3/xcb_get_screen_saver_reply.3.gz +man/man3/xcb_get_screen_saver_unchecked.3.gz +man/man3/xcb_get_screen_saver.3.gz +man/man3/xcb_get_selection_owner_reply.3.gz +man/man3/xcb_get_selection_owner_unchecked.3.gz +man/man3/xcb_get_selection_owner.3.gz +man/man3/xcb_get_window_attributes_reply.3.gz +man/man3/xcb_get_window_attributes_unchecked.3.gz +man/man3/xcb_get_window_attributes.3.gz +man/man3/xcb_glx_are_textures_resident_data_end.3.gz +man/man3/xcb_glx_are_textures_resident_data_length.3.gz +man/man3/xcb_glx_are_textures_resident_data.3.gz +man/man3/xcb_glx_are_textures_resident_reply.3.gz +man/man3/xcb_glx_are_textures_resident_unchecked.3.gz +man/man3/xcb_glx_are_textures_resident.3.gz +man/man3/xcb_glx_buffer_swap_complete_event_t.3.gz +man/man3/xcb_glx_change_drawable_attributes_checked.3.gz +man/man3/xcb_glx_change_drawable_attributes.3.gz +man/man3/xcb_glx_client_info_checked.3.gz +man/man3/xcb_glx_client_info.3.gz +man/man3/xcb_glx_copy_context_checked.3.gz +man/man3/xcb_glx_copy_context.3.gz +man/man3/xcb_glx_create_context_attribs_arb_checked.3.gz +man/man3/xcb_glx_create_context_attribs_arb.3.gz +man/man3/xcb_glx_create_context_checked.3.gz +man/man3/xcb_glx_create_context.3.gz +man/man3/xcb_glx_create_glx_pixmap_checked.3.gz +man/man3/xcb_glx_create_glx_pixmap.3.gz +man/man3/xcb_glx_create_new_context_checked.3.gz +man/man3/xcb_glx_create_new_context.3.gz +man/man3/xcb_glx_create_pbuffer_checked.3.gz +man/man3/xcb_glx_create_pbuffer.3.gz +man/man3/xcb_glx_create_pixmap_checked.3.gz +man/man3/xcb_glx_create_pixmap.3.gz +man/man3/xcb_glx_create_window_checked.3.gz +man/man3/xcb_glx_create_window.3.gz +man/man3/xcb_glx_delete_lists_checked.3.gz +man/man3/xcb_glx_delete_lists.3.gz +man/man3/xcb_glx_delete_queries_arb_checked.3.gz +man/man3/xcb_glx_delete_queries_arb.3.gz +man/man3/xcb_glx_delete_textures_checked.3.gz +man/man3/xcb_glx_delete_textures.3.gz +man/man3/xcb_glx_delete_window_checked.3.gz +man/man3/xcb_glx_delete_window.3.gz +man/man3/xcb_glx_destroy_context_checked.3.gz +man/man3/xcb_glx_destroy_context.3.gz +man/man3/xcb_glx_destroy_glx_pixmap_checked.3.gz +man/man3/xcb_glx_destroy_glx_pixmap.3.gz +man/man3/xcb_glx_destroy_pbuffer_checked.3.gz +man/man3/xcb_glx_destroy_pbuffer.3.gz +man/man3/xcb_glx_destroy_pixmap_checked.3.gz +man/man3/xcb_glx_destroy_pixmap.3.gz +man/man3/xcb_glx_end_list_checked.3.gz +man/man3/xcb_glx_end_list.3.gz +man/man3/xcb_glx_feedback_buffer_checked.3.gz +man/man3/xcb_glx_feedback_buffer.3.gz +man/man3/xcb_glx_finish_reply.3.gz +man/man3/xcb_glx_finish_unchecked.3.gz +man/man3/xcb_glx_finish.3.gz +man/man3/xcb_glx_flush_checked.3.gz +man/man3/xcb_glx_flush.3.gz +man/man3/xcb_glx_gen_lists_reply.3.gz +man/man3/xcb_glx_gen_lists_unchecked.3.gz +man/man3/xcb_glx_gen_lists.3.gz +man/man3/xcb_glx_gen_queries_arb_data_end.3.gz +man/man3/xcb_glx_gen_queries_arb_data_length.3.gz +man/man3/xcb_glx_gen_queries_arb_data.3.gz +man/man3/xcb_glx_gen_queries_arb_reply.3.gz +man/man3/xcb_glx_gen_queries_arb_unchecked.3.gz +man/man3/xcb_glx_gen_queries_arb.3.gz +man/man3/xcb_glx_gen_textures_data_end.3.gz +man/man3/xcb_glx_gen_textures_data_length.3.gz +man/man3/xcb_glx_gen_textures_data.3.gz +man/man3/xcb_glx_gen_textures_reply.3.gz +man/man3/xcb_glx_gen_textures_unchecked.3.gz +man/man3/xcb_glx_gen_textures.3.gz +man/man3/xcb_glx_get_booleanv_data_end.3.gz +man/man3/xcb_glx_get_booleanv_data_length.3.gz +man/man3/xcb_glx_get_booleanv_data.3.gz +man/man3/xcb_glx_get_booleanv_reply.3.gz +man/man3/xcb_glx_get_booleanv_unchecked.3.gz +man/man3/xcb_glx_get_booleanv.3.gz +man/man3/xcb_glx_get_clip_plane_data_end.3.gz +man/man3/xcb_glx_get_clip_plane_data_length.3.gz +man/man3/xcb_glx_get_clip_plane_data.3.gz +man/man3/xcb_glx_get_clip_plane_reply.3.gz +man/man3/xcb_glx_get_clip_plane_unchecked.3.gz +man/man3/xcb_glx_get_clip_plane.3.gz +man/man3/xcb_glx_get_color_table_data_end.3.gz +man/man3/xcb_glx_get_color_table_data_length.3.gz +man/man3/xcb_glx_get_color_table_data.3.gz +man/man3/xcb_glx_get_color_table_parameterfv_data_end.3.gz +man/man3/xcb_glx_get_color_table_parameterfv_data_length.3.gz +man/man3/xcb_glx_get_color_table_parameterfv_data.3.gz +man/man3/xcb_glx_get_color_table_parameterfv_reply.3.gz +man/man3/xcb_glx_get_color_table_parameterfv_unchecked.3.gz +man/man3/xcb_glx_get_color_table_parameterfv.3.gz +man/man3/xcb_glx_get_color_table_parameteriv_data_end.3.gz +man/man3/xcb_glx_get_color_table_parameteriv_data_length.3.gz +man/man3/xcb_glx_get_color_table_parameteriv_data.3.gz +man/man3/xcb_glx_get_color_table_parameteriv_reply.3.gz +man/man3/xcb_glx_get_color_table_parameteriv_unchecked.3.gz +man/man3/xcb_glx_get_color_table_parameteriv.3.gz +man/man3/xcb_glx_get_color_table_reply.3.gz +man/man3/xcb_glx_get_color_table_unchecked.3.gz +man/man3/xcb_glx_get_color_table.3.gz +man/man3/xcb_glx_get_compressed_tex_image_arb_data_end.3.gz +man/man3/xcb_glx_get_compressed_tex_image_arb_data_length.3.gz +man/man3/xcb_glx_get_compressed_tex_image_arb_data.3.gz +man/man3/xcb_glx_get_compressed_tex_image_arb_reply.3.gz +man/man3/xcb_glx_get_compressed_tex_image_arb_unchecked.3.gz +man/man3/xcb_glx_get_compressed_tex_image_arb.3.gz +man/man3/xcb_glx_get_convolution_filter_data_end.3.gz +man/man3/xcb_glx_get_convolution_filter_data_length.3.gz +man/man3/xcb_glx_get_convolution_filter_data.3.gz +man/man3/xcb_glx_get_convolution_filter_reply.3.gz +man/man3/xcb_glx_get_convolution_filter_unchecked.3.gz +man/man3/xcb_glx_get_convolution_filter.3.gz +man/man3/xcb_glx_get_convolution_parameterfv_data_end.3.gz +man/man3/xcb_glx_get_convolution_parameterfv_data_length.3.gz +man/man3/xcb_glx_get_convolution_parameterfv_data.3.gz +man/man3/xcb_glx_get_convolution_parameterfv_reply.3.gz +man/man3/xcb_glx_get_convolution_parameterfv_unchecked.3.gz +man/man3/xcb_glx_get_convolution_parameterfv.3.gz +man/man3/xcb_glx_get_convolution_parameteriv_data_end.3.gz +man/man3/xcb_glx_get_convolution_parameteriv_data_length.3.gz +man/man3/xcb_glx_get_convolution_parameteriv_data.3.gz +man/man3/xcb_glx_get_convolution_parameteriv_reply.3.gz +man/man3/xcb_glx_get_convolution_parameteriv_unchecked.3.gz +man/man3/xcb_glx_get_convolution_parameteriv.3.gz +man/man3/xcb_glx_get_doublev_data_end.3.gz +man/man3/xcb_glx_get_doublev_data_length.3.gz +man/man3/xcb_glx_get_doublev_data.3.gz +man/man3/xcb_glx_get_doublev_reply.3.gz +man/man3/xcb_glx_get_doublev_unchecked.3.gz +man/man3/xcb_glx_get_doublev.3.gz +man/man3/xcb_glx_get_drawable_attributes_attribs_end.3.gz +man/man3/xcb_glx_get_drawable_attributes_attribs_length.3.gz +man/man3/xcb_glx_get_drawable_attributes_attribs.3.gz +man/man3/xcb_glx_get_drawable_attributes_reply.3.gz +man/man3/xcb_glx_get_drawable_attributes_unchecked.3.gz +man/man3/xcb_glx_get_drawable_attributes.3.gz +man/man3/xcb_glx_get_error_reply.3.gz +man/man3/xcb_glx_get_error_unchecked.3.gz +man/man3/xcb_glx_get_error.3.gz +man/man3/xcb_glx_get_fb_configs_property_list_end.3.gz +man/man3/xcb_glx_get_fb_configs_property_list_length.3.gz +man/man3/xcb_glx_get_fb_configs_property_list.3.gz +man/man3/xcb_glx_get_fb_configs_reply.3.gz +man/man3/xcb_glx_get_fb_configs_unchecked.3.gz +man/man3/xcb_glx_get_fb_configs.3.gz +man/man3/xcb_glx_get_floatv_data_end.3.gz +man/man3/xcb_glx_get_floatv_data_length.3.gz +man/man3/xcb_glx_get_floatv_data.3.gz +man/man3/xcb_glx_get_floatv_reply.3.gz +man/man3/xcb_glx_get_floatv_unchecked.3.gz +man/man3/xcb_glx_get_floatv.3.gz +man/man3/xcb_glx_get_histogram_data_end.3.gz +man/man3/xcb_glx_get_histogram_data_length.3.gz +man/man3/xcb_glx_get_histogram_data.3.gz +man/man3/xcb_glx_get_histogram_parameterfv_data_end.3.gz +man/man3/xcb_glx_get_histogram_parameterfv_data_length.3.gz +man/man3/xcb_glx_get_histogram_parameterfv_data.3.gz +man/man3/xcb_glx_get_histogram_parameterfv_reply.3.gz +man/man3/xcb_glx_get_histogram_parameterfv_unchecked.3.gz +man/man3/xcb_glx_get_histogram_parameterfv.3.gz +man/man3/xcb_glx_get_histogram_parameteriv_data_end.3.gz +man/man3/xcb_glx_get_histogram_parameteriv_data_length.3.gz +man/man3/xcb_glx_get_histogram_parameteriv_data.3.gz +man/man3/xcb_glx_get_histogram_parameteriv_reply.3.gz +man/man3/xcb_glx_get_histogram_parameteriv_unchecked.3.gz +man/man3/xcb_glx_get_histogram_parameteriv.3.gz +man/man3/xcb_glx_get_histogram_reply.3.gz +man/man3/xcb_glx_get_histogram_unchecked.3.gz +man/man3/xcb_glx_get_histogram.3.gz +man/man3/xcb_glx_get_integerv_data_end.3.gz +man/man3/xcb_glx_get_integerv_data_length.3.gz +man/man3/xcb_glx_get_integerv_data.3.gz +man/man3/xcb_glx_get_integerv_reply.3.gz +man/man3/xcb_glx_get_integerv_unchecked.3.gz +man/man3/xcb_glx_get_integerv.3.gz +man/man3/xcb_glx_get_lightfv_data_end.3.gz +man/man3/xcb_glx_get_lightfv_data_length.3.gz +man/man3/xcb_glx_get_lightfv_data.3.gz +man/man3/xcb_glx_get_lightfv_reply.3.gz +man/man3/xcb_glx_get_lightfv_unchecked.3.gz +man/man3/xcb_glx_get_lightfv.3.gz +man/man3/xcb_glx_get_lightiv_data_end.3.gz +man/man3/xcb_glx_get_lightiv_data_length.3.gz +man/man3/xcb_glx_get_lightiv_data.3.gz +man/man3/xcb_glx_get_lightiv_reply.3.gz +man/man3/xcb_glx_get_lightiv_unchecked.3.gz +man/man3/xcb_glx_get_lightiv.3.gz +man/man3/xcb_glx_get_mapdv_data_end.3.gz +man/man3/xcb_glx_get_mapdv_data_length.3.gz +man/man3/xcb_glx_get_mapdv_data.3.gz +man/man3/xcb_glx_get_mapdv_reply.3.gz +man/man3/xcb_glx_get_mapdv_unchecked.3.gz +man/man3/xcb_glx_get_mapdv.3.gz +man/man3/xcb_glx_get_mapfv_data_end.3.gz +man/man3/xcb_glx_get_mapfv_data_length.3.gz +man/man3/xcb_glx_get_mapfv_data.3.gz +man/man3/xcb_glx_get_mapfv_reply.3.gz +man/man3/xcb_glx_get_mapfv_unchecked.3.gz +man/man3/xcb_glx_get_mapfv.3.gz +man/man3/xcb_glx_get_mapiv_data_end.3.gz +man/man3/xcb_glx_get_mapiv_data_length.3.gz +man/man3/xcb_glx_get_mapiv_data.3.gz +man/man3/xcb_glx_get_mapiv_reply.3.gz +man/man3/xcb_glx_get_mapiv_unchecked.3.gz +man/man3/xcb_glx_get_mapiv.3.gz +man/man3/xcb_glx_get_materialfv_data_end.3.gz +man/man3/xcb_glx_get_materialfv_data_length.3.gz +man/man3/xcb_glx_get_materialfv_data.3.gz +man/man3/xcb_glx_get_materialfv_reply.3.gz +man/man3/xcb_glx_get_materialfv_unchecked.3.gz +man/man3/xcb_glx_get_materialfv.3.gz +man/man3/xcb_glx_get_materialiv_data_end.3.gz +man/man3/xcb_glx_get_materialiv_data_length.3.gz +man/man3/xcb_glx_get_materialiv_data.3.gz +man/man3/xcb_glx_get_materialiv_reply.3.gz +man/man3/xcb_glx_get_materialiv_unchecked.3.gz +man/man3/xcb_glx_get_materialiv.3.gz +man/man3/xcb_glx_get_minmax_data_end.3.gz +man/man3/xcb_glx_get_minmax_data_length.3.gz +man/man3/xcb_glx_get_minmax_data.3.gz +man/man3/xcb_glx_get_minmax_parameterfv_data_end.3.gz +man/man3/xcb_glx_get_minmax_parameterfv_data_length.3.gz +man/man3/xcb_glx_get_minmax_parameterfv_data.3.gz +man/man3/xcb_glx_get_minmax_parameterfv_reply.3.gz +man/man3/xcb_glx_get_minmax_parameterfv_unchecked.3.gz +man/man3/xcb_glx_get_minmax_parameterfv.3.gz +man/man3/xcb_glx_get_minmax_parameteriv_data_end.3.gz +man/man3/xcb_glx_get_minmax_parameteriv_data_length.3.gz +man/man3/xcb_glx_get_minmax_parameteriv_data.3.gz +man/man3/xcb_glx_get_minmax_parameteriv_reply.3.gz +man/man3/xcb_glx_get_minmax_parameteriv_unchecked.3.gz +man/man3/xcb_glx_get_minmax_parameteriv.3.gz +man/man3/xcb_glx_get_minmax_reply.3.gz +man/man3/xcb_glx_get_minmax_unchecked.3.gz +man/man3/xcb_glx_get_minmax.3.gz +man/man3/xcb_glx_get_pixel_mapfv_data_end.3.gz +man/man3/xcb_glx_get_pixel_mapfv_data_length.3.gz +man/man3/xcb_glx_get_pixel_mapfv_data.3.gz +man/man3/xcb_glx_get_pixel_mapfv_reply.3.gz +man/man3/xcb_glx_get_pixel_mapfv_unchecked.3.gz +man/man3/xcb_glx_get_pixel_mapfv.3.gz +man/man3/xcb_glx_get_pixel_mapuiv_data_end.3.gz +man/man3/xcb_glx_get_pixel_mapuiv_data_length.3.gz +man/man3/xcb_glx_get_pixel_mapuiv_data.3.gz +man/man3/xcb_glx_get_pixel_mapuiv_reply.3.gz +man/man3/xcb_glx_get_pixel_mapuiv_unchecked.3.gz +man/man3/xcb_glx_get_pixel_mapuiv.3.gz +man/man3/xcb_glx_get_pixel_mapusv_data_end.3.gz +man/man3/xcb_glx_get_pixel_mapusv_data_length.3.gz +man/man3/xcb_glx_get_pixel_mapusv_data.3.gz +man/man3/xcb_glx_get_pixel_mapusv_reply.3.gz +man/man3/xcb_glx_get_pixel_mapusv_unchecked.3.gz +man/man3/xcb_glx_get_pixel_mapusv.3.gz +man/man3/xcb_glx_get_polygon_stipple_data_end.3.gz +man/man3/xcb_glx_get_polygon_stipple_data_length.3.gz +man/man3/xcb_glx_get_polygon_stipple_data.3.gz +man/man3/xcb_glx_get_polygon_stipple_reply.3.gz +man/man3/xcb_glx_get_polygon_stipple_unchecked.3.gz +man/man3/xcb_glx_get_polygon_stipple.3.gz +man/man3/xcb_glx_get_query_objectiv_arb_data_end.3.gz +man/man3/xcb_glx_get_query_objectiv_arb_data_length.3.gz +man/man3/xcb_glx_get_query_objectiv_arb_data.3.gz +man/man3/xcb_glx_get_query_objectiv_arb_reply.3.gz +man/man3/xcb_glx_get_query_objectiv_arb_unchecked.3.gz +man/man3/xcb_glx_get_query_objectiv_arb.3.gz +man/man3/xcb_glx_get_query_objectuiv_arb_data_end.3.gz +man/man3/xcb_glx_get_query_objectuiv_arb_data_length.3.gz +man/man3/xcb_glx_get_query_objectuiv_arb_data.3.gz +man/man3/xcb_glx_get_query_objectuiv_arb_reply.3.gz +man/man3/xcb_glx_get_query_objectuiv_arb_unchecked.3.gz +man/man3/xcb_glx_get_query_objectuiv_arb.3.gz +man/man3/xcb_glx_get_queryiv_arb_data_end.3.gz +man/man3/xcb_glx_get_queryiv_arb_data_length.3.gz +man/man3/xcb_glx_get_queryiv_arb_data.3.gz +man/man3/xcb_glx_get_queryiv_arb_reply.3.gz +man/man3/xcb_glx_get_queryiv_arb_unchecked.3.gz +man/man3/xcb_glx_get_queryiv_arb.3.gz +man/man3/xcb_glx_get_separable_filter_reply.3.gz +man/man3/xcb_glx_get_separable_filter_rows_and_cols_end.3.gz +man/man3/xcb_glx_get_separable_filter_rows_and_cols_length.3.gz +man/man3/xcb_glx_get_separable_filter_rows_and_cols.3.gz +man/man3/xcb_glx_get_separable_filter_unchecked.3.gz +man/man3/xcb_glx_get_separable_filter.3.gz +man/man3/xcb_glx_get_string_reply.3.gz +man/man3/xcb_glx_get_string_string_end.3.gz +man/man3/xcb_glx_get_string_string_length.3.gz +man/man3/xcb_glx_get_string_string.3.gz +man/man3/xcb_glx_get_string_unchecked.3.gz +man/man3/xcb_glx_get_string.3.gz +man/man3/xcb_glx_get_tex_envfv_data_end.3.gz +man/man3/xcb_glx_get_tex_envfv_data_length.3.gz +man/man3/xcb_glx_get_tex_envfv_data.3.gz +man/man3/xcb_glx_get_tex_envfv_reply.3.gz +man/man3/xcb_glx_get_tex_envfv_unchecked.3.gz +man/man3/xcb_glx_get_tex_envfv.3.gz +man/man3/xcb_glx_get_tex_enviv_data_end.3.gz +man/man3/xcb_glx_get_tex_enviv_data_length.3.gz +man/man3/xcb_glx_get_tex_enviv_data.3.gz +man/man3/xcb_glx_get_tex_enviv_reply.3.gz +man/man3/xcb_glx_get_tex_enviv_unchecked.3.gz +man/man3/xcb_glx_get_tex_enviv.3.gz +man/man3/xcb_glx_get_tex_gendv_data_end.3.gz +man/man3/xcb_glx_get_tex_gendv_data_length.3.gz +man/man3/xcb_glx_get_tex_gendv_data.3.gz +man/man3/xcb_glx_get_tex_gendv_reply.3.gz +man/man3/xcb_glx_get_tex_gendv_unchecked.3.gz +man/man3/xcb_glx_get_tex_gendv.3.gz +man/man3/xcb_glx_get_tex_genfv_data_end.3.gz +man/man3/xcb_glx_get_tex_genfv_data_length.3.gz +man/man3/xcb_glx_get_tex_genfv_data.3.gz +man/man3/xcb_glx_get_tex_genfv_reply.3.gz +man/man3/xcb_glx_get_tex_genfv_unchecked.3.gz +man/man3/xcb_glx_get_tex_genfv.3.gz +man/man3/xcb_glx_get_tex_geniv_data_end.3.gz +man/man3/xcb_glx_get_tex_geniv_data_length.3.gz +man/man3/xcb_glx_get_tex_geniv_data.3.gz +man/man3/xcb_glx_get_tex_geniv_reply.3.gz +man/man3/xcb_glx_get_tex_geniv_unchecked.3.gz +man/man3/xcb_glx_get_tex_geniv.3.gz +man/man3/xcb_glx_get_tex_image_data_end.3.gz +man/man3/xcb_glx_get_tex_image_data_length.3.gz +man/man3/xcb_glx_get_tex_image_data.3.gz +man/man3/xcb_glx_get_tex_image_reply.3.gz +man/man3/xcb_glx_get_tex_image_unchecked.3.gz +man/man3/xcb_glx_get_tex_image.3.gz +man/man3/xcb_glx_get_tex_level_parameterfv_data_end.3.gz +man/man3/xcb_glx_get_tex_level_parameterfv_data_length.3.gz +man/man3/xcb_glx_get_tex_level_parameterfv_data.3.gz +man/man3/xcb_glx_get_tex_level_parameterfv_reply.3.gz +man/man3/xcb_glx_get_tex_level_parameterfv_unchecked.3.gz +man/man3/xcb_glx_get_tex_level_parameterfv.3.gz +man/man3/xcb_glx_get_tex_level_parameteriv_data_end.3.gz +man/man3/xcb_glx_get_tex_level_parameteriv_data_length.3.gz +man/man3/xcb_glx_get_tex_level_parameteriv_data.3.gz +man/man3/xcb_glx_get_tex_level_parameteriv_reply.3.gz +man/man3/xcb_glx_get_tex_level_parameteriv_unchecked.3.gz +man/man3/xcb_glx_get_tex_level_parameteriv.3.gz +man/man3/xcb_glx_get_tex_parameterfv_data_end.3.gz +man/man3/xcb_glx_get_tex_parameterfv_data_length.3.gz +man/man3/xcb_glx_get_tex_parameterfv_data.3.gz +man/man3/xcb_glx_get_tex_parameterfv_reply.3.gz +man/man3/xcb_glx_get_tex_parameterfv_unchecked.3.gz +man/man3/xcb_glx_get_tex_parameterfv.3.gz +man/man3/xcb_glx_get_tex_parameteriv_data_end.3.gz +man/man3/xcb_glx_get_tex_parameteriv_data_length.3.gz +man/man3/xcb_glx_get_tex_parameteriv_data.3.gz +man/man3/xcb_glx_get_tex_parameteriv_reply.3.gz +man/man3/xcb_glx_get_tex_parameteriv_unchecked.3.gz +man/man3/xcb_glx_get_tex_parameteriv.3.gz +man/man3/xcb_glx_get_visual_configs_property_list_end.3.gz +man/man3/xcb_glx_get_visual_configs_property_list_length.3.gz +man/man3/xcb_glx_get_visual_configs_property_list.3.gz +man/man3/xcb_glx_get_visual_configs_reply.3.gz +man/man3/xcb_glx_get_visual_configs_unchecked.3.gz +man/man3/xcb_glx_get_visual_configs.3.gz +man/man3/xcb_glx_is_direct_reply.3.gz +man/man3/xcb_glx_is_direct_unchecked.3.gz +man/man3/xcb_glx_is_direct.3.gz +man/man3/xcb_glx_is_enabled_reply.3.gz +man/man3/xcb_glx_is_enabled_unchecked.3.gz +man/man3/xcb_glx_is_enabled.3.gz +man/man3/xcb_glx_is_list_reply.3.gz +man/man3/xcb_glx_is_list_unchecked.3.gz +man/man3/xcb_glx_is_list.3.gz +man/man3/xcb_glx_is_query_arb_reply.3.gz +man/man3/xcb_glx_is_query_arb_unchecked.3.gz +man/man3/xcb_glx_is_query_arb.3.gz +man/man3/xcb_glx_is_texture_reply.3.gz +man/man3/xcb_glx_is_texture_unchecked.3.gz +man/man3/xcb_glx_is_texture.3.gz +man/man3/xcb_glx_make_context_current_reply.3.gz +man/man3/xcb_glx_make_context_current_unchecked.3.gz +man/man3/xcb_glx_make_context_current.3.gz +man/man3/xcb_glx_make_current_reply.3.gz +man/man3/xcb_glx_make_current_unchecked.3.gz +man/man3/xcb_glx_make_current.3.gz +man/man3/xcb_glx_new_list_checked.3.gz +man/man3/xcb_glx_new_list.3.gz +man/man3/xcb_glx_pbuffer_clobber_event_t.3.gz +man/man3/xcb_glx_pixel_storef_checked.3.gz +man/man3/xcb_glx_pixel_storef.3.gz +man/man3/xcb_glx_pixel_storei_checked.3.gz +man/man3/xcb_glx_pixel_storei.3.gz +man/man3/xcb_glx_query_context_attribs_end.3.gz +man/man3/xcb_glx_query_context_attribs_length.3.gz +man/man3/xcb_glx_query_context_attribs.3.gz +man/man3/xcb_glx_query_context_reply.3.gz +man/man3/xcb_glx_query_context_unchecked.3.gz +man/man3/xcb_glx_query_context.3.gz +man/man3/xcb_glx_query_extensions_string_reply.3.gz +man/man3/xcb_glx_query_extensions_string_unchecked.3.gz +man/man3/xcb_glx_query_extensions_string.3.gz +man/man3/xcb_glx_query_server_string_reply.3.gz +man/man3/xcb_glx_query_server_string_string_end.3.gz +man/man3/xcb_glx_query_server_string_string_length.3.gz +man/man3/xcb_glx_query_server_string_string.3.gz +man/man3/xcb_glx_query_server_string_unchecked.3.gz +man/man3/xcb_glx_query_server_string.3.gz +man/man3/xcb_glx_query_version_reply.3.gz +man/man3/xcb_glx_query_version_unchecked.3.gz +man/man3/xcb_glx_query_version.3.gz +man/man3/xcb_glx_read_pixels_data_end.3.gz +man/man3/xcb_glx_read_pixels_data_length.3.gz +man/man3/xcb_glx_read_pixels_data.3.gz +man/man3/xcb_glx_read_pixels_reply.3.gz +man/man3/xcb_glx_read_pixels_unchecked.3.gz +man/man3/xcb_glx_read_pixels.3.gz +man/man3/xcb_glx_render_checked.3.gz +man/man3/xcb_glx_render_large_checked.3.gz +man/man3/xcb_glx_render_large.3.gz +man/man3/xcb_glx_render_mode_data_end.3.gz +man/man3/xcb_glx_render_mode_data_length.3.gz +man/man3/xcb_glx_render_mode_data.3.gz +man/man3/xcb_glx_render_mode_reply.3.gz +man/man3/xcb_glx_render_mode_unchecked.3.gz +man/man3/xcb_glx_render_mode.3.gz +man/man3/xcb_glx_render.3.gz +man/man3/xcb_glx_select_buffer_checked.3.gz +man/man3/xcb_glx_select_buffer.3.gz +man/man3/xcb_glx_set_client_info_2arb_checked.3.gz +man/man3/xcb_glx_set_client_info_2arb.3.gz +man/man3/xcb_glx_set_client_info_arb_checked.3.gz +man/man3/xcb_glx_set_client_info_arb.3.gz +man/man3/xcb_glx_swap_buffers_checked.3.gz +man/man3/xcb_glx_swap_buffers.3.gz +man/man3/xcb_glx_use_x_font_checked.3.gz +man/man3/xcb_glx_use_x_font.3.gz +man/man3/xcb_glx_vendor_private_checked.3.gz +man/man3/xcb_glx_vendor_private_with_reply_data_2_end.3.gz +man/man3/xcb_glx_vendor_private_with_reply_data_2_length.3.gz +man/man3/xcb_glx_vendor_private_with_reply_data_2.3.gz +man/man3/xcb_glx_vendor_private_with_reply_reply.3.gz +man/man3/xcb_glx_vendor_private_with_reply_unchecked.3.gz +man/man3/xcb_glx_vendor_private_with_reply.3.gz +man/man3/xcb_glx_vendor_private.3.gz +man/man3/xcb_glx_wait_gl_checked.3.gz +man/man3/xcb_glx_wait_gl.3.gz +man/man3/xcb_glx_wait_x_checked.3.gz +man/man3/xcb_glx_wait_x.3.gz +man/man3/xcb_grab_button_checked.3.gz +man/man3/xcb_grab_button.3.gz +man/man3/xcb_grab_key_checked.3.gz +man/man3/xcb_grab_key.3.gz +man/man3/xcb_grab_keyboard_reply.3.gz +man/man3/xcb_grab_keyboard_unchecked.3.gz +man/man3/xcb_grab_keyboard.3.gz +man/man3/xcb_grab_pointer_reply.3.gz +man/man3/xcb_grab_pointer_unchecked.3.gz +man/man3/xcb_grab_pointer.3.gz +man/man3/xcb_grab_server_checked.3.gz +man/man3/xcb_grab_server.3.gz +man/man3/xcb_graphics_exposure_event_t.3.gz +man/man3/xcb_gravity_notify_event_t.3.gz +man/man3/xcb_image_text_16_checked.3.gz +man/man3/xcb_image_text_16.3.gz +man/man3/xcb_image_text_8_checked.3.gz +man/man3/xcb_image_text_8.3.gz +man/man3/xcb_input_allow_device_events_checked.3.gz +man/man3/xcb_input_allow_device_events.3.gz +man/man3/xcb_input_barrier_hit_event_t.3.gz +man/man3/xcb_input_button_press_event_t.3.gz +man/man3/xcb_input_change_device_control_reply.3.gz +man/man3/xcb_input_change_device_control_unchecked.3.gz +man/man3/xcb_input_change_device_control.3.gz +man/man3/xcb_input_change_device_dont_propagate_list_checked.3.gz +man/man3/xcb_input_change_device_dont_propagate_list.3.gz +man/man3/xcb_input_change_device_key_mapping_checked.3.gz +man/man3/xcb_input_change_device_key_mapping.3.gz +man/man3/xcb_input_change_device_notify_event_t.3.gz +man/man3/xcb_input_change_device_property_checked.3.gz +man/man3/xcb_input_change_device_property.3.gz +man/man3/xcb_input_change_feedback_control_checked.3.gz +man/man3/xcb_input_change_feedback_control.3.gz +man/man3/xcb_input_change_keyboard_device_reply.3.gz +man/man3/xcb_input_change_keyboard_device_unchecked.3.gz +man/man3/xcb_input_change_keyboard_device.3.gz +man/man3/xcb_input_change_pointer_device_reply.3.gz +man/man3/xcb_input_change_pointer_device_unchecked.3.gz +man/man3/xcb_input_change_pointer_device.3.gz +man/man3/xcb_input_close_device_checked.3.gz +man/man3/xcb_input_close_device.3.gz +man/man3/xcb_input_delete_device_property_checked.3.gz +man/man3/xcb_input_delete_device_property.3.gz +man/man3/xcb_input_device_bell_checked.3.gz +man/man3/xcb_input_device_bell.3.gz +man/man3/xcb_input_device_button_state_notify_event_t.3.gz +man/man3/xcb_input_device_changed_event_t.3.gz +man/man3/xcb_input_device_focus_in_event_t.3.gz +man/man3/xcb_input_device_key_press_event_t.3.gz +man/man3/xcb_input_device_key_state_notify_event_t.3.gz +man/man3/xcb_input_device_mapping_notify_event_t.3.gz +man/man3/xcb_input_device_presence_notify_event_t.3.gz +man/man3/xcb_input_device_property_notify_event_t.3.gz +man/man3/xcb_input_device_state_notify_event_t.3.gz +man/man3/xcb_input_device_valuator_event_t.3.gz +man/man3/xcb_input_enter_event_t.3.gz +man/man3/xcb_input_get_device_button_mapping_map_end.3.gz +man/man3/xcb_input_get_device_button_mapping_map_length.3.gz +man/man3/xcb_input_get_device_button_mapping_map.3.gz +man/man3/xcb_input_get_device_button_mapping_pad_1.3.gz +man/man3/xcb_input_get_device_button_mapping_reply.3.gz +man/man3/xcb_input_get_device_button_mapping_unchecked.3.gz +man/man3/xcb_input_get_device_button_mapping.3.gz +man/man3/xcb_input_get_device_control_control.3.gz +man/man3/xcb_input_get_device_control_reply.3.gz +man/man3/xcb_input_get_device_control_unchecked.3.gz +man/man3/xcb_input_get_device_control.3.gz +man/man3/xcb_input_get_device_dont_propagate_list_classes_end.3.gz +man/man3/xcb_input_get_device_dont_propagate_list_classes_length.3.gz +man/man3/xcb_input_get_device_dont_propagate_list_classes.3.gz +man/man3/xcb_input_get_device_dont_propagate_list_reply.3.gz +man/man3/xcb_input_get_device_dont_propagate_list_unchecked.3.gz +man/man3/xcb_input_get_device_dont_propagate_list.3.gz +man/man3/xcb_input_get_device_focus_reply.3.gz +man/man3/xcb_input_get_device_focus_unchecked.3.gz +man/man3/xcb_input_get_device_focus.3.gz +man/man3/xcb_input_get_device_key_mapping_keysyms_end.3.gz +man/man3/xcb_input_get_device_key_mapping_keysyms_length.3.gz +man/man3/xcb_input_get_device_key_mapping_keysyms.3.gz +man/man3/xcb_input_get_device_key_mapping_reply.3.gz +man/man3/xcb_input_get_device_key_mapping_unchecked.3.gz +man/man3/xcb_input_get_device_key_mapping.3.gz +man/man3/xcb_input_get_device_modifier_mapping_keymaps_end.3.gz +man/man3/xcb_input_get_device_modifier_mapping_keymaps_length.3.gz +man/man3/xcb_input_get_device_modifier_mapping_keymaps.3.gz +man/man3/xcb_input_get_device_modifier_mapping_reply.3.gz +man/man3/xcb_input_get_device_modifier_mapping_unchecked.3.gz +man/man3/xcb_input_get_device_modifier_mapping.3.gz +man/man3/xcb_input_get_device_motion_events_events_iterator.3.gz +man/man3/xcb_input_get_device_motion_events_events_length.3.gz +man/man3/xcb_input_get_device_motion_events_reply.3.gz +man/man3/xcb_input_get_device_motion_events_unchecked.3.gz +man/man3/xcb_input_get_device_motion_events.3.gz +man/man3/xcb_input_get_device_property_items.3.gz +man/man3/xcb_input_get_device_property_reply.3.gz +man/man3/xcb_input_get_device_property_unchecked.3.gz +man/man3/xcb_input_get_device_property.3.gz +man/man3/xcb_input_get_extension_version_reply.3.gz +man/man3/xcb_input_get_extension_version_unchecked.3.gz +man/man3/xcb_input_get_extension_version.3.gz +man/man3/xcb_input_get_feedback_control_feedbacks_iterator.3.gz +man/man3/xcb_input_get_feedback_control_feedbacks_length.3.gz +man/man3/xcb_input_get_feedback_control_reply.3.gz +man/man3/xcb_input_get_feedback_control_unchecked.3.gz +man/man3/xcb_input_get_feedback_control.3.gz +man/man3/xcb_input_get_selected_extension_events_all_classes_end.3.gz +man/man3/xcb_input_get_selected_extension_events_all_classes_length.3.gz +man/man3/xcb_input_get_selected_extension_events_all_classes.3.gz +man/man3/xcb_input_get_selected_extension_events_reply.3.gz +man/man3/xcb_input_get_selected_extension_events_this_classes_end.3.gz +man/man3/xcb_input_get_selected_extension_events_this_classes_length.3.gz +man/man3/xcb_input_get_selected_extension_events_this_classes.3.gz +man/man3/xcb_input_get_selected_extension_events_unchecked.3.gz +man/man3/xcb_input_get_selected_extension_events.3.gz +man/man3/xcb_input_grab_device_button_checked.3.gz +man/man3/xcb_input_grab_device_button.3.gz +man/man3/xcb_input_grab_device_key_checked.3.gz +man/man3/xcb_input_grab_device_key.3.gz +man/man3/xcb_input_grab_device_reply.3.gz +man/man3/xcb_input_grab_device_unchecked.3.gz +man/man3/xcb_input_grab_device.3.gz +man/man3/xcb_input_hierarchy_event_t.3.gz +man/man3/xcb_input_key_press_event_t.3.gz +man/man3/xcb_input_list_device_properties_atoms_end.3.gz +man/man3/xcb_input_list_device_properties_atoms_length.3.gz +man/man3/xcb_input_list_device_properties_atoms.3.gz +man/man3/xcb_input_list_device_properties_reply.3.gz +man/man3/xcb_input_list_device_properties_unchecked.3.gz +man/man3/xcb_input_list_device_properties.3.gz +man/man3/xcb_input_list_input_devices_devices_iterator.3.gz +man/man3/xcb_input_list_input_devices_devices_length.3.gz +man/man3/xcb_input_list_input_devices_devices.3.gz +man/man3/xcb_input_list_input_devices_infos_iterator.3.gz +man/man3/xcb_input_list_input_devices_infos_length.3.gz +man/man3/xcb_input_list_input_devices_names_iterator.3.gz +man/man3/xcb_input_list_input_devices_names_length.3.gz +man/man3/xcb_input_list_input_devices_pad_1.3.gz +man/man3/xcb_input_list_input_devices_reply.3.gz +man/man3/xcb_input_list_input_devices_unchecked.3.gz +man/man3/xcb_input_list_input_devices.3.gz +man/man3/xcb_input_open_device_class_info_iterator.3.gz +man/man3/xcb_input_open_device_class_info_length.3.gz +man/man3/xcb_input_open_device_class_info.3.gz +man/man3/xcb_input_open_device_pad_1.3.gz +man/man3/xcb_input_open_device_reply.3.gz +man/man3/xcb_input_open_device_unchecked.3.gz +man/man3/xcb_input_open_device.3.gz +man/man3/xcb_input_property_event_t.3.gz +man/man3/xcb_input_query_device_state_classes_iterator.3.gz +man/man3/xcb_input_query_device_state_classes_length.3.gz +man/man3/xcb_input_query_device_state_reply.3.gz +man/man3/xcb_input_query_device_state_unchecked.3.gz +man/man3/xcb_input_query_device_state.3.gz +man/man3/xcb_input_raw_button_press_event_t.3.gz +man/man3/xcb_input_raw_key_press_event_t.3.gz +man/man3/xcb_input_raw_touch_begin_event_t.3.gz +man/man3/xcb_input_select_extension_event_checked.3.gz +man/man3/xcb_input_select_extension_event.3.gz +man/man3/xcb_input_send_extension_event_checked.3.gz +man/man3/xcb_input_send_extension_event.3.gz +man/man3/xcb_input_set_device_button_mapping_reply.3.gz +man/man3/xcb_input_set_device_button_mapping_unchecked.3.gz +man/man3/xcb_input_set_device_button_mapping.3.gz +man/man3/xcb_input_set_device_focus_checked.3.gz +man/man3/xcb_input_set_device_focus.3.gz +man/man3/xcb_input_set_device_mode_reply.3.gz +man/man3/xcb_input_set_device_mode_unchecked.3.gz +man/man3/xcb_input_set_device_mode.3.gz +man/man3/xcb_input_set_device_modifier_mapping_reply.3.gz +man/man3/xcb_input_set_device_modifier_mapping_unchecked.3.gz +man/man3/xcb_input_set_device_modifier_mapping.3.gz +man/man3/xcb_input_set_device_valuators_reply.3.gz +man/man3/xcb_input_set_device_valuators_unchecked.3.gz +man/man3/xcb_input_set_device_valuators.3.gz +man/man3/xcb_input_touch_begin_event_t.3.gz +man/man3/xcb_input_touch_ownership_event_t.3.gz +man/man3/xcb_input_ungrab_device_button_checked.3.gz +man/man3/xcb_input_ungrab_device_button.3.gz +man/man3/xcb_input_ungrab_device_checked.3.gz +man/man3/xcb_input_ungrab_device_key_checked.3.gz +man/man3/xcb_input_ungrab_device_key.3.gz +man/man3/xcb_input_ungrab_device.3.gz +man/man3/xcb_input_xi_allow_events_checked.3.gz +man/man3/xcb_input_xi_allow_events.3.gz +man/man3/xcb_input_xi_barrier_release_pointer_checked.3.gz +man/man3/xcb_input_xi_barrier_release_pointer.3.gz +man/man3/xcb_input_xi_change_cursor_checked.3.gz +man/man3/xcb_input_xi_change_cursor.3.gz +man/man3/xcb_input_xi_change_hierarchy_checked.3.gz +man/man3/xcb_input_xi_change_hierarchy.3.gz +man/man3/xcb_input_xi_change_property_checked.3.gz +man/man3/xcb_input_xi_change_property.3.gz +man/man3/xcb_input_xi_delete_property_checked.3.gz +man/man3/xcb_input_xi_delete_property.3.gz +man/man3/xcb_input_xi_get_client_pointer_reply.3.gz +man/man3/xcb_input_xi_get_client_pointer_unchecked.3.gz +man/man3/xcb_input_xi_get_client_pointer.3.gz +man/man3/xcb_input_xi_get_focus_reply.3.gz +man/man3/xcb_input_xi_get_focus_unchecked.3.gz +man/man3/xcb_input_xi_get_focus.3.gz +man/man3/xcb_input_xi_get_property_items.3.gz +man/man3/xcb_input_xi_get_property_reply.3.gz +man/man3/xcb_input_xi_get_property_unchecked.3.gz +man/man3/xcb_input_xi_get_property.3.gz +man/man3/xcb_input_xi_get_selected_events_masks_iterator.3.gz +man/man3/xcb_input_xi_get_selected_events_masks_length.3.gz +man/man3/xcb_input_xi_get_selected_events_reply.3.gz +man/man3/xcb_input_xi_get_selected_events_unchecked.3.gz +man/man3/xcb_input_xi_get_selected_events.3.gz +man/man3/xcb_input_xi_grab_device_reply.3.gz +man/man3/xcb_input_xi_grab_device_unchecked.3.gz +man/man3/xcb_input_xi_grab_device.3.gz +man/man3/xcb_input_xi_list_properties_properties_end.3.gz +man/man3/xcb_input_xi_list_properties_properties_length.3.gz +man/man3/xcb_input_xi_list_properties_properties.3.gz +man/man3/xcb_input_xi_list_properties_reply.3.gz +man/man3/xcb_input_xi_list_properties_unchecked.3.gz +man/man3/xcb_input_xi_list_properties.3.gz +man/man3/xcb_input_xi_passive_grab_device_modifiers_iterator.3.gz +man/man3/xcb_input_xi_passive_grab_device_modifiers_length.3.gz +man/man3/xcb_input_xi_passive_grab_device_modifiers.3.gz +man/man3/xcb_input_xi_passive_grab_device_reply.3.gz +man/man3/xcb_input_xi_passive_grab_device_unchecked.3.gz +man/man3/xcb_input_xi_passive_grab_device.3.gz +man/man3/xcb_input_xi_passive_ungrab_device_checked.3.gz +man/man3/xcb_input_xi_passive_ungrab_device.3.gz +man/man3/xcb_input_xi_query_device_infos_iterator.3.gz +man/man3/xcb_input_xi_query_device_infos_length.3.gz +man/man3/xcb_input_xi_query_device_reply.3.gz +man/man3/xcb_input_xi_query_device_unchecked.3.gz +man/man3/xcb_input_xi_query_device.3.gz +man/man3/xcb_input_xi_query_pointer_buttons_end.3.gz +man/man3/xcb_input_xi_query_pointer_buttons_length.3.gz +man/man3/xcb_input_xi_query_pointer_buttons.3.gz +man/man3/xcb_input_xi_query_pointer_reply.3.gz +man/man3/xcb_input_xi_query_pointer_unchecked.3.gz +man/man3/xcb_input_xi_query_pointer.3.gz +man/man3/xcb_input_xi_query_version_reply.3.gz +man/man3/xcb_input_xi_query_version_unchecked.3.gz +man/man3/xcb_input_xi_query_version.3.gz +man/man3/xcb_input_xi_select_events_checked.3.gz +man/man3/xcb_input_xi_select_events.3.gz +man/man3/xcb_input_xi_set_client_pointer_checked.3.gz +man/man3/xcb_input_xi_set_client_pointer.3.gz +man/man3/xcb_input_xi_set_focus_checked.3.gz +man/man3/xcb_input_xi_set_focus.3.gz +man/man3/xcb_input_xi_ungrab_device_checked.3.gz +man/man3/xcb_input_xi_ungrab_device.3.gz +man/man3/xcb_input_xi_warp_pointer_checked.3.gz +man/man3/xcb_input_xi_warp_pointer.3.gz +man/man3/xcb_install_colormap_checked.3.gz +man/man3/xcb_install_colormap.3.gz +man/man3/xcb_intern_atom_reply.3.gz +man/man3/xcb_intern_atom_unchecked.3.gz +man/man3/xcb_intern_atom.3.gz +man/man3/xcb_key_press_event_t.3.gz +man/man3/xcb_keymap_notify_event_t.3.gz +man/man3/xcb_kill_client_checked.3.gz +man/man3/xcb_kill_client.3.gz +man/man3/xcb_list_extensions_names_iterator.3.gz +man/man3/xcb_list_extensions_names_length.3.gz +man/man3/xcb_list_extensions_reply.3.gz +man/man3/xcb_list_extensions_unchecked.3.gz +man/man3/xcb_list_extensions.3.gz +man/man3/xcb_list_fonts_names_iterator.3.gz +man/man3/xcb_list_fonts_names_length.3.gz +man/man3/xcb_list_fonts_reply.3.gz +man/man3/xcb_list_fonts_unchecked.3.gz +man/man3/xcb_list_fonts_with_info_name_end.3.gz +man/man3/xcb_list_fonts_with_info_name_length.3.gz +man/man3/xcb_list_fonts_with_info_name.3.gz +man/man3/xcb_list_fonts_with_info_properties_iterator.3.gz +man/man3/xcb_list_fonts_with_info_properties_length.3.gz +man/man3/xcb_list_fonts_with_info_properties.3.gz +man/man3/xcb_list_fonts_with_info_reply.3.gz +man/man3/xcb_list_fonts_with_info_unchecked.3.gz +man/man3/xcb_list_fonts_with_info.3.gz +man/man3/xcb_list_fonts.3.gz +man/man3/xcb_list_hosts_hosts_iterator.3.gz +man/man3/xcb_list_hosts_hosts_length.3.gz +man/man3/xcb_list_hosts_reply.3.gz +man/man3/xcb_list_hosts_unchecked.3.gz +man/man3/xcb_list_hosts.3.gz +man/man3/xcb_list_installed_colormaps_cmaps_end.3.gz +man/man3/xcb_list_installed_colormaps_cmaps_length.3.gz +man/man3/xcb_list_installed_colormaps_cmaps.3.gz +man/man3/xcb_list_installed_colormaps_reply.3.gz +man/man3/xcb_list_installed_colormaps_unchecked.3.gz +man/man3/xcb_list_installed_colormaps.3.gz +man/man3/xcb_list_properties_atoms_end.3.gz +man/man3/xcb_list_properties_atoms_length.3.gz +man/man3/xcb_list_properties_atoms.3.gz +man/man3/xcb_list_properties_reply.3.gz +man/man3/xcb_list_properties_unchecked.3.gz +man/man3/xcb_list_properties.3.gz +man/man3/xcb_lookup_color_reply.3.gz +man/man3/xcb_lookup_color_unchecked.3.gz +man/man3/xcb_lookup_color.3.gz +man/man3/xcb_map_notify_event_t.3.gz +man/man3/xcb_map_request_event_t.3.gz +man/man3/xcb_map_subwindows_checked.3.gz +man/man3/xcb_map_subwindows.3.gz +man/man3/xcb_map_window_checked.3.gz +man/man3/xcb_map_window.3.gz +man/man3/xcb_mapping_notify_event_t.3.gz +man/man3/xcb_motion_notify_event_t.3.gz +man/man3/xcb_no_exposure_event_t.3.gz +man/man3/xcb_no_operation_checked.3.gz +man/man3/xcb_no_operation.3.gz +man/man3/xcb_open_font_checked.3.gz +man/man3/xcb_open_font.3.gz +man/man3/xcb_poly_arc_checked.3.gz +man/man3/xcb_poly_arc.3.gz +man/man3/xcb_poly_fill_arc_checked.3.gz +man/man3/xcb_poly_fill_arc.3.gz +man/man3/xcb_poly_fill_rectangle_checked.3.gz +man/man3/xcb_poly_fill_rectangle.3.gz +man/man3/xcb_poly_line_checked.3.gz +man/man3/xcb_poly_line.3.gz +man/man3/xcb_poly_point_checked.3.gz +man/man3/xcb_poly_point.3.gz +man/man3/xcb_poly_rectangle_checked.3.gz +man/man3/xcb_poly_rectangle.3.gz +man/man3/xcb_poly_segment_checked.3.gz +man/man3/xcb_poly_segment.3.gz +man/man3/xcb_poly_text_16_checked.3.gz +man/man3/xcb_poly_text_16.3.gz +man/man3/xcb_poly_text_8_checked.3.gz +man/man3/xcb_poly_text_8.3.gz +man/man3/xcb_present_complete_notify_event_t.3.gz +man/man3/xcb_present_configure_notify_event_t.3.gz +man/man3/xcb_present_generic_event_t.3.gz +man/man3/xcb_present_idle_notify_event_t.3.gz +man/man3/xcb_present_notify_msc_checked.3.gz +man/man3/xcb_present_notify_msc.3.gz +man/man3/xcb_present_pixmap_checked.3.gz +man/man3/xcb_present_pixmap.3.gz +man/man3/xcb_present_query_capabilities_reply.3.gz +man/man3/xcb_present_query_capabilities_unchecked.3.gz +man/man3/xcb_present_query_capabilities.3.gz +man/man3/xcb_present_query_version_reply.3.gz +man/man3/xcb_present_query_version_unchecked.3.gz +man/man3/xcb_present_query_version.3.gz +man/man3/xcb_present_redirect_notify_event_t.3.gz +man/man3/xcb_present_select_input_checked.3.gz +man/man3/xcb_present_select_input.3.gz +man/man3/xcb_property_notify_event_t.3.gz +man/man3/xcb_put_image_checked.3.gz +man/man3/xcb_put_image.3.gz +man/man3/xcb_query_best_size_reply.3.gz +man/man3/xcb_query_best_size_unchecked.3.gz +man/man3/xcb_query_best_size.3.gz +man/man3/xcb_query_colors_colors_iterator.3.gz +man/man3/xcb_query_colors_colors_length.3.gz +man/man3/xcb_query_colors_colors.3.gz +man/man3/xcb_query_colors_reply.3.gz +man/man3/xcb_query_colors_unchecked.3.gz +man/man3/xcb_query_colors.3.gz +man/man3/xcb_query_extension_reply.3.gz +man/man3/xcb_query_extension_unchecked.3.gz +man/man3/xcb_query_extension.3.gz +man/man3/xcb_query_font_char_infos_iterator.3.gz +man/man3/xcb_query_font_char_infos_length.3.gz +man/man3/xcb_query_font_char_infos.3.gz +man/man3/xcb_query_font_properties_iterator.3.gz +man/man3/xcb_query_font_properties_length.3.gz +man/man3/xcb_query_font_properties.3.gz +man/man3/xcb_query_font_reply.3.gz +man/man3/xcb_query_font_unchecked.3.gz +man/man3/xcb_query_font.3.gz +man/man3/xcb_query_keymap_reply.3.gz +man/man3/xcb_query_keymap_unchecked.3.gz +man/man3/xcb_query_keymap.3.gz +man/man3/xcb_query_pointer_reply.3.gz +man/man3/xcb_query_pointer_unchecked.3.gz +man/man3/xcb_query_pointer.3.gz +man/man3/xcb_query_text_extents_reply.3.gz +man/man3/xcb_query_text_extents_unchecked.3.gz +man/man3/xcb_query_text_extents.3.gz +man/man3/xcb_query_tree_children_end.3.gz +man/man3/xcb_query_tree_children_length.3.gz +man/man3/xcb_query_tree_children.3.gz +man/man3/xcb_query_tree_reply.3.gz +man/man3/xcb_query_tree_unchecked.3.gz +man/man3/xcb_query_tree.3.gz +man/man3/xcb_randr_add_output_mode_checked.3.gz +man/man3/xcb_randr_add_output_mode.3.gz +man/man3/xcb_randr_change_output_property_checked.3.gz +man/man3/xcb_randr_change_output_property.3.gz +man/man3/xcb_randr_change_provider_property_checked.3.gz +man/man3/xcb_randr_change_provider_property.3.gz +man/man3/xcb_randr_configure_output_property_checked.3.gz +man/man3/xcb_randr_configure_output_property.3.gz +man/man3/xcb_randr_configure_provider_property_checked.3.gz +man/man3/xcb_randr_configure_provider_property.3.gz +man/man3/xcb_randr_create_lease_reply.3.gz +man/man3/xcb_randr_create_lease_unchecked.3.gz +man/man3/xcb_randr_create_lease.3.gz +man/man3/xcb_randr_create_mode_reply.3.gz +man/man3/xcb_randr_create_mode_unchecked.3.gz +man/man3/xcb_randr_create_mode.3.gz +man/man3/xcb_randr_delete_monitor_checked.3.gz +man/man3/xcb_randr_delete_monitor.3.gz +man/man3/xcb_randr_delete_output_mode_checked.3.gz +man/man3/xcb_randr_delete_output_mode.3.gz +man/man3/xcb_randr_delete_output_property_checked.3.gz +man/man3/xcb_randr_delete_output_property.3.gz +man/man3/xcb_randr_delete_provider_property_checked.3.gz +man/man3/xcb_randr_delete_provider_property.3.gz +man/man3/xcb_randr_destroy_mode_checked.3.gz +man/man3/xcb_randr_destroy_mode.3.gz +man/man3/xcb_randr_free_lease_checked.3.gz +man/man3/xcb_randr_free_lease.3.gz +man/man3/xcb_randr_get_crtc_gamma_blue_end.3.gz +man/man3/xcb_randr_get_crtc_gamma_blue_length.3.gz +man/man3/xcb_randr_get_crtc_gamma_blue.3.gz +man/man3/xcb_randr_get_crtc_gamma_green_end.3.gz +man/man3/xcb_randr_get_crtc_gamma_green_length.3.gz +man/man3/xcb_randr_get_crtc_gamma_green.3.gz +man/man3/xcb_randr_get_crtc_gamma_red_end.3.gz +man/man3/xcb_randr_get_crtc_gamma_red_length.3.gz +man/man3/xcb_randr_get_crtc_gamma_red.3.gz +man/man3/xcb_randr_get_crtc_gamma_reply.3.gz +man/man3/xcb_randr_get_crtc_gamma_size_reply.3.gz +man/man3/xcb_randr_get_crtc_gamma_size_unchecked.3.gz +man/man3/xcb_randr_get_crtc_gamma_size.3.gz +man/man3/xcb_randr_get_crtc_gamma_unchecked.3.gz +man/man3/xcb_randr_get_crtc_gamma.3.gz +man/man3/xcb_randr_get_crtc_info_outputs_end.3.gz +man/man3/xcb_randr_get_crtc_info_outputs_length.3.gz +man/man3/xcb_randr_get_crtc_info_outputs.3.gz +man/man3/xcb_randr_get_crtc_info_possible_end.3.gz +man/man3/xcb_randr_get_crtc_info_possible_length.3.gz +man/man3/xcb_randr_get_crtc_info_possible.3.gz +man/man3/xcb_randr_get_crtc_info_reply.3.gz +man/man3/xcb_randr_get_crtc_info_unchecked.3.gz +man/man3/xcb_randr_get_crtc_info.3.gz +man/man3/xcb_randr_get_crtc_transform_current_filter_name_end.3.gz +man/man3/xcb_randr_get_crtc_transform_current_filter_name_length.3.gz +man/man3/xcb_randr_get_crtc_transform_current_filter_name.3.gz +man/man3/xcb_randr_get_crtc_transform_current_params_end.3.gz +man/man3/xcb_randr_get_crtc_transform_current_params_length.3.gz +man/man3/xcb_randr_get_crtc_transform_current_params.3.gz +man/man3/xcb_randr_get_crtc_transform_pad_3.3.gz +man/man3/xcb_randr_get_crtc_transform_pad_4.3.gz +man/man3/xcb_randr_get_crtc_transform_pending_filter_name_end.3.gz +man/man3/xcb_randr_get_crtc_transform_pending_filter_name_length.3.gz +man/man3/xcb_randr_get_crtc_transform_pending_filter_name.3.gz +man/man3/xcb_randr_get_crtc_transform_pending_params_end.3.gz +man/man3/xcb_randr_get_crtc_transform_pending_params_length.3.gz +man/man3/xcb_randr_get_crtc_transform_pending_params.3.gz +man/man3/xcb_randr_get_crtc_transform_reply.3.gz +man/man3/xcb_randr_get_crtc_transform_unchecked.3.gz +man/man3/xcb_randr_get_crtc_transform.3.gz +man/man3/xcb_randr_get_monitors_monitors_iterator.3.gz +man/man3/xcb_randr_get_monitors_monitors_length.3.gz +man/man3/xcb_randr_get_monitors_reply.3.gz +man/man3/xcb_randr_get_monitors_unchecked.3.gz +man/man3/xcb_randr_get_monitors.3.gz +man/man3/xcb_randr_get_output_info_clones_end.3.gz +man/man3/xcb_randr_get_output_info_clones_length.3.gz +man/man3/xcb_randr_get_output_info_clones.3.gz +man/man3/xcb_randr_get_output_info_crtcs_end.3.gz +man/man3/xcb_randr_get_output_info_crtcs_length.3.gz +man/man3/xcb_randr_get_output_info_crtcs.3.gz +man/man3/xcb_randr_get_output_info_modes_end.3.gz +man/man3/xcb_randr_get_output_info_modes_length.3.gz +man/man3/xcb_randr_get_output_info_modes.3.gz +man/man3/xcb_randr_get_output_info_name_end.3.gz +man/man3/xcb_randr_get_output_info_name_length.3.gz +man/man3/xcb_randr_get_output_info_name.3.gz +man/man3/xcb_randr_get_output_info_reply.3.gz +man/man3/xcb_randr_get_output_info_unchecked.3.gz +man/man3/xcb_randr_get_output_info.3.gz +man/man3/xcb_randr_get_output_primary_reply.3.gz +man/man3/xcb_randr_get_output_primary_unchecked.3.gz +man/man3/xcb_randr_get_output_primary.3.gz +man/man3/xcb_randr_get_output_property_data_end.3.gz +man/man3/xcb_randr_get_output_property_data_length.3.gz +man/man3/xcb_randr_get_output_property_data.3.gz +man/man3/xcb_randr_get_output_property_reply.3.gz +man/man3/xcb_randr_get_output_property_unchecked.3.gz +man/man3/xcb_randr_get_output_property.3.gz +man/man3/xcb_randr_get_panning_reply.3.gz +man/man3/xcb_randr_get_panning_unchecked.3.gz +man/man3/xcb_randr_get_panning.3.gz +man/man3/xcb_randr_get_provider_info_associated_capability_end.3.gz +man/man3/xcb_randr_get_provider_info_associated_capability_length.3.gz +man/man3/xcb_randr_get_provider_info_associated_capability.3.gz +man/man3/xcb_randr_get_provider_info_associated_providers_end.3.gz +man/man3/xcb_randr_get_provider_info_associated_providers_length.3.gz +man/man3/xcb_randr_get_provider_info_associated_providers.3.gz +man/man3/xcb_randr_get_provider_info_crtcs_end.3.gz +man/man3/xcb_randr_get_provider_info_crtcs_length.3.gz +man/man3/xcb_randr_get_provider_info_crtcs.3.gz +man/man3/xcb_randr_get_provider_info_name_end.3.gz +man/man3/xcb_randr_get_provider_info_name_length.3.gz +man/man3/xcb_randr_get_provider_info_name.3.gz +man/man3/xcb_randr_get_provider_info_outputs_end.3.gz +man/man3/xcb_randr_get_provider_info_outputs_length.3.gz +man/man3/xcb_randr_get_provider_info_outputs.3.gz +man/man3/xcb_randr_get_provider_info_reply.3.gz +man/man3/xcb_randr_get_provider_info_unchecked.3.gz +man/man3/xcb_randr_get_provider_info.3.gz +man/man3/xcb_randr_get_provider_property_data_end.3.gz +man/man3/xcb_randr_get_provider_property_data_length.3.gz +man/man3/xcb_randr_get_provider_property_data.3.gz +man/man3/xcb_randr_get_provider_property_reply.3.gz +man/man3/xcb_randr_get_provider_property_unchecked.3.gz +man/man3/xcb_randr_get_provider_property.3.gz +man/man3/xcb_randr_get_providers_providers_end.3.gz +man/man3/xcb_randr_get_providers_providers_length.3.gz +man/man3/xcb_randr_get_providers_providers.3.gz +man/man3/xcb_randr_get_providers_reply.3.gz +man/man3/xcb_randr_get_providers_unchecked.3.gz +man/man3/xcb_randr_get_providers.3.gz +man/man3/xcb_randr_get_screen_info_rates_iterator.3.gz +man/man3/xcb_randr_get_screen_info_rates_length.3.gz +man/man3/xcb_randr_get_screen_info_reply.3.gz +man/man3/xcb_randr_get_screen_info_sizes_iterator.3.gz +man/man3/xcb_randr_get_screen_info_sizes_length.3.gz +man/man3/xcb_randr_get_screen_info_sizes.3.gz +man/man3/xcb_randr_get_screen_info_unchecked.3.gz +man/man3/xcb_randr_get_screen_info.3.gz +man/man3/xcb_randr_get_screen_resources_crtcs_end.3.gz +man/man3/xcb_randr_get_screen_resources_crtcs_length.3.gz +man/man3/xcb_randr_get_screen_resources_crtcs.3.gz +man/man3/xcb_randr_get_screen_resources_current_crtcs_end.3.gz +man/man3/xcb_randr_get_screen_resources_current_crtcs_length.3.gz +man/man3/xcb_randr_get_screen_resources_current_crtcs.3.gz +man/man3/xcb_randr_get_screen_resources_current_modes_iterator.3.gz +man/man3/xcb_randr_get_screen_resources_current_modes_length.3.gz +man/man3/xcb_randr_get_screen_resources_current_modes.3.gz +man/man3/xcb_randr_get_screen_resources_current_names_end.3.gz +man/man3/xcb_randr_get_screen_resources_current_names_length.3.gz +man/man3/xcb_randr_get_screen_resources_current_names.3.gz +man/man3/xcb_randr_get_screen_resources_current_outputs_end.3.gz +man/man3/xcb_randr_get_screen_resources_current_outputs_length.3.gz +man/man3/xcb_randr_get_screen_resources_current_outputs.3.gz +man/man3/xcb_randr_get_screen_resources_current_reply.3.gz +man/man3/xcb_randr_get_screen_resources_current_unchecked.3.gz +man/man3/xcb_randr_get_screen_resources_current.3.gz +man/man3/xcb_randr_get_screen_resources_modes_iterator.3.gz +man/man3/xcb_randr_get_screen_resources_modes_length.3.gz +man/man3/xcb_randr_get_screen_resources_modes.3.gz +man/man3/xcb_randr_get_screen_resources_names_end.3.gz +man/man3/xcb_randr_get_screen_resources_names_length.3.gz +man/man3/xcb_randr_get_screen_resources_names.3.gz +man/man3/xcb_randr_get_screen_resources_outputs_end.3.gz +man/man3/xcb_randr_get_screen_resources_outputs_length.3.gz +man/man3/xcb_randr_get_screen_resources_outputs.3.gz +man/man3/xcb_randr_get_screen_resources_reply.3.gz +man/man3/xcb_randr_get_screen_resources_unchecked.3.gz +man/man3/xcb_randr_get_screen_resources.3.gz +man/man3/xcb_randr_get_screen_size_range_reply.3.gz +man/man3/xcb_randr_get_screen_size_range_unchecked.3.gz +man/man3/xcb_randr_get_screen_size_range.3.gz +man/man3/xcb_randr_list_output_properties_atoms_end.3.gz +man/man3/xcb_randr_list_output_properties_atoms_length.3.gz +man/man3/xcb_randr_list_output_properties_atoms.3.gz +man/man3/xcb_randr_list_output_properties_reply.3.gz +man/man3/xcb_randr_list_output_properties_unchecked.3.gz +man/man3/xcb_randr_list_output_properties.3.gz +man/man3/xcb_randr_list_provider_properties_atoms_end.3.gz +man/man3/xcb_randr_list_provider_properties_atoms_length.3.gz +man/man3/xcb_randr_list_provider_properties_atoms.3.gz +man/man3/xcb_randr_list_provider_properties_reply.3.gz +man/man3/xcb_randr_list_provider_properties_unchecked.3.gz +man/man3/xcb_randr_list_provider_properties.3.gz +man/man3/xcb_randr_notify_event_t.3.gz +man/man3/xcb_randr_query_output_property_reply.3.gz +man/man3/xcb_randr_query_output_property_unchecked.3.gz +man/man3/xcb_randr_query_output_property_valid_values_end.3.gz +man/man3/xcb_randr_query_output_property_valid_values_length.3.gz +man/man3/xcb_randr_query_output_property_valid_values.3.gz +man/man3/xcb_randr_query_output_property.3.gz +man/man3/xcb_randr_query_provider_property_reply.3.gz +man/man3/xcb_randr_query_provider_property_unchecked.3.gz +man/man3/xcb_randr_query_provider_property_valid_values_end.3.gz +man/man3/xcb_randr_query_provider_property_valid_values_length.3.gz +man/man3/xcb_randr_query_provider_property_valid_values.3.gz +man/man3/xcb_randr_query_provider_property.3.gz +man/man3/xcb_randr_query_version_reply.3.gz +man/man3/xcb_randr_query_version_unchecked.3.gz +man/man3/xcb_randr_query_version.3.gz +man/man3/xcb_randr_screen_change_notify_event_t.3.gz +man/man3/xcb_randr_select_input_checked.3.gz +man/man3/xcb_randr_select_input.3.gz +man/man3/xcb_randr_set_crtc_config_reply.3.gz +man/man3/xcb_randr_set_crtc_config_unchecked.3.gz +man/man3/xcb_randr_set_crtc_config.3.gz +man/man3/xcb_randr_set_crtc_gamma_checked.3.gz +man/man3/xcb_randr_set_crtc_gamma.3.gz +man/man3/xcb_randr_set_crtc_transform_checked.3.gz +man/man3/xcb_randr_set_crtc_transform.3.gz +man/man3/xcb_randr_set_monitor_checked.3.gz +man/man3/xcb_randr_set_monitor.3.gz +man/man3/xcb_randr_set_output_primary_checked.3.gz +man/man3/xcb_randr_set_output_primary.3.gz +man/man3/xcb_randr_set_panning_reply.3.gz +man/man3/xcb_randr_set_panning_unchecked.3.gz +man/man3/xcb_randr_set_panning.3.gz +man/man3/xcb_randr_set_provider_offload_sink_checked.3.gz +man/man3/xcb_randr_set_provider_offload_sink.3.gz +man/man3/xcb_randr_set_provider_output_source_checked.3.gz +man/man3/xcb_randr_set_provider_output_source.3.gz +man/man3/xcb_randr_set_screen_config_reply.3.gz +man/man3/xcb_randr_set_screen_config_unchecked.3.gz +man/man3/xcb_randr_set_screen_config.3.gz +man/man3/xcb_randr_set_screen_size_checked.3.gz +man/man3/xcb_randr_set_screen_size.3.gz +man/man3/xcb_recolor_cursor_checked.3.gz +man/man3/xcb_recolor_cursor.3.gz +man/man3/xcb_record_create_context_checked.3.gz +man/man3/xcb_record_create_context.3.gz +man/man3/xcb_record_disable_context_checked.3.gz +man/man3/xcb_record_disable_context.3.gz +man/man3/xcb_record_enable_context_data_end.3.gz +man/man3/xcb_record_enable_context_data_length.3.gz +man/man3/xcb_record_enable_context_data.3.gz +man/man3/xcb_record_enable_context_reply.3.gz +man/man3/xcb_record_enable_context_unchecked.3.gz +man/man3/xcb_record_enable_context.3.gz +man/man3/xcb_record_free_context_checked.3.gz +man/man3/xcb_record_free_context.3.gz +man/man3/xcb_record_get_context_intercepted_clients_iterator.3.gz +man/man3/xcb_record_get_context_intercepted_clients_length.3.gz +man/man3/xcb_record_get_context_reply.3.gz +man/man3/xcb_record_get_context_unchecked.3.gz +man/man3/xcb_record_get_context.3.gz +man/man3/xcb_record_query_version_reply.3.gz +man/man3/xcb_record_query_version_unchecked.3.gz +man/man3/xcb_record_query_version.3.gz +man/man3/xcb_record_register_clients_checked.3.gz +man/man3/xcb_record_register_clients.3.gz +man/man3/xcb_record_unregister_clients_checked.3.gz +man/man3/xcb_record_unregister_clients.3.gz +man/man3/xcb_render_add_glyphs_checked.3.gz +man/man3/xcb_render_add_glyphs.3.gz +man/man3/xcb_render_add_traps_checked.3.gz +man/man3/xcb_render_add_traps.3.gz +man/man3/xcb_render_change_picture_checked.3.gz +man/man3/xcb_render_change_picture.3.gz +man/man3/xcb_render_composite_checked.3.gz +man/man3/xcb_render_composite_glyphs_16_checked.3.gz +man/man3/xcb_render_composite_glyphs_16.3.gz +man/man3/xcb_render_composite_glyphs_32_checked.3.gz +man/man3/xcb_render_composite_glyphs_32.3.gz +man/man3/xcb_render_composite_glyphs_8_checked.3.gz +man/man3/xcb_render_composite_glyphs_8.3.gz +man/man3/xcb_render_composite.3.gz +man/man3/xcb_render_create_anim_cursor_checked.3.gz +man/man3/xcb_render_create_anim_cursor.3.gz +man/man3/xcb_render_create_conical_gradient_checked.3.gz +man/man3/xcb_render_create_conical_gradient.3.gz +man/man3/xcb_render_create_cursor_checked.3.gz +man/man3/xcb_render_create_cursor.3.gz +man/man3/xcb_render_create_glyph_set_checked.3.gz +man/man3/xcb_render_create_glyph_set.3.gz +man/man3/xcb_render_create_linear_gradient_checked.3.gz +man/man3/xcb_render_create_linear_gradient.3.gz +man/man3/xcb_render_create_picture_checked.3.gz +man/man3/xcb_render_create_picture.3.gz +man/man3/xcb_render_create_radial_gradient_checked.3.gz +man/man3/xcb_render_create_radial_gradient.3.gz +man/man3/xcb_render_create_solid_fill_checked.3.gz +man/man3/xcb_render_create_solid_fill.3.gz +man/man3/xcb_render_fill_rectangles_checked.3.gz +man/man3/xcb_render_fill_rectangles.3.gz +man/man3/xcb_render_free_glyph_set_checked.3.gz +man/man3/xcb_render_free_glyph_set.3.gz +man/man3/xcb_render_free_glyphs_checked.3.gz +man/man3/xcb_render_free_glyphs.3.gz +man/man3/xcb_render_free_picture_checked.3.gz +man/man3/xcb_render_free_picture.3.gz +man/man3/xcb_render_query_filters_aliases_end.3.gz +man/man3/xcb_render_query_filters_aliases_length.3.gz +man/man3/xcb_render_query_filters_aliases.3.gz +man/man3/xcb_render_query_filters_filters_iterator.3.gz +man/man3/xcb_render_query_filters_filters_length.3.gz +man/man3/xcb_render_query_filters_reply.3.gz +man/man3/xcb_render_query_filters_unchecked.3.gz +man/man3/xcb_render_query_filters.3.gz +man/man3/xcb_render_query_pict_formats_formats_iterator.3.gz +man/man3/xcb_render_query_pict_formats_formats_length.3.gz +man/man3/xcb_render_query_pict_formats_formats.3.gz +man/man3/xcb_render_query_pict_formats_reply.3.gz +man/man3/xcb_render_query_pict_formats_screens_iterator.3.gz +man/man3/xcb_render_query_pict_formats_screens_length.3.gz +man/man3/xcb_render_query_pict_formats_subpixels_end.3.gz +man/man3/xcb_render_query_pict_formats_subpixels_length.3.gz +man/man3/xcb_render_query_pict_formats_subpixels.3.gz +man/man3/xcb_render_query_pict_formats_unchecked.3.gz +man/man3/xcb_render_query_pict_formats.3.gz +man/man3/xcb_render_query_pict_index_values_reply.3.gz +man/man3/xcb_render_query_pict_index_values_unchecked.3.gz +man/man3/xcb_render_query_pict_index_values_values_iterator.3.gz +man/man3/xcb_render_query_pict_index_values_values_length.3.gz +man/man3/xcb_render_query_pict_index_values_values.3.gz +man/man3/xcb_render_query_pict_index_values.3.gz +man/man3/xcb_render_query_version_reply.3.gz +man/man3/xcb_render_query_version_unchecked.3.gz +man/man3/xcb_render_query_version.3.gz +man/man3/xcb_render_reference_glyph_set_checked.3.gz +man/man3/xcb_render_reference_glyph_set.3.gz +man/man3/xcb_render_set_picture_clip_rectangles_checked.3.gz +man/man3/xcb_render_set_picture_clip_rectangles.3.gz +man/man3/xcb_render_set_picture_filter_checked.3.gz +man/man3/xcb_render_set_picture_filter.3.gz +man/man3/xcb_render_set_picture_transform_checked.3.gz +man/man3/xcb_render_set_picture_transform.3.gz +man/man3/xcb_render_trapezoids_checked.3.gz +man/man3/xcb_render_trapezoids.3.gz +man/man3/xcb_render_tri_fan_checked.3.gz +man/man3/xcb_render_tri_fan.3.gz +man/man3/xcb_render_tri_strip_checked.3.gz +man/man3/xcb_render_tri_strip.3.gz +man/man3/xcb_render_triangles_checked.3.gz +man/man3/xcb_render_triangles.3.gz +man/man3/xcb_reparent_notify_event_t.3.gz +man/man3/xcb_reparent_window_checked.3.gz +man/man3/xcb_reparent_window.3.gz +man/man3/xcb_res_query_client_ids_ids_iterator.3.gz +man/man3/xcb_res_query_client_ids_ids_length.3.gz +man/man3/xcb_res_query_client_ids_reply.3.gz +man/man3/xcb_res_query_client_ids_unchecked.3.gz +man/man3/xcb_res_query_client_ids.3.gz +man/man3/xcb_res_query_client_pixmap_bytes_reply.3.gz +man/man3/xcb_res_query_client_pixmap_bytes_unchecked.3.gz +man/man3/xcb_res_query_client_pixmap_bytes.3.gz +man/man3/xcb_res_query_client_resources_reply.3.gz +man/man3/xcb_res_query_client_resources_types_iterator.3.gz +man/man3/xcb_res_query_client_resources_types_length.3.gz +man/man3/xcb_res_query_client_resources_types.3.gz +man/man3/xcb_res_query_client_resources_unchecked.3.gz +man/man3/xcb_res_query_client_resources.3.gz +man/man3/xcb_res_query_clients_clients_iterator.3.gz +man/man3/xcb_res_query_clients_clients_length.3.gz +man/man3/xcb_res_query_clients_clients.3.gz +man/man3/xcb_res_query_clients_reply.3.gz +man/man3/xcb_res_query_clients_unchecked.3.gz +man/man3/xcb_res_query_clients.3.gz +man/man3/xcb_res_query_resource_bytes_reply.3.gz +man/man3/xcb_res_query_resource_bytes_sizes_iterator.3.gz +man/man3/xcb_res_query_resource_bytes_sizes_length.3.gz +man/man3/xcb_res_query_resource_bytes_unchecked.3.gz +man/man3/xcb_res_query_resource_bytes.3.gz +man/man3/xcb_res_query_version_reply.3.gz +man/man3/xcb_res_query_version_unchecked.3.gz +man/man3/xcb_res_query_version.3.gz +man/man3/xcb_resize_request_event_t.3.gz +man/man3/xcb_rotate_properties_checked.3.gz +man/man3/xcb_rotate_properties.3.gz +man/man3/xcb_screensaver_notify_event_t.3.gz +man/man3/xcb_screensaver_query_info_reply.3.gz +man/man3/xcb_screensaver_query_info_unchecked.3.gz +man/man3/xcb_screensaver_query_info.3.gz +man/man3/xcb_screensaver_query_version_reply.3.gz +man/man3/xcb_screensaver_query_version_unchecked.3.gz +man/man3/xcb_screensaver_query_version.3.gz +man/man3/xcb_screensaver_select_input_checked.3.gz +man/man3/xcb_screensaver_select_input.3.gz +man/man3/xcb_screensaver_set_attributes_checked.3.gz +man/man3/xcb_screensaver_set_attributes.3.gz +man/man3/xcb_screensaver_suspend_checked.3.gz +man/man3/xcb_screensaver_suspend.3.gz +man/man3/xcb_screensaver_unset_attributes_checked.3.gz +man/man3/xcb_screensaver_unset_attributes.3.gz +man/man3/xcb_selection_clear_event_t.3.gz +man/man3/xcb_selection_notify_event_t.3.gz +man/man3/xcb_selection_request_event_t.3.gz +man/man3/xcb_selinux_get_client_context_context_end.3.gz +man/man3/xcb_selinux_get_client_context_context_length.3.gz +man/man3/xcb_selinux_get_client_context_context.3.gz +man/man3/xcb_selinux_get_client_context_reply.3.gz +man/man3/xcb_selinux_get_client_context_unchecked.3.gz +man/man3/xcb_selinux_get_client_context.3.gz +man/man3/xcb_selinux_get_device_context_context_end.3.gz +man/man3/xcb_selinux_get_device_context_context_length.3.gz +man/man3/xcb_selinux_get_device_context_context.3.gz +man/man3/xcb_selinux_get_device_context_reply.3.gz +man/man3/xcb_selinux_get_device_context_unchecked.3.gz +man/man3/xcb_selinux_get_device_context.3.gz +man/man3/xcb_selinux_get_device_create_context_context_end.3.gz +man/man3/xcb_selinux_get_device_create_context_context_length.3.gz +man/man3/xcb_selinux_get_device_create_context_context.3.gz +man/man3/xcb_selinux_get_device_create_context_reply.3.gz +man/man3/xcb_selinux_get_device_create_context_unchecked.3.gz +man/man3/xcb_selinux_get_device_create_context.3.gz +man/man3/xcb_selinux_get_property_context_context_end.3.gz +man/man3/xcb_selinux_get_property_context_context_length.3.gz +man/man3/xcb_selinux_get_property_context_context.3.gz +man/man3/xcb_selinux_get_property_context_reply.3.gz +man/man3/xcb_selinux_get_property_context_unchecked.3.gz +man/man3/xcb_selinux_get_property_context.3.gz +man/man3/xcb_selinux_get_property_create_context_context_end.3.gz +man/man3/xcb_selinux_get_property_create_context_context_length.3.gz +man/man3/xcb_selinux_get_property_create_context_context.3.gz +man/man3/xcb_selinux_get_property_create_context_reply.3.gz +man/man3/xcb_selinux_get_property_create_context_unchecked.3.gz +man/man3/xcb_selinux_get_property_create_context.3.gz +man/man3/xcb_selinux_get_property_data_context_context_end.3.gz +man/man3/xcb_selinux_get_property_data_context_context_length.3.gz +man/man3/xcb_selinux_get_property_data_context_context.3.gz +man/man3/xcb_selinux_get_property_data_context_reply.3.gz +man/man3/xcb_selinux_get_property_data_context_unchecked.3.gz +man/man3/xcb_selinux_get_property_data_context.3.gz +man/man3/xcb_selinux_get_property_use_context_context_end.3.gz +man/man3/xcb_selinux_get_property_use_context_context_length.3.gz +man/man3/xcb_selinux_get_property_use_context_context.3.gz +man/man3/xcb_selinux_get_property_use_context_reply.3.gz +man/man3/xcb_selinux_get_property_use_context_unchecked.3.gz +man/man3/xcb_selinux_get_property_use_context.3.gz +man/man3/xcb_selinux_get_selection_context_context_end.3.gz +man/man3/xcb_selinux_get_selection_context_context_length.3.gz +man/man3/xcb_selinux_get_selection_context_context.3.gz +man/man3/xcb_selinux_get_selection_context_reply.3.gz +man/man3/xcb_selinux_get_selection_context_unchecked.3.gz +man/man3/xcb_selinux_get_selection_context.3.gz +man/man3/xcb_selinux_get_selection_create_context_context_end.3.gz +man/man3/xcb_selinux_get_selection_create_context_context_length.3.gz +man/man3/xcb_selinux_get_selection_create_context_context.3.gz +man/man3/xcb_selinux_get_selection_create_context_reply.3.gz +man/man3/xcb_selinux_get_selection_create_context_unchecked.3.gz +man/man3/xcb_selinux_get_selection_create_context.3.gz +man/man3/xcb_selinux_get_selection_data_context_context_end.3.gz +man/man3/xcb_selinux_get_selection_data_context_context_length.3.gz +man/man3/xcb_selinux_get_selection_data_context_context.3.gz +man/man3/xcb_selinux_get_selection_data_context_reply.3.gz +man/man3/xcb_selinux_get_selection_data_context_unchecked.3.gz +man/man3/xcb_selinux_get_selection_data_context.3.gz +man/man3/xcb_selinux_get_selection_use_context_context_end.3.gz +man/man3/xcb_selinux_get_selection_use_context_context_length.3.gz +man/man3/xcb_selinux_get_selection_use_context_context.3.gz +man/man3/xcb_selinux_get_selection_use_context_reply.3.gz +man/man3/xcb_selinux_get_selection_use_context_unchecked.3.gz +man/man3/xcb_selinux_get_selection_use_context.3.gz +man/man3/xcb_selinux_get_window_context_context_end.3.gz +man/man3/xcb_selinux_get_window_context_context_length.3.gz +man/man3/xcb_selinux_get_window_context_context.3.gz +man/man3/xcb_selinux_get_window_context_reply.3.gz +man/man3/xcb_selinux_get_window_context_unchecked.3.gz +man/man3/xcb_selinux_get_window_context.3.gz +man/man3/xcb_selinux_get_window_create_context_context_end.3.gz +man/man3/xcb_selinux_get_window_create_context_context_length.3.gz +man/man3/xcb_selinux_get_window_create_context_context.3.gz +man/man3/xcb_selinux_get_window_create_context_reply.3.gz +man/man3/xcb_selinux_get_window_create_context_unchecked.3.gz +man/man3/xcb_selinux_get_window_create_context.3.gz +man/man3/xcb_selinux_list_properties_properties_iterator.3.gz +man/man3/xcb_selinux_list_properties_properties_length.3.gz +man/man3/xcb_selinux_list_properties_reply.3.gz +man/man3/xcb_selinux_list_properties_unchecked.3.gz +man/man3/xcb_selinux_list_properties.3.gz +man/man3/xcb_selinux_list_selections_reply.3.gz +man/man3/xcb_selinux_list_selections_selections_iterator.3.gz +man/man3/xcb_selinux_list_selections_selections_length.3.gz +man/man3/xcb_selinux_list_selections_unchecked.3.gz +man/man3/xcb_selinux_list_selections.3.gz +man/man3/xcb_selinux_query_version_reply.3.gz +man/man3/xcb_selinux_query_version_unchecked.3.gz +man/man3/xcb_selinux_query_version.3.gz +man/man3/xcb_selinux_set_device_context_checked.3.gz +man/man3/xcb_selinux_set_device_context.3.gz +man/man3/xcb_selinux_set_device_create_context_checked.3.gz +man/man3/xcb_selinux_set_device_create_context.3.gz +man/man3/xcb_selinux_set_property_create_context_checked.3.gz +man/man3/xcb_selinux_set_property_create_context.3.gz +man/man3/xcb_selinux_set_property_use_context_checked.3.gz +man/man3/xcb_selinux_set_property_use_context.3.gz +man/man3/xcb_selinux_set_selection_create_context_checked.3.gz +man/man3/xcb_selinux_set_selection_create_context.3.gz +man/man3/xcb_selinux_set_selection_use_context_checked.3.gz +man/man3/xcb_selinux_set_selection_use_context.3.gz +man/man3/xcb_selinux_set_window_create_context_checked.3.gz +man/man3/xcb_selinux_set_window_create_context.3.gz +man/man3/xcb_send_event_checked.3.gz +man/man3/xcb_send_event.3.gz +man/man3/xcb_set_access_control_checked.3.gz +man/man3/xcb_set_access_control.3.gz +man/man3/xcb_set_clip_rectangles_checked.3.gz +man/man3/xcb_set_clip_rectangles.3.gz +man/man3/xcb_set_close_down_mode_checked.3.gz +man/man3/xcb_set_close_down_mode.3.gz +man/man3/xcb_set_dashes_checked.3.gz +man/man3/xcb_set_dashes.3.gz +man/man3/xcb_set_font_path_checked.3.gz +man/man3/xcb_set_font_path.3.gz +man/man3/xcb_set_input_focus_checked.3.gz +man/man3/xcb_set_input_focus.3.gz +man/man3/xcb_set_modifier_mapping_reply.3.gz +man/man3/xcb_set_modifier_mapping_unchecked.3.gz +man/man3/xcb_set_modifier_mapping.3.gz +man/man3/xcb_set_pointer_mapping_reply.3.gz +man/man3/xcb_set_pointer_mapping_unchecked.3.gz +man/man3/xcb_set_pointer_mapping.3.gz +man/man3/xcb_set_screen_saver_checked.3.gz +man/man3/xcb_set_screen_saver.3.gz +man/man3/xcb_set_selection_owner_checked.3.gz +man/man3/xcb_set_selection_owner.3.gz +man/man3/xcb_shape_combine_checked.3.gz +man/man3/xcb_shape_combine.3.gz +man/man3/xcb_shape_get_rectangles_rectangles_iterator.3.gz +man/man3/xcb_shape_get_rectangles_rectangles_length.3.gz +man/man3/xcb_shape_get_rectangles_rectangles.3.gz +man/man3/xcb_shape_get_rectangles_reply.3.gz +man/man3/xcb_shape_get_rectangles_unchecked.3.gz +man/man3/xcb_shape_get_rectangles.3.gz +man/man3/xcb_shape_input_selected_reply.3.gz +man/man3/xcb_shape_input_selected_unchecked.3.gz +man/man3/xcb_shape_input_selected.3.gz +man/man3/xcb_shape_mask_checked.3.gz +man/man3/xcb_shape_mask.3.gz +man/man3/xcb_shape_notify_event_t.3.gz +man/man3/xcb_shape_offset_checked.3.gz +man/man3/xcb_shape_offset.3.gz +man/man3/xcb_shape_query_extents_reply.3.gz +man/man3/xcb_shape_query_extents_unchecked.3.gz +man/man3/xcb_shape_query_extents.3.gz +man/man3/xcb_shape_query_version_reply.3.gz +man/man3/xcb_shape_query_version_unchecked.3.gz +man/man3/xcb_shape_query_version.3.gz +man/man3/xcb_shape_rectangles_checked.3.gz +man/man3/xcb_shape_rectangles.3.gz +man/man3/xcb_shape_select_input_checked.3.gz +man/man3/xcb_shape_select_input.3.gz +man/man3/xcb_shm_attach_checked.3.gz +man/man3/xcb_shm_attach_fd_checked.3.gz +man/man3/xcb_shm_attach_fd.3.gz +man/man3/xcb_shm_attach.3.gz +man/man3/xcb_shm_completion_event_t.3.gz +man/man3/xcb_shm_create_pixmap_checked.3.gz +man/man3/xcb_shm_create_pixmap.3.gz +man/man3/xcb_shm_create_segment_reply.3.gz +man/man3/xcb_shm_create_segment_unchecked.3.gz +man/man3/xcb_shm_create_segment.3.gz +man/man3/xcb_shm_detach_checked.3.gz +man/man3/xcb_shm_detach.3.gz +man/man3/xcb_shm_get_image_reply.3.gz +man/man3/xcb_shm_get_image_unchecked.3.gz +man/man3/xcb_shm_get_image.3.gz +man/man3/xcb_shm_put_image_checked.3.gz +man/man3/xcb_shm_put_image.3.gz +man/man3/xcb_shm_query_version_reply.3.gz +man/man3/xcb_shm_query_version_unchecked.3.gz +man/man3/xcb_shm_query_version.3.gz +man/man3/xcb_store_colors_checked.3.gz +man/man3/xcb_store_colors.3.gz +man/man3/xcb_store_named_color_checked.3.gz +man/man3/xcb_store_named_color.3.gz +man/man3/xcb_sync_alarm_notify_event_t.3.gz +man/man3/xcb_sync_await_checked.3.gz +man/man3/xcb_sync_await_fence_checked.3.gz +man/man3/xcb_sync_await_fence.3.gz +man/man3/xcb_sync_await.3.gz +man/man3/xcb_sync_change_alarm_checked.3.gz +man/man3/xcb_sync_change_alarm.3.gz +man/man3/xcb_sync_change_counter_checked.3.gz +man/man3/xcb_sync_change_counter.3.gz +man/man3/xcb_sync_counter_notify_event_t.3.gz +man/man3/xcb_sync_create_alarm_checked.3.gz +man/man3/xcb_sync_create_alarm.3.gz +man/man3/xcb_sync_create_counter_checked.3.gz +man/man3/xcb_sync_create_counter.3.gz +man/man3/xcb_sync_create_fence_checked.3.gz +man/man3/xcb_sync_create_fence.3.gz +man/man3/xcb_sync_destroy_alarm_checked.3.gz +man/man3/xcb_sync_destroy_alarm.3.gz +man/man3/xcb_sync_destroy_counter_checked.3.gz +man/man3/xcb_sync_destroy_counter.3.gz +man/man3/xcb_sync_destroy_fence_checked.3.gz +man/man3/xcb_sync_destroy_fence.3.gz +man/man3/xcb_sync_get_priority_reply.3.gz +man/man3/xcb_sync_get_priority_unchecked.3.gz +man/man3/xcb_sync_get_priority.3.gz +man/man3/xcb_sync_initialize_reply.3.gz +man/man3/xcb_sync_initialize_unchecked.3.gz +man/man3/xcb_sync_initialize.3.gz +man/man3/xcb_sync_list_system_counters_counters_iterator.3.gz +man/man3/xcb_sync_list_system_counters_counters_length.3.gz +man/man3/xcb_sync_list_system_counters_reply.3.gz +man/man3/xcb_sync_list_system_counters_unchecked.3.gz +man/man3/xcb_sync_list_system_counters.3.gz +man/man3/xcb_sync_query_alarm_reply.3.gz +man/man3/xcb_sync_query_alarm_unchecked.3.gz +man/man3/xcb_sync_query_alarm.3.gz +man/man3/xcb_sync_query_counter_reply.3.gz +man/man3/xcb_sync_query_counter_unchecked.3.gz +man/man3/xcb_sync_query_counter.3.gz +man/man3/xcb_sync_query_fence_reply.3.gz +man/man3/xcb_sync_query_fence_unchecked.3.gz +man/man3/xcb_sync_query_fence.3.gz +man/man3/xcb_sync_reset_fence_checked.3.gz +man/man3/xcb_sync_reset_fence.3.gz +man/man3/xcb_sync_set_counter_checked.3.gz +man/man3/xcb_sync_set_counter.3.gz +man/man3/xcb_sync_set_priority_checked.3.gz +man/man3/xcb_sync_set_priority.3.gz +man/man3/xcb_sync_trigger_fence_checked.3.gz +man/man3/xcb_sync_trigger_fence.3.gz +man/man3/xcb_test_compare_cursor_reply.3.gz +man/man3/xcb_test_compare_cursor_unchecked.3.gz +man/man3/xcb_test_compare_cursor.3.gz +man/man3/xcb_test_fake_input_checked.3.gz +man/man3/xcb_test_fake_input.3.gz +man/man3/xcb_test_get_version_reply.3.gz +man/man3/xcb_test_get_version_unchecked.3.gz +man/man3/xcb_test_get_version.3.gz +man/man3/xcb_test_grab_control_checked.3.gz +man/man3/xcb_test_grab_control.3.gz +man/man3/xcb_translate_coordinates_reply.3.gz +man/man3/xcb_translate_coordinates_unchecked.3.gz +man/man3/xcb_translate_coordinates.3.gz +man/man3/xcb_ungrab_button_checked.3.gz +man/man3/xcb_ungrab_button.3.gz +man/man3/xcb_ungrab_key_checked.3.gz +man/man3/xcb_ungrab_key.3.gz +man/man3/xcb_ungrab_keyboard_checked.3.gz +man/man3/xcb_ungrab_keyboard.3.gz +man/man3/xcb_ungrab_pointer_checked.3.gz +man/man3/xcb_ungrab_pointer.3.gz +man/man3/xcb_ungrab_server_checked.3.gz +man/man3/xcb_ungrab_server.3.gz +man/man3/xcb_uninstall_colormap_checked.3.gz +man/man3/xcb_uninstall_colormap.3.gz +man/man3/xcb_unmap_notify_event_t.3.gz +man/man3/xcb_unmap_subwindows_checked.3.gz +man/man3/xcb_unmap_subwindows.3.gz +man/man3/xcb_unmap_window_checked.3.gz +man/man3/xcb_unmap_window.3.gz +man/man3/xcb_visibility_notify_event_t.3.gz +man/man3/xcb_warp_pointer_checked.3.gz +man/man3/xcb_warp_pointer.3.gz +man/man3/xcb_x_print_attribut_notify_event_t.3.gz +man/man3/xcb_x_print_create_context_checked.3.gz +man/man3/xcb_x_print_create_context.3.gz +man/man3/xcb_x_print_notify_event_t.3.gz +man/man3/xcb_x_print_print_destroy_context_checked.3.gz +man/man3/xcb_x_print_print_destroy_context.3.gz +man/man3/xcb_x_print_print_end_doc_checked.3.gz +man/man3/xcb_x_print_print_end_doc.3.gz +man/man3/xcb_x_print_print_end_job_checked.3.gz +man/man3/xcb_x_print_print_end_job.3.gz +man/man3/xcb_x_print_print_end_page_checked.3.gz +man/man3/xcb_x_print_print_end_page.3.gz +man/man3/xcb_x_print_print_get_attributes_attributes_end.3.gz +man/man3/xcb_x_print_print_get_attributes_attributes_length.3.gz +man/man3/xcb_x_print_print_get_attributes_attributes.3.gz +man/man3/xcb_x_print_print_get_attributes_reply.3.gz +man/man3/xcb_x_print_print_get_attributes_unchecked.3.gz +man/man3/xcb_x_print_print_get_attributes.3.gz +man/man3/xcb_x_print_print_get_context_reply.3.gz +man/man3/xcb_x_print_print_get_context_unchecked.3.gz +man/man3/xcb_x_print_print_get_context.3.gz +man/man3/xcb_x_print_print_get_document_data_data_end.3.gz +man/man3/xcb_x_print_print_get_document_data_data_length.3.gz +man/man3/xcb_x_print_print_get_document_data_data.3.gz +man/man3/xcb_x_print_print_get_document_data_reply.3.gz +man/man3/xcb_x_print_print_get_document_data_unchecked.3.gz +man/man3/xcb_x_print_print_get_document_data.3.gz +man/man3/xcb_x_print_print_get_image_resolution_reply.3.gz +man/man3/xcb_x_print_print_get_image_resolution_unchecked.3.gz +man/man3/xcb_x_print_print_get_image_resolution.3.gz +man/man3/xcb_x_print_print_get_one_attributes_reply.3.gz +man/man3/xcb_x_print_print_get_one_attributes_unchecked.3.gz +man/man3/xcb_x_print_print_get_one_attributes_value_end.3.gz +man/man3/xcb_x_print_print_get_one_attributes_value_length.3.gz +man/man3/xcb_x_print_print_get_one_attributes_value.3.gz +man/man3/xcb_x_print_print_get_one_attributes.3.gz +man/man3/xcb_x_print_print_get_page_dimensions_reply.3.gz +man/man3/xcb_x_print_print_get_page_dimensions_unchecked.3.gz +man/man3/xcb_x_print_print_get_page_dimensions.3.gz +man/man3/xcb_x_print_print_get_printer_list_printers_iterator.3.gz +man/man3/xcb_x_print_print_get_printer_list_printers_length.3.gz +man/man3/xcb_x_print_print_get_printer_list_reply.3.gz +man/man3/xcb_x_print_print_get_printer_list_unchecked.3.gz +man/man3/xcb_x_print_print_get_printer_list.3.gz +man/man3/xcb_x_print_print_get_screen_of_context_reply.3.gz +man/man3/xcb_x_print_print_get_screen_of_context_unchecked.3.gz +man/man3/xcb_x_print_print_get_screen_of_context.3.gz +man/man3/xcb_x_print_print_input_selected_all_events_list_end.3.gz +man/man3/xcb_x_print_print_input_selected_all_events_list_length.3.gz +man/man3/xcb_x_print_print_input_selected_all_events_list.3.gz +man/man3/xcb_x_print_print_input_selected_event_list_end.3.gz +man/man3/xcb_x_print_print_input_selected_event_list_length.3.gz +man/man3/xcb_x_print_print_input_selected_event_list.3.gz +man/man3/xcb_x_print_print_input_selected_reply.3.gz +man/man3/xcb_x_print_print_input_selected_unchecked.3.gz +man/man3/xcb_x_print_print_input_selected.3.gz +man/man3/xcb_x_print_print_put_document_data_checked.3.gz +man/man3/xcb_x_print_print_put_document_data.3.gz +man/man3/xcb_x_print_print_query_screens_reply.3.gz +man/man3/xcb_x_print_print_query_screens_roots_end.3.gz +man/man3/xcb_x_print_print_query_screens_roots_length.3.gz +man/man3/xcb_x_print_print_query_screens_roots.3.gz +man/man3/xcb_x_print_print_query_screens_unchecked.3.gz +man/man3/xcb_x_print_print_query_screens.3.gz +man/man3/xcb_x_print_print_query_version_reply.3.gz +man/man3/xcb_x_print_print_query_version_unchecked.3.gz +man/man3/xcb_x_print_print_query_version.3.gz +man/man3/xcb_x_print_print_rehash_printer_list_checked.3.gz +man/man3/xcb_x_print_print_rehash_printer_list.3.gz +man/man3/xcb_x_print_print_select_input_checked.3.gz +man/man3/xcb_x_print_print_select_input.3.gz +man/man3/xcb_x_print_print_set_attributes_checked.3.gz +man/man3/xcb_x_print_print_set_attributes.3.gz +man/man3/xcb_x_print_print_set_context_checked.3.gz +man/man3/xcb_x_print_print_set_context.3.gz +man/man3/xcb_x_print_print_set_image_resolution_reply.3.gz +man/man3/xcb_x_print_print_set_image_resolution_unchecked.3.gz +man/man3/xcb_x_print_print_set_image_resolution.3.gz +man/man3/xcb_x_print_print_start_doc_checked.3.gz +man/man3/xcb_x_print_print_start_doc.3.gz +man/man3/xcb_x_print_print_start_job_checked.3.gz +man/man3/xcb_x_print_print_start_job.3.gz +man/man3/xcb_x_print_print_start_page_checked.3.gz +man/man3/xcb_x_print_print_start_page.3.gz +man/man3/xcb_xc_misc_get_version_reply.3.gz +man/man3/xcb_xc_misc_get_version_unchecked.3.gz +man/man3/xcb_xc_misc_get_version.3.gz +man/man3/xcb_xc_misc_get_xid_list_ids_end.3.gz +man/man3/xcb_xc_misc_get_xid_list_ids_length.3.gz +man/man3/xcb_xc_misc_get_xid_list_ids.3.gz +man/man3/xcb_xc_misc_get_xid_list_reply.3.gz +man/man3/xcb_xc_misc_get_xid_list_unchecked.3.gz +man/man3/xcb_xc_misc_get_xid_list.3.gz +man/man3/xcb_xc_misc_get_xid_range_reply.3.gz +man/man3/xcb_xc_misc_get_xid_range_unchecked.3.gz +man/man3/xcb_xc_misc_get_xid_range.3.gz +man/man3/xcb_xevie_end_reply.3.gz +man/man3/xcb_xevie_end_unchecked.3.gz +man/man3/xcb_xevie_end.3.gz +man/man3/xcb_xevie_query_version_reply.3.gz +man/man3/xcb_xevie_query_version_unchecked.3.gz +man/man3/xcb_xevie_query_version.3.gz +man/man3/xcb_xevie_select_input_reply.3.gz +man/man3/xcb_xevie_select_input_unchecked.3.gz +man/man3/xcb_xevie_select_input.3.gz +man/man3/xcb_xevie_send_reply.3.gz +man/man3/xcb_xevie_send_unchecked.3.gz +man/man3/xcb_xevie_send.3.gz +man/man3/xcb_xevie_start_reply.3.gz +man/man3/xcb_xevie_start_unchecked.3.gz +man/man3/xcb_xevie_start.3.gz +man/man3/xcb_xf86dri_auth_connection_reply.3.gz +man/man3/xcb_xf86dri_auth_connection_unchecked.3.gz +man/man3/xcb_xf86dri_auth_connection.3.gz +man/man3/xcb_xf86dri_close_connection_checked.3.gz +man/man3/xcb_xf86dri_close_connection.3.gz +man/man3/xcb_xf86dri_create_context_reply.3.gz +man/man3/xcb_xf86dri_create_context_unchecked.3.gz +man/man3/xcb_xf86dri_create_context.3.gz +man/man3/xcb_xf86dri_create_drawable_reply.3.gz +man/man3/xcb_xf86dri_create_drawable_unchecked.3.gz +man/man3/xcb_xf86dri_create_drawable.3.gz +man/man3/xcb_xf86dri_destroy_context_checked.3.gz +man/man3/xcb_xf86dri_destroy_context.3.gz +man/man3/xcb_xf86dri_destroy_drawable_checked.3.gz +man/man3/xcb_xf86dri_destroy_drawable.3.gz +man/man3/xcb_xf86dri_get_client_driver_name_client_driver_name_end.3.gz +man/man3/xcb_xf86dri_get_client_driver_name_client_driver_name_length.3.gz +man/man3/xcb_xf86dri_get_client_driver_name_client_driver_name.3.gz +man/man3/xcb_xf86dri_get_client_driver_name_reply.3.gz +man/man3/xcb_xf86dri_get_client_driver_name_unchecked.3.gz +man/man3/xcb_xf86dri_get_client_driver_name.3.gz +man/man3/xcb_xf86dri_get_device_info_device_private_end.3.gz +man/man3/xcb_xf86dri_get_device_info_device_private_length.3.gz +man/man3/xcb_xf86dri_get_device_info_device_private.3.gz +man/man3/xcb_xf86dri_get_device_info_reply.3.gz +man/man3/xcb_xf86dri_get_device_info_unchecked.3.gz +man/man3/xcb_xf86dri_get_device_info.3.gz +man/man3/xcb_xf86dri_get_drawable_info_back_clip_rects_iterator.3.gz +man/man3/xcb_xf86dri_get_drawable_info_back_clip_rects_length.3.gz +man/man3/xcb_xf86dri_get_drawable_info_back_clip_rects.3.gz +man/man3/xcb_xf86dri_get_drawable_info_clip_rects_iterator.3.gz +man/man3/xcb_xf86dri_get_drawable_info_clip_rects_length.3.gz +man/man3/xcb_xf86dri_get_drawable_info_clip_rects.3.gz +man/man3/xcb_xf86dri_get_drawable_info_reply.3.gz +man/man3/xcb_xf86dri_get_drawable_info_unchecked.3.gz +man/man3/xcb_xf86dri_get_drawable_info.3.gz +man/man3/xcb_xf86dri_open_connection_bus_id_end.3.gz +man/man3/xcb_xf86dri_open_connection_bus_id_length.3.gz +man/man3/xcb_xf86dri_open_connection_bus_id.3.gz +man/man3/xcb_xf86dri_open_connection_reply.3.gz +man/man3/xcb_xf86dri_open_connection_unchecked.3.gz +man/man3/xcb_xf86dri_open_connection.3.gz +man/man3/xcb_xf86dri_query_direct_rendering_capable_reply.3.gz +man/man3/xcb_xf86dri_query_direct_rendering_capable_unchecked.3.gz +man/man3/xcb_xf86dri_query_direct_rendering_capable.3.gz +man/man3/xcb_xf86dri_query_version_reply.3.gz +man/man3/xcb_xf86dri_query_version_unchecked.3.gz +man/man3/xcb_xf86dri_query_version.3.gz +man/man3/xcb_xfixes_change_cursor_by_name_checked.3.gz +man/man3/xcb_xfixes_change_cursor_by_name.3.gz +man/man3/xcb_xfixes_change_cursor_checked.3.gz +man/man3/xcb_xfixes_change_cursor.3.gz +man/man3/xcb_xfixes_change_save_set_checked.3.gz +man/man3/xcb_xfixes_change_save_set.3.gz +man/man3/xcb_xfixes_copy_region_checked.3.gz +man/man3/xcb_xfixes_copy_region.3.gz +man/man3/xcb_xfixes_create_pointer_barrier_checked.3.gz +man/man3/xcb_xfixes_create_pointer_barrier.3.gz +man/man3/xcb_xfixes_create_region_checked.3.gz +man/man3/xcb_xfixes_create_region_from_bitmap_checked.3.gz +man/man3/xcb_xfixes_create_region_from_bitmap.3.gz +man/man3/xcb_xfixes_create_region_from_gc_checked.3.gz +man/man3/xcb_xfixes_create_region_from_gc.3.gz +man/man3/xcb_xfixes_create_region_from_picture_checked.3.gz +man/man3/xcb_xfixes_create_region_from_picture.3.gz +man/man3/xcb_xfixes_create_region_from_window_checked.3.gz +man/man3/xcb_xfixes_create_region_from_window.3.gz +man/man3/xcb_xfixes_create_region.3.gz +man/man3/xcb_xfixes_cursor_notify_event_t.3.gz +man/man3/xcb_xfixes_delete_pointer_barrier_checked.3.gz +man/man3/xcb_xfixes_delete_pointer_barrier.3.gz +man/man3/xcb_xfixes_destroy_region_checked.3.gz +man/man3/xcb_xfixes_destroy_region.3.gz +man/man3/xcb_xfixes_expand_region_checked.3.gz +man/man3/xcb_xfixes_expand_region.3.gz +man/man3/xcb_xfixes_fetch_region_rectangles_iterator.3.gz +man/man3/xcb_xfixes_fetch_region_rectangles_length.3.gz +man/man3/xcb_xfixes_fetch_region_rectangles.3.gz +man/man3/xcb_xfixes_fetch_region_reply.3.gz +man/man3/xcb_xfixes_fetch_region_unchecked.3.gz +man/man3/xcb_xfixes_fetch_region.3.gz +man/man3/xcb_xfixes_get_cursor_image_and_name_cursor_image_end.3.gz +man/man3/xcb_xfixes_get_cursor_image_and_name_cursor_image_length.3.gz +man/man3/xcb_xfixes_get_cursor_image_and_name_cursor_image.3.gz +man/man3/xcb_xfixes_get_cursor_image_and_name_name_end.3.gz +man/man3/xcb_xfixes_get_cursor_image_and_name_name_length.3.gz +man/man3/xcb_xfixes_get_cursor_image_and_name_name.3.gz +man/man3/xcb_xfixes_get_cursor_image_and_name_reply.3.gz +man/man3/xcb_xfixes_get_cursor_image_and_name_unchecked.3.gz +man/man3/xcb_xfixes_get_cursor_image_and_name.3.gz +man/man3/xcb_xfixes_get_cursor_image_cursor_image_end.3.gz +man/man3/xcb_xfixes_get_cursor_image_cursor_image_length.3.gz +man/man3/xcb_xfixes_get_cursor_image_cursor_image.3.gz +man/man3/xcb_xfixes_get_cursor_image_reply.3.gz +man/man3/xcb_xfixes_get_cursor_image_unchecked.3.gz +man/man3/xcb_xfixes_get_cursor_image.3.gz +man/man3/xcb_xfixes_get_cursor_name_name_end.3.gz +man/man3/xcb_xfixes_get_cursor_name_name_length.3.gz +man/man3/xcb_xfixes_get_cursor_name_name.3.gz +man/man3/xcb_xfixes_get_cursor_name_reply.3.gz +man/man3/xcb_xfixes_get_cursor_name_unchecked.3.gz +man/man3/xcb_xfixes_get_cursor_name.3.gz +man/man3/xcb_xfixes_hide_cursor_checked.3.gz +man/man3/xcb_xfixes_hide_cursor.3.gz +man/man3/xcb_xfixes_intersect_region_checked.3.gz +man/man3/xcb_xfixes_intersect_region.3.gz +man/man3/xcb_xfixes_invert_region_checked.3.gz +man/man3/xcb_xfixes_invert_region.3.gz +man/man3/xcb_xfixes_query_version_reply.3.gz +man/man3/xcb_xfixes_query_version_unchecked.3.gz +man/man3/xcb_xfixes_query_version.3.gz +man/man3/xcb_xfixes_region_extents_checked.3.gz +man/man3/xcb_xfixes_region_extents.3.gz +man/man3/xcb_xfixes_select_cursor_input_checked.3.gz +man/man3/xcb_xfixes_select_cursor_input.3.gz +man/man3/xcb_xfixes_select_selection_input_checked.3.gz +man/man3/xcb_xfixes_select_selection_input.3.gz +man/man3/xcb_xfixes_selection_notify_event_t.3.gz +man/man3/xcb_xfixes_set_cursor_name_checked.3.gz +man/man3/xcb_xfixes_set_cursor_name.3.gz +man/man3/xcb_xfixes_set_gc_clip_region_checked.3.gz +man/man3/xcb_xfixes_set_gc_clip_region.3.gz +man/man3/xcb_xfixes_set_picture_clip_region_checked.3.gz +man/man3/xcb_xfixes_set_picture_clip_region.3.gz +man/man3/xcb_xfixes_set_region_checked.3.gz +man/man3/xcb_xfixes_set_region.3.gz +man/man3/xcb_xfixes_set_window_shape_region_checked.3.gz +man/man3/xcb_xfixes_set_window_shape_region.3.gz +man/man3/xcb_xfixes_show_cursor_checked.3.gz +man/man3/xcb_xfixes_show_cursor.3.gz +man/man3/xcb_xfixes_subtract_region_checked.3.gz +man/man3/xcb_xfixes_subtract_region.3.gz +man/man3/xcb_xfixes_translate_region_checked.3.gz +man/man3/xcb_xfixes_translate_region.3.gz +man/man3/xcb_xfixes_union_region_checked.3.gz +man/man3/xcb_xfixes_union_region.3.gz +man/man3/xcb_xinerama_get_screen_count_reply.3.gz +man/man3/xcb_xinerama_get_screen_count_unchecked.3.gz +man/man3/xcb_xinerama_get_screen_count.3.gz +man/man3/xcb_xinerama_get_screen_size_reply.3.gz +man/man3/xcb_xinerama_get_screen_size_unchecked.3.gz +man/man3/xcb_xinerama_get_screen_size.3.gz +man/man3/xcb_xinerama_get_state_reply.3.gz +man/man3/xcb_xinerama_get_state_unchecked.3.gz +man/man3/xcb_xinerama_get_state.3.gz +man/man3/xcb_xinerama_is_active_reply.3.gz +man/man3/xcb_xinerama_is_active_unchecked.3.gz +man/man3/xcb_xinerama_is_active.3.gz +man/man3/xcb_xinerama_query_screens_reply.3.gz +man/man3/xcb_xinerama_query_screens_screen_info_iterator.3.gz +man/man3/xcb_xinerama_query_screens_screen_info_length.3.gz +man/man3/xcb_xinerama_query_screens_screen_info.3.gz +man/man3/xcb_xinerama_query_screens_unchecked.3.gz +man/man3/xcb_xinerama_query_screens.3.gz +man/man3/xcb_xinerama_query_version_reply.3.gz +man/man3/xcb_xinerama_query_version_unchecked.3.gz +man/man3/xcb_xinerama_query_version.3.gz +man/man3/xcb_xkb_access_x_notify_event_t.3.gz +man/man3/xcb_xkb_action_message_event_t.3.gz +man/man3/xcb_xkb_bell_checked.3.gz +man/man3/xcb_xkb_bell_notify_event_t.3.gz +man/man3/xcb_xkb_bell.3.gz +man/man3/xcb_xkb_compat_map_notify_event_t.3.gz +man/man3/xcb_xkb_controls_notify_event_t.3.gz +man/man3/xcb_xkb_extension_device_notify_event_t.3.gz +man/man3/xcb_xkb_get_compat_map_group_rtrn_iterator.3.gz +man/man3/xcb_xkb_get_compat_map_group_rtrn_length.3.gz +man/man3/xcb_xkb_get_compat_map_group_rtrn.3.gz +man/man3/xcb_xkb_get_compat_map_reply.3.gz +man/man3/xcb_xkb_get_compat_map_si_rtrn_iterator.3.gz +man/man3/xcb_xkb_get_compat_map_si_rtrn_length.3.gz +man/man3/xcb_xkb_get_compat_map_si_rtrn.3.gz +man/man3/xcb_xkb_get_compat_map_unchecked.3.gz +man/man3/xcb_xkb_get_compat_map.3.gz +man/man3/xcb_xkb_get_controls_reply.3.gz +man/man3/xcb_xkb_get_controls_unchecked.3.gz +man/man3/xcb_xkb_get_controls.3.gz +man/man3/xcb_xkb_get_device_info_btn_actions_iterator.3.gz +man/man3/xcb_xkb_get_device_info_btn_actions_length.3.gz +man/man3/xcb_xkb_get_device_info_btn_actions.3.gz +man/man3/xcb_xkb_get_device_info_leds_iterator.3.gz +man/man3/xcb_xkb_get_device_info_leds_length.3.gz +man/man3/xcb_xkb_get_device_info_name_end.3.gz +man/man3/xcb_xkb_get_device_info_name_length.3.gz +man/man3/xcb_xkb_get_device_info_name.3.gz +man/man3/xcb_xkb_get_device_info_pad_1.3.gz +man/man3/xcb_xkb_get_device_info_reply.3.gz +man/man3/xcb_xkb_get_device_info_unchecked.3.gz +man/man3/xcb_xkb_get_device_info.3.gz +man/man3/xcb_xkb_get_indicator_map_maps_iterator.3.gz +man/man3/xcb_xkb_get_indicator_map_maps_length.3.gz +man/man3/xcb_xkb_get_indicator_map_maps.3.gz +man/man3/xcb_xkb_get_indicator_map_reply.3.gz +man/man3/xcb_xkb_get_indicator_map_unchecked.3.gz +man/man3/xcb_xkb_get_indicator_map.3.gz +man/man3/xcb_xkb_get_indicator_state_reply.3.gz +man/man3/xcb_xkb_get_indicator_state_unchecked.3.gz +man/man3/xcb_xkb_get_indicator_state.3.gz +man/man3/xcb_xkb_get_kbd_by_name_replies.3.gz +man/man3/xcb_xkb_get_kbd_by_name_reply.3.gz +man/man3/xcb_xkb_get_kbd_by_name_unchecked.3.gz +man/man3/xcb_xkb_get_kbd_by_name.3.gz +man/man3/xcb_xkb_get_map_map.3.gz +man/man3/xcb_xkb_get_map_reply.3.gz +man/man3/xcb_xkb_get_map_unchecked.3.gz +man/man3/xcb_xkb_get_map.3.gz +man/man3/xcb_xkb_get_named_indicator_reply.3.gz +man/man3/xcb_xkb_get_named_indicator_unchecked.3.gz +man/man3/xcb_xkb_get_named_indicator.3.gz +man/man3/xcb_xkb_get_names_reply.3.gz +man/man3/xcb_xkb_get_names_unchecked.3.gz +man/man3/xcb_xkb_get_names_value_list.3.gz +man/man3/xcb_xkb_get_names.3.gz +man/man3/xcb_xkb_get_state_reply.3.gz +man/man3/xcb_xkb_get_state_unchecked.3.gz +man/man3/xcb_xkb_get_state.3.gz +man/man3/xcb_xkb_indicator_map_notify_event_t.3.gz +man/man3/xcb_xkb_indicator_state_notify_event_t.3.gz +man/man3/xcb_xkb_latch_lock_state_checked.3.gz +man/man3/xcb_xkb_latch_lock_state.3.gz +man/man3/xcb_xkb_list_components_compat_maps_iterator.3.gz +man/man3/xcb_xkb_list_components_compat_maps_length.3.gz +man/man3/xcb_xkb_list_components_geometries_iterator.3.gz +man/man3/xcb_xkb_list_components_geometries_length.3.gz +man/man3/xcb_xkb_list_components_keycodes_iterator.3.gz +man/man3/xcb_xkb_list_components_keycodes_length.3.gz +man/man3/xcb_xkb_list_components_keymaps_iterator.3.gz +man/man3/xcb_xkb_list_components_keymaps_length.3.gz +man/man3/xcb_xkb_list_components_reply.3.gz +man/man3/xcb_xkb_list_components_symbols_iterator.3.gz +man/man3/xcb_xkb_list_components_symbols_length.3.gz +man/man3/xcb_xkb_list_components_types_iterator.3.gz +man/man3/xcb_xkb_list_components_types_length.3.gz +man/man3/xcb_xkb_list_components_unchecked.3.gz +man/man3/xcb_xkb_list_components.3.gz +man/man3/xcb_xkb_map_notify_event_t.3.gz +man/man3/xcb_xkb_names_notify_event_t.3.gz +man/man3/xcb_xkb_new_keyboard_notify_event_t.3.gz +man/man3/xcb_xkb_per_client_flags_reply.3.gz +man/man3/xcb_xkb_per_client_flags_unchecked.3.gz +man/man3/xcb_xkb_per_client_flags.3.gz +man/man3/xcb_xkb_select_events_checked.3.gz +man/man3/xcb_xkb_select_events.3.gz +man/man3/xcb_xkb_set_compat_map_checked.3.gz +man/man3/xcb_xkb_set_compat_map.3.gz +man/man3/xcb_xkb_set_controls_checked.3.gz +man/man3/xcb_xkb_set_controls.3.gz +man/man3/xcb_xkb_set_debugging_flags_reply.3.gz +man/man3/xcb_xkb_set_debugging_flags_unchecked.3.gz +man/man3/xcb_xkb_set_debugging_flags.3.gz +man/man3/xcb_xkb_set_device_info_checked.3.gz +man/man3/xcb_xkb_set_device_info.3.gz +man/man3/xcb_xkb_set_indicator_map_checked.3.gz +man/man3/xcb_xkb_set_indicator_map.3.gz +man/man3/xcb_xkb_set_map_checked.3.gz +man/man3/xcb_xkb_set_map.3.gz +man/man3/xcb_xkb_set_named_indicator_checked.3.gz +man/man3/xcb_xkb_set_named_indicator.3.gz +man/man3/xcb_xkb_set_names_checked.3.gz +man/man3/xcb_xkb_set_names.3.gz +man/man3/xcb_xkb_state_notify_event_t.3.gz +man/man3/xcb_xkb_use_extension_reply.3.gz +man/man3/xcb_xkb_use_extension_unchecked.3.gz +man/man3/xcb_xkb_use_extension.3.gz +man/man3/xcb_xv_get_port_attribute_reply.3.gz +man/man3/xcb_xv_get_port_attribute_unchecked.3.gz +man/man3/xcb_xv_get_port_attribute.3.gz +man/man3/xcb_xv_get_still_checked.3.gz +man/man3/xcb_xv_get_still.3.gz +man/man3/xcb_xv_get_video_checked.3.gz +man/man3/xcb_xv_get_video.3.gz +man/man3/xcb_xv_grab_port_reply.3.gz +man/man3/xcb_xv_grab_port_unchecked.3.gz +man/man3/xcb_xv_grab_port.3.gz +man/man3/xcb_xv_list_image_formats_format_iterator.3.gz +man/man3/xcb_xv_list_image_formats_format_length.3.gz +man/man3/xcb_xv_list_image_formats_format.3.gz +man/man3/xcb_xv_list_image_formats_reply.3.gz +man/man3/xcb_xv_list_image_formats_unchecked.3.gz +man/man3/xcb_xv_list_image_formats.3.gz +man/man3/xcb_xv_port_notify_event_t.3.gz +man/man3/xcb_xv_put_image_checked.3.gz +man/man3/xcb_xv_put_image.3.gz +man/man3/xcb_xv_put_still_checked.3.gz +man/man3/xcb_xv_put_still.3.gz +man/man3/xcb_xv_put_video_checked.3.gz +man/man3/xcb_xv_put_video.3.gz +man/man3/xcb_xv_query_adaptors_info_iterator.3.gz +man/man3/xcb_xv_query_adaptors_info_length.3.gz +man/man3/xcb_xv_query_adaptors_reply.3.gz +man/man3/xcb_xv_query_adaptors_unchecked.3.gz +man/man3/xcb_xv_query_adaptors.3.gz +man/man3/xcb_xv_query_best_size_reply.3.gz +man/man3/xcb_xv_query_best_size_unchecked.3.gz +man/man3/xcb_xv_query_best_size.3.gz +man/man3/xcb_xv_query_encodings_info_iterator.3.gz +man/man3/xcb_xv_query_encodings_info_length.3.gz +man/man3/xcb_xv_query_encodings_reply.3.gz +man/man3/xcb_xv_query_encodings_unchecked.3.gz +man/man3/xcb_xv_query_encodings.3.gz +man/man3/xcb_xv_query_extension_reply.3.gz +man/man3/xcb_xv_query_extension_unchecked.3.gz +man/man3/xcb_xv_query_extension.3.gz +man/man3/xcb_xv_query_image_attributes_offsets_end.3.gz +man/man3/xcb_xv_query_image_attributes_offsets_length.3.gz +man/man3/xcb_xv_query_image_attributes_offsets.3.gz +man/man3/xcb_xv_query_image_attributes_pitches_end.3.gz +man/man3/xcb_xv_query_image_attributes_pitches_length.3.gz +man/man3/xcb_xv_query_image_attributes_pitches.3.gz +man/man3/xcb_xv_query_image_attributes_reply.3.gz +man/man3/xcb_xv_query_image_attributes_unchecked.3.gz +man/man3/xcb_xv_query_image_attributes.3.gz +man/man3/xcb_xv_query_port_attributes_attributes_iterator.3.gz +man/man3/xcb_xv_query_port_attributes_attributes_length.3.gz +man/man3/xcb_xv_query_port_attributes_reply.3.gz +man/man3/xcb_xv_query_port_attributes_unchecked.3.gz +man/man3/xcb_xv_query_port_attributes.3.gz +man/man3/xcb_xv_select_port_notify_checked.3.gz +man/man3/xcb_xv_select_port_notify.3.gz +man/man3/xcb_xv_select_video_notify_checked.3.gz +man/man3/xcb_xv_select_video_notify.3.gz +man/man3/xcb_xv_set_port_attribute_checked.3.gz +man/man3/xcb_xv_set_port_attribute.3.gz +man/man3/xcb_xv_shm_put_image_checked.3.gz +man/man3/xcb_xv_shm_put_image.3.gz +man/man3/xcb_xv_stop_video_checked.3.gz +man/man3/xcb_xv_stop_video.3.gz +man/man3/xcb_xv_ungrab_port_checked.3.gz +man/man3/xcb_xv_ungrab_port.3.gz +man/man3/xcb_xv_video_notify_event_t.3.gz +man/man3/xcb_xvmc_create_context_priv_data_end.3.gz +man/man3/xcb_xvmc_create_context_priv_data_length.3.gz +man/man3/xcb_xvmc_create_context_priv_data.3.gz +man/man3/xcb_xvmc_create_context_reply.3.gz +man/man3/xcb_xvmc_create_context_unchecked.3.gz +man/man3/xcb_xvmc_create_context.3.gz +man/man3/xcb_xvmc_create_subpicture_priv_data_end.3.gz +man/man3/xcb_xvmc_create_subpicture_priv_data_length.3.gz +man/man3/xcb_xvmc_create_subpicture_priv_data.3.gz +man/man3/xcb_xvmc_create_subpicture_reply.3.gz +man/man3/xcb_xvmc_create_subpicture_unchecked.3.gz +man/man3/xcb_xvmc_create_subpicture.3.gz +man/man3/xcb_xvmc_create_surface_priv_data_end.3.gz +man/man3/xcb_xvmc_create_surface_priv_data_length.3.gz +man/man3/xcb_xvmc_create_surface_priv_data.3.gz +man/man3/xcb_xvmc_create_surface_reply.3.gz +man/man3/xcb_xvmc_create_surface_unchecked.3.gz +man/man3/xcb_xvmc_create_surface.3.gz +man/man3/xcb_xvmc_destroy_context_checked.3.gz +man/man3/xcb_xvmc_destroy_context.3.gz +man/man3/xcb_xvmc_destroy_subpicture_checked.3.gz +man/man3/xcb_xvmc_destroy_subpicture.3.gz +man/man3/xcb_xvmc_destroy_surface_checked.3.gz +man/man3/xcb_xvmc_destroy_surface.3.gz +man/man3/xcb_xvmc_list_subpicture_types_reply.3.gz +man/man3/xcb_xvmc_list_subpicture_types_types_iterator.3.gz +man/man3/xcb_xvmc_list_subpicture_types_types_length.3.gz +man/man3/xcb_xvmc_list_subpicture_types_types.3.gz +man/man3/xcb_xvmc_list_subpicture_types_unchecked.3.gz +man/man3/xcb_xvmc_list_subpicture_types.3.gz +man/man3/xcb_xvmc_list_surface_types_reply.3.gz +man/man3/xcb_xvmc_list_surface_types_surfaces_iterator.3.gz +man/man3/xcb_xvmc_list_surface_types_surfaces_length.3.gz +man/man3/xcb_xvmc_list_surface_types_surfaces.3.gz +man/man3/xcb_xvmc_list_surface_types_unchecked.3.gz +man/man3/xcb_xvmc_list_surface_types.3.gz +man/man3/xcb_xvmc_query_version_reply.3.gz +man/man3/xcb_xvmc_query_version_unchecked.3.gz +man/man3/xcb_xvmc_query_version.3.gz +man/man3/xcb-examples.3.gz +man/man3/xcb-requests.3.gz +@dir include/xcb diff --git a/xproto/bigreqsproto/Makefile b/xproto/bigreqsproto/Makefile new file mode 100644 index 00000000..9645cfc0 --- /dev/null +++ b/xproto/bigreqsproto/Makefile @@ -0,0 +1,32 @@ +# +# $Id: Makefile 831 2007-08-24 11:11:18Z root $ +# $URL: file:///usr2/svn/ports5/x11/xorg-bigreqsproto/Makefile $ +# +PORTNAME= bigreqsproto +PORTVERSION= 1.1.2 +X11_CATEGORY= proto +MASTER_SITES+= ftp://ftp.x.org/pub/individual/${X11_CATEGORY}/ +CATEGORIES= x11 +DIST_SUBDIR= x11 +#PKGNAMEPREFIX= xorg- + +MAINTAINER= onborodin@gmail.com +COMMENT= X.org X11R7 module + +BUILD_DEPENDS+= pkg-config:devel/pkg-config + +USES+= tar:bzip2 +USES+= gmake +GNU_CONFIGURE= yes + +CONFIGURE_ARGS+= --mandir=${PREFIX}/man +CPPFLAGS+= -I${LOCALBASE}/include +LDFLAGS+= -L${LOCALBASE}/lib +CONFIGURE_ARGS+= --without-xmlto +CONFIGURE_ARGS+= --without-xsltproc +CONFIGURE_ARGS+= --disable-specs + + + +.include +#EOF diff --git a/xproto/bigreqsproto/distinfo b/xproto/bigreqsproto/distinfo new file mode 100644 index 00000000..4db895d3 --- /dev/null +++ b/xproto/bigreqsproto/distinfo @@ -0,0 +1,2 @@ +SHA256 (x11/bigreqsproto-1.1.2.tar.bz2) = 462116ab44e41d8121bfde947321950370b285a5316612b8fce8334d50751b1e +SIZE (x11/bigreqsproto-1.1.2.tar.bz2) = 113218 diff --git a/xproto/bigreqsproto/pkg-descr b/xproto/bigreqsproto/pkg-descr new file mode 100644 index 00000000..71dbc12d --- /dev/null +++ b/xproto/bigreqsproto/pkg-descr @@ -0,0 +1,20 @@ +X - a portable, network-transparent window system + +The X Window System is a network transparent window system which +runs on a wide range of computing and graphics machines. It should +be relatively straightforward to build the X.Org Foundation software +distribution on most ANSI C and POSIX compliant systems. Commercial +implementations are also available for a wide range of platforms. + +The X.Org Foundation requests that the following names be used when +referring to this software: + X + X Window System + X Version 11 + X Window System, Version 11 + X11 + +X Window System is a trademark of The Open Group. + +WWW: http://www.X.org + diff --git a/xproto/bigreqsproto/pkg-plist b/xproto/bigreqsproto/pkg-plist new file mode 100644 index 00000000..0bebb7d0 --- /dev/null +++ b/xproto/bigreqsproto/pkg-plist @@ -0,0 +1,3 @@ +include/X11/extensions/bigreqsproto.h +include/X11/extensions/bigreqstr.h +lib/pkgconfig/bigreqsproto.pc diff --git a/xproto/inputproto/Makefile b/xproto/inputproto/Makefile new file mode 100644 index 00000000..086f3262 --- /dev/null +++ b/xproto/inputproto/Makefile @@ -0,0 +1,27 @@ +# +# $Id: Makefile 831 2007-08-24 11:11:18Z root $ +# $URL: file:///usr2/svn/ports5/x11/xorg-inputproto/Makefile $ +# +PORTNAME= inputproto +PORTVERSION= 2.3.1 +X11_CATEGORY= proto +MASTER_SITES+= ftp://ftp.x.org/pub/individual/${X11_CATEGORY}/ +CATEGORIES= x11 +DIST_SUBDIR= x11 +#PKGNAMEPREFIX= xorg- + +MAINTAINER= onborodin@gmail.com +COMMENT= X.org X11R7 module + +BUILD_DEPENDS+= pkg-config:devel/pkg-config + +USES+= tar:bzip2 +USES+= gmake +GNU_CONFIGURE= yes + +CONFIGURE_ARGS+= --mandir=${PREFIX}/man +CPPFLAGS+= -I${LOCALBASE}/include +LDFLAGS+= -L${LOCALBASE}/lib + +.include +#EOF diff --git a/xproto/inputproto/distinfo b/xproto/inputproto/distinfo new file mode 100644 index 00000000..836f5eb3 --- /dev/null +++ b/xproto/inputproto/distinfo @@ -0,0 +1,2 @@ +SHA256 (x11/inputproto-2.3.1.tar.bz2) = 5a47ee62053a6acef3a83f506312494be1461068d0b9269d818839703b95c1d1 +SIZE (x11/inputproto-2.3.1.tar.bz2) = 196435 diff --git a/xproto/inputproto/pkg-descr b/xproto/inputproto/pkg-descr new file mode 100644 index 00000000..71dbc12d --- /dev/null +++ b/xproto/inputproto/pkg-descr @@ -0,0 +1,20 @@ +X - a portable, network-transparent window system + +The X Window System is a network transparent window system which +runs on a wide range of computing and graphics machines. It should +be relatively straightforward to build the X.Org Foundation software +distribution on most ANSI C and POSIX compliant systems. Commercial +implementations are also available for a wide range of platforms. + +The X.Org Foundation requests that the following names be used when +referring to this software: + X + X Window System + X Version 11 + X Window System, Version 11 + X11 + +X Window System is a trademark of The Open Group. + +WWW: http://www.X.org + diff --git a/xproto/inputproto/pkg-plist b/xproto/inputproto/pkg-plist new file mode 100644 index 00000000..2f2b270a --- /dev/null +++ b/xproto/inputproto/pkg-plist @@ -0,0 +1,5 @@ +include/X11/extensions/XI.h +include/X11/extensions/XI2.h +include/X11/extensions/XI2proto.h +include/X11/extensions/XIproto.h +lib/pkgconfig/inputproto.pc diff --git a/xproto/kbproto/Makefile b/xproto/kbproto/Makefile new file mode 100644 index 00000000..cc2a7130 --- /dev/null +++ b/xproto/kbproto/Makefile @@ -0,0 +1,31 @@ +# +# $Id: Makefile 831 2007-08-24 11:11:18Z root $ +# $URL: file:///usr2/svn/ports5/x11/xorg-kbproto/Makefile $ +# +PORTNAME= kbproto +PORTVERSION= 1.0.6 +X11_CATEGORY= proto +MASTER_SITES+= ftp://ftp.x.org/pub/individual/${X11_CATEGORY}/ +CATEGORIES= x11 +DIST_SUBDIR= x11 +#PKGNAMEPREFIX= xorg- + +MAINTAINER= onborodin@gmail.com +COMMENT= X.org X11R7 module + +BUILD_DEPENDS+= pkg-config:devel/pkg-config + +USES+= tar:bzip2 +USES+= gmake +GNU_CONFIGURE= yes + +CONFIGURE_ARGS+= --mandir=${PREFIX}/man +CPPFLAGS+= -I${LOCALBASE}/include +LDFLAGS+= -L${LOCALBASE}/lib +CONFIGURE_ARGS+= --without-xmlto +CONFIGURE_ARGS+= --without-xsltproc +CONFIGURE_ARGS+= --disable-specs + + +.include +#EOF diff --git a/xproto/kbproto/distinfo b/xproto/kbproto/distinfo new file mode 100644 index 00000000..c63b5e71 --- /dev/null +++ b/xproto/kbproto/distinfo @@ -0,0 +1,2 @@ +SHA256 (x11/kbproto-1.0.6.tar.bz2) = 037cac0aeb80c4fccf44bf736d791fccb2ff7fd34c558ef8f03ac60b61085479 +SIZE (x11/kbproto-1.0.6.tar.bz2) = 256988 diff --git a/xproto/kbproto/pkg-descr b/xproto/kbproto/pkg-descr new file mode 100644 index 00000000..71dbc12d --- /dev/null +++ b/xproto/kbproto/pkg-descr @@ -0,0 +1,20 @@ +X - a portable, network-transparent window system + +The X Window System is a network transparent window system which +runs on a wide range of computing and graphics machines. It should +be relatively straightforward to build the X.Org Foundation software +distribution on most ANSI C and POSIX compliant systems. Commercial +implementations are also available for a wide range of platforms. + +The X.Org Foundation requests that the following names be used when +referring to this software: + X + X Window System + X Version 11 + X Window System, Version 11 + X11 + +X Window System is a trademark of The Open Group. + +WWW: http://www.X.org + diff --git a/xproto/kbproto/pkg-plist b/xproto/kbproto/pkg-plist new file mode 100644 index 00000000..7d4e8e63 --- /dev/null +++ b/xproto/kbproto/pkg-plist @@ -0,0 +1,6 @@ +include/X11/extensions/XKB.h +include/X11/extensions/XKBgeom.h +include/X11/extensions/XKBproto.h +include/X11/extensions/XKBsrv.h +include/X11/extensions/XKBstr.h +lib/pkgconfig/kbproto.pc diff --git a/xproto/xcb-proto/Makefile b/xproto/xcb-proto/Makefile new file mode 100644 index 00000000..27738f2a --- /dev/null +++ b/xproto/xcb-proto/Makefile @@ -0,0 +1,42 @@ +# +# $Id: Makefile 831 2007-08-24 11:11:18Z root $ +# $URL: file:///usr2/svn/ports5/x11/xproto-xproto/Makefile $ +# +PORTNAME= xcb-proto +PORTVERSION= 1.13 #1.12 +X11_CATEGORY= proto +MASTER_SITES+= http://xcb.freedesktop.org/dist/ +CATEGORIES= x11 +DIST_SUBDIR= x11 +#PKGNAMEPREFIX= lib + +MAINTAINER= onborodin@gmail.com +COMMENT= X.org X11R7 module + +BUILD_DEPENDS+= pkg-config:devel/pkg-config +BUILD_DEPENDS+= xmllint:text/libxml2 + +GNU_CONFIGURE= yes + +USES+= gmake tar:bz2 + +CONFIGURE_ARGS+= --mandir=${PREFIX}/man +CPPFLAGS+= -I${LOCALBASE}/include +LDFLAGS+= -L${LOCALBASE}/lib + +BUILD_DEPENDS+= ${PYTHON}:lang/python27 + +.include + + +PYTHON?= ${LOCALBASE}/bin/python +#PYTHON_INCDIR= ${LOCALBASE}/python +#PYTHON_VERSION!= ${PYTHON} -c 'import sys; print sys.version[:3]' +#PYTHON_BASE!= ${PYTHON} -c 'import sys; print sys.prefix' +##PYTHON_SITELIBDIR_FULL= ${PYTHON_BASE}/python/${PYTHON_VERSION}/site-packages +PYTHON_SITELIBDIR!= ${PYTHON} -c "import sys; from distutils import sysconfig; sys.stdout.write(sysconfig.get_python_lib(1,0,prefix=''))" +PLIST_SUB+= PYTHON_SITELIBDIR=${PYTHON_SITELIBDIR} + + +.include +#EOF diff --git a/xproto/xcb-proto/distinfo b/xproto/xcb-proto/distinfo new file mode 100644 index 00000000..b9bc5ba0 --- /dev/null +++ b/xproto/xcb-proto/distinfo @@ -0,0 +1,2 @@ +SHA256 (x11/xcb-proto-1.13.tar.bz2) = 7b98721e669be80284e9bbfeab02d2d0d54cd11172b72271e47a2fe875e2bde1 +SIZE (x11/xcb-proto-1.13.tar.bz2) = 151981 diff --git a/xproto/xcb-proto/pkg-descr b/xproto/xcb-proto/pkg-descr new file mode 100644 index 00000000..71dbc12d --- /dev/null +++ b/xproto/xcb-proto/pkg-descr @@ -0,0 +1,20 @@ +X - a portable, network-transparent window system + +The X Window System is a network transparent window system which +runs on a wide range of computing and graphics machines. It should +be relatively straightforward to build the X.Org Foundation software +distribution on most ANSI C and POSIX compliant systems. Commercial +implementations are also available for a wide range of platforms. + +The X.Org Foundation requests that the following names be used when +referring to this software: + X + X Window System + X Version 11 + X Window System, Version 11 + X11 + +X Window System is a trademark of The Open Group. + +WWW: http://www.X.org + diff --git a/xproto/xcb-proto/pkg-plist b/xproto/xcb-proto/pkg-plist new file mode 100644 index 00000000..e6e3b2a9 --- /dev/null +++ b/xproto/xcb-proto/pkg-plist @@ -0,0 +1,58 @@ +lib/pkgconfig/xcb-proto.pc +lib/python2.7/site-packages/xcbgen/__init__.py +lib/python2.7/site-packages/xcbgen/__init__.pyc +lib/python2.7/site-packages/xcbgen/__init__.pyo +lib/python2.7/site-packages/xcbgen/align.py +lib/python2.7/site-packages/xcbgen/align.pyc +lib/python2.7/site-packages/xcbgen/align.pyo +lib/python2.7/site-packages/xcbgen/error.py +lib/python2.7/site-packages/xcbgen/error.pyc +lib/python2.7/site-packages/xcbgen/error.pyo +lib/python2.7/site-packages/xcbgen/expr.py +lib/python2.7/site-packages/xcbgen/expr.pyc +lib/python2.7/site-packages/xcbgen/expr.pyo +lib/python2.7/site-packages/xcbgen/matcher.py +lib/python2.7/site-packages/xcbgen/matcher.pyc +lib/python2.7/site-packages/xcbgen/matcher.pyo +lib/python2.7/site-packages/xcbgen/state.py +lib/python2.7/site-packages/xcbgen/state.pyc +lib/python2.7/site-packages/xcbgen/state.pyo +lib/python2.7/site-packages/xcbgen/xtypes.py +lib/python2.7/site-packages/xcbgen/xtypes.pyc +lib/python2.7/site-packages/xcbgen/xtypes.pyo +share/xcb/bigreq.xml +share/xcb/composite.xml +share/xcb/damage.xml +share/xcb/dpms.xml +share/xcb/dri2.xml +share/xcb/dri3.xml +share/xcb/ge.xml +share/xcb/glx.xml +share/xcb/present.xml +share/xcb/randr.xml +share/xcb/record.xml +share/xcb/render.xml +share/xcb/res.xml +share/xcb/screensaver.xml +share/xcb/shape.xml +share/xcb/shm.xml +share/xcb/sync.xml +share/xcb/xc_misc.xml +share/xcb/xcb.xsd +share/xcb/xevie.xml +share/xcb/xf86dri.xml +share/xcb/xf86vidmode.xml +share/xcb/xfixes.xml +share/xcb/xinerama.xml +share/xcb/xinput.xml +share/xcb/xkb.xml +share/xcb/xprint.xml +share/xcb/xproto.xml +share/xcb/xselinux.xml +share/xcb/xtest.xml +share/xcb/xv.xml +share/xcb/xvmc.xml +@dir lib/python2.7/site-packages/xcbgen +@dir lib/python2.7/site-packages +@dir lib/python2.7 +@dir share/xcb diff --git a/xproto/xcmiscproto/Makefile b/xproto/xcmiscproto/Makefile new file mode 100644 index 00000000..2ce57be6 --- /dev/null +++ b/xproto/xcmiscproto/Makefile @@ -0,0 +1,32 @@ +# +# $Id: Makefile 831 2007-08-24 11:11:18Z root $ +# $URL: file:///usr2/svn/ports5/x11/xorg-damageproto/Makefile $ +# +PORTNAME= xcmiscproto +PORTVERSION= 1.2.2 +X11_CATEGORY= proto +MASTER_SITES+= ftp://ftp.x.org/pub/individual/${X11_CATEGORY}/ +CATEGORIES= x11 +DIST_SUBDIR= x11 +#PKGNAMEPREFIX= xorg- + +MAINTAINER= onborodin@gmail.com +COMMENT= X.org X11R7 module + +BUILD_DEPENDS+= pkg-config:devel/pkg-config + +USES+= tar:bzip2 +USES+= gmake +GNU_CONFIGURE= yes + +CONFIGURE_ARGS+= --mandir=${PREFIX}/man +CPPFLAGS+= -I${LOCALBASE}/include +LDFLAGS+= -L${LOCALBASE}/lib +CONFIGURE_ARGS+= --without-xmlto +CONFIGURE_ARGS+= --without-xsltproc +CONFIGURE_ARGS+= --disable-specs + + + +.include +#EOF diff --git a/xproto/xcmiscproto/distinfo b/xproto/xcmiscproto/distinfo new file mode 100644 index 00000000..8174bf93 --- /dev/null +++ b/xproto/xcmiscproto/distinfo @@ -0,0 +1,2 @@ +SHA256 (x11/xcmiscproto-1.2.2.tar.bz2) = b13236869372256c36db79ae39d54214172677fb79e9cdc555dceec80bd9d2df +SIZE (x11/xcmiscproto-1.2.2.tar.bz2) = 112486 diff --git a/xproto/xcmiscproto/pkg-descr b/xproto/xcmiscproto/pkg-descr new file mode 100644 index 00000000..71dbc12d --- /dev/null +++ b/xproto/xcmiscproto/pkg-descr @@ -0,0 +1,20 @@ +X - a portable, network-transparent window system + +The X Window System is a network transparent window system which +runs on a wide range of computing and graphics machines. It should +be relatively straightforward to build the X.Org Foundation software +distribution on most ANSI C and POSIX compliant systems. Commercial +implementations are also available for a wide range of platforms. + +The X.Org Foundation requests that the following names be used when +referring to this software: + X + X Window System + X Version 11 + X Window System, Version 11 + X11 + +X Window System is a trademark of The Open Group. + +WWW: http://www.X.org + diff --git a/xproto/xcmiscproto/pkg-plist b/xproto/xcmiscproto/pkg-plist new file mode 100644 index 00000000..40c3458e --- /dev/null +++ b/xproto/xcmiscproto/pkg-plist @@ -0,0 +1,3 @@ +include/X11/extensions/xcmiscproto.h +include/X11/extensions/xcmiscstr.h +lib/pkgconfig/xcmiscproto.pc diff --git a/xproto/xextproto/Makefile b/xproto/xextproto/Makefile new file mode 100644 index 00000000..45ec7d22 --- /dev/null +++ b/xproto/xextproto/Makefile @@ -0,0 +1,35 @@ +# +# $Id: Makefile 831 2007-08-24 11:11:18Z root $ +# $URL: file:///usr2/svn/ports5/x11/xorg-xextproto/Makefile $ +# +PORTNAME= xextproto +PORTVERSION= 7.3.0 +X11_CATEGORY= proto +MASTER_SITES+= ftp://ftp.x.org/pub/individual/${X11_CATEGORY}/ +CATEGORIES= x11 +DIST_SUBDIR= x11 +#PKGNAMEPREFIX= xorg- + +MAINTAINER= onborodin@gmail.com +COMMENT= X.org X11R7 module + +BUILD_DEPENDS+= pkg-config:devel/pkg-config + +USES+= tar:bzip2 +USES+= gmake +GNU_CONFIGURE= yes + +CONFIGURE_ARGS+= --mandir=${PREFIX}/man +CPPFLAGS+= -I${LOCALBASE}/include +LDFLAGS+= -L${LOCALBASE}/lib + +CONFIGURE_ARGS+=--disable-specs +CONFIGURE_ARGS+= --without-xmlto + + +post-patch: + ${REINPLACE_CMD} '/^SUBDIR/s/specs//' ${WRKSRC}/Makefile.in + + +.include +#EOF diff --git a/xproto/xextproto/distinfo b/xproto/xextproto/distinfo new file mode 100644 index 00000000..fdbfed57 --- /dev/null +++ b/xproto/xextproto/distinfo @@ -0,0 +1,2 @@ +SHA256 (x11/xextproto-7.3.0.tar.bz2) = f3f4b23ac8db9c3a9e0d8edb591713f3d70ef9c3b175970dd8823dfc92aa5bb0 +SIZE (x11/xextproto-7.3.0.tar.bz2) = 229310 diff --git a/xproto/xextproto/pkg-descr b/xproto/xextproto/pkg-descr new file mode 100644 index 00000000..71dbc12d --- /dev/null +++ b/xproto/xextproto/pkg-descr @@ -0,0 +1,20 @@ +X - a portable, network-transparent window system + +The X Window System is a network transparent window system which +runs on a wide range of computing and graphics machines. It should +be relatively straightforward to build the X.Org Foundation software +distribution on most ANSI C and POSIX compliant systems. Commercial +implementations are also available for a wide range of platforms. + +The X.Org Foundation requests that the following names be used when +referring to this software: + X + X Window System + X Version 11 + X Window System, Version 11 + X11 + +X Window System is a trademark of The Open Group. + +WWW: http://www.X.org + diff --git a/xproto/xextproto/pkg-plist b/xproto/xextproto/pkg-plist new file mode 100644 index 00000000..0ead523d --- /dev/null +++ b/xproto/xextproto/pkg-plist @@ -0,0 +1,34 @@ +include/X11/extensions/EVI.h +include/X11/extensions/EVIproto.h +include/X11/extensions/ag.h +include/X11/extensions/agproto.h +include/X11/extensions/cup.h +include/X11/extensions/cupproto.h +include/X11/extensions/dbe.h +include/X11/extensions/dbeproto.h +include/X11/extensions/dpmsconst.h +include/X11/extensions/dpmsproto.h +include/X11/extensions/ge.h +include/X11/extensions/geproto.h +include/X11/extensions/lbx.h +include/X11/extensions/lbxproto.h +include/X11/extensions/mitmiscconst.h +include/X11/extensions/mitmiscproto.h +include/X11/extensions/multibufconst.h +include/X11/extensions/multibufproto.h +include/X11/extensions/secur.h +include/X11/extensions/securproto.h +include/X11/extensions/shapeconst.h +include/X11/extensions/shapeproto.h +include/X11/extensions/shapestr.h +include/X11/extensions/shm.h +include/X11/extensions/shmproto.h +include/X11/extensions/shmstr.h +include/X11/extensions/syncconst.h +include/X11/extensions/syncproto.h +include/X11/extensions/syncstr.h +include/X11/extensions/xtestconst.h +include/X11/extensions/xtestext1const.h +include/X11/extensions/xtestext1proto.h +include/X11/extensions/xtestproto.h +lib/pkgconfig/xextproto.pc diff --git a/xproto/xproto/Makefile b/xproto/xproto/Makefile new file mode 100644 index 00000000..ce53b3f8 --- /dev/null +++ b/xproto/xproto/Makefile @@ -0,0 +1,33 @@ +# +# $Id: Makefile 831 2007-08-24 11:11:18Z root $ +# $URL: file:///usr2/svn/ports5/x11/xorg-xproto/Makefile $ +# +PORTNAME= xproto +PORTVERSION= 7.0.31 +X11_CATEGORY= proto +MASTER_SITES+= ftp://ftp.x.org/pub/individual/${X11_CATEGORY}/ +CATEGORIES= x11 +DIST_SUBDIR= x11 +#PKGNAMEPREFIX= xorg- + +MAINTAINER= onborodin@gmail.com +COMMENT= X.org X11R7 module + +BUILD_DEPENDS+= pkg-config:devel/pkg-config + +USES+= tar:bzip2 +USES+= gmake +GNU_CONFIGURE= yes + +CONFIGURE_ARGS+= --mandir=${PREFIX}/man +CPPFLAGS+= ${CFLAGS} -I${LOCALBASE}/include +LDFLAGS+= -L${LOCALBASE}/lib +CONFIGURE_ARGS+= --disable-specs +CONFIGURE_ARGS+= --without-fop +CONFIGURE_ARGS+= --without-xmlto +CONFIGURE_ARGS+= --without-xsltproc + + + +.include +#EOF diff --git a/xproto/xproto/distinfo b/xproto/xproto/distinfo new file mode 100644 index 00000000..bd6aaa2c --- /dev/null +++ b/xproto/xproto/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1586600386 +SHA256 (x11/xproto-7.0.31.tar.bz2) = c6f9747da0bd3a95f86b17fb8dd5e717c8f3ab7f0ece3ba1b247899ec1ef7747 +SIZE (x11/xproto-7.0.31.tar.bz2) = 300356 diff --git a/xproto/xproto/pkg-descr b/xproto/xproto/pkg-descr new file mode 100644 index 00000000..71dbc12d --- /dev/null +++ b/xproto/xproto/pkg-descr @@ -0,0 +1,20 @@ +X - a portable, network-transparent window system + +The X Window System is a network transparent window system which +runs on a wide range of computing and graphics machines. It should +be relatively straightforward to build the X.Org Foundation software +distribution on most ANSI C and POSIX compliant systems. Commercial +implementations are also available for a wide range of platforms. + +The X.Org Foundation requests that the following names be used when +referring to this software: + X + X Window System + X Version 11 + X Window System, Version 11 + X11 + +X Window System is a trademark of The Open Group. + +WWW: http://www.X.org + diff --git a/xproto/xproto/pkg-plist b/xproto/xproto/pkg-plist new file mode 100644 index 00000000..640a18d7 --- /dev/null +++ b/xproto/xproto/pkg-plist @@ -0,0 +1,28 @@ +include/X11/ap_keysym.h +include/X11/DECkeysym.h +include/X11/HPkeysym.h +include/X11/keysym.h +include/X11/keysymdef.h +include/X11/Sunkeysym.h +include/X11/X.h +include/X11/Xalloca.h +include/X11/Xarch.h +include/X11/Xatom.h +include/X11/Xdefs.h +include/X11/XF86keysym.h +include/X11/Xfuncproto.h +include/X11/Xfuncs.h +include/X11/Xmd.h +include/X11/Xos_r.h +include/X11/Xos.h +include/X11/Xosdefs.h +include/X11/Xpoll.h +include/X11/Xproto.h +include/X11/Xprotostr.h +include/X11/Xthreads.h +include/X11/Xw32defs.h +include/X11/XWDFile.h +include/X11/Xwindows.h +include/X11/Xwinsock.h +lib/pkgconfig/xproto.pc +@dir include/X11 diff --git a/xproto/xtransproto/Makefile b/xproto/xtransproto/Makefile new file mode 100644 index 00000000..00b78112 --- /dev/null +++ b/xproto/xtransproto/Makefile @@ -0,0 +1,31 @@ +# +# $Id: Makefile 831 2007-08-24 11:11:18Z root $ +# $URL: file:///usr2/svn/ports5/x11/xorg-xproto/Makefile $ +# +PORTNAME= xtrans +PORTVERSION= 1.3.5 +X11_CATEGORY= lib +MASTER_SITES+= ftp://ftp.x.org/pub/individual/${X11_CATEGORY}/ +CATEGORIES= x11 +DIST_SUBDIR= x11 +#PKGNAMEPREFIX= xorg- +PKGNAMESUFFIX= proto + +MAINTAINER= onborodin@gmail.com +COMMENT= X.org X11R7 module + +BUILD_DEPENDS+= pkg-config:devel/pkg-config + +USES+= tar:bzip2 +USES+= gmake +GNU_CONFIGURE= yes + +CONFIGURE_ARGS+= --mandir=${PREFIX}/man +CPPFLAGS+= ${CFLAGS} -I${LOCALBASE}/include +LDFLAGS+= -L${LOCALBASE}/lib + +CONFIGURE_ARGS+=--disable-docs --without-xmlto + + +.include +#EOF diff --git a/xproto/xtransproto/distinfo b/xproto/xtransproto/distinfo new file mode 100644 index 00000000..ba67ba52 --- /dev/null +++ b/xproto/xtransproto/distinfo @@ -0,0 +1,2 @@ +SHA256 (x11/xtrans-1.3.5.tar.bz2) = adbd3b36932ce4c062cd10f57d78a156ba98d618bdb6f50664da327502bc8301 +SIZE (x11/xtrans-1.3.5.tar.bz2) = 186833 diff --git a/xproto/xtransproto/files/patch-x-Makefile.in b/xproto/xtransproto/files/patch-x-Makefile.in new file mode 100644 index 00000000..e44804ca --- /dev/null +++ b/xproto/xtransproto/files/patch-x-Makefile.in @@ -0,0 +1,20 @@ +--- ./Makefile.in.orig 2014-09-20 20:02:14.000000000 +0300 ++++ ./Makefile.in 2014-11-29 18:38:44.000000000 +0200 +@@ -61,7 +61,7 @@ + test $$has_opt = yes + am__make_dryrun = (target_option=n; $(am__make_running_with_option)) + am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +-pkgdatadir = $(datadir)/@PACKAGE@ ++pkgdatadir = $(libdir)/@PACKAGE@ + pkgincludedir = $(includedir)/@PACKAGE@ + pkglibdir = $(libdir)/@PACKAGE@ + pkglibexecdir = $(libexecdir)/@PACKAGE@ +@@ -362,7 +362,7 @@ + + aclocaldir = $(datadir)/aclocal + aclocal_DATA = xtrans.m4 +-pkgconfigdir = $(datadir)/pkgconfig ++pkgconfigdir = $(libdir)/pkgconfig + pkgconfig_DATA = xtrans.pc + MAINTAINERCLEANFILES = ChangeLog INSTALL + EXTRA_DIST = ${aclocal_DATA} diff --git a/xproto/xtransproto/pkg-descr b/xproto/xtransproto/pkg-descr new file mode 100644 index 00000000..71dbc12d --- /dev/null +++ b/xproto/xtransproto/pkg-descr @@ -0,0 +1,20 @@ +X - a portable, network-transparent window system + +The X Window System is a network transparent window system which +runs on a wide range of computing and graphics machines. It should +be relatively straightforward to build the X.Org Foundation software +distribution on most ANSI C and POSIX compliant systems. Commercial +implementations are also available for a wide range of platforms. + +The X.Org Foundation requests that the following names be used when +referring to this software: + X + X Window System + X Version 11 + X Window System, Version 11 + X11 + +X Window System is a trademark of The Open Group. + +WWW: http://www.X.org + diff --git a/xproto/xtransproto/pkg-plist b/xproto/xtransproto/pkg-plist new file mode 100644 index 00000000..a665cab9 --- /dev/null +++ b/xproto/xtransproto/pkg-plist @@ -0,0 +1,12 @@ +include/X11/Xtrans/Xtrans.c +include/X11/Xtrans/Xtrans.h +include/X11/Xtrans/Xtransint.h +include/X11/Xtrans/Xtranslcl.c +include/X11/Xtrans/Xtranssock.c +include/X11/Xtrans/Xtransutil.c +include/X11/Xtrans/transport.c +lib/pkgconfig/xtrans.pc +share/aclocal/xtrans.m4 +@dir share/aclocal +@dir include/X11/Xtrans +@dir include/X11