diff options
author | Alfredo Tupone <tupone@gentoo.org> | 2010-01-15 16:15:12 +0000 |
---|---|---|
committer | Alfredo Tupone <tupone@gentoo.org> | 2010-01-15 16:15:12 +0000 |
commit | c9a1233e2a271ace494b10b316cb8a0e55b4f25e (patch) | |
tree | 05f70781ad8138592c92da775cca57eca8eab092 /games-board/ccgo | |
parent | Version bump, wrt security bug #297385 (CVE-2009-4324). (diff) | |
download | gentoo-2-c9a1233e2a271ace494b10b316cb8a0e55b4f25e.tar.gz gentoo-2-c9a1233e2a271ace494b10b316cb8a0e55b4f25e.tar.bz2 gentoo-2-c9a1233e2a271ace494b10b316cb8a0e55b4f25e.zip |
Version bump to 0.3.6.4 Bug #301021
(Portage version: 2.1.6.13/cvs/Linux i686)
Diffstat (limited to 'games-board/ccgo')
-rw-r--r-- | games-board/ccgo/ChangeLog | 9 | ||||
-rw-r--r-- | games-board/ccgo/ccgo-0.3.6.4.ebuild | 33 |
2 files changed, 40 insertions, 2 deletions
diff --git a/games-board/ccgo/ChangeLog b/games-board/ccgo/ChangeLog index 4b30047e415a..b1c10cd34555 100644 --- a/games-board/ccgo/ChangeLog +++ b/games-board/ccgo/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for games-board/ccgo -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-board/ccgo/ChangeLog,v 1.7 2009/03/13 04:40:53 mr_bones_ Exp $ +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-board/ccgo/ChangeLog,v 1.8 2010/01/15 16:15:12 tupone Exp $ + +*ccgo-0.3.6.4 (15 Jan 2010) + + 15 Jan 2010; Tupone Alfredo <tupone@gentoo.org> +ccgo-0.3.6.4.ebuild: + Version bump to 0.3.6.4 Bug #301021 by Petr Pisar 13 Mar 2009; Michael Sterrett <mr_bones_@gentoo.org> ccgo-0.3.6.3.ebuild: stable for x86 diff --git a/games-board/ccgo/ccgo-0.3.6.4.ebuild b/games-board/ccgo/ccgo-0.3.6.4.ebuild new file mode 100644 index 000000000000..3e4700a1d4f5 --- /dev/null +++ b/games-board/ccgo/ccgo-0.3.6.4.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-board/ccgo/ccgo-0.3.6.4.ebuild,v 1.1 2010/01/15 16:15:12 tupone Exp $ + +EAPI=2 +inherit games + +DESCRIPTION="An IGS client written in C++" +HOMEPAGE="http://ccdw.org/~cjj/prog/ccgo/" +SRC_URI="http://ccdw.org/~cjj/prog/ccgo/src/${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="nls" + +RDEPEND=">=dev-cpp/gtkmm-2.4 + >=dev-cpp/gconfmm-2.6 + nls? ( virtual/libintl )" +DEPEND="${RDEPEND} + dev-util/pkgconfig + nls? ( sys-devel/gettext )" + +src_configure() { + egamesconf \ + --datadir="${GAMES_DATADIR_BASE}" \ + $(use_enable nls) +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed" + prepgamesdirs +} |