summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Gianelloni <wolf31o2@gentoo.org>2006-03-24 16:36:05 +0000
committerChris Gianelloni <wolf31o2@gentoo.org>2006-03-24 16:36:05 +0000
commitdf87159e7f3354714f442776b5651a356b02b82b (patch)
tree160cc92c4de8375eb2ece864b79c7f7d1ee41070 /dev-games
parentMark 0.2.17 stable on ia64 (diff)
downloadgentoo-2-df87159e7f3354714f442776b5651a356b02b82b.tar.gz
gentoo-2-df87159e7f3354714f442776b5651a356b02b82b.tar.bz2
gentoo-2-df87159e7f3354714f442776b5651a356b02b82b.zip
Version bumped to 0.0.13 and closing bug #94362.
(Portage version: 2.1_pre6-r6)
Diffstat (limited to 'dev-games')
-rw-r--r--dev-games/libggz/ChangeLog7
-rw-r--r--dev-games/libggz/files/digest-libggz-0.0.133
-rw-r--r--dev-games/libggz/libggz-0.0.13.ebuild34
3 files changed, 43 insertions, 1 deletions
diff --git a/dev-games/libggz/ChangeLog b/dev-games/libggz/ChangeLog
index 2952024282eb..33ef97bcf213 100644
--- a/dev-games/libggz/ChangeLog
+++ b/dev-games/libggz/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for dev-games/libggz
# Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-games/libggz/ChangeLog,v 1.10 2006/03/24 16:32:07 wolf31o2 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-games/libggz/ChangeLog,v 1.11 2006/03/24 16:36:05 wolf31o2 Exp $
+
+*libggz-0.0.13 (24 Mar 2006)
+
+ 24 Mar 2006; Chris Gianelloni <wolf31o2@gentoo.org> +libggz-0.0.13.ebuild:
+ Version bumped to 0.0.13 and closing bug #94362.
24 Mar 2006; Chris Gianelloni <wolf31o2@gentoo.org> libggz-0.0.9.ebuild:
Added ibiblio mirror and closing bug #87288.
diff --git a/dev-games/libggz/files/digest-libggz-0.0.13 b/dev-games/libggz/files/digest-libggz-0.0.13
new file mode 100644
index 000000000000..388a92bcac09
--- /dev/null
+++ b/dev-games/libggz/files/digest-libggz-0.0.13
@@ -0,0 +1,3 @@
+MD5 911ca2b19273f5b7516e5b737bbc884c libggz-0.0.13.tar.gz 441386
+RMD160 5dfdaef6d414e6f4114e91bf1254a3bb9a055d9d libggz-0.0.13.tar.gz 441386
+SHA256 3b57c20681893521c648b411c8d95d09f19b24059c40daac441abbbcf98b6758 libggz-0.0.13.tar.gz 441386
diff --git a/dev-games/libggz/libggz-0.0.13.ebuild b/dev-games/libggz/libggz-0.0.13.ebuild
new file mode 100644
index 000000000000..5caf72f62f3d
--- /dev/null
+++ b/dev-games/libggz/libggz-0.0.13.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2006 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/dev-games/libggz/libggz-0.0.13.ebuild,v 1.1 2006/03/24 16:36:05 wolf31o2 Exp $
+
+DESCRIPTION="The GGZ library, used by GGZ Gaming Zone"
+HOMEPAGE="http://www.ggzgamingzone.org/"
+SRC_URI="http://ftp.belnet.be/packages/ggzgamingzone/ggz/${PV}/${P}.tar.gz
+ http://mirrors.ibiblio.org/pub/mirrors/ggzgamingzone/ggz/${PV}/${P}.tar.gz"
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~sparc ~x86"
+IUSE="crypt ssl"
+
+DEPEND="virtual/libc
+ crypt? ( >=dev-libs/libgcrypt-1.1.8 )
+ ssl? ( dev-libs/openssl )"
+
+src_compile() {
+ local myconf=""
+ use ssl && myconf="--with-tls=OpenSSL"
+ econf \
+ --disable-dependency-tracking \
+ `use_with crypt gcrypt` \
+ ${myconf} \
+ || die
+ emake || die
+}
+
+src_install() {
+ make DESTDIR="${D}" install || die
+ dodoc AUTHORS ChangeLog NEWS Quick* README*
+}
+