diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2009-05-05 11:51:23 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2009-05-05 11:51:23 +0000 |
commit | 9b0012e833385218bf23d2c69a021905e8be32c0 (patch) | |
tree | 4edcaa70a249d80fb79b748ec064ec6d2a68dba0 /net-p2p | |
parent | Add live ebuilds for trunk and >=2.0 branches (diff) | |
download | gentoo-2-9b0012e833385218bf23d2c69a021905e8be32c0.tar.gz gentoo-2-9b0012e833385218bf23d2c69a021905e8be32c0.tar.bz2 gentoo-2-9b0012e833385218bf23d2c69a021905e8be32c0.zip |
Version bump.
(Portage version: 2.1.6.13/cvs/Linux x86_64)
Diffstat (limited to 'net-p2p')
-rw-r--r-- | net-p2p/transmission/ChangeLog | 8 | ||||
-rw-r--r-- | net-p2p/transmission/transmission-1.60.ebuild | 84 |
2 files changed, 91 insertions, 1 deletions
diff --git a/net-p2p/transmission/ChangeLog b/net-p2p/transmission/ChangeLog index fb7f37d1fd87..0b41eb4d20ec 100644 --- a/net-p2p/transmission/ChangeLog +++ b/net-p2p/transmission/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for net-p2p/transmission # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-p2p/transmission/ChangeLog,v 1.76 2009/05/03 18:00:16 maekke Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-p2p/transmission/ChangeLog,v 1.77 2009/05/05 11:51:23 ssuominen Exp $ + +*transmission-1.60 (05 May 2009) + + 05 May 2009; Samuli Suominen <ssuominen@gentoo.org> + +transmission-1.60.ebuild: + Version bump. 03 May 2009; Markus Meier <maekke@gentoo.org> transmission-1.52.ebuild: amd64/x86 stable, bug #268262 diff --git a/net-p2p/transmission/transmission-1.60.ebuild b/net-p2p/transmission/transmission-1.60.ebuild new file mode 100644 index 000000000000..913a41bd56eb --- /dev/null +++ b/net-p2p/transmission/transmission-1.60.ebuild @@ -0,0 +1,84 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-p2p/transmission/transmission-1.60.ebuild,v 1.1 2009/05/05 11:51:23 ssuominen Exp $ + +EAPI=2 + +inherit autotools fdo-mime gnome2-utils qt4 + +DESCRIPTION="A Fast, Easy and Free BitTorrent client" +HOMEPAGE="http://www.transmissionbt.com" +SRC_URI="http://download.${PN}bt.com/${PN}/files/${P}.tar.bz2" + +LICENSE="MIT GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86 ~x86-fbsd" +IUSE="gtk libnotify qt4" + +RDEPEND=">=dev-libs/openssl-0.9.4 + || ( >=net-misc/curl-7.16.3[ssl] >=net-misc/curl-7.16.3[gnutls] ) + gtk? ( >=dev-libs/glib-2.15.5:2 + >=x11-libs/gtk+-2.6:2 + >=dev-libs/dbus-glib-0.70 + libnotify? ( >=x11-libs/libnotify-0.4.3 ) ) + qt4? ( x11-libs/qt-gui:4 )" +DEPEND="${RDEPEND} + sys-devel/gettext + dev-util/intltool + dev-util/pkgconfig + sys-apps/sed" + +src_prepare() { + sed -i -e 's:-g -O3 -funroll-loops::g' configure.ac || die "sed failed" + eautoreconf +} + +src_configure() { + local myconf="--disable-dependency-tracking --with-wx-config=no" + + econf \ + $(use_enable gtk) \ + $(use_enable libnotify) \ + ${myconf} + + if use qt4; then + cd qt + eqmake4 qtr.pro + fi +} + +src_compile() { + emake || die "emake failed" + + if use qt4; then + cd qt + emake || die "emake failed" + fi +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed" + + dodoc AUTHORS NEWS + rm -f "${D}"/usr/share/${PN}/web/LICENSE + doinitd "${FILESDIR}"/transmission-daemon + + if use qt4; then + cd qt + emake INSTALL_ROOT="${D}/usr" install || die "emake install failed" + fi +} + +pkg_preinst() { + gnome2_icon_savelist +} + +pkg_postinst() { + fdo-mime_desktop_database_update + gnome2_icon_cache_update +} + +pkg_postrm() { + fdo-mime_desktop_database_update + gnome2_icon_cache_update +} |