Skip to content

Commit

Permalink
klogin: just for testing
Browse files Browse the repository at this point in the history
  • Loading branch information
barracuda156 committed Aug 18, 2024
1 parent d0a66e1 commit b90cbd1
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 0 deletions.
28 changes: 28 additions & 0 deletions kde/klogin/Portfile
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

View workflow job for this annotation

GitHub Actions / macos-13

port lint klogin: Error: Unknown dependency: katie

Check warning on line 1 in kde/klogin/Portfile

View workflow job for this annotation

GitHub Actions / macos-12

port lint klogin: Error: Unknown dependency: katie

Check warning on line 1 in kde/klogin/Portfile

View workflow job for this annotation

GitHub Actions / macos-14

port lint klogin: Error: Unknown dependency: katie

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
22 changes: 22 additions & 0 deletions kde/klogin/files/patch-CMakeLists.diff
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})

0 comments on commit b90cbd1

Please sign in to comment.