fritzkink
2023-10-19 329c07fbac612889ca2c464f29f98407a6e69639
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
#
# This file and its contents are supplied under the terms of the
# Common Development and Distribution License ("CDDL"), version 1.0.
# You may only use this file in accordance with the terms of version
# 1.0 of the CDDL.
#
# A full copy of the text of the CDDL should have accompanied this
# source.  A copy of the CDDL is also available via the Internet at
# http://www.illumos.org/license/CDDL.
#
 
#
# Copyright 2014 Alexander Pyhalov.  All rights reserved.
# Copyright 2023 Friedrich Kink.  All rights reserved.
#
 
include ../../../make-rules/shared-macros.mk
 
COMPONENT_NAME= opal
COMPONENT_VERSION= 3.16.2
COMPONENT_SUMMARY= OPAL - Open Phone Abstraction Library
COMPONENT_PROJECT_URL = http://www.gnome.org
COMPONENT_FMRI= library/libopal
COMPONENT_CLASSIFICATION=Desktop (GNOME)/Libraries
COMPONENT_SRC= $(COMPONENT_NAME)-$(COMPONENT_VERSION)
COMPONENT_ARCHIVE= $(COMPONENT_SRC).tar.bz2
COMPONENT_ARCHIVE_HASH= \
  sha256:9225e881e7a450d39f739be7db97d0b1f845c754afdc2f26d8ebdbd5799dd3ed
COMPONENT_ARCHIVE_URL= \
  https://sourceforge.net/projects/opalvoip/files/V3.16%20Procyon/Stable%202/$(COMPONENT_ARCHIVE)
COMPONENT_LICENSE= MPLv1.0 
 
include $(WS_MAKE_RULES)/common.mk
 
PATH=           $(PATH.gnu)
 
COMPONENT_BUILD_ARGS += VERBOSE=1
 
OPAL_FFMPEG_PATCH = \
       $(GSED) -e '/<< mime.PrintContents/ s/mime/(const std::string\&)&/' \
       -i src/im/msrp.cxx
 
COMPONENT_PREP_ACTION=( cd $(@D)/plugins && aclocal && autoconf && \
               cd $(@D) && aclocal && autoconf && $(OPAL_FFMPEG_PATCH) )
 
# Missing files in build dir for configure without this.
COMPONENT_PRE_CONFIGURE_ACTION =  ( CLONEY_MODE=copy $(CLONEY) $(SOURCE_DIR) $(@D) )
 
COMPONENT_POST_CONFIGURE_ACTION = ( \
    echo "install: ;  @\$$(MAKE) --file=$(SOURCE_DIR)/Makefile \$$(MAKECMDGOALS)" >> $(@D)/Makefile )
 
CONFIGURE_OPTIONS += --sysconfdir=/etc
CONFIGURE_OPTIONS += --disable-srtp
CONFIGURE_OPTIONS += --disable-spandsp
CONFIGURE_OPTIONS += --disable-libavutil
CONFIGURE_OPTIONS += --enable-localsrtp
CONFIGURE_OPTIONS += PKG_CONFIG_PATH=/usr/lib/$(MACH64)/pkgconfig
 
# opal comes with SILK SDK, which has own build system
COMPONENT_BUILD_ENV += SILK_CC="$(CC)"
COMPONENT_BUILD_ENV += SILK_CFLAGS="$(CFLAGS)"
COMPONENT_BUILD_ENV += SILK_LDFLAGS="$(LDFLAGS)"
 
# Auto-generated dependencies
REQUIRED_PACKAGES += $(GCC_RUNTIME_PKG)
REQUIRED_PACKAGES += $(GXX_RUNTIME_PKG)
REQUIRED_PACKAGES += codec/libtheora
REQUIRED_PACKAGES += codec/speex
REQUIRED_PACKAGES += library/desktop/ptlib
REQUIRED_PACKAGES += library/opus
REQUIRED_PACKAGES += library/speexdsp
REQUIRED_PACKAGES += library/video/libvpx
REQUIRED_PACKAGES += system/library
REQUIRED_PACKAGES += system/library/math