diff options
-rw-r--r-- | net-p2p/transmission/ChangeLog | 7 | ||||
-rw-r--r-- | net-p2p/transmission/transmission-1.91.ebuild | 113 |
2 files changed, 119 insertions, 1 deletions
diff --git a/net-p2p/transmission/ChangeLog b/net-p2p/transmission/ChangeLog index 9bcac08fd5e8..4965cc308602 100644 --- a/net-p2p/transmission/ChangeLog +++ b/net-p2p/transmission/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-p2p/transmission # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-p2p/transmission/ChangeLog,v 1.106 2010/02/14 10:29:01 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-p2p/transmission/ChangeLog,v 1.107 2010/02/22 06:52:23 remi Exp $ + +*transmission-1.91 (22 Feb 2010) + + 22 Feb 2010; Rémi Cardona <remi@gentoo.org> +transmission-1.91.ebuild: + net-p2p/transmission: bump to 1.91 14 Feb 2010; Samuli Suominen <ssuominen@gentoo.org> transmission-1.83.ebuild: diff --git a/net-p2p/transmission/transmission-1.91.ebuild b/net-p2p/transmission/transmission-1.91.ebuild new file mode 100644 index 000000000000..eb56d753c168 --- /dev/null +++ b/net-p2p/transmission/transmission-1.91.ebuild @@ -0,0 +1,113 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-p2p/transmission/transmission-1.91.ebuild,v 1.1 2010/02/22 06:52:23 remi Exp $ + +EAPI=2 +inherit autotools eutils fdo-mime gnome2-utils qt4-r2 + +DESCRIPTION="A Fast, Easy and Free BitTorrent client" +HOMEPAGE="http://www.transmissionbt.com/" +SRC_URI="http://download.transmissionbt.com/${PN}/files/${P}.tar.bz2" + +LICENSE="MIT GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~arm ~ppc ~x86 ~x86-fbsd" +IUSE="gnome gtk libnotify sound qt4" + +RDEPEND=">=dev-libs/libevent-1.4.11 + <dev-libs/libevent-2 + >=dev-libs/openssl-0.9.4 + || ( >=net-misc/curl-7.16.3[openssl] + >=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.12:2 + >=dev-libs/dbus-glib-0.70 + gnome? ( gnome-base/gconf ) + libnotify? ( >=x11-libs/libnotify-0.4.3 ) + sound? ( >=media-libs/libcanberra-0.10 ) ) + qt4? ( x11-libs/qt-gui:4 )" +DEPEND="${RDEPEND} + >=sys-devel/libtool-2.2.6b + sys-devel/gettext + >=dev-util/intltool-0.40 + dev-util/pkgconfig + sys-apps/sed" + +src_prepare() { + sed -i \ + -e 's:-g -O0::g' \ + -e 's:-g -O3::g' \ + -e 's:-ggdb3::g' \ + configure.ac || die + + sed -i \ + -e 's:$${TRANSMISSION_TOP}/third-party/libevent/.libs/libevent.a:-levent:' \ + qt/qtr.pro || die + + eautoreconf +} + +src_configure() { + local myconf="--disable-libnotify --disable-libcanberra --disable-libgconf" + + if use gtk; then + myconf="$(use_enable libnotify) $(use_enable sound libcanberra) + $(use_enable gnome libgconf)" + fi + + # cli and daemon doesn't have external deps + econf \ + --disable-dependency-tracking \ + $(use_enable gtk) \ + --enable-cli \ + --enable-daemon \ + ${myconf} + + if use qt4; then + cd qt + eqmake4 qtr.pro + fi +} + +src_compile() { + emake || die + + if use qt4; then + cd qt + emake || die + fi +} + +src_install() { + emake DESTDIR="${D}" install || die + + dodoc AUTHORS NEWS qt/README.txt + rm -f "${D}"/usr/share/${PN}/web/LICENSE + + # these are likely outdated for 1.83 + newinitd "${FILESDIR}"/${PN}-daemon.initd.2 ${PN}-daemon + newconfd "${FILESDIR}"/${PN}-daemon.confd.1 ${PN}-daemon + + if use qt4; then + cd qt + emake INSTALL_ROOT="${D}/usr" install || die + make_desktop_entry qtr "Transmission Qt BitTorrent Client" ${PN} \ + "Network;FileTransfer;P2P;Qt" + use gtk || doicon qt/icons/transmission.png + 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 +} |