Files
bpfire/lfs/libdvbpsi
Adolf Belka 0a300b724e libdvbpsi: Update to 1.3.3
- Update from 1.2.0 to 1.3.3
- Update rootfile
- Ran find-dependencies - nothing found
- Changelog
   Changes between 1.3.2 and 1.3.3:
    * Fix regression in dvbpsi_decoder_psi_section_add() set i_last_section_number
   Changes between 1.3.1 and 1.3.2:
    * Fix bug in dvbpsi_decoder_psi_section_add() set i_last_section_number
    * Fix bug in descriptor 0x8a that prevented it from being parsed properly
    * Fix bug in descriptor 0x56 generation with multiple teletext page entries
    * Fix bug in descriptor 0x41 correct maximum service count
   Changes between 1.3.0 and 1.3.1:
    * Fix bugs in table: EIT
    * Fix test_dr
   Changes between 1.2.0 and 1.3.0:
    * New descriptor:
      - 0x10 Smoothing Buffer
      - 0x11 STD descriptor
      - 0x12 IBP descriptor
      - 0x1b MPEG-4 video descriptor
      - 0x1c MPEG-4 audio descriptor
    * Fix bugs in descriptor: 0x02, 0x0a, 0x45, 0x48, 0x50, 0x56, 0x7c
    * Fix bugs in table: EIT, NIT
    * Fix bugs in demux.c
    * Build with mingw32
    * Generate descriptors: 0x83, 0xa1
    * Documentation fixes:
      - tables: NIT
      - descriptors: 0xa1

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
2021-04-26 17:09:38 +00:00

87 lines
3.2 KiB
Plaintext

###############################################################################
# #
# IPFire.org - A linux based firewall #
# Copyright (C) 2007-2018 IPFire Team <info@ipfire.org> #
# #
# This program is free software: you can redistribute it and/or modify #
# it under the terms of the GNU General Public License as published by #
# the Free Software Foundation, either version 3 of the License, or #
# (at your option) any later version. #
# #
# This program is distributed in the hope that it will be useful, #
# but WITHOUT ANY WARRANTY; without even the implied warranty of #
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
# GNU General Public License for more details. #
# #
# You should have received a copy of the GNU General Public License #
# along with this program. If not, see <http://www.gnu.org/licenses/>. #
# #
###############################################################################
###############################################################################
# Definitions
###############################################################################
include Config
VER = 1.3.3
THISAPP = libdvbpsi-$(VER)
DL_FILE = $(THISAPP).tar.bz2
DL_FROM = $(URL_IPFIRE)
DIR_APP = $(DIR_SRC)/$(THISAPP)
TARGET = $(DIR_INFO)/$(THISAPP)
PROG = libdvbpsi
PAK_VER = 3
DEPS =
###############################################################################
# Top-level Rules
###############################################################################
objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
$(DL_FILE)_MD5 = 9b556ab08bb62a8bec61f5c1649bc9a8
install : $(TARGET)
check : $(patsubst %,$(DIR_CHK)/%,$(objects))
download :$(patsubst %,$(DIR_DL)/%,$(objects))
md5 : $(subst %,%_MD5,$(objects))
dist:
@$(PAK)
###############################################################################
# Downloading, checking, md5sum
###############################################################################
$(patsubst %,$(DIR_CHK)/%,$(objects)) :
@$(CHECK)
$(patsubst %,$(DIR_DL)/%,$(objects)) :
@$(LOAD)
$(subst %,%_MD5,$(objects)) :
@$(MD5)
###############################################################################
# Installation Details
###############################################################################
$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
@$(PREBUILD)
@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar jxf $(DIR_DL)/$(DL_FILE)
$(UPDATE_AUTOMAKE)
cd $(DIR_APP) && sed -e "s/-Werror//g" -i configure
cd $(DIR_APP) && ./configure --prefix=/usr --enable-release
cd $(DIR_APP) && make $(MAKETUNING) $(EXTRA_MAKE)
cd $(DIR_APP) && make install
@rm -rf $(DIR_APP)
@$(POSTBUILD)