diff options
author | youri <youri@pkgsrc.org> | 2018-05-16 11:30:36 +0000 |
---|---|---|
committer | youri <youri@pkgsrc.org> | 2018-05-16 11:30:36 +0000 |
commit | 1f70f17ddb2cb2f04fdf832ea4a0544fa95a2aa4 (patch) | |
tree | 8f8c7572145c41ac8e46b06b0e108c869a74be1f /sysutils/consolekit/Makefile | |
parent | 47b9e3991272ae13c0da85842c3c4f9d5e9cccec (diff) | |
download | pkgsrc-1f70f17ddb2cb2f04fdf832ea4a0544fa95a2aa4.tar.gz |
Update to 1.2.1:
Brings fixes for many platforms.
Full changelog:
1.2.1:
Stable release of ConsoleKit2
Changes since 1.1.2
New Features:
Add wscons headers for OpenBSD
Bug Fixes:
Allow changing to VTs we don't have a session for
Correct introspection prefixes
Change configure.ac to enable the udev backend with devattr
Use KDSKBMODE if defined
Use #ifdef HEADER_H instead of #ifdef OS
FreeBSD session activation
Place sessions with a VT on the static Seat1
clean up clang warnings
correct uninitialized variable warning
Explicitly check for needed symbols
Correct build errors in OpenBSD
fix compiling on FreeBSD
Misc Changes:
update gitignore
more autotools cleanup work
update readme with new deps
1.2.0:
Stable release of ConsoleKit2
Changes since 1.1.2
New Features:
Add wscons headers for OpenBSD
Bug Fixes:
Allow changing to VTs we don't have a session for
Correct introspection prefixes
Change configure.ac to enable the udev backend with devattr
Use KDSKBMODE if defined
Use #ifdef HEADER_H instead of #ifdef OS
FreeBSD session activation
Place sessions with a VT on the static Seat1
clean up clang warnings
correct uninitialized variable warning
Explicitly check for needed symbols
Correct build errors in OpenBSD
fix compiling on FreeBSD
Misc Changes:
update gitignore
more autotools cleanup work
update readme with new deps
1.1.2:
[Please note that this is a development release.]
New Features:
add a session-state property and method
Add session-class dbus property and get method
introduce libconsolekit
Add dbus method GetVTNr to Session
add dbus LockSession/UnlockSession
add dbus ActivateSession/ActivateSessionOnSeat
Bug Fixes:
add session class + state to ck-list-sessions
Allow session-class property to be set via OpenSessionWithParameters
wrong lib linked in libconsolekit.pc.in
remove the rest of the gcc warnings
remove warnings about signed/unsigned comparisons
remove warning about redeclaration
remove warnings about redundant function declarations
fix --enable-libudev configure flag
coverity: 180820 remove dead code
Misc Changes:
add CONSOLEKIT_DEBUGGING support back in
update ck-list-sessions man page
update tests for new methods added
simplify configure.ac
document session types allowed
1.1.1:
[Please note that this is a development release.]
Changes:
Don't try to run "chmod +x" on 90-consolekit, it is not a executable.
Use INSTALL_SCRIPT instead of INSTALL_PROGRAM for 90-consolekit.
Remove the root restriction for XDG_RUNTIME_DIR.
cgroups: Attempt to use 'cpuaccount' if 'all' cgroup fails on pid move
ck-remove-directory: return exit code 0 on success
ck-remove-directory: remove unused dest parameter on become_user
ck-remove-directory: remove dest dir as real user
Add support for selinux
Freebsd 10.3: Fix session activation
Fix a reversed condition for invalid device on NetBSD
cgroups: Use UID of logged in user instead UID of session leader process
Fix memory leaks and a memory corruption issue.
OpenBSD: adapt to recent kvm(3) restrictions
Fix pam-ck-connector on musl
Fix for OpenBSD and FreeBSD VT device naming scheme.
Add a few more display manager users to filter out.
Update udev rules.
Handle XDG_RUNTIME_DIR not being created/set.
Add support for server managed FDs.
Prevent a use-after-free when emitting signal changes.
Fix coverity and gcc warnings.
Add a LockedHint property.
Diffstat (limited to 'sysutils/consolekit/Makefile')
-rw-r--r-- | sysutils/consolekit/Makefile | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/sysutils/consolekit/Makefile b/sysutils/consolekit/Makefile index b5d57e863b2..29210b96f56 100644 --- a/sysutils/consolekit/Makefile +++ b/sysutils/consolekit/Makefile @@ -1,11 +1,10 @@ -# $NetBSD: Makefile,v 1.37 2018/03/17 01:11:12 ryoon Exp $ +# $NetBSD: Makefile,v 1.38 2018/05/16 11:30:36 youri Exp $ -CONSOLEKIT_VER= 1.0.2 +CONSOLEKIT_VER= 1.2.1 DISTNAME= ConsoleKit2-${CONSOLEKIT_VER} PKGNAME= consolekit-${CONSOLEKIT_VER} -PKGREVISION= 1 CATEGORIES= sysutils -GITHUB_RELEASE= ${CONSOLEKIT_VER} +GITHUB_RELEASE= ${CONSOLEKIT_VER} GITHUB_PROJECT= ConsoleKit2 MASTER_SITES= ${MASTER_SITE_GITHUB:=ConsoleKit2/} EXTRACT_SUFX= .tar.bz2 @@ -45,10 +44,12 @@ GNU_CONFIGURE= YES USE_TOOLS+= gmake intltool msgfmt perl pkg-config automake USE_LIBTOOL= YES +CONFIGURE_ARGS+= --enable-debug=full CONFIGURE_ARGS+=--sysconfdir=${PKG_SYSCONFBASE} \ --localstatedir=${VARBASE} \ - --enable-pam-module \ - --with-pam-module-dir=${PREFIX}/lib/security \ + --disable-pam-module + #--enable-pam-module \ + #--with-pam-module-dir=${PREFIX}/lib/security \ CONFIGURE_ARGS.SunOS+= --enable-rbac-shutdown=solaris.system.shutdown |