ITP: kmplayer -- media player for KDE

2006-03-30 Thread Fathi Boudra
Package: wnpp
Severity: wishlist
Owner: Fathi Boudra [EMAIL PROTECTED]

* Package name: kmplayer
  Version : 0.9.2-pre3
  Upstream Author : Koos Vriezen [EMAIL PROTECTED]
* URL : http://kmplayer.kde.org/
* License : GPL-2
  Description : media player for KDE

KMPlayer, a simple frontend for MPlayer/Xine/ffmpeg/ffserver/VDR.

It can play DVD/VCD movies, from file or url and from a video device.
If setup right, KMPlayer can embed inside konqueror. Which means if you click
on a movie file, the movie is played inside konqueror.
It can also embed inside khtml, enabling movie playback inside a html page.
Movie recording using mencoder (part of the mplayer package). No video during 
recording, but you can always open a new window and play it there.
Broadcasting, http streaming, by using ffserver/ffmpeg. For TV sources, you 
need v4lctl (part of the xawtv package).

cheers,

Fathi


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



question about CFLAGS modifiers to ./configure

2006-03-30 Thread Miriam Ruiz
Hi,

DebHelper uses by default (in the pre-made templates) -Wl,-z,defs in CFLAGS
when running ./configure

CFLAGS=-Wall -g -O2 -Wl,-z,defs ./configure --host=$(DEB_HOST_GNU_TYPE) ...

I'm packaging a program (with some libraries in it) that won't compile with
them unless you explicitly modify Makefile.am files and add the libraries
(already included in the package but not installed in time of compilation),
which is not done by default. without those options it compiles and install
cleanly without problem with upstream's building system.

Is it important to keep them? Could someone possibly explain to me what they
mean?

Lots of thanks!!!
Miry



__ 
LLama Gratis a cualquier PC del Mundo. 
Llamadas a fijos y móviles desde 1 céntimo por minuto. 
http://es.voice.yahoo.com


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: question about CFLAGS modifiers to ./configure

2006-03-30 Thread Justin Pryzby
On Thu, Mar 30, 2006 at 06:23:38PM +0200, Miriam Ruiz wrote:
 Hi,
 
 DebHelper uses by default (in the pre-made templates) -Wl,-z,defs in CFLAGS
 when running ./configure
 
 CFLAGS=-Wall -g -O2 -Wl,-z,defs ./configure --host=$(DEB_HOST_GNU_TYPE) ...
 
 I'm packaging a program (with some libraries in it) that won't compile with
 them unless you explicitly modify Makefile.am files and add the libraries
 (already included in the package but not installed in time of compilation),
 which is not done by default. without those options it compiles and install
 cleanly without problem with upstream's building system.
Are you talking about the combination of CFLAGS foo above, and
libraries build and used by the package?  man ld explains -z defs:
   Disallows undefined symbols in object files.  Undefined symbols
   in shared libraries are still allowed.

Note that some ./configure scripts recommend to be called with CFLAGS
transposed, as in:

  ./configure --host=$(...) CFLAGS=$(CFLAGS)

Note also that -O2 should be used only if DEB_BUILD_OPTIONS!~noopt.

What is the command, and error, when you try to use the libs, and
those options?

 Is it important to keep them? Could someone possibly explain to me
 what they mean?

You will probably have to use the examples from dh_shlibdeps to get
proper dependencies on the shared libraries in that package, used by
any binaries it creates.

Justin


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: question about CFLAGS modifiers to ./configure

2006-03-30 Thread Darren Salt
I demand that Miriam Ruiz may or may not have written...

 DebHelper uses by default (in the pre-made templates) -Wl,-z,defs in
 CFLAGS when running ./configure

 CFLAGS=-Wall -g -O2 -Wl,-z,defs ./configure --host=$(DEB_HOST_GNU_TYPE) ...

-Wl,-z,defs in CFLAGS causes warnings about unused linker flags. It belongs
in LDFLAGS.

[snip]
-- 
| Darren Salt| linux or ds at  | nr. Ashington, | Toon
| RISC OS, Linux | youmustbejoking,demon,co,uk | Northumberland | Army
| + At least 4000 million too many people. POPULATION LEVEL IS UNSUSTAINABLE.

Power corrupts, and absolute power corrupts absolutely.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: question about CFLAGS modifiers to ./configure

2006-03-30 Thread Justin Pryzby
On Thu, Mar 30, 2006 at 08:23:38PM +0100, Darren Salt wrote:
 I demand that Miriam Ruiz may or may not have written...
 
  DebHelper uses by default (in the pre-made templates) -Wl,-z,defs in
  CFLAGS when running ./configure
 
  CFLAGS=-Wall -g -O2 -Wl,-z,defs ./configure --host=$(DEB_HOST_GNU_TYPE) 
  ...
 
 -Wl,-z,defs in CFLAGS causes warnings about unused linker flags. It belongs
 in LDFLAGS.
Good point :)

This is #338990.

Justin


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: question about CFLAGS modifiers to ./configure

2006-03-30 Thread Steve Langasek
On Thu, Mar 30, 2006 at 06:23:38PM +0200, Miriam Ruiz wrote:

 DebHelper uses by default (in the pre-made templates) -Wl,-z,defs in CFLAGS
 when running ./configure

 CFLAGS=-Wall -g -O2 -Wl,-z,defs ./configure --host=$(DEB_HOST_GNU_TYPE) ...

 I'm packaging a program (with some libraries in it) that won't compile with
 them unless you explicitly modify Makefile.am files and add the libraries
 (already included in the package but not installed in time of compilation),
 which is not done by default. without those options it compiles and install
 cleanly without problem with upstream's building system.

 Is it important to keep them? Could someone possibly explain to me what they
 mean?

This is discussed in policy 10.2.  If your libraries are failing to link
when using -z,defs, that's a bug in those libraries; anything that
references symbols from other libraries on the system needs to link against
those libraries.

-- 
Steve Langasek   Give me a lever long enough and a Free OS
Debian Developer   to set it on, and I can move the world.
[EMAIL PROTECTED]   http://www.debian.org/


signature.asc
Description: Digital signature


Re: question about CFLAGS modifiers to ./configure

2006-03-30 Thread Miriam Ruiz

 --- Steve Langasek [EMAIL PROTECTED] escribió:

 This is discussed in policy 10.2.  If your libraries are failing to link
 when using -z,defs, that's a bug in those libraries; anything that
 references symbols from other libraries on the system needs to link against
 those libraries.

Thanks, I have no clue why the linker gives errors then. I'll send the
reference to this conversation to upstream as I'm not sure to be able to fix
that myself properly.

Greetings,
Miry




__ 
LLama Gratis a cualquier PC del Mundo. 
Llamadas a fijos y móviles desde 1 céntimo por minuto. 
http://es.voice.yahoo.com


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]