dilfridge 15/05/02 15:38:04 Modified: ChangeLog Added: mktorrent-1.0-r1.ebuild Log: Port to EAPI=5 (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 84AD142F)
Revision Changes Path 1.12 net-p2p/mktorrent/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/mktorrent/ChangeLog?rev=1.12&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/mktorrent/ChangeLog?rev=1.12&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/mktorrent/ChangeLog?r1=1.11&r2=1.12 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/net-p2p/mktorrent/ChangeLog,v retrieving revision 1.11 retrieving revision 1.12 diff -u -r1.11 -r1.12 --- ChangeLog 20 May 2011 12:11:37 -0000 1.11 +++ ChangeLog 2 May 2015 15:38:04 -0000 1.12 @@ -1,6 +1,12 @@ # ChangeLog for net-p2p/mktorrent -# 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 $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-p2p/mktorrent/ChangeLog,v 1.12 2015/05/02 15:38:04 dilfridge Exp $ + +*mktorrent-1.0-r1 (02 May 2015) + + 02 May 2015; Andreas K. Huettel <[email protected]> + +mktorrent-1.0-r1.ebuild: + Port to EAPI=5 20 May 2011; Justin Lecher <[email protected]> mktorrent-1.0.ebuild, metadata.xml: 1.1 net-p2p/mktorrent/mktorrent-1.0-r1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/mktorrent/mktorrent-1.0-r1.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/mktorrent/mktorrent-1.0-r1.ebuild?rev=1.1&content-type=text/plain Index: mktorrent-1.0-r1.ebuild =================================================================== # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/net-p2p/mktorrent/mktorrent-1.0-r1.ebuild,v 1.1 2015/05/02 15:38:04 dilfridge Exp $ EAPI=5 inherit toolchain-funcs DESCRIPTION="Simple command line utility to create BitTorrent metainfo files" HOMEPAGE="http://mktorrent.sourceforge.net" SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="threads +ssl debug" RDEPEND="ssl? ( dev-libs/openssl )" 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 ssl && MAKEPARAM="${MAKEPARAM} USE_OPENSSL=1" use threads && MAKEPARAM="${MAKEPARAM} USE_PTHREADS=1" emake ${MAKEPARAM} } src_install() { dobin ${PN} dodoc README }
