diff options
author | Ioannis Aslanidis <deathwing00@gentoo.org> | 2008-03-31 22:11:43 +0000 |
---|---|---|
committer | Ioannis Aslanidis <deathwing00@gentoo.org> | 2008-03-31 22:11:43 +0000 |
commit | bd74ceff07b77fd11913a3d5f0fd0ff930d855d6 (patch) | |
tree | bd42d06b9af339848df40399533c283822801e20 | |
parent | amd64/x86 stable for real (diff) | |
download | gentoo-2-bd74ceff07b77fd11913a3d5f0fd0ff930d855d6.tar.gz gentoo-2-bd74ceff07b77fd11913a3d5f0fd0ff930d855d6.tar.bz2 gentoo-2-bd74ceff07b77fd11913a3d5f0fd0ff930d855d6.zip |
Version bump as requested in bug #215525.
(Portage version: 2.1.4.4)
-rw-r--r-- | net-p2p/transmission/ChangeLog | 8 | ||||
-rw-r--r-- | net-p2p/transmission/transmission-1.1.0.ebuild | 34 |
2 files changed, 41 insertions, 1 deletions
diff --git a/net-p2p/transmission/ChangeLog b/net-p2p/transmission/ChangeLog index 48c39dbef40a..28e99632dca7 100644 --- a/net-p2p/transmission/ChangeLog +++ b/net-p2p/transmission/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for net-p2p/transmission # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-p2p/transmission/ChangeLog,v 1.54 2008/03/15 22:22:04 dertobi123 Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-p2p/transmission/ChangeLog,v 1.55 2008/03/31 22:11:43 deathwing00 Exp $ + +*transmission-1.1.0 (31 Mar 2008) + + 31 Mar 2008; Ioannis Aslanidis <deathwing00@gentoo.org> + +transmission-1.1.0.ebuild: + Version bump as requested in bug #215525. 15 Mar 2008; Tobias Scherbaum <dertobi123@gentoo.org> transmission-1.0.4.ebuild: diff --git a/net-p2p/transmission/transmission-1.1.0.ebuild b/net-p2p/transmission/transmission-1.1.0.ebuild new file mode 100644 index 000000000000..51ac27b88bf1 --- /dev/null +++ b/net-p2p/transmission/transmission-1.1.0.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-p2p/transmission/transmission-1.1.0.ebuild,v 1.1 2008/03/31 22:11:43 deathwing00 Exp $ + +MY_PV="${PV%.*}${PV##*.}" + +DESCRIPTION="Simple BitTorrent client" +HOMEPAGE="http://www.transmissionbt.com/" +SRC_URI="http://download.transmissionbt.com/transmission/files/${PN}-${MY_PV}.tar.bz2" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86 ~x86-fbsd" +IUSE="gtk" + +RDEPEND=">=dev-libs/glib-2.6 + >=dev-libs/openssl-0.9.8 + gtk? ( >=x11-libs/gtk+-2.6 )" +DEPEND="${RDEPEND} + sys-devel/gettext + >=dev-util/pkgconfig-0.19 + gtk? ( >=dev-util/intltool-0.35 )" + +S="${WORKDIR}/${PN}-${MY_PV}" + +src_compile() { + econf $(use_with gtk) --with-wx-config=no || die "configure failed" + emake || die "build failed" +} + +src_install() { + make DESTDIR="${D}" install || die "install failed" + dodoc AUTHORS NEWS +} |