From: Matthias Fischer <matthias.fischer@ipfire.org>
To: development@lists.ipfire.org
Subject: Re: Multimedia Libs
Date: Mon, 30 Mar 2020 07:08:11 +0200 [thread overview]
Message-ID: <d2e26529-a72f-415e-6a8c-14b2d08867e7@ipfire.org> (raw)
In-Reply-To: <ac3f57d0-b44e-52ff-7de8-4a6a7ecf3700@ipfire.org>
[-- Attachment #1: Type: text/plain, Size: 2746 bytes --]
Hi,
On 25.03.2020 21:55, Matthias Fischer wrote:
> Hi,
>
> On 27.02.2020 12:27, Michael Tremer wrote:
>>
>> [...could you look for some multimedia libs...?]>
>
> [Lots of Updates and links]
> ...
Perhaps someone could take a look please:
During the update process I've found 'netpbm 10.47.61' (current version
is 10.73.61), "...a toolkit for manipulation of graphic images,
including conversion of images between a variety of different format...".
1. Usual question: do we need this? ;-)
2. I always get the following error(s) - how can I work around it?
I tried but didn't find a clue yet. It seems that the path in the
archive to 'jbig.h' was changed, but I can't find how to solve this.
3. Lfs and patch to 10.73.31 are attached.
Thanks for all tips...
***SNIP***
...
mkdir -p importinc/netpbm
rm -f importinc/netpbm/wordaccess_64_le.h
ln -s /usr/src/netpbm-10.73.31/lib/util/wordaccess_64_le.h
importinc/netpbm/wordaccess_64_le.h
mkdir -p importinc/netpbm
rm -f importinc/netpbm/wordaccess_be_aligned.h
ln -s /usr/src/netpbm-10.73.31/lib/util/wordaccess_be_aligned.h
importinc/netpbm/wordaccess_be_aligned.h
mkdir -p importinc/netpbm
rm -f importinc/netpbm/wordaccess_be_unaligned.h
ln -s /usr/src/netpbm-10.73.31/lib/util/wordaccess_be_unaligned.h
importinc/netpbm/wordaccess_be_unaligned.h
mkdir -p importinc/netpbm
rm -f importinc/netpbm/wordintclz.h
ln -s /usr/src/netpbm-10.73.31/lib/util/wordintclz.h
importinc/netpbm/wordintclz.h
cc -c -I. -Iimportinc -Iimportinc/netpbm
-I/usr/src/netpbm-10.73.31/converter/other/jbig
-I/usr/src/netpbm-10.73.31/converter/other/jbig -DNDEBUG -O2 -pipe
-Wall -fexceptions -fPIC -march=i586 -mindirect-branch=thunk
-mfunction-return=thunk -mtune=generic -fomit-frame-pointer
-Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS
-fstack-protector-strong -flax-vector-conversions -o jbigtopnm.o
jbigtopnm.c
jbigtopnm.c:14:10: fatal error: jbig.h: No such file or directory
14 | #include <jbig.h>
| ^~~~~~~~
compilation terminated.
make[4]: *** [/usr/src/netpbm-10.73.31/common.mk:272: jbigtopnm.o]
Error 1
make[4]: Leaving directory
'/usr/src/netpbm-10.73.31/converter/other/jbig'
make[3]: *** [/usr/src/netpbm-10.73.31/common.mk:597: jbig/all] Error 2
make[3]: Leaving directory '/usr/src/netpbm-10.73.31/converter/other'
make[2]: *** [/usr/src/netpbm-10.73.31/common.mk:597: other/all] Error 2
make[2]: Leaving directory '/usr/src/netpbm-10.73.31/converter'
make[1]: *** [/usr/src/netpbm-10.73.31/common.mk:597: converter/all]
Error 2
make[1]: Leaving directory '/usr/src/netpbm-10.73.31'
make: *** [netpbm:84: /usr/src/log/netpbm-10.73.31] Error 2
***SNAP***
Best,
Matthias
[-- Attachment #2: netpbm.txt --]
[-- Type: text/plain, Size: 3641 bytes --]
###############################################################################
# #
# IPFire.org - A linux based firewall #
# Copyright (C) 2007-2020 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 = 10.73.31
THISAPP = netpbm-$(VER)
DL_FILE = $(THISAPP).tgz
DL_FROM = $(URL_IPFIRE)
DIR_APP = $(DIR_SRC)/$(THISAPP)
TARGET = $(DIR_INFO)/$(THISAPP)
PROG = netpbm
PAK_VER = 3
DEPS =
CFLAGS += -flax-vector-conversions
###############################################################################
# Top-level Rules
###############################################################################
objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
$(DL_FILE)_MD5 = 02b2383af38501a3012bdd85aa03bd02
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 zxf $(DIR_DL)/$(DL_FILE)
rm -rf /usr/netpbm
cp $(DIR_SRC)/config/netpbm/config.mk $(DIR_APP)
cd $(DIR_APP) && make CFLAGS="$(CFLAGS)" #The build of this version cannot be parallelized
cd $(DIR_APP) && make package PKGDIR=/usr/netpbm
mkdir -pv /usr/include/netpbm
mkdir -pv /usr/share/netpbm
mv -fv /usr/netpbm/include/netpbm/* /usr/include/netpbm
mv -fv /usr/netpbm/lib/* /usr/lib
mv -fv /usr/netpbm/bin/* /usr/bin
mv -fv /usr/netpbm/misc/* /usr/share/netpbm
rm -Rfv /usr/netpbm/
cd /usr/lib && ln -sfv libnetpbm.so.10.73 libnetpbm.so
@rm -rf $(DIR_APP)
@$(POSTBUILD)
[-- Attachment #3: netpbm-10_73_31.patch --]
[-- Type: text/plain, Size: 2024 bytes --]
###############################################################################
# #
# IPFire.org - A linux based firewall #
-# Copyright (C) 2007-2018 IPFire Team <info@ipfire.org> #
+# Copyright (C) 2007-2020 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 #
@@ -24,7 +24,7 @@
include Config
-VER = 10.47.61
+VER = 10.73.31
THISAPP = netpbm-$(VER)
DL_FILE = $(THISAPP).tgz
@@ -32,7 +32,7 @@ DL_FROM = $(URL_IPFIRE)
DIR_APP = $(DIR_SRC)/$(THISAPP)
TARGET = $(DIR_INFO)/$(THISAPP)
PROG = netpbm
-PAK_VER = 2
+PAK_VER = 3
DEPS =
@@ -46,7 +46,7 @@ objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
-$(DL_FILE)_MD5 = a5d2ec8acc99f60e5b92a720ed292c3e
+$(DL_FILE)_MD5 = 02b2383af38501a3012bdd85aa03bd02
install : $(TARGET)
@@ -83,13 +83,13 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
cp $(DIR_SRC)/config/netpbm/config.mk $(DIR_APP)
cd $(DIR_APP) && make CFLAGS="$(CFLAGS)" #The build of this version cannot be parallelized
cd $(DIR_APP) && make package PKGDIR=/usr/netpbm
- mkdir -pv /usr/include/netpbm
+ mkdir -pv /usr/include/netpbm
mkdir -pv /usr/share/netpbm
mv -fv /usr/netpbm/include/netpbm/* /usr/include/netpbm
mv -fv /usr/netpbm/lib/* /usr/lib
mv -fv /usr/netpbm/bin/* /usr/bin
mv -fv /usr/netpbm/misc/* /usr/share/netpbm
rm -Rfv /usr/netpbm/
- cd /usr/lib && ln -sfv libnetpbm.so.10.47 libnetpbm.so
+ cd /usr/lib && ln -sfv libnetpbm.so.10.73 libnetpbm.so
@rm -rf $(DIR_APP)
@$(POSTBUILD)
next prev parent reply other threads:[~2020-03-30 5:08 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <5C7D0AAC-730A-40BA-B398-8AED49A4867D@ipfire.org>
2020-03-25 20:55 ` Matthias Fischer
2020-03-25 21:11 ` Stephan Mending
2020-03-26 7:24 ` Matthias Fischer
2020-03-26 9:10 ` Michael Tremer
2020-03-26 9:30 ` Matthias Fischer
2020-03-28 4:54 ` Matthias Fischer
2020-03-28 7:41 ` Michael Tremer
2020-03-26 9:47 ` Stephan Mending
2020-03-30 5:08 ` Matthias Fischer [this message]
2020-03-30 5:17 ` Matthias Fischer
2020-03-30 9:10 ` Matthias Fischer
2020-03-30 9:31 ` Michael Tremer
2020-04-02 17:07 ` Matthias Fischer
2020-04-03 10:22 ` Michael Tremer
2020-05-23 10:08 ` Matthias Fischer
2020-05-25 9:29 ` Michael Tremer
2020-05-25 11:05 ` Matthias Fischer
2020-05-26 10:15 ` Michael Tremer
2020-05-26 17:13 ` Matthias Fischer
2020-05-28 11:54 ` Michael Tremer
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=d2e26529-a72f-415e-6a8c-14b2d08867e7@ipfire.org \
--to=matthias.fischer@ipfire.org \
--cc=development@lists.ipfire.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox