diff options
author | 2008-06-05 06:15:03 +0000 | |
---|---|---|
committer | 2008-06-05 06:15:03 +0000 | |
commit | 4a3b1d9d8c3caaa02e448c46a9cb34d132699188 (patch) | |
tree | 86108405f6f0f597e3537521839f6e63b7567a95 /net-p2p/createtorrent/createtorrent-1.1.4.ebuild | |
parent | Stable on amd64 wrt bug #224015 (diff) | |
download | historical-4a3b1d9d8c3caaa02e448c46a9cb34d132699188.tar.gz historical-4a3b1d9d8c3caaa02e448c46a9cb34d132699188.tar.bz2 historical-4a3b1d9d8c3caaa02e448c46a9cb34d132699188.zip |
Version bump, as reported by me :), bug #224775.
Package-Manager: portage-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 +} |