Bug 106282 - multimedia/libxine: fix pkg-config --libs output
Summary: multimedia/libxine: fix pkg-config --libs output
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: MANTANI Nobutaka
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2006-12-03 23:30 UTC by Thierry Thomas
Modified: 2006-12-08 15:52 UTC (History)
1 user (show)

See Also:


Attachments
libxine.diff (3.22 KB, patch)
2006-12-03 23:30 UTC, Thierry Thomas
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Thierry Thomas freebsd_committer freebsd_triage 2006-12-03 23:30:47 UTC
	Libxine does not link with libiconv with `-liconv' but with the
	complete library name.

	The output of `pkg-config --libs libxine' is:

	-pthread /usr/local/lib/libiconv.so -Wl,-rpath -Wl,/usr/local/lib
	-L/usr/X11R6/lib -L/usr/local/lib -lxine -lz

	This is actually not a serious problem, but it makes fail the
	configuration of a new port that I'm preparing.

	After the hereunder proposed patch, pkg-config will report:

	-pthread -L/usr/X11R6/lib -L/usr/local/lib -lxine -lz -liconv

Fix: Please consider the following patch:
How-To-Repeat: 	pkg-config --libs libxine
Comment 1 Edwin Groothuis freebsd_committer freebsd_triage 2006-12-03 23:31:05 UTC
Responsible Changed
From-To: freebsd-ports-bugs->nobutaka

Over to maintainer
Comment 2 dfilter service freebsd_committer freebsd_triage 2006-12-07 17:15:58 UTC
nobutaka    2006-12-07 17:13:41 UTC

  FreeBSD ports repository

  Modified files:
    multimedia/libxine   Makefile distinfo pkg-plist 
    multimedia/libxine/files patch-configure 
  Added files:
    multimedia/libxine/files patch-config.rpath 
  Log:
  - Update to 1.1.3. This version fixes heap overflow vulnerability in libmms
    and buffer overflow vulnerability in Real Media input plugin. [1]
  - Fix 'pkg-config --libs libxine' output. [2]
  - Replace WITH_POLYPAUDIO knob with WITH_PULSEAUDIO knob since polypaudio audio
    output plugin is replaced with pulseaudio audio output plugin.
  
  Notified by:    miwi [1]
  PR:             ports/106282 [2]
  Submitted by:   thierry [2]
  
  Revision  Changes    Path
  1.102     +17 -13    ports/multimedia/libxine/Makefile
  1.30      +3 -3      ports/multimedia/libxine/distinfo
  1.1       +12 -0     ports/multimedia/libxine/files/patch-config.rpath (new)
  1.7       +26 -13    ports/multimedia/libxine/files/patch-configure
  1.40      +108 -108  ports/multimedia/libxine/pkg-plist
_______________________________________________
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org"
Comment 3 MANTANI Nobutaka freebsd_committer freebsd_triage 2006-12-08 15:51:46 UTC
State Changed
From-To: open->closed

Committed, thanks!