summaryrefslogtreecommitdiffstats
path: root/abs/core/lirc-utils/PKGBUILD
blob: 9eff2541d75d5d5a87ee385c8b751a8714618649 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
# $Id: PKGBUILD 56261 2009-10-20 19:13:10Z hugo $
# Maintainer: Paul Mattal <paul@archlinux.org>

pkgname=lirc-utils
pkgver=0.8.6
pkgrel=4
pkgdesc="Linux Infrared Remote Control utils"
arch=('i686' 'x86_64')
url="http://www.lirc.org/"
license=('GPL')
_kernver=2.6.34-ARCH
depends=('alsa-lib' 'libusb' 'libx11' 'libsm' 'python' 'libftdi')
makedepends=('help2man')
replaces=('lirc+pctv')
backup=('etc/conf.d/lircd.conf' 'etc/conf.d/lircmd.conf' 'etc/lirc/lircd.conf')
options=('!libtool' '!makeflags')
source=(http://downloads.sourceforge.net/sourceforge/lirc/lirc-$pkgver.tar.bz2
	lircd lircmd lirc.logrotate lircd.conf irexec.conf irexecd kernel-2.6.33.patch)

build() {
	# configure
	cd ${srcdir}/lirc-$pkgver || return 1

	patch -p0 < ../kernel-2.6.33.patch || return 1

      # Disabling lirc_gpio driver as it does no longer work Kernel 2.6.22+
	sed -i -e "s:lirc_gpio\.o::" drivers/lirc_gpio/Makefile.am || return 1

	autoreconf || return 1
	libtoolize || return 1

	./configure --enable-sandboxed --prefix=/usr \
	--with-driver=all --with-kerneldir=/usr/src/linux-${_kernver} \
	--with-moduledir=/lib/modules/${_kernver}/kernel/drivers/misc \
	--with-transmitter \
		|| return 1
	# disable parallel and bt829
        # because of incompatibility with smp systems
        sed -i -e "s:lirc_parallel::" -e "s:lirc_bt829::" \
		Makefile drivers/Makefile drivers/*/Makefile tools/Makefile \
                || return 1

  	# build
	make || return 1
	make DESTDIR=${pkgdir} install || return 1
	mkdir -p ${pkgdir}/usr/share/lirc ${pkgdir}/etc/rc.d \
		|| return 1
	cp ${srcdir}/{lircd,lircmd,irexecd} ${pkgdir}/etc/rc.d/ \
		|| return 1
	cp -rp remotes ${pkgdir}/usr/share/lirc || return 1
	chmod -R go-w ${pkgdir}/usr/share/lirc/ || return 1


	# install the logrotate config
    	install -D -m644 ${srcdir}/lirc.logrotate \
        	${pkgdir}/etc/logrotate.d/lirc || return 1
    
	# install conf.d file
	install -D -m644 ${srcdir}/lircd.conf \
        	${pkgdir}/etc/conf.d/lircd.conf || return 1

	# install conf.d file
        install -D -m644 ${srcdir}/irexec.conf \
                ${pkgdir}/etc/conf.d/irexec.conf || return 1

	install -d -m755 ${pkgdir}/etc/lirc || return 1
	install -d -m755 ${pkgdir}/var/run/lirc || return 1

	# remove built modules
	rm -r ${pkgdir}/lib/
}
md5sums=('4ca24da6f5e7c2dcea74878c27a4a3f7'
         '310f718169b16b6afa6615fa53a0ef21'
         '85f7fdac55e5256967241864049bf5e9'
         '3deb02604b37811d41816e9b4385fcc3'
         '5b1f8c9cd788a39a6283f93302ce5c6e'
         'f0c0ac930326168035f0c8e24357ae55'
         '618ca4f666341d6ade8c616ce59f4d1b'
         'f029698154cf32bc51e5e69879d53a12')