aboutsummaryrefslogtreecommitdiffstats
path: root/recipes-osmocom/osmo-hlr/osmo-hlr.inc
blob: 4a549e86762936c90fed336bf8d07a6e7cd8c8c3 (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
DESCRIPTION = "Osmocom GSM/UMTS Home Location Register"
DEPENDS = "libosmocore libosmo-abis libsqlite3"
HOMEPAGE = "http://osmocom.org/projects/osmo-hlr"
LICENSE = "AGPLv3+"
LIC_FILES_CHKSUM = "file://COPYING;md5=73f1eb20517c55bf9493b7dd6e480788"

SRC_URI = "file://osmo-hlr.init"

INC_PR = "r1.${META_TELEPHONY_OSMO_INC}"

inherit autotools update-rc.d pkgconfig

# because "${WORKDIR}/git" is not a git repo, it can't figure out the version
do_configure_prepend() {
	echo "${PV}" > ${S}/.tarball-version
}

do_install_append() {
	install -d ${D}${sysconfdir}/osmocom
	install -m 0660 ${S}/doc/examples/osmo-hlr/osmo-hlr.cfg ${D}${sysconfdir}/osmocom/osmo-hlr.cfg

	# Install sysv-init files
	install -d ${D}${sysconfdir}/init.d
	install -d ${D}${sysconfdir}/rc5.d
	install -m 0775 ${WORKDIR}/osmo-hlr.init ${D}${sysconfdir}/init.d/osmo-hlr

	# Install systemd files and enable on sysinit
	install -d ${D}${systemd_unitdir}/system
	for i in `ls ${S}/contrib/systemd`; do
		install -m 0644 ${S}/contrib/systemd/$i ${D}${systemd_unitdir}/system/
	done

	install -d ${D}/var/lib/osmocom
}

PACKAGES =+ "osmo-hlr"

INITSCRIPT_PACKAGES = "osmo-hlr"

# Do not start any of the services by default
SYSTEMD_AUTO_ENABLE = "disable"

CONFFILES_osmo-hlr = "${sysconfdir}/osmocom/osmo-hlr.cfg"
INITSCRIPT_NAME_osmo-hlr = "osmo-hlr"
INITSCRIPT_PARAMS_osmo-hlr = "defaults 30 30"
FILES_osmo-hlr = " ${bindir}/osmo-hlr \
		/var/lib/osmocom \
		${sysconfdir}/init.d/osmo-hlr \
		${sysconfdir}/osmocom/osmo-hlr.cfg \
		${systemd_unitdir}/system/osmo-hlr.service \
		"