# Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ inherit eutils MY_KDEAPPS="86197" DESCRIPTION="Yet another gui for mplayer." HOMEPAGE="http://www.kde-apps.org/content/show.php?content=${MY_KDEAPPS}" SRC_URI="http://wpage.unina.it/aorefice/xt7player_dist/${PN}-src-${PV}.tar.gz" IUSE="" LICENSE="GPL-2" SLOT="0" #RESTRICT="fetch" KEYWORDS="~amd64 ~x86" RDEPEND=">=media-video/mplayer-1.0_rc2 >=dev-util/gambas-2.6 media-sound/audiotag x11-misc/xbindkeys" DEPEND="${RDEPEND}" pkg_nofetch() { einfo einfo " Download http://wpage.unina.it/aorefice/xt7player_dist/${P}.tar.gz" einfo " and put the file ${P}.tar.gz from the directory autotools into your" einfo " /usr/portage/distfiles/." einfo } src_unpack() { unpack ${A} cd "${S}" } src_install() { emake DESTDIR="${D}" install || die "emake install failed." dodoc ChangeLog README #Create and install .desktop file: echo "[Desktop Entry]" >Xt7-Player/Xt7-Player.desktop echo "Encoding=UTF-8" >>Xt7-Player/Xt7-Player.desktop echo "Name=Xt7-Player" >>Xt7-Player/Xt7-Player.desktop echo "Comment=Yet another gui for mplayer" >>Xt7-Player/Xt7-Player.desktop echo "Exec=/usr/bin/Xt7-Player.gambas" >>Xt7-Player/Xt7-Player.desktop echo "Icon=/usr/share/pixmaps/Xt7-Player.png" >>Xt7-Player/Xt7-Player.desktop echo "Terminal=false" >>Xt7-Player/Xt7-Player.desktop echo "Type=Application" >>Xt7-Player/Xt7-Player.desktop echo "StartupNotify=true" >>Xt7-Player/Xt7-Player.desktop echo "Categories=Application;AudioVideo;Audio;Video;Player;" >>Xt7-Player/Xt7-Player.desktop echo "MimeType=application/ogg;application/x-ogg;application/sdp;application/smil;application/x-smil;application/streamingmedia;application/x-streamingmedia;application/vnd.rn-realmedia;application/vnd.rn-realmedia-vbr;audio/aac;audio/x-aac;audio/m4a;audio/x-m4a;audio/mp1;audio/x-mp1;audio/mp2;audio/x-mp2;audio/mp3;audio/x-mp3;audio/mpeg;audio/x-mpeg;audio/mpegurl;audio/x-mpegurl;audio/mpg;audio/x-mpg;audio/rn-mpeg;audio/scpls;audio/x-scpls;audio/vnd.rn-realaudio;audio/wav;audio/x-pn-windows-pcm;audio/x-realaudio;audio/x-pn-realaudio;audio/x-ms-wma;audio/x-pls;audio/x-wav;video/mpeg;video/x-mpeg;video/x-mpeg2;video/msvideo;video/x-msvideo;video/quicktime;video/vnd.rn-realvideo;video/x-ms-afs;video/x-ms-asf;video/x-ms-wmv;video/x-ms-wmx;video/x-ms-wvxvideo;video/x-avi;video/x-fli;video/x-theora;video/x-matroska;" >>Xt7-Player/Xt7-Player.desktop dodir /usr/share/applications insinto /usr/share/applications doins Xt7-Player/Xt7-Player.desktop # #Create and install pixmap file: cp Xt7-Player/Xt7-player.png Xt7-Player/Xt7-Player.png dodir /usr/share/pixmaps insinto /usr/share/pixmaps doins Xt7-Player/Xt7-Player.png # }