Skip to content
14 changes: 14 additions & 0 deletions ports/libcanberra/macos_fix.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
diff --git a/configure.ac b/configure.ac
index f68602d..1451747 100644
--- a/configure.ac
+++ b/configure.ac
@@ -115,8 +115,7 @@ CC_CHECK_FLAGS_APPEND([with_cflags], [CFLAGS], [\
AC_SUBST([WARNINGFLAGS], $with_cflags)

CC_CHECK_FLAGS_APPEND([with_ldflags], [LDFLAGS], [\
- -Wl,--as-needed \
- -Wl,--gc-sections])
+])
AC_SUBST([GCLDFLAGS], $with_ldflags)

#### libtool stuff ####
12 changes: 12 additions & 0 deletions ports/libcanberra/macos_pkgconfig.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
diff --git a/libcanberra.pc.in b/libcanberra.pc.in
index 0a5c7a1..91a9e39 100644
--- a/libcanberra.pc.in
+++ b/libcanberra.pc.in
@@ -7,5 +7,7 @@ Name: libcanberra
Description: Event Sound API
Version: @PACKAGE_VERSION@
Libs: -L${libdir} -lcanberra @PTHREAD_LIBS@
+Libs.private: @LIBS_PRIVATE@
Cflags: -D_REENTRANT -I${includedir}
+Cflags.private: @CFLAGS_PRIVATE@
Requires:
69 changes: 69 additions & 0 deletions ports/libcanberra/portfile.cmake
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
vcpkg_fail_port_install(ON_TARGET "Windows" "UWP")
set(VERSION 0.30)
set(PATCHES)

if(VCPKG_TARGET_IS_OSX)
list(APPEND PATCHES macos_fix.patch macos_pkgconfig.patch)
endif()

if(VCPKG_TARGET_IS_OSX)
message("${PORT} currently requires the following libraries from the system package manager:\n automake\n libtool\n\nThey can be installed with brew install automake libtool")
else()
message("${PORT} currently requires the following libraries from the system package manager:\n automake\n libtool\n\nThey can be installed with apt-get install automake libtool")
endif()

vcpkg_download_distfile(ARCHIVE
URLS "http://0pointer.de/lennart/projects/${PORT}/${PORT}-${VERSION}.tar.xz"
FILENAME "${PORT}-${VERSION}.tar.xz"
SHA512 f7543582122256826cd01d0f5673e1e58d979941a93906400182305463d6166855cb51f35c56d807a56dc20b7a64f7ce4391368d24990c1b70782a7d0b4429c2
)

vcpkg_extract_source_archive_ex(
OUT_SOURCE_PATH SOURCE_PATH
ARCHIVE "${ARCHIVE}"
REF ${VERSION}
PATCHES ${PATCHES}
)

set(EXTRA_CPPFLAGS)
set(EXTRA_LDFLAGS)

#libltdl fixes
if(VCPKG_TARGET_IS_OSX)
execute_process(
COMMAND brew --prefix libtool
OUTPUT_VARIABLE BREW_LIBTOOL_PATH
)
string(STRIP ${BREW_LIBTOOL_PATH} BREW_LIBTOOL_PATH)

set(LIBS_PRIVATE "-L${BREW_LIBTOOL_PATH}/lib -lltdl")
set(CFLAGS_PRIVATE "-I${BREW_LIBTOOL_PATH}/include")
set(EXTRA_LDFLAGS "LDFLAGS=${LIBS_PRIVATE}")
set(EXTRA_CPPFLAGS "CPPFLAGS=${CFLAGS_PRIVATE}")
endif()

set(ENV{GTKDOCIZE} true)
vcpkg_configure_make(
AUTOCONFIG
SOURCE_PATH "${SOURCE_PATH}"
OPTIONS
--disable-gtk-doc
--disable-lynx
--disable-silent-rules
${EXTRA_CPPFLAGS}
${EXTRA_LDFLAGS}
)

vcpkg_install_make()

if(VCPKG_TARGET_IS_OSX)
configure_file("${CURRENT_PACKAGES_DIR}/lib/pkgconfig/${PORT}.pc" "${CURRENT_PACKAGES_DIR}/lib/pkgconfig/${PORT}.pc" @ONLY)
configure_file("${CURRENT_PACKAGES_DIR}/debug/lib/pkgconfig/${PORT}.pc" "${CURRENT_PACKAGES_DIR}/debug/lib/pkgconfig/${PORT}.pc" @ONLY)
endif()

vcpkg_fixup_pkgconfig()

file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/share")
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/tools") # empty folder

file(INSTALL "${SOURCE_PATH}/LGPL" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright)
10 changes: 10 additions & 0 deletions ports/libcanberra/vcpkg.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"name": "libcanberra",
"version": "0.30",
"description": "An implementation of the XDG Sound Theme and Name Specifications, for generating event sounds on free desktops",
"homepage": "http://0pointer.de/lennart/projects/libcanberra/",
"supports": "!(windows | uwp)",
"dependencies": [
"libvorbis"
]
}
4 changes: 4 additions & 0 deletions versions/baseline.json
Original file line number Diff line number Diff line change
Expand Up @@ -3224,6 +3224,10 @@
"baseline": "1.16.1",
"port-version": 3
},
"libcanberra": {
"baseline": "0.30",
"port-version": 0
},
"libcbor": {
"baseline": "0.8.0",
"port-version": 1
Expand Down
9 changes: 9 additions & 0 deletions versions/l-/libcanberra.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"versions": [
{
"git-tree": "9332e8b3945451a2776337d41c54c7200d187a28",
"version": "0.30",
"port-version": 0
}
]
}