diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-04-29 02:20:46 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-04-29 02:20:46 +0000 |
commit | 9a2aea9170f5c031275455e3184ac7f3a67e70c3 (patch) | |
tree | 4fe553074c490dc29c53b385d19ae27d82f75105 | |
parent | Cleaning (diff) | |
download | gentoo-2-9a2aea9170f5c031275455e3184ac7f3a67e70c3.tar.gz gentoo-2-9a2aea9170f5c031275455e3184ac7f3a67e70c3.tar.bz2 gentoo-2-9a2aea9170f5c031275455e3184ac7f3a67e70c3.zip |
install desktop entries #90361
(Portage version: 2.0.51.20-r5)
-rw-r--r-- | games-fps/quake2-icculus/files/quake2.xpm | 37 | ||||
-rw-r--r-- | games-fps/quake2-icculus/quake2-icculus-0.16.1.ebuild | 8 |
2 files changed, 44 insertions, 1 deletions
diff --git a/games-fps/quake2-icculus/files/quake2.xpm b/games-fps/quake2-icculus/files/quake2.xpm new file mode 100644 index 000000000000..bbbcbb8f064f --- /dev/null +++ b/games-fps/quake2-icculus/files/quake2.xpm @@ -0,0 +1,37 @@ +/* XPM */ +static char * quake2_xpm[] = { +"32 32 2 1", +" c None", +". c #000000", +" ", +" .. .. ", +" .. .. ", +" .. .. ", +" .. .. ", +" .. .. ", +" .. .. ", +" .. .. ", +" .. .. ", +" .. .. ", +" .. .. ", +" .. .. ", +" .. .. ", +" .. .. ", +" ... ... ", +" ... ........ ... ", +" ... ...... ... ", +" .... .. .. .... ", +" .... .. .. .... ", +" ........ ........ ", +" ................ ", +" .............. ", +" .......... ", +" ...... ", +" .. .. ", +" .. .. ", +" .. .. ", +" .. .. ", +" .. .. ", +" .. .. ", +" .. .. ", +" .. .. "}; diff --git a/games-fps/quake2-icculus/quake2-icculus-0.16.1.ebuild b/games-fps/quake2-icculus/quake2-icculus-0.16.1.ebuild index 08384ef88d1b..c30236f593b8 100644 --- a/games-fps/quake2-icculus/quake2-icculus-0.16.1.ebuild +++ b/games-fps/quake2-icculus/quake2-icculus-0.16.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-fps/quake2-icculus/quake2-icculus-0.16.1.ebuild,v 1.1 2005/03/11 01:47:50 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-fps/quake2-icculus/quake2-icculus-0.16.1.ebuild,v 1.2 2005/04/29 02:20:46 vapier Exp $ inherit eutils games @@ -130,6 +130,9 @@ src_install() { && dogamesbin "${D}/${q2dir}"/sdlquake2 \ && rm "${D}/${q2dir}"/sdlquake2 + doicon "${FILESDIR}"/quake2.xpm + make_desktop_entry quake2 Quake2 quake2.xpm + # q2max files if ! use noqmax ; then dodir "${q2maxdir}" @@ -143,7 +146,10 @@ src_install() { insinto "${q2maxdir}"/baseq2 doins "${DISTDIR}"/maxpak.pak + + make_desktop_entry quake2-qmax Quake2-qmax quake2.xpm fi + prepgamesdirs } |