diff options
author | Alfredo Tupone <tupone@gentoo.org> | 2012-01-31 12:55:26 +0000 |
---|---|---|
committer | Alfredo Tupone <tupone@gentoo.org> | 2012-01-31 12:55:26 +0000 |
commit | 9115baebdcb8ac9e09c21a7f188a2a6a27569c72 (patch) | |
tree | bb26b5e4dc41211025bd61e229b023a98b33b101 /games-puzzle/drod-bin | |
parent | Remove phonon xine backend. (diff) | |
download | gentoo-2-9115baebdcb8ac9e09c21a7f188a2a6a27569c72.tar.gz gentoo-2-9115baebdcb8ac9e09c21a7f188a2a6a27569c72.tar.bz2 gentoo-2-9115baebdcb8ac9e09c21a7f188a2a6a27569c72.zip |
Removing usage of some bundled libraries. Bug #251505
(Portage version: 2.1.10.44/cvs/Linux i686)
Diffstat (limited to 'games-puzzle/drod-bin')
-rw-r--r-- | games-puzzle/drod-bin/ChangeLog | 6 | ||||
-rw-r--r-- | games-puzzle/drod-bin/drod-bin-1.6.6.ebuild | 23 |
2 files changed, 22 insertions, 7 deletions
diff --git a/games-puzzle/drod-bin/ChangeLog b/games-puzzle/drod-bin/ChangeLog index 6ffc8b9c3aa5..1539476f0134 100644 --- a/games-puzzle/drod-bin/ChangeLog +++ b/games-puzzle/drod-bin/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for games-puzzle/drod-bin # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-puzzle/drod-bin/ChangeLog,v 1.13 2012/01/30 14:55:18 tupone Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-puzzle/drod-bin/ChangeLog,v 1.14 2012/01/31 12:55:26 tupone Exp $ + + 31 Jan 2012; Tupone Alfredo <tupone@gentoo.org> drod-bin-1.6.6.ebuild: + Removing usage of some bundled libraries. Bug #251505 by + flameeyes@gentoo.org 30 Jan 2012; Tupone Alfredo <tupone@gentoo.org> drod-bin-1.6.6.ebuild: Adding emul-linux-x86-xlibs depends. diff --git a/games-puzzle/drod-bin/drod-bin-1.6.6.ebuild b/games-puzzle/drod-bin/drod-bin-1.6.6.ebuild index 890463f4c2c3..8a02e32c6132 100644 --- a/games-puzzle/drod-bin/drod-bin-1.6.6.ebuild +++ b/games-puzzle/drod-bin/drod-bin-1.6.6.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-puzzle/drod-bin/drod-bin-1.6.6.ebuild,v 1.8 2012/01/30 14:55:18 tupone Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-puzzle/drod-bin/drod-bin-1.6.6.ebuild,v 1.9 2012/01/31 12:55:26 tupone Exp $ inherit eutils games @@ -15,10 +15,21 @@ IUSE="" RESTRICT="strip" DEPEND="" -RDEPEND="x11-libs/libX11 - amd64? ( app-emulation/emul-linux-x86-xlibs )" - -S=${WORKDIR} +RDEPEND=" + x86? ( + x11-libs/libX11 + media-libs/freetype + media-libs/libsdl + media-libs/sdl-ttf + sys-libs/libstdc++-v3 + ) + amd64? ( + app-emulation/emul-linux-x86-xlibs + app-emulation/emul-linux-x86-sdl + app-emulation/emul-linux-x86-compat + )" + +S="${WORKDIR}" src_unpack() { unpack_makeself @@ -26,7 +37,7 @@ src_unpack() { } src_install() { - ./install.sh -R "${D}" -s "${GDIR}" -al -pn -o -I \ + ./install.sh -R "${D}" -s "${GDIR}" -rl -pn -o -I \ || die "install.sh failed" dodir "${GAMES_BINDIR}" dosym "${GDIR}/drod" "${GAMES_BINDIR}/drod" |