diff options
author | Sergey Popov <pinkbyte@gentoo.org> | 2013-03-08 21:10:23 +0000 |
---|---|---|
committer | Sergey Popov <pinkbyte@gentoo.org> | 2013-03-08 21:10:23 +0000 |
commit | 313815bf6f33ca49edec34eb9c40e3444b5ce4b2 (patch) | |
tree | 421178349cd80b78a4502742a523be658fbeb379 /net-misc/libteam | |
parent | And some love for mips too. (diff) | |
download | gentoo-2-313815bf6f33ca49edec34eb9c40e3444b5ce4b2.tar.gz gentoo-2-313815bf6f33ca49edec34eb9c40e3444b5ce4b2.tar.bz2 gentoo-2-313815bf6f33ca49edec34eb9c40e3444b5ce4b2.zip |
Version bump, drop old
(Portage version: 2.2.0_alpha163/cvs/Linux x86_64, signed Manifest commit with key 0x1F357D42)
Diffstat (limited to 'net-misc/libteam')
-rw-r--r-- | net-misc/libteam/ChangeLog | 10 | ||||
-rw-r--r-- | net-misc/libteam/libteam-1.0.ebuild (renamed from net-misc/libteam/libteam-0_rc8448186.ebuild) | 30 |
2 files changed, 19 insertions, 21 deletions
diff --git a/net-misc/libteam/ChangeLog b/net-misc/libteam/ChangeLog index b63836ef681b..c71d79a33374 100644 --- a/net-misc/libteam/ChangeLog +++ b/net-misc/libteam/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for net-misc/libteam -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/libteam/ChangeLog,v 1.1 2012/10/22 12:25:33 pinkbyte Exp $ +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/libteam/ChangeLog,v 1.2 2013/03/08 21:10:23 pinkbyte Exp $ + +*libteam-1.0 (08 Mar 2013) + + 08 Mar 2013; Sergey Popov <pinkbyte@gentoo.org> -libteam-0_rc8448186.ebuild, + +libteam-1.0.ebuild: + Version bump, drop old *libteam-0_rc8448186 (22 Oct 2012) diff --git a/net-misc/libteam/libteam-0_rc8448186.ebuild b/net-misc/libteam/libteam-1.0.ebuild index b5b119189bc0..19443258f916 100644 --- a/net-misc/libteam/libteam-0_rc8448186.ebuild +++ b/net-misc/libteam/libteam-1.0.ebuild @@ -1,30 +1,24 @@ -# Copyright 1999-2012 Gentoo Foundation +# Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/libteam/libteam-0_rc8448186.ebuild,v 1.1 2012/10/22 12:25:33 pinkbyte Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/libteam/libteam-1.0.ebuild,v 1.1 2013/03/08 21:10:23 pinkbyte Exp $ -EAPI=4 +EAPI=5 -AUTOTOOLS_AUTORECONF="yes" -AUTOTOOLS_IN_SOURCE_BUILD=1 - -inherit autotools-utils linux-info versionator - -MY_PV="$(get_version_component_range 2-)" -MY_PV="${MY_PV/rc/}" -MY_P="${PN}-${MY_PV}" +AUTOTOOLS_AUTORECONF=1 +inherit autotools-utils linux-info DESCRIPTION="Library and tools set for controlling team network device" HOMEPAGE="https://fedorahosted.org/libteam/" -SRC_URI="http://rion-overlay.googlecode.com/files/jpirko-${MY_P}.tar.gz -> ${MY_P}.tar.gz" +SRC_URI="https://github.com/jpirko/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="debug examples +syslog" +IUSE="debug examples static-libs +syslog" DEPEND="dev-libs/jansson dev-libs/libdaemon - dev-libs/libnl:3[utils] + >=dev-libs/libnl-3.2.19[utils] sys-apps/dbus " RDEPEND="${DEPEND} @@ -34,8 +28,6 @@ CONFIG_CHECK="~NET_TEAM ~NET_TEAM_MODE_ROUNDROBIN ~NET_TEAM_MODE_ACTIVEBACKUP" ERROR_NET_TEAM="NET_TEAM is not enabled in this kernel! Only >=3.3.0 kernel version support in team mode" -S="${WORKDIR}/jpirko-${MY_P}" - DOCS=( HOWTO.BASICS README ) src_prepare() { @@ -56,11 +48,11 @@ src_configure() { src_install() { autotools-utils_src_install - insinto /etc/dbus-1/system.d/ + insinto /etc/dbus-1/system.d doins teamd/dbus/teamd.conf if use examples; then - insinto /etc/"${PN}"/example - doins teamd/example_configs/* + docinto examples + dodoc teamd/example_configs/* fi } |