forked from macports/macports-ports
-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d0a66e1
commit b90cbd1
Showing
2 changed files
with
50 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4 | ||
Check warning on line 1 in kde/klogin/Portfile GitHub Actions / macos-13
Check warning on line 1 in kde/klogin/Portfile GitHub Actions / macos-12
|
||
|
||
PortSystem 1.0 | ||
PortGroup cmake 1.1 | ||
PortGroup github 1.0 | ||
|
||
github.setup fluxer klogin 80ed2228dc949dfc1fc85027154d561471c099d1 | ||
version 2022.03.31 | ||
revision 0 | ||
categories kde x11 | ||
license BSD | ||
maintainers {@barracuda156 gmail.com:vital.had} openmaintainer | ||
description Toy Display Manager | ||
long_description {*}${description} (more like a login manager). | ||
|
||
checksums rmd160 e2962373c2ffbaedc724121ef473496ec14b088b \ | ||
sha256 340db49355697957a9abe4a1a31d76b5891030761689fe47026bbd982ee3e0ce \ | ||
size 6945 | ||
github.tarball_from archive | ||
|
||
patchfiles-append patch-CMakeLists.diff | ||
|
||
depends_build-append \ | ||
path:bin/pkg-config:pkgconfig | ||
|
||
depends_lib-append port:katie | ||
|
||
compiler.cxx_standard 2011 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
--- CMakeLists.txt.orig 2022-03-31 01:32:50 | ||
+++ CMakeLists.txt 2024-08-19 06:52:08 | ||
@@ -28,13 +28,17 @@ | ||
TYPE REQUIRED | ||
) | ||
|
||
-find_package(Crypt) | ||
-set_package_properties(Crypt PROPERTIES | ||
+if(NOT APPLE) | ||
+ find_package(Crypt) | ||
+ set_package_properties(Crypt PROPERTIES | ||
PURPOSE "Login support" | ||
DESCRIPTION "library provided by standard C libraries" | ||
URL "" | ||
TYPE REQUIRED | ||
) | ||
+else() | ||
+ set(CRYPT_LIBRARIES "c") | ||
+endif() | ||
|
||
add_definitions(${QT_DEFINITIONS}) | ||
|