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/createtorrent/createtorrent-1.1.4.ebuild | |
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/createtorrent/createtorrent-1.1.4.ebuild')
-rw-r--r-- | net-p2p/createtorrent/createtorrent-1.1.4.ebuild | 29 |
1 files changed, 29 insertions, 0 deletions
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 +} |