diff options
author | Matsuu Takuto <matsuu@gentoo.org> | 2005-02-28 14:46:44 +0000 |
---|---|---|
committer | Matsuu Takuto <matsuu@gentoo.org> | 2005-02-28 14:46:44 +0000 |
commit | 2e6b64ce76475a4bcbc6bfe25351f3b3694a42b3 (patch) | |
tree | 3c6d3717fb6f568def39ce5d07daf570c8287b20 /net-misc/stone | |
parent | Add optional support for libtheora. (diff) | |
download | historical-2e6b64ce76475a4bcbc6bfe25351f3b3694a42b3.tar.gz historical-2e6b64ce76475a4bcbc6bfe25351f3b3694a42b3.tar.bz2 historical-2e6b64ce76475a4bcbc6bfe25351f3b3694a42b3.zip |
Version bumped.
Package-Manager: portage-2.0.51-r15
Diffstat (limited to 'net-misc/stone')
-rw-r--r-- | net-misc/stone/ChangeLog | 7 | ||||
-rw-r--r-- | net-misc/stone/Manifest | 4 | ||||
-rw-r--r-- | net-misc/stone/files/digest-stone-2.2e | 1 | ||||
-rw-r--r-- | net-misc/stone/stone-2.2e.ebuild | 34 |
4 files changed, 44 insertions, 2 deletions
diff --git a/net-misc/stone/ChangeLog b/net-misc/stone/ChangeLog index 277c59f66b20..b2302e260d33 100644 --- a/net-misc/stone/ChangeLog +++ b/net-misc/stone/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-misc/stone # Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/stone/ChangeLog,v 1.9 2005/01/01 02:19:05 matsuu Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/stone/ChangeLog,v 1.10 2005/02/28 14:46:44 matsuu Exp $ + +*stone-2.2e (28 Feb 2005) + + 28 Feb 2005; MATSUU Takuto <matsuu@gentoo.org> +stone-2.2e.ebuild: + Version bumped. *stone-2.2d (01 Jan 2005) diff --git a/net-misc/stone/Manifest b/net-misc/stone/Manifest index 3944955aa5c3..27f3f26cf4d9 100644 --- a/net-misc/stone/Manifest +++ b/net-misc/stone/Manifest @@ -1,6 +1,8 @@ MD5 9d821a773bf23bf733bfe728987b2e71 stone-2.2c.ebuild 709 +MD5 e5f598517f48ddd11570b9e7a4403a7a stone-2.2e.ebuild 711 MD5 873e5bee4394536a1acd23fe5c70408e stone-2.2d.ebuild 711 -MD5 0c0010318cf4cf1edd0e54bd0e6d6e56 ChangeLog 1228 +MD5 4a078377bc4c4ef47f2b1c6e831816f4 ChangeLog 1344 MD5 985804fd116a26bf92914f08a3549691 metadata.xml 422 MD5 1464957c569c3fb487b56365f48caf58 files/digest-stone-2.2c 61 MD5 c86c66adadb3d8c866a85f8be27b405c files/digest-stone-2.2d 61 +MD5 9e4794be797737bafee282d8eebe5cd3 files/digest-stone-2.2e 61 diff --git a/net-misc/stone/files/digest-stone-2.2e b/net-misc/stone/files/digest-stone-2.2e new file mode 100644 index 000000000000..b64dbeb3a5b8 --- /dev/null +++ b/net-misc/stone/files/digest-stone-2.2e @@ -0,0 +1 @@ +MD5 d99d56b105c45df928582df7220fed91 stone-2.2e.tar.gz 71977 diff --git a/net-misc/stone/stone-2.2e.ebuild b/net-misc/stone/stone-2.2e.ebuild new file mode 100644 index 000000000000..0ca4bbb0ee05 --- /dev/null +++ b/net-misc/stone/stone-2.2e.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/stone/stone-2.2e.ebuild,v 1.1 2005/02/28 14:46:44 matsuu Exp $ + +DESCRIPTION="A simple TCP/IP packet repeater" +HOMEPAGE="http://www.gcd.org/sengoku/stone/" +SRC_URI="http://www.gcd.org/sengoku/stone/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86 ~amd64 ~ppc ~sparc" +IUSE="ssl" + +DEPEND="virtual/libc + ssl? ( dev-libs/openssl )" + +src_compile() { + if use ssl ; then + emake \ + CFLAGS="${CFLAGS}" \ + SSL=/usr \ + linux-ssl || die + else + emake \ + CFLAGS="${CFLAGS}" \ + linux || die + fi +} + +src_install() { + dobin stone + doman stone.1 + dodoc README* +} |