diff options
author | Peter Volkov <pva@gentoo.org> | 2008-06-05 06:15:03 +0000 |
---|---|---|
committer | Peter Volkov <pva@gentoo.org> | 2008-06-05 06:15:03 +0000 |
commit | 374289d87b0c82bec4e2b92667451cd1acca6296 (patch) | |
tree | c4adedc957166ccce4177662871ca357e16227d4 /net-p2p | |
parent | Stable on amd64 wrt bug #224015 (diff) | |
download | gentoo-2-374289d87b0c82bec4e2b92667451cd1acca6296.tar.gz gentoo-2-374289d87b0c82bec4e2b92667451cd1acca6296.tar.bz2 gentoo-2-374289d87b0c82bec4e2b92667451cd1acca6296.zip |
Version bump, as reported by me :), bug #224775.
(Portage version: 2.1.4.4)
Diffstat (limited to 'net-p2p')
-rw-r--r-- | net-p2p/createtorrent/ChangeLog | 9 | ||||
-rw-r--r-- | net-p2p/createtorrent/createtorrent-1.1.4.ebuild | 29 |
2 files changed, 36 insertions, 2 deletions
diff --git a/net-p2p/createtorrent/ChangeLog b/net-p2p/createtorrent/ChangeLog index 08456b4f9dbd..2bd722ec1448 100644 --- a/net-p2p/createtorrent/ChangeLog +++ b/net-p2p/createtorrent/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-p2p/createtorrent -# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-p2p/createtorrent/ChangeLog,v 1.4 2007/04/13 19:16:06 drac Exp $ +# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-p2p/createtorrent/ChangeLog,v 1.5 2008/06/05 06:15:03 pva Exp $ + +*createtorrent-1.1.4 (05 Jun 2008) + + 05 Jun 2008; Peter Volkov <pva@gentoo.org> +createtorrent-1.1.4.ebuild: + Version bump, as reported by me :), bug #224775. *createtorrent-1.1.3-r1 (13 Apr 2007) diff --git a/net-p2p/createtorrent/createtorrent-1.1.4.ebuild b/net-p2p/createtorrent/createtorrent-1.1.4.ebuild new file mode 100644 index 000000000000..c744fb03ebc2 --- /dev/null +++ b/net-p2p/createtorrent/createtorrent-1.1.4.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-p2p/createtorrent/createtorrent-1.1.4.ebuild,v 1.1 2008/06/05 06:15:03 pva Exp $ + +inherit autotools eutils + +DESCRIPTION="Create BitTorrent files easily" +HOMEPAGE="http://www.createtorrent.com/" +SRC_URI="http://www.createtorrent.com/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc64 ~x86" +IUSE="" + +RDEPEND="dev-libs/openssl" +DEPEND="${RDEPEND}" + +src_unpack() { + unpack ${A} + cd "${S}" + sed -i "s:[[]ssl[]]:[crypto]:" configure.in || die "sed failed..." + eautoreconf +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed." + dodoc AUTHORS ChangeLog NEWS README +} |