early-access version 2853

This commit is contained in:
pineappleEA
2022-07-23 03:01:36 +02:00
parent 1f2b5081b5
commit 1f111bb69c
8955 changed files with 418777 additions and 999 deletions

View File

@@ -0,0 +1,13 @@
diff --git a/configure.ac b/configure.ac
index a52ac3a78..ac5cf03f4 100644
--- a/configure.ac
+++ b/configure.ac
@@ -42,7 +42,7 @@ AC_CHECK_FUNCS([localtime_r])
AC_CHECK_MEMBERS([struct tm.tm_gmtoff],,,[#include <time.h>])
dnl sqlite3 is needed for newer ipod models (nano5g), and libplist is needed
dnl by libgpod sqlite code
-PKG_CHECK_MODULES(LIBGPOD, glib-2.0 >= 2.8.0 gobject-2.0 sqlite3 libplist >= 1.0)
+PKG_CHECK_MODULES(LIBGPOD, glib-2.0 >= 2.8.0 gmodule-2.0 gobject-2.0 sqlite3 libplist >= 1.0)
dnl **************************************************
dnl we've copied gchecksum from glib 2.16. Only use the

38
externals/vcpkg/ports/libgpod/portfile.cmake vendored Executable file
View File

@@ -0,0 +1,38 @@
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO fadingred/libgpod
REF 4a8a33ef4bc58eee1baca6793618365f75a5c3fa
SHA512 b7a120c1106c1205e8de2808de5ac4ff1cf189943017939a5ea4eded4e1ceef44557587e69a8591cc5249f8c8dbf0cbdcce1dd309d33a0e9207b0560abe3ae39
HEAD_REF master
PATCHES configure.ac.patch
)
vcpkg_execute_required_process(
COMMAND intltoolize --force --copy --automake
WORKING_DIRECTORY "${SOURCE_PATH}"
LOGNAME intltoolize-${TARGET_TRIPLET}
)
vcpkg_execute_required_process(
COMMAND gtkdocize --copy
WORKING_DIRECTORY "${SOURCE_PATH}"
LOGNAME gtkdocize-${TARGET_TRIPLET}
)
vcpkg_configure_make(
SOURCE_PATH ${SOURCE_PATH}
AUTOCONFIG
OPTIONS
--without-hal
--disable-gdk-pixbuf
--disable-pygobject
--disable-more-warnings
--disable-libxml
--disable-gtk-doc-html
)
vcpkg_install_make()
vcpkg_fixup_pkgconfig()
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include)
# Handle copyright
file(COPY ${SOURCE_PATH}/README DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT})
file(INSTALL ${SOURCE_PATH}/COPYING DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT} RENAME copyright)

13
externals/vcpkg/ports/libgpod/vcpkg.json vendored Executable file
View File

@@ -0,0 +1,13 @@
{
"name": "libgpod",
"version-date": "2019-08-29",
"port-version": 4,
"description": "libgpod is a library meant to abstract access to an iPod content.",
"homepage": "https://github.com/fadingred/libgpod",
"supports": "!windows & !osx",
"dependencies": [
"glib",
"libplist",
"sqlite3"
]
}