Commit Graph

16 Commits

Author SHA1 Message Date
Park DongHa
a42af01b72
[libtheora] install pkg-config files (#34904)
* [libtheora] create pkg-config files

* [libtheora] fix expression

* [libtheora] update baseline

* [libtheora] provide version from portfile

* Update ports/libtheora/CMakeLists.txt

Co-authored-by: Kai Pastor <dg0yt@darc.de>

* Update ports/libtheora/portfile.cmake

Co-authored-by: Kai Pastor <dg0yt@darc.de>

* Update ports/libtheora/CMakeLists.txt

Co-authored-by: Kai Pastor <dg0yt@darc.de>

* [libtheora] update baseline

---------

Co-authored-by: Kai Pastor <dg0yt@darc.de>
2023-11-20 19:31:49 -08:00
Cheney Wang
3211a42c6c
[libtheora] Fix usage issue (#28204)
* [libtheora] Fix usage issue

* Add CONFIG for find_dependency(Ogg)

* x-add-version --overwrite-version
2022-12-08 11:26:08 -08:00
pastdue
415aa1c071
[libtheora] Fix non-MSVC x86 builds / triplets (#27646)
* [libtheora] Fix non-MSVC x86 builds / triplets

* Run x-add-version
2022-11-07 15:35:58 -08:00
Osyotr
f0815eb528
[libtheora] Fix x64-linux-debug build (#25819)
Also switch to vcpkg-cmake and install both copyright files

Co-authored-by: Osyotr <8740768+Osyotr@users.noreply.github.com>
2022-07-18 13:16:02 -07:00
Billy O'Neal
b295670e4b
Bulk convert control files. (#19986)
```
function Convert-Control {
    Param($full)
    .\vcpkg.exe format-manifest $full
    $root = $full.Substring(0, $full.Length - 7) # CONTROL
    $new = $root + 'vcpkg.json'
    $content = Get-Content -Raw $new
    $asJson = ConvertFrom-Json $content -AsHashtable -Depth 100
    $oldVersion = $asJson['port-version']
    if ($null -eq $oldVersion) {
        $oldVersionFull = $asJson['version-string']
        Write-Host "Got version $oldVersionFull"
        $match = [System.Text.RegularExpressions.Regex]::Match($oldVersionFull, '^(.+)-(\d+)$')
        if ($match.Success -and -not [System.Text.RegularExpressions.Regex]::IsMatch($oldVersionFull, '^\d\d\d\d-\d\d-\d\d$')) {
            $newFullVersion = [string]$match.Groups[1].Value
            $oldVersion = [int]$match.Groups[2].Value
            Write-Host "newFullVersion $newFullVersion oldVersion $oldVersion"
            $newVersion = $oldVersion + 1
            $asJson['version-string'] = $newFullVersion
            Write-Host "Previous version for $full extracted from version field -- setting version-string $newFullVersion and port-version $newVersion"
        } else {
            Write-Host "No previous version for $full -- setting 1"
            $newVersion = 1
        }
    } else {
        $newVersion = [int]$oldVersion + 1
        Write-Host "New version for $full : $newVersion"
    }

    $asJson['port-version'] = $newVersion

    $content = ConvertTo-Json $asJson -Depth 100
    Set-Content -Path $new -Value $content
    .\vcpkg.exe format-manifest $new
}

Get-ChildItem ports\CONTROL -Recurse | Foreach-Object {
    Convert-Control $_.FullName
}

git commit -am "this message"
.\vcpkg.exe x-add-version -all
git commit -a --amend
```
2021-09-09 01:24:04 -07:00
Billy O'Neal
09a647a526
Delete use of vcpkg_test_cmake and vcpkg_common_functions. (#13065) 2020-10-28 14:18:07 -07:00
Matthias C. M. Troffaes
76031034d5
[libtheora] add unofficial cmake config, remove FindOGG.cmake (#13783)
* [libtheora] remove FindOGG.cmake since ogg port already provides a cmake config

* [libtheora] OGG -> Ogg to match config (fixes x64-linux build on case sensitive file systems)

* [libtheora] add config file and install it

* [libtheora] bump port version

* [libtheora] remove include and add missing target_link_libraries instead

* [libtheora] use target_include_directories to set build and install interface include folders

Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
2020-10-13 16:26:07 -07:00
Stefano Sinigardi
726c111481 [vcpkg] fatal_error when patch fails to apply (#8087)
vcpkg will now fail on failure to apply patches except when using `--head`.
2019-10-07 10:35:13 -07:00
pravic
18b029a5e3 [WIP] Add a Homepage URL entry for vcpkg ports (#2933)
* [vcpkg] Add "Homepage" field to the CONTROL files.
2019-06-15 16:54:47 -07:00
Alexander Neumann
09e6b4dd9d [libtheora] fix find ogg (#6610) 2019-05-24 12:13:11 -07:00
Alexander Neumann
cf1c05fb8c [libtheora] Remove double build. (#6431)
* remove extra build step. 

vcpkg_install_cmake should also build the target.

* Update CONTROL
2019-05-13 21:51:16 -07:00
Robert Schumacher
d2c728e0bc [several ports] Remove CMake double expansions inside if() directives 2017-10-12 07:52:48 -07:00
Alexander Karatarakis
26516fe485 vcpkg_configure_cmake (and _meson) now embed debug symbols within static libs (/Z7) 2017-09-09 00:12:54 -07:00
Mikhail Paulyshka
1a07422d3d [libtheora] update to master, refactor 2017-08-02 02:25:57 +03:00
Alexander Karatarakis
1808d461b0 triplet is now automatically included before portfiles.
Also remove trailing whitespaces from portfiles
2016-11-08 14:25:47 -08:00
vlj
4c5f2f9a30 Add libtheora 2016-11-01 17:45:29 +01:00