-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* added libutempter mosh now builds against libutempter, this is a requirement for adding support for displaying detached sessions. * updated libutempter to 1.1.6 * libutempter: fixed helper binary so that it runs under DSM * update libutempter to 1.2.1 - redesign an rename patch - avoid libutempter_post_patch * fix bild of cross/protobuf for DSM7 * mosh: fix build with utempter * cpp code optimization * Add Perl dependency for advanced customization and scripting * update changelog * remove duplicate definition Co-authored-by: Adrian Carpenter <adrian.carpenter@me.com> Co-authored-by: Yves Martin <ymartin1040@gmail.com>
- Loading branch information
Showing
7 changed files
with
57 additions
and
4 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,16 @@ | ||
PKG_NAME = libutempter | ||
PKG_VERS = 1.2.1 | ||
PKG_EXT = tar.gz | ||
PKG_DIST_NAME = $(PKG_NAME)-$(PKG_VERS).$(PKG_EXT) | ||
PKG_DIST_SITE = ftp://ftp.altlinux.org/pub/people/ldv/utempter/ | ||
PKG_DIR = $(PKG_NAME)-$(PKG_VERS) | ||
|
||
DEPENDS = | ||
|
||
HOMEPAGE = http://freshmeat.sourceforge.net/projects/libutempter | ||
COMMENT = libutempter provides a library interface for terminal emulators such as screen and xterm to record user sessions to utmp and wtmp files. | ||
LICENSE = LGPLv2 | ||
|
||
CONFIGURE_TARGET = nop | ||
|
||
include ../../mk/spksrc.cross-cc.mk |
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,3 @@ | ||
lnk:lib/libutempter.so | ||
lnk:lib/libutempter.so.0 | ||
lib:lib/libutempter.so.1.2.1 |
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,3 @@ | ||
libutempter-1.2.1.tar.gz SHA1 f5787a80e87619ec2b45e7e2aadb8c20be55f099 | ||
libutempter-1.2.1.tar.gz SHA256 967fef372f391de501843ad87570c6cf5dabd9651f00f1783090fbc12b2a34cb | ||
libutempter-1.2.1.tar.gz MD5 afe828ce87262d7e043770553004e162 |
20 changes: 20 additions & 0 deletions
20
cross/libutempter/patches/001-Makefile-configurable-prefix.patch
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,20 @@ | ||
# make prefix configurable | ||
# | ||
--- Makefile.orig 2020-07-06 08:00:00.000000000 +0000 | ||
+++ Makefile 2021-05-16 23:32:38.309124941 +0000 | ||
@@ -30,10 +30,11 @@ | ||
TARGETS = $(PROJECT) $(SHAREDLIB) $(STATICLIB) | ||
|
||
INSTALL = install | ||
-libdir = /usr/lib | ||
-libexecdir = /usr/lib | ||
-includedir = /usr/include | ||
-mandir = /usr/share/man | ||
+prefix ?= /usr | ||
+libdir = $(prefix)/lib | ||
+libexecdir = $(prefix)/lib | ||
+includedir = $(prefix)/include | ||
+mandir = $(prefix)/share/man | ||
man3dir = $(mandir)/man3 | ||
DESTDIR = | ||
|
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
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
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