diff options
author | Mike Frysinger <vapier@gentoo.org> | 2003-07-13 03:13:41 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2003-07-13 03:13:41 +0000 |
commit | f0822b73a480d8e0a89ee7cd95a359df26422346 (patch) | |
tree | fb08cb61ced61dde85bc205db698dd65c8de59ea /dev-games/libggz/libggz-0.0.7.ebuild | |
parent | add skk-jisyo-cdb-200307.ebuild(update) (diff) | |
download | gentoo-2-f0822b73a480d8e0a89ee7cd95a359df26422346.tar.gz gentoo-2-f0822b73a480d8e0a89ee7cd95a359df26422346.tar.bz2 gentoo-2-f0822b73a480d8e0a89ee7cd95a359df26422346.zip |
welcome to dev-games
Diffstat (limited to 'dev-games/libggz/libggz-0.0.7.ebuild')
-rw-r--r-- | dev-games/libggz/libggz-0.0.7.ebuild | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/dev-games/libggz/libggz-0.0.7.ebuild b/dev-games/libggz/libggz-0.0.7.ebuild new file mode 100644 index 000000000000..f0b599a43815 --- /dev/null +++ b/dev-games/libggz/libggz-0.0.7.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-games/libggz/libggz-0.0.7.ebuild,v 1.1 2003/07/13 03:13:40 vapier Exp $ + +DESCRIPTION="The GGZ library, used by GGZ Gameing Zone" +SRC_URI="mirror://sourceforge/ggz/${P}.tar.gz" +HOMEPAGE="http://ggz.sourceforge.net/" + +SLOT="0" +LICENSE="LGPL-2.1" +KEYWORDS="~x86 ~sparc" +IUSE="crypt ssl" + +DEPEND="virtual/glibc + crypt? ( >=dev-libs/libgcrypt-1.1.8 ) + ssl? ( dev-libs/openssl )" + +src_compile() { + local myconf="" + use ssl && myconf="--with-tls=OpenSSL" + econf \ + `use_with gcrypt` \ + ${myconf} \ + || die + emake || die +} + +src_install() { + make DESTDIR=${D} install || die + dodoc AUTHORS COPYING ChangeLog NEWS Quick* README* +} |