diff options
Diffstat (limited to 'games-kids/gcompris')
-rw-r--r-- | games-kids/gcompris/ChangeLog | 5 | ||||
-rw-r--r-- | games-kids/gcompris/gcompris-4.2.ebuild | 31 |
2 files changed, 20 insertions, 16 deletions
diff --git a/games-kids/gcompris/ChangeLog b/games-kids/gcompris/ChangeLog index db387985d8f2..009d917b0ef5 100644 --- a/games-kids/gcompris/ChangeLog +++ b/games-kids/gcompris/ChangeLog @@ -1,9 +1,12 @@ # ChangeLog for games-kids/gcompris # Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-kids/gcompris/ChangeLog,v 1.4 2003/12/08 16:14:59 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-kids/gcompris/ChangeLog,v 1.5 2003/12/31 17:13:21 vapier Exp $ *gcompris-4.2 (08 Dec 2003) + 31 Dec 2003; Mike Frysinger <vapier@gentoo.org> : + Remove all the games.eclass stuff ... this is too gnome-ified atm. + 08 Dec 2003; Mike Frysinger <vapier@gentoo.org> : Version bump. diff --git a/games-kids/gcompris/gcompris-4.2.ebuild b/games-kids/gcompris/gcompris-4.2.ebuild index 9785737264fb..ddfd60a28566 100644 --- a/games-kids/gcompris/gcompris-4.2.ebuild +++ b/games-kids/gcompris/gcompris-4.2.ebuild @@ -36,13 +36,14 @@ src_compile() { local myconf="" use oggvorbis && myconf="${myconf} --with-ogg=/usr --with-vorbis=/usr --with-ao=/usr" use python && myconf="${myconf} --with-python=`which python`" - egamesconf ${myconf} || die - for f in `grep -Rl /usr/games/share *` ; do - sed -i \ - -e "s:${GAMES_PREFIX}/share/gnome:/usr/share/gnome:g" \ - -e "s:${GAMES_PREFIX}/share:${GAMES_DATADIR}:g" \ - ${f} || die "sed ${f} failed" - done +# egamesconf ${myconf} || die +# for f in `grep -Rl /usr/games/share *` ; do +# sed -i \ +# -e "s:${GAMES_PREFIX}/share/gnome:/usr/share/gnome:g" \ +# -e "s:${GAMES_PREFIX}/share:${GAMES_DATADIR}:g" \ +# ${f} || die "sed ${f} failed" +# done + econf ${myconf} || die emake || die "emake failed" } @@ -50,12 +51,12 @@ src_compile() { src_install() { make install DESTDIR=${D} || die "make install failed" dodoc AUTHORS ChangeLog NEWS README THANKS TODO - mv ${D}/${GAMES_DATADIR}/{locale,gnome,pixmaps} ${D}/usr/share/ - rm -rf ${D}/${GAMES_LIBDIR}/menu - if [ ! `use nls` ] ; then - rm -rf ${D}/usr/share/locale - cd ${D}/${GAMES_DATADIR}/gcompris/boards/sounds - rm -rf `find -type d -maxdepth 1 -mindepth 1 ! -name en` - fi - prepgamesdirs +# mv ${D}/${GAMES_DATADIR}/{locale,gnome,pixmaps} ${D}/usr/share/ +# rm -rf ${D}/${GAMES_LIBDIR}/menu +# if [ ! `use nls` ] ; then +# rm -rf ${D}/usr/share/locale +# cd ${D}/${GAMES_DATADIR}/gcompris/boards/sounds +# rm -rf `find -type d -maxdepth 1 -mindepth 1 ! -name en` +# fi +# prepgamesdirs } |