Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Adélie Package Tree
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Adélie Linux
Adélie Package Tree
Commits
b45f81c8
Verified
Commit
b45f81c8
authored
6 years ago
by
Anna Wilcox
Browse files
Options
Downloads
Patches
Plain Diff
user/kstars: new package
parent
0561bf10
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
user/kstars/0001-htmesh-Fix-compile-error-on-modern-Linux-systems.patch
+25
-0
25 additions, 0 deletions
...01-htmesh-Fix-compile-error-on-modern-Linux-systems.patch
user/kstars/APKBUILD
+52
-0
52 additions, 0 deletions
user/kstars/APKBUILD
with
77 additions
and
0 deletions
user/kstars/0001-htmesh-Fix-compile-error-on-modern-Linux-systems.patch
0 → 100644
+
25
−
0
View file @
b45f81c8
From b2b36b864813e512829ab8a3613f8a91f2bff20e Mon Sep 17 00:00:00 2001
From: "A. Wilcox" <AWilcox@Wilcox-Tech.com>
Date: Wed, 29 Aug 2018 11:27:38 -0500
Subject: [PATCH] htmesh: Fix compile error on modern Linux systems
---
kstars/htmesh/SkipListElement.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/kstars/htmesh/SkipListElement.h b/kstars/htmesh/SkipListElement.h
index f8187e42a..52dfff38a 100644
--- a/kstars/htmesh/SkipListElement.h
+++ b/kstars/htmesh/SkipListElement.h
@@ -20,7 +20,7 @@
#define KEY_MAX _I64_MAX
#else
#if defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__) || defined(__DragonFly__) || \
- (defined(__SUNPRO_CC) && defined(__sun)) || defined(__APPLE__)
+ (defined(__SUNPRO_CC) && defined(__sun)) || defined(__APPLE__) || defined(__linux__)
#define KEY_MAX LLONG_MAX
#else
#define KEY_MAX LONG_LONG_MAX
--
2.17.1
This diff is collapsed.
Click to expand it.
user/kstars/APKBUILD
0 → 100644
+
52
−
0
View file @
b45f81c8
# Contributor: A. Wilcox <awilfox@adelielinux.org>
# Maintainer: A. Wilcox <awilfox@adelielinux.org>
pkgname
=
kstars
pkgver
=
2.9.8
pkgrel
=
0
pkgdesc
=
"Desktop planetarium"
url
=
"https://www.kde.org/applications/education/kstars/"
arch
=
"all"
license
=
"GPL-2.0-only"
depends
=
""
makedepends
=
"cmake extra-cmake-modules qt5-qtbase-dev qt5-qtdeclarative-dev
qt5-qtsvg-dev knotifyconfig-dev kauth-dev kconfig-dev kcrash-dev
kdoctools-dev kwidgetsaddons-dev knewstuff-dev ki18n-dev kio-dev
kxmlgui-dev kplotting-dev knotifications-dev eigen-dev mesa-dev
qt5-qtwebsockets-dev"
subpackages
=
"
$pkgname
-doc
$pkgname
-lang"
source
=
"https://download.kde.org/stable/kstars/kstars-
$pkgver
.tar.xz
0001-htmesh-Fix-compile-error-on-modern-Linux-systems.patch
"
build
()
{
cd
"
$builddir
"
mkdir
build
cd
build
if
[
"
$CBUILD
"
!=
"
$CHOST
"
]
;
then
CMAKE_CROSSOPTS
=
"-DCMAKE_SYSTEM_NAME=Linux -DCMAKE_HOST_SYSTEM_NAME=Linux"
fi
cmake
\
-DCMAKE_INSTALL_PREFIX
=
/usr
\
-DCMAKE_INSTALL_LIBDIR
=
lib
\
-DBUILD_SHARED_LIBS
=
True
\
-DCMAKE_BUILD_TYPE
=
RelWithDebugInfo
\
-DCMAKE_CXX_FLAGS
=
"
$CXXFLAGS
"
\
-DCMAKE_C_FLAGS
=
"
$CFLAGS
"
\
-DEIGEN3_INCLUDE_DIR
=
/usr/include/eigen3
\
${
CMAKE_CROSSOPTS
}
\
..
make
}
check
()
{
cd
"
$builddir
"
/build
CTEST_OUTPUT_ON_FAILURE
=
TRUE ctest
}
package
()
{
cd
"
$builddir
"
/build
make
DESTDIR
=
"
$pkgdir
"
install
}
sha512sums
=
"52bc57cd5c46d470f6b49441512708c4446da6cb894cc4f450e8a98616fac8a7d8bcce7ceebcc9a78763f7df612b9cf33498944feed24f2a4104f6b838dc7925 kstars-2.9.8.tar.xz
8c81a6db810a99b7d8bf7adca15767fdbfb79269ab2de1e4136de3c75266dde2fd572b961f63dc9b4f619abf7292e02eed5d29ca9ba53586f30871aba6015fdb 0001-htmesh-Fix-compile-error-on-modern-Linux-systems.patch"
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment