diff options
author | Justin Lecher <jlec@gentoo.org> | 2011-05-20 12:11:37 +0000 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2011-05-20 12:11:37 +0000 |
commit | a599cf664858e435396cb3c7c02a778c7bd3c19c (patch) | |
tree | 4544d651de25535e13c3aad190b3454fefbfecbd /net-p2p | |
parent | Version bump to the latest. (diff) | |
download | gentoo-2-a599cf664858e435396cb3c7c02a778c7bd3c19c.tar.gz gentoo-2-a599cf664858e435396cb3c7c02a778c7bd3c19c.tar.bz2 gentoo-2-a599cf664858e435396cb3c7c02a778c7bd3c19c.zip |
Default to largefile support, #358279
(Portage version: 2.2.0_alpha34/cvs/Linux x86_64)
Diffstat (limited to 'net-p2p')
-rw-r--r-- | net-p2p/mktorrent/ChangeLog | 8 | ||||
-rw-r--r-- | net-p2p/mktorrent/metadata.xml | 3 | ||||
-rw-r--r-- | net-p2p/mktorrent/mktorrent-1.0.ebuild | 8 |
3 files changed, 10 insertions, 9 deletions
diff --git a/net-p2p/mktorrent/ChangeLog b/net-p2p/mktorrent/ChangeLog index 9f484063477c..1ee4368b15dd 100644 --- a/net-p2p/mktorrent/ChangeLog +++ b/net-p2p/mktorrent/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-p2p/mktorrent -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-p2p/mktorrent/ChangeLog,v 1.10 2010/10/10 18:44:23 fauli Exp $ +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-p2p/mktorrent/ChangeLog,v 1.11 2011/05/20 12:11:37 jlec Exp $ + + 20 May 2011; Justin Lecher <jlec@gentoo.org> mktorrent-1.0.ebuild, + metadata.xml: + Default to largefile support, #358279 10 Oct 2010; Christian Faulhammer <fauli@gentoo.org> mktorrent-1.0.ebuild: stable x86, bug 339937 diff --git a/net-p2p/mktorrent/metadata.xml b/net-p2p/mktorrent/metadata.xml index 13c9d77da193..aa0f3664825f 100644 --- a/net-p2p/mktorrent/metadata.xml +++ b/net-p2p/mktorrent/metadata.xml @@ -2,7 +2,4 @@ <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> <pkgmetadata> <herd>net-p2p</herd> -<use> - <flag name='largefile'>Enable largefile support on 32 bit systems</flag> -</use> </pkgmetadata> diff --git a/net-p2p/mktorrent/mktorrent-1.0.ebuild b/net-p2p/mktorrent/mktorrent-1.0.ebuild index f9403b72468a..2e1070a2a7e7 100644 --- a/net-p2p/mktorrent/mktorrent-1.0.ebuild +++ b/net-p2p/mktorrent/mktorrent-1.0.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2010 Gentoo Foundation +# Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-p2p/mktorrent/mktorrent-1.0.ebuild,v 1.5 2010/10/10 18:44:23 fauli Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-p2p/mktorrent/mktorrent-1.0.ebuild,v 1.6 2011/05/20 12:11:37 jlec Exp $ EAPI=1 inherit toolchain-funcs @@ -12,7 +12,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="amd64 x86" -IUSE="threads +largefile +ssl debug" +IUSE="threads +ssl debug" RDEPEND="ssl? ( dev-libs/openssl )" DEPEND="${RDEPEND}" @@ -20,8 +20,8 @@ DEPEND="${RDEPEND}" src_compile() { tc-export CC MAKEPARAM="USE_LONG_OPTIONS=1" + MAKEPARAM="${MAKEPARAM} USE_LARGE_FILES=1" use debug && MAKEPARAM="${MAKEPARAM} DEBUG=1" - use largefile && MAKEPARAM="${MAKEPARAM} USE_LARGE_FILES=1" use ssl && MAKEPARAM="${MAKEPARAM} USE_OPENSSL=1" use threads && MAKEPARAM="${MAKEPARAM} USE_PTHREADS=1" |