diff options
author | Carsten Lohrke <carlo@gentoo.org> | 2005-01-07 22:02:17 +0000 |
---|---|---|
committer | Carsten Lohrke <carlo@gentoo.org> | 2005-01-07 22:02:17 +0000 |
commit | bc9601b83f6518edd3f4461b120793ec6fd23390 (patch) | |
tree | 568ccdaa368184611d4b8d46cb6f5b4e9e8a689c /media-video/kmplayer/files | |
parent | (Manifest recommit) (diff) | |
download | gentoo-2-bc9601b83f6518edd3f4461b120793ec6fd23390.tar.gz gentoo-2-bc9601b83f6518edd3f4461b120793ec6fd23390.tar.bz2 gentoo-2-bc9601b83f6518edd3f4461b120793ec6fd23390.zip |
version bump
Diffstat (limited to 'media-video/kmplayer/files')
-rw-r--r-- | media-video/kmplayer/files/digest-kmplayer-0.8.4_rc5 | 1 | ||||
-rw-r--r-- | media-video/kmplayer/files/xine.diff | 45 |
2 files changed, 46 insertions, 0 deletions
diff --git a/media-video/kmplayer/files/digest-kmplayer-0.8.4_rc5 b/media-video/kmplayer/files/digest-kmplayer-0.8.4_rc5 new file mode 100644 index 000000000000..019866713682 --- /dev/null +++ b/media-video/kmplayer/files/digest-kmplayer-0.8.4_rc5 @@ -0,0 +1 @@ +MD5 c15d792dc40c81a015262bad6323b053 kmplayer-0.8.4-rc5.tar.bz2 577487 diff --git a/media-video/kmplayer/files/xine.diff b/media-video/kmplayer/files/xine.diff new file mode 100644 index 000000000000..2979b11099c4 --- /dev/null +++ b/media-video/kmplayer/files/xine.diff @@ -0,0 +1,45 @@ +--- configure.in.in.orig 2004-12-17 22:29:28.000000000 +0100 ++++ configure.in.in 2004-12-17 22:32:58.000000000 +0100 +@@ -81,19 +81,29 @@ + AC_MSG_CHECKING([if kxineplayer can be compiled]) + AC_MSG_RESULT($have_xine) + +-if test "$have_xine" = "yes"; then +- vers=`xine-config --version 2>/dev/null | awk 'BEGIN { FS = "."; } { printf "%d", ($1 * 1000 + $2) * 1000 + $3;}'` +- if test -n "$vers" && test "$vers" -ge 1000000 +- then +- AC_DEFINE(HAVE_XINE, 1, [If we have libxine installed]) +- LIB_XINE="`xine-config --libs`" +- AC_SUBST(LIB_XINE) +- CFLAGS_XINE="`xine-config --cflags`" +- AC_SUBST(CFLAGS_XINE) +- else +- have_xine="no" +- AC_MSG_WARN([Your xine installation is too old (1.0.0 or later required)]) +- fi ++AC_ARG_WITH(xine, ++ AC_HELP_STRING([--without-xine],[build KMPlayer without Xine [default=with]]), ++ [build_xine=$withval], ++ [build_xine=yes] ++) ++ ++if test "$build_xine" != "no"; then ++ if test "$have_xine" = "yes"; then ++ vers=`xine-config --version 2>/dev/null | awk 'BEGIN { FS = "."; } { printf "%d", ($1 * 1000 + $2) * 1000 + $3;}'` ++ if test -n "$vers" && test "$vers" -ge 1000000 ++ then ++ AC_DEFINE(HAVE_XINE, 1, [If we have libxine installed]) ++ LIB_XINE="`xine-config --libs`" ++ AC_SUBST(LIB_XINE) ++ CFLAGS_XINE="`xine-config --cflags`" ++ AC_SUBST(CFLAGS_XINE) ++ else ++ have_xine="no" ++ AC_MSG_WARN([Your xine installation is too old (1.0.0 or later required)]) ++ fi ++ fi ++else ++ have_xine="no" + fi + + AM_CONDITIONAL(include_kxineplayer, test "$have_xine" = "yes") |