maintainer="Natanael Copa <ncopa@alpinelinux.org>"
pkgname=lxdm
pkgver=0.5.3
pkgrel=10
pkgdesc="LXDE desktop login manager"
url="https://sourceforge.net/projects/lxdm/"
arch="all"
license="GPL-3.0-or-later"
depends="bash"
makedepends="
	autoconf
	automake
	gtk+3.0-dev
	intltool
	libtool
	linux-headers
	"
subpackages="$pkgname-lang $pkgname-openrc"
source="https://downloads.sourceforge.net/lxdm/lxdm-$pkgver.tar.xz
	execinfo.patch
	fix-msghdr-usage.patch
	poweroff.patch
	background.png
	lxdm.initd
	index.theme.alpine
	"
options="!check" # No tests

prepare() {
	default_prepare
	# gettext m4 macros moved in 0.24.1, include the new path
	autoreconf -fi -I /usr/share/gettext/m4
}

build() {
	./configure \
		--build=$CBUILD \
		--host=$CHOST \
		--prefix=/usr \
		--sysconfdir=/etc \
		--libexecdir=/usr/lib/lxdm \
		--without-pam \
		--with-xconn=xcb \
		--enable-gtk3
	make
}

package() {
	make DESTDIR="$pkgdir" DATADIRNAME=share install

	sed -i -e "s:^greeter=.*:greeter=/usr/lib/lxdm/lxdm-greeter-gtk:" \
		"$pkgdir"/etc/lxdm/lxdm.conf

	install -m755 -D "$srcdir"/$pkgname.initd "$pkgdir"/etc/init.d/$pkgname

	# Create our custom theme
	cp -a "$pkgdir"/usr/share/lxdm/themes/Industrial "$pkgdir"/usr/share/lxdm/themes/Alpine

	# Replace the default background with the Alpine default one
	sed -i 's/file="wave.svg"/file="background.png"/' "$pkgdir"/usr/share/lxdm/themes/Alpine/gtkrc
	sed -i 's/theme=Industrial/theme=Alpine/' "$pkgdir"/etc/lxdm/lxdm.conf

	# Install the Alpine theme index file
	install -m644 -D "$srcdir"/index.theme.alpine "$pkgdir"/usr/share/lxdm/themes/Alpine/index.theme

	# Install the custom Alpine background
	install -m644 -D "$srcdir"/background.png "$pkgdir"/usr/share/lxdm/themes/Alpine/background.png
}

sha512sums="
0e3539c595a71cb850c1756dd075b8d477a4e111a4167714057cac06650e9587f338f797f14122e7b2a2f4ad35b38cd7172b83e996758abeeaf0146d65bbc26f  lxdm-0.5.3.tar.xz
b66d47a3c026f84c76fb6ae0701ff69d2736a2c0fdf898191836c0c5e2b0d624c7a7846cd38596ee800fab53ebcd843c26779c56c0f655df1659ecc5b251b576  execinfo.patch
1eaf438e64901168a557d3e278de4dd7eb4e580594175a26f9c8d27bd8de2dae81467ebd3a96f0a4dfb5f19c2257ce1ee5608e753e8d9d53c2e4ba488f798b0e  fix-msghdr-usage.patch
f59182509473def0b84a25f39c14c924c6e96205ca388d1e6e90d0d5f2e6ae92135204a5449b3f6c3d951741d0ead9e7a751735564fdc79fad74ac686a274397  poweroff.patch
c8ec8a4db3399263d32e2e1b2cc6ee9e8db380a794b0307197681c266989111254191256eb61527923960da2f377e27f9eda023f6a2e98919ae65f118b35c43d  background.png
c00a901e48ea2ec04ee5e4bdf6d8e8af68576785d16f655bdfff130bdea77ef7edecf5ef01b58dba14b869f7e1c2488b0aa5c02aed249856fd6bb1dadeb0245a  lxdm.initd
1374daa94bde0fb71056cebc8524da32b57c241a8af97501daa930c43dc087aa3fec2d79f10ceab5a73a4dcf9cce478fb77575d7019cafd54ad9731c9e9dd55f  index.theme.alpine
"
