diff options
author | Nick Steeves <nick.steeves@shaw.ca> | 2006-03-30 10:55:25 +0000 |
---|---|---|
committer | Nick Steeves <nick.steeves@shaw.ca> | 2006-03-30 10:55:25 +0000 |
commit | fdb8c3f427945490901ae7a52dba7f459402b416 (patch) | |
tree | b1db75f0b67dd2dc6af7d827880582230b663e3d /kmplayer | |
parent | 4b455c0241ead3df91b726b8755dc366fea69833 (diff) | |
download | opt-fdb8c3f427945490901ae7a52dba7f459402b416.tar.gz opt-fdb8c3f427945490901ae7a52dba7f459402b416.tar.xz |
kmplayer: update to 0.9.1c. Allow installation of English documentation. Misc Pkgfile fixes
Diffstat (limited to 'kmplayer')
-rw-r--r-- | kmplayer/.footprint | 11 | ||||
-rw-r--r-- | kmplayer/.md5sum | 2 | ||||
-rw-r--r-- | kmplayer/Pkgfile | 22 |
3 files changed, 22 insertions, 13 deletions
diff --git a/kmplayer/.footprint b/kmplayer/.footprint index a195fc5f9..36f80cfa3 100644 --- a/kmplayer/.footprint +++ b/kmplayer/.footprint @@ -26,6 +26,13 @@ drwxr-xr-x root/root usr/share/apps/kmplayer/ -rw-r--r-- root/root usr/share/apps/kmplayer/pluginsinfo drwxr-xr-x root/root usr/share/config/ -rw-r--r-- root/root usr/share/config/kmplayerrc +drwxr-xr-x root/root usr/share/doc/ +drwxr-xr-x root/root usr/share/doc/HTML/ +drwxr-xr-x root/root usr/share/doc/HTML/en/ +drwxr-xr-x root/root usr/share/doc/HTML/en/kmplayer/ +lrwxrwxrwx root/root usr/share/doc/HTML/en/kmplayer/common -> /usr/share/doc/HTML/en/common +-rw-r--r-- root/root usr/share/doc/HTML/en/kmplayer/index.cache.bz2 +-rw-r--r-- root/root usr/share/doc/HTML/en/kmplayer/index.docbook drwxr-xr-x root/root usr/share/icons/ drwxr-xr-x root/root usr/share/icons/hicolor/ drwxr-xr-x root/root usr/share/icons/hicolor/128x128/ @@ -49,6 +56,10 @@ drwxr-xr-x root/root usr/share/icons/hicolor/64x64/apps/ drwxr-xr-x root/root usr/share/icons/hicolor/scalable/ drwxr-xr-x root/root usr/share/icons/hicolor/scalable/apps/ -rw-r--r-- root/root usr/share/icons/hicolor/scalable/apps/kmplayer.svgz +drwxr-xr-x root/root usr/share/locale/ +drwxr-xr-x root/root usr/share/locale/en_GB/ +drwxr-xr-x root/root usr/share/locale/en_GB/LC_MESSAGES/ +-rw-r--r-- root/root usr/share/locale/en_GB/LC_MESSAGES/kmplayer.mo drwxr-xr-x root/root usr/share/mimelnk/ drwxr-xr-x root/root usr/share/mimelnk/application/ -rw-r--r-- root/root usr/share/mimelnk/application/x-kmplayer.desktop diff --git a/kmplayer/.md5sum b/kmplayer/.md5sum index 1cb486a16..409c52751 100644 --- a/kmplayer/.md5sum +++ b/kmplayer/.md5sum @@ -1 +1 @@ -59f28acf1b4fba0ef5aa0a910d1d04b0 kmplayer-0.9.1a.tar.bz2 +96a3e31e8b0c52682054d37793c6e65e kmplayer-0.9.1c.tar.bz2 diff --git a/kmplayer/Pkgfile b/kmplayer/Pkgfile index bcde4a01e..31475aed4 100644 --- a/kmplayer/Pkgfile +++ b/kmplayer/Pkgfile @@ -1,23 +1,21 @@ -# $Id: Pkgfile,v 1.9 2005/11/28 01:41:12 sten Exp $ -# Description: a Mplayer & Xine frontend for KDE; has kpart for konqueror integration +# Description: a Mplayer & Xine frontend for KDE; it has a kpart for konqueror integration # URL: http://kmplayer.kde.org/ # Maintainer: sten, nick dot steeves at shaw dot ca # Packager: # Depends on: kdelibs, mplayer name=kmplayer -version=0.9.1a +version=0.9.1c release=1 source=(http://kmplayer.kde.org/pkgs/kmplayer-$version.tar.bz2) -build() -{ - cd $name-$version - ./configure --prefix=/usr \ - --without-gstreamer - make - make DESTDIR=$PKG install - rm -rf $PKG/usr/share/doc - rm -rf $PKG/usr/share/locale +build() { + cd $name-$version + ./configure --prefix=/usr \ + --without-gstreamer + make + make DESTDIR=$PKG install + find $PKG/usr/share/{doc/HTML,locale}/* ! -wholename "*HTML/en*" \ + ! -wholename "*locale/en*" -delete } |