summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSaleem Abdulrasool <compnerd@gentoo.org>2007-12-07 04:28:15 +0000
committerSaleem Abdulrasool <compnerd@gentoo.org>2007-12-07 04:28:15 +0000
commitffe5de7f8adfd1d5ef5ef87ce1f1924468f16af4 (patch)
tree7dcb4b1d338e44644db4e0f3912722c7072d6c93 /net-p2p/transmission
parentFix .desktop file to pass validation. Clean up ebuild & fix quoting. (diff)
downloadgentoo-2-ffe5de7f8adfd1d5ef5ef87ce1f1924468f16af4.tar.gz
gentoo-2-ffe5de7f8adfd1d5ef5ef87ce1f1924468f16af4.tar.bz2
gentoo-2-ffe5de7f8adfd1d5ef5ef87ce1f1924468f16af4.zip
version bump from upstream
(Portage version: 2.1.4_rc4)
Diffstat (limited to 'net-p2p/transmission')
-rw-r--r--net-p2p/transmission/ChangeLog8
-rw-r--r--net-p2p/transmission/files/digest-transmission-0.943
-rw-r--r--net-p2p/transmission/transmission-0.94.ebuild30
3 files changed, 40 insertions, 1 deletions
diff --git a/net-p2p/transmission/ChangeLog b/net-p2p/transmission/ChangeLog
index 596ec3352ec9..b8a750beb8dd 100644
--- a/net-p2p/transmission/ChangeLog
+++ b/net-p2p/transmission/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for net-p2p/transmission
# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-p2p/transmission/ChangeLog,v 1.40 2007/11/22 22:06:48 compnerd Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-p2p/transmission/ChangeLog,v 1.41 2007/12/07 04:28:15 compnerd Exp $
+
+*transmission-0.94 (07 Dec 2007)
+
+ 07 Dec 2007; Saleem Abdulrasool <compnerd@gentoo.org>
+ +transmission-0.94.ebuild:
+ Version bump from upstream (bug #200728)
*transmission-0.93 (22 Nov 2007)
diff --git a/net-p2p/transmission/files/digest-transmission-0.94 b/net-p2p/transmission/files/digest-transmission-0.94
new file mode 100644
index 000000000000..2b6a9ec90a55
--- /dev/null
+++ b/net-p2p/transmission/files/digest-transmission-0.94
@@ -0,0 +1,3 @@
+MD5 a92aeddeda3cec35fab32eca65c89f9a transmission-0.94.tar.bz2 2717655
+RMD160 935ba0251c74e036a6e31b9c7b275c171d8ebd2d transmission-0.94.tar.bz2 2717655
+SHA256 41dc11770ecdcd12a0571282d8d3db1add658952b908a7290462799208413b9b transmission-0.94.tar.bz2 2717655
diff --git a/net-p2p/transmission/transmission-0.94.ebuild b/net-p2p/transmission/transmission-0.94.ebuild
new file mode 100644
index 000000000000..ae56a15f7838
--- /dev/null
+++ b/net-p2p/transmission/transmission-0.94.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2007 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/net-p2p/transmission/transmission-0.94.ebuild,v 1.1 2007/12/07 04:28:15 compnerd Exp $
+
+DESCRIPTION="Simple BitTorrent client"
+HOMEPAGE="http://transmission.m0k.org/"
+SRC_URI="http://download.m0k.org/transmission/files/${P}.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 )"
+
+src_compile() {
+ econf $(use_with gtk) --without-wx || die "configure failed"
+ emake || die "build failed"
+}
+
+src_install() {
+ make DESTDIR="${D}" install || die "install failed"
+ dodoc AUTHORS NEWS
+}