Github messages for voidlinux
 help / color / mirror / Atom feed
* [ISSUE] Package request: sstp-client
@ 2023-10-13 22:00 michalszmidt
  2023-10-17 17:43 ` balejk
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: michalszmidt @ 2023-10-13 22:00 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 2124 bytes --]

New issue by michalszmidt on void-packages repository

https://github.com/void-linux/void-packages/issues/46669

Description:
### Package name

sstp-client

### Package homepage

https://sstp-client.sourceforge.net

### Description

SSTP is Microsofts Remote Access Solution (RAS) for PPP over SSL.
http://en.wikipedia.org/wiki/Secure_Socket_Tunneling_Protocol

SSTP-Client features:
- Connect to Microsoft RAS network using SSTP
- Use HTTPS with strong encryption over port 443
- Asynchronous HDLC frame support
- Integration with pon/poff with various distributions

Already tried creating `template` without success.

```ini
pkgname=sstp-client
version=1.0.19
revision=1
build_style=configure
configure_args='--with-libevent=2 --disable-static --with-runtime-dir="/var/run/sstpc" --enable-group=sstpc --enable-user=sstpc --prefix=/usr'
hostmakedepends="ppp shadow gawk"
makedepends="pkg-config ppp-devel libevent-devel libevent openssl openssl-devel autoconf autoconf-archive libtool automake"
depends="ppp libevent openssl"
short_desc="A client implementation of SSTP VPN for Linux"
license="GPL-2.0-or-later"
homepage="https://sstp-client.sourceforge.net"
distfiles="https://gitlab.com/sstp-project/sstp-client/-/archive/${version}/${pkgname}-${version}.tar.gz"
checksum=e2652365f69f5037102e78f4e115ff764a390b27bb3fd513a8a50b10a61bb613
make_install_args="prefix=/usr"

pre_configure() {
	getent group sstpc || /usr/bin/groupadd sstpc

	getent passwd sstpc || /usr/bin/useradd -r \
		-c "Secure Socket Tunneling Protocol (SSTP) Client" \
		-g sstpc \
		-d /var/run/sstpc \
		-s /usr/bin/nologin \
		sstpc

	pppd_version="$(pppd --version | cut -d ' ' -f 3)"
	configure_args="$configure_args --with-pppd-plugin-dir=/usr/lib/pppd/$pppd_version"
	echo "$configure_args"
	prefix='/usr'
	autoreconf --install

}

pre_build() {
	cd $wrksrc
	./configure
}

do_check(){
	cd $wrksrc
	make check
}

post_install() {
	vlicense COPYING
}

```


### Does the requested package meet the package requirements?

Compiled, Required

### Is the requested package released?

Yes

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2023-12-29 18:09 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-10-13 22:00 [ISSUE] Package request: sstp-client michalszmidt
2023-10-17 17:43 ` balejk
2023-12-19  2:45 ` [ISSUE] [CLOSED] " sgn
2023-12-29 16:50 ` michalszmidt
2023-12-29 18:09 ` balejk

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).