diff x11/libsm/libsm.sh @ 198:76f609805c05

x11/libsm: initial import, closes #1301
author David Demelier <markand@malikania.fr>
date Tue, 19 Mar 2019 20:23:00 +0100
parents
children 2416430cff0b
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/x11/libsm/libsm.sh	Tue Mar 19 20:23:00 2019 +0100
@@ -0,0 +1,65 @@
+#!/bin/sh
+#
+# Copyright (c) 2019 David Demelier <markand@malikania.fr>
+#
+# Permission to use, copy, modify, and/or distribute this software for any
+# purpose with or without fee is hereby granted, provided that the above
+# copyright notice and this permission notice appear in all copies.
+#
+# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
+# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+#
+
+PKGNAME=libsm
+PKGVERSION=1.2.3
+PKGREVISION=1
+PKGLICENSE="CUSTOM"
+PKGSUMMARY="X.Org session management library"
+PKGDOWNLOAD="https://www.x.org/releases/individual/lib/libSM-$PKGVERSION.tar.gz"
+PKGDEPENDS="x11/libice x11:util-macros:build x11/xtrans:build x11/xorgproto:build"
+PKGOPTIONS="UUID"
+
+: ${CHOST:=$(uname -m)-linux-musl}
+: ${CBUILD:=$(uname -m)-linux-musl}
+: ${CC:=gcc}
+: ${CFLAGS:=-O2}
+: ${LDFLAGS:=}
+: ${LIBS:=}
+: ${UUID:=yes}
+
+if [ "$UUID" = "yes" ]; then
+	PKGDEPENDS="core/util-linux $PKGDEPENDS"
+	with_uuid="--with-libuuid"
+else
+	with_uuid="--without-libuuid"
+fi
+
+build()
+{
+	rm -rf libSM-$PKGVERSION
+	tar xvaf libSM-$PKGVERSION.tar.gz
+	pushd libSM-$PKGVERSION
+
+	CC="$CC" \
+	CFLAGS="$CFLAGS" \
+	LDFLAGS="$LDFLAGS" \
+	LIBS="$LIBS" \
+	./configure \
+		--build=$CBUILD \
+		--host=$CHOST \
+		--prefix=/usr \
+		--disable-static \
+		--enable-shared \
+		$with_uuid
+	make
+	make install DESTDIR=$DESTDIR
+	rm -f $DESTDIR/usr/lib/libSM.la
+
+	popd
+	rm -rf libSM-$PKGVERSION
+}