From e52a76f40880d4211c3c9d9c02982c1c362e5dcd Mon Sep 17 00:00:00 2001 From: giraffedata Date: Sat, 2 May 2020 02:31:01 +0000 Subject: Fix package dependencies git-svn-id: http://svn.code.sf.net/p/netpbm/code/trunk@3799 9d0c8265-081b-0410-96cb-a4ca84ce46f8 --- buildtools/debian/mkdeb | 24 ++++++++++++++++++------ 1 file changed, 18 insertions(+), 6 deletions(-) (limited to 'buildtools') diff --git a/buildtools/debian/mkdeb b/buildtools/debian/mkdeb index 2cb00957..8ca0f738 100755 --- a/buildtools/debian/mkdeb +++ b/buildtools/debian/mkdeb @@ -119,11 +119,23 @@ sub control($$) { # file. #----------------------------------------------------------------------------- -# The Debian packaging system doesn't provide a way to express Netpbm's actual -# prerequisites. For example, Netpbm needs Version 6.2 or better of Libjpeg, -# but there is no way to state that here. Instead, we state Libjpeg 6.2 -# exactly. This makes the Netpbm package less useful. - + # Because developers of some of the dependent libraries frequently switch + # to distributing versions not backward compatible with what they + # previously distributed, and Debian always packages the currently + # distributed version, it is virtually impossible to produce a Netpbm + # package that works in multiple Debian versions. This program is coded + # to create a package that works on the Debian system the Netpbm + # maintainer currently uses to build the Debian packages he distributes. + # If you are building for any other version of Debian, you'll have to + # modify this code. + + # Note that the backward incompatibility is usually only at a binary + # level, not source level. And sometimes the only incompatibility for + # Netpbm purposes is that the soname has changed so that Linux will refuse + # to run a Netpbm program built for Debian N on Debian N-1. + + # The following is for Debian 9. + my %control; my $debianNativeNetpbm = @@ -144,7 +156,7 @@ sub control($$) { $control{'Depends'} = 'libc6, ' . 'libjpeg62, ' . - 'libpng12-0 | libpng16-16, ' . + 'libpng16-16, ' . 'libtiff5, ' . 'libx11-6, ' . 'libxml2, ' . -- cgit 1.4.1