aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2016-11-03 12:09:10 -0700
committerAlexander Karatarakis <alkarata@microsoft.com>2016-11-03 12:09:10 -0700
commitb19ac6f094c9a72833f3184ba3c4ae6cf3169834 (patch)
tree4d8248e1cec9cd11c868a215c5b10bc6b83dec90
parenta868bc96da158f3b2dcbc9e8e406b9577a8a1ab0 (diff)
parent12d61331d2ce8b9c8aab467d03c9ea30a31b205f (diff)
downloadvcpkg-b19ac6f094c9a72833f3184ba3c4ae6cf3169834.tar.gz
vcpkg-b19ac6f094c9a72833f3184ba3c4ae6cf3169834.zip
Merge branch 'rhuijben-master'
-rw-r--r--ports/apr/CONTROL3
-rw-r--r--ports/apr/portfile.cmake50
2 files changed, 53 insertions, 0 deletions
diff --git a/ports/apr/CONTROL b/ports/apr/CONTROL
new file mode 100644
index 000000000..eed3c518d
--- /dev/null
+++ b/ports/apr/CONTROL
@@ -0,0 +1,3 @@
+Source: apr
+Version: 1.5.2
+Description: The Apache Portable Runtime (APR) is a C library that forms a system portability layer that covers many operating systems.
diff --git a/ports/apr/portfile.cmake b/ports/apr/portfile.cmake
new file mode 100644
index 000000000..df96d4474
--- /dev/null
+++ b/ports/apr/portfile.cmake
@@ -0,0 +1,50 @@
+# Common Ambient Variables:
+# VCPKG_ROOT_DIR = <C:\path\to\current\vcpkg>
+# TARGET_TRIPLET is the current triplet (x86-windows, etc)
+# PORT is the current port name (zlib, etc)
+# CURRENT_BUILDTREES_DIR = ${VCPKG_ROOT_DIR}\buildtrees\${PORT}
+# CURRENT_PACKAGES_DIR = ${VCPKG_ROOT_DIR}\packages\${PORT}_${TARGET_TRIPLET}
+#
+
+include(${CMAKE_TRIPLET_FILE})
+include(vcpkg_common_functions)
+set(SOURCE_PATH ${CURRENT_BUILDTREES_DIR}/src/apr-1.5.2)
+vcpkg_download_distfile(ARCHIVE
+ URLS "https://www.apache.org/dist/apr/apr-1.5.2.tar.bz2"
+ FILENAME "apr-1.5.2.tar.bz2"
+ SHA512 d1156ad16abf07887797777b56c2147c890f16d8445829b3e3b4917950d24c5fd2f8febd439992467a5ea0511da562c0fb4a7cfd8a235ab55882388bfa2b919d
+)
+vcpkg_extract_source_archive(${ARCHIVE})
+
+vcpkg_configure_cmake(
+ SOURCE_PATH ${SOURCE_PATH}
+ OPTIONS -DINSTALL_PDB=OFF -DMIN_WINDOWS_VER=Windows7 -DAPR_HAVE_IPV6=ON
+ # OPTIONS -DUSE_THIS_IN_ALL_BUILDS=1 -DUSE_THIS_TOO=2
+ # OPTIONS_RELEASE -DOPTIMIZE=1
+ # OPTIONS_DEBUG -DDEBUGGABLE=1
+)
+
+vcpkg_install_cmake()
+
+# There is no way to suppress installation of the headers in debug builds.
+file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include)
+
+# Both dynamic and static are built, so keep only the one needed
+if(VCPKG_LIBRARY_LINKAGE STREQUAL dynamic)
+ file(REMOVE ${CURRENT_PACKAGES_DIR}/lib/apr-1.lib
+ ${CURRENT_PACKAGES_DIR}/lib/aprapp-1.lib
+ ${CURRENT_PACKAGES_DIR}/debug/lib/apr-1.lib
+ ${CURRENT_PACKAGES_DIR}/debug/lib/aprapp-1.lib)
+else()
+ file(REMOVE ${CURRENT_PACKAGES_DIR}/lib/libapr-1.lib
+ ${CURRENT_PACKAGES_DIR}/lib/libaprapp-1.lib
+ ${CURRENT_PACKAGES_DIR}/debug/lib/libapr-1.lib
+ ${CURRENT_PACKAGES_DIR}/debug/lib/libaprapp-1.lib)
+ file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/bin ${CURRENT_PACKAGES_DIR}/debug/bin)
+endif()
+
+# Handle copyright
+file(COPY ${SOURCE_PATH}/LICENSE DESTINATION ${CURRENT_PACKAGES_DIR}/share/apr)
+file(RENAME ${CURRENT_PACKAGES_DIR}/share/apr/LICENSE ${CURRENT_PACKAGES_DIR}/share/apr/copyright)
+
+vcpkg_copy_pdbs()