diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2005-03-14 05:33:21 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2005-03-14 05:33:21 +0000 |
commit | 52691e092dbd671bd24390bbd3b55d5a2a1ab94d (patch) | |
tree | 0be277d9450ca7cd2f8b8422fd6eeb3133dbd303 /games-action/chromium | |
parent | add desktop entry for bug #85021; tidy (diff) | |
download | historical-52691e092dbd671bd24390bbd3b55d5a2a1ab94d.tar.gz historical-52691e092dbd671bd24390bbd3b55d5a2a1ab94d.tar.bz2 historical-52691e092dbd671bd24390bbd3b55d5a2a1ab94d.zip |
add desktop entry support with patch from Josh Nichols (bug #85149)
Package-Manager: portage-2.0.51.19
Diffstat (limited to 'games-action/chromium')
-rw-r--r-- | games-action/chromium/ChangeLog | 8 | ||||
-rw-r--r-- | games-action/chromium/Manifest | 4 | ||||
-rw-r--r-- | games-action/chromium/chromium-0.9.12-r5.ebuild | 11 |
3 files changed, 15 insertions, 8 deletions
diff --git a/games-action/chromium/ChangeLog b/games-action/chromium/ChangeLog index 915f1529fea3..9f8d462b24d9 100644 --- a/games-action/chromium/ChangeLog +++ b/games-action/chromium/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for games-action/chromium -# Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-action/chromium/ChangeLog,v 1.12 2004/12/30 04:45:22 mr_bones_ Exp $ +# Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-action/chromium/ChangeLog,v 1.13 2005/03/14 05:33:21 mr_bones_ Exp $ + + 14 Mar 2005; Michael Sterrett <mr_bones_@gentoo.org> + chromium-0.9.12-r5.ebuild: + add desktop entry support with patch from Josh Nichols (bug #85149) 29 Dec 2004; Michael Sterrett <mr_bones_@gentoo.org> files/0.9.12-gcc3-gentoo.patch, chromium-0.9.12-r5.ebuild: diff --git a/games-action/chromium/Manifest b/games-action/chromium/Manifest index b172573ed3d0..0530fd3208e4 100644 --- a/games-action/chromium/Manifest +++ b/games-action/chromium/Manifest @@ -1,5 +1,5 @@ -MD5 08e824e08a89d8b7ff3c882be572889d ChangeLog 3176 -MD5 61c5ae1e23ce73bda832ccb9f19bd68e chromium-0.9.12-r5.ebuild 2198 +MD5 28ecf1e681726d5d66cc226ecfd8e4d8 ChangeLog 3331 +MD5 27a253bd00f56ee6f91f1ce4457f2186 chromium-0.9.12-r5.ebuild 2334 MD5 f17b9b8fa07a38914fe1c03268f51678 metadata.xml 158 MD5 8efe8d996573ec81e5357e39c046cdd3 files/digest-chromium-0.9.12-r5 144 MD5 031dc9787ccdcb049081dccf31a4a401 files/0.9.12-qt3.patch 979 diff --git a/games-action/chromium/chromium-0.9.12-r5.ebuild b/games-action/chromium/chromium-0.9.12-r5.ebuild index d1c4c1f96981..858db85c52e8 100644 --- a/games-action/chromium/chromium-0.9.12-r5.ebuild +++ b/games-action/chromium/chromium-0.9.12-r5.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2004 Gentoo Foundation +# Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-action/chromium/chromium-0.9.12-r5.ebuild,v 1.9 2004/12/30 04:45:22 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-action/chromium/chromium-0.9.12-r5.ebuild,v 1.10 2005/03/14 05:33:21 mr_bones_ Exp $ inherit flag-o-matic eutils games @@ -11,8 +11,8 @@ SRC_URI="http://www.reptilelabour.com/software/files/chromium/chromium-src-${PV} LICENSE="Artistic" SLOT="0" -KEYWORDS="x86 ppc amd64 ~sparc" -IUSE="qt sdl oggvorbis" +KEYWORDS="amd64 ppc ~sparc x86" +IUSE="oggvorbis qt sdl" DEPEND="virtual/libc || ( @@ -30,6 +30,7 @@ S="${WORKDIR}/Chromium-0.9" src_unpack() { unpack ${A} cd "${S}" + cp data/png/hero.png "${T}/chromium.png" || die "cp failed" epatch "${FILESDIR}/${PV}-gcc3-gentoo.patch" epatch "${FILESDIR}/${PV}-proper-options.patch" has_version '=x11-libs/qt-3*' && epatch "${FILESDIR}/${PV}-qt3.patch" @@ -74,5 +75,7 @@ src_install() { dogamesbin bin/chromium* || die "dogamesbin failed" dodir "${GAMES_DATADIR}/${PN}" cp -r data "${D}/${GAMES_DATADIR}/${PN}/" || die "cp failed" + doicon "${T}/chromium.png" + make_desktop_entry chromium "Chromium B.S.U" prepgamesdirs } |