From owner-freebsd-emulation@FreeBSD.ORG Mon Jun 8 00:19:31 2009 Return-Path: Delivered-To: emulation@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E0DFF106566B; Mon, 8 Jun 2009 00:19:31 +0000 (UTC) (envelope-from amdmi3@amdmi3.ru) Received: from smtp.timeweb.ru (smtp.timeweb.ru [217.170.79.85]) by mx1.freebsd.org (Postfix) with ESMTP id 6005E8FC14; Mon, 8 Jun 2009 00:19:31 +0000 (UTC) (envelope-from amdmi3@amdmi3.ru) Received: from [213.148.20.85] (helo=hive.panopticon) by smtp.timeweb.ru with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.69) (envelope-from ) id 1MDSaJ-0002nF-BH; Mon, 08 Jun 2009 04:19:31 +0400 Received: from hades.panopticon (hades.panopticon [192.168.0.32]) by hive.panopticon (Postfix) with ESMTP id 8CDBBB861; Mon, 8 Jun 2009 04:19:26 +0400 (MSD) Received: by hades.panopticon (Postfix, from userid 1000) id 859B0108840; Mon, 8 Jun 2009 04:19:26 +0400 (MSD) To: FreeBSD-gnats-submit@freebsd.org From: Dmitry Marakasov X-send-pr-version: 3.113 X-GNATS-Notify: Message-Id: <20090608001926.859B0108840@hades.panopticon> Date: Mon, 8 Jun 2009 04:19:26 +0400 (MSD) Cc: emulation@FreeBSD.org Subject: [PATCH] graphics/linux-f10-sdl_image: incomplete dependencies X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Jun 2009 00:19:32 -0000 >Submitter-Id: current-users >Originator: Dmitry Marakasov >Organization: >Confidential: no >Synopsis: [PATCH] graphics/linux-f10-sdl_image: incomplete dependencies >Severity: non-critical >Priority: low >Category: ports >Class: sw-bug >Release: FreeBSD 8.0-CURRENT i386 >Environment: System: FreeBSD hades.panopticon 8.0-CURRENT FreeBSD 8.0-CURRENT #0: Mon Jun 1 22:13:51 MSD >Description: linux-f10-sdl_image only depends on sdl12, while the library actually depends on png, jpeg and tiff: % objdump -x usr/lib/libSDL_image-1.2.so.0 | grep NEEDED NEEDED libpng12.so.0 NEEDED libjpeg.so.62 NEEDED libtiff.so.3 NEEDED libz.so.1 NEEDED libSDL-1.2.so.0 NEEDED libpthread.so.0 NEEDED libc.so.6 Port maintainer (emulation@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: >Fix: --- linux-f10-sdl_image-1.2.6_1.patch begins here --- Index: Makefile =================================================================== RCS file: /home/amdmi3/projects/freebsd/FreeBSD.cvs/ports/graphics/linux-f10-sdl_image/Makefile,v retrieving revision 1.15 diff -u -u -r1.15 Makefile --- Makefile 1 Jun 2009 17:26:17 -0000 1.15 +++ Makefile 7 Jun 2009 23:50:47 -0000 @@ -7,6 +7,7 @@ PORTNAME= sdl_image PORTVERSION= 1.2.6 +PORTREVISION= 1 CATEGORIES= graphics linux PKGNAMEPREFIX= linux-f10- DISTNAME= ${LINUX_NAME}-${PORTVERSION}-${RPMVERSION} @@ -18,7 +19,7 @@ ONLY_FOR_ARCHS= i386 amd64 USE_LINUX_RPM= yes -USE_LINUX_APPS= sdl12 +USE_LINUX_APPS= sdl12 png tiff jpeg LINUX_NAME= SDL_image LINUX_DIST_VER= 10 RPMVERSION= 6.fc9 --- linux-f10-sdl_image-1.2.6_1.patch ends here ---