Note: Due to technical difficulties, the Archives are currently not up to date.
GMANE provides an alternative service for most mailing lists. c.f. bug 424647
List Archive: gentoo-commits
armin76 09/04/08 09:32:11
Modified: ChangeLog
Added: qbittorrent-1.3.3.ebuild
Log:
Version bump
(Portage version: 2.1.6.7/cvs/Linux ia64)
Revision Changes Path
1.55 net-p2p/qbittorrent/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-p2p/qbittorrent/ChangeLog?rev=1.55&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-p2p/qbittorrent/ChangeLog?rev=1.55&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-p2p/qbittorrent/ChangeLog?r1=1.54&r2=1.55
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-p2p/qbittorrent/ChangeLog,v
retrieving revision 1.54
retrieving revision 1.55
diff -u -r1.54 -r1.55
--- ChangeLog 9 Mar 2009 13:06:48 -0000 1.54
+++ ChangeLog 8 Apr 2009 09:32:11 -0000 1.55
@@ -1,6 +1,11 @@
# ChangeLog for net-p2p/qbittorrent
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-p2p/qbittorrent/ChangeLog,v 1.54 2009/03/09 13:06:48 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-p2p/qbittorrent/ChangeLog,v 1.55 2009/04/08 09:32:11 armin76 Exp $
+
+*qbittorrent-1.3.3 (08 Apr 2009)
+
+ 08 Apr 2009; Raúl Porcel <armin76@g.o> +qbittorrent-1.3.3.ebuild:
+ Version bump
*qbittorrent-1.3.2 (09 Mar 2009)
1.1 net-p2p/qbittorrent/qbittorrent-1.3.3.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-p2p/qbittorrent/qbittorrent-1.3.3.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-p2p/qbittorrent/qbittorrent-1.3.3.ebuild?rev=1.1&content-type=text/plain
Index: qbittorrent-1.3.3.ebuild
===================================================================
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-p2p/qbittorrent/qbittorrent-1.3.3.ebuild,v 1.1 2009/04/08 09:32:11 armin76 Exp $
EAPI="1"
inherit eutils qt4 multilib
MY_P="${P/_/}"
DESCRIPTION="BitTorrent client in C++ and Qt."
HOMEPAGE="http://www.qbittorrent.org/"
SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
S="${WORKDIR}/${MY_P}"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
# boost version so that we always have thread support
DEPEND="|| ( x11-libs/qt-gui:4 =x11-libs/qt-4.3* )
>=net-libs/rb_libtorrent-0.14.1
>=dev-libs/boost-1.34.1
net-misc/curl
dev-cpp/commoncpp2"
RDEPEND="${DEPEND}
>=dev-lang/python-2.3"
src_unpack() {
unpack ${A}
cd "${S}"
# Respect LDFLAGS
sed -i -e 's/-Wl,--as-needed/$(LDFLAGS)/g' src/src.pro
}
src_compile() {
# econf fails, since this uses qconf
./configure --prefix=/usr --qtdir=/usr \
--with-libtorrent-inc=/usr/include \
--with-libtorrent-lib=/usr/$(get_libdir) \
|| die "configure failed"
emake || die "emake failed"
}
src_install() {
emake INSTALL_ROOT="${D}" install || die "emake install failed"
dodoc AUTHORS Changelog NEWS README TODO
}
|
|