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
williamh 12/06/19 23:52:51
Modified: ChangeLog
Added: kmod-9.ebuild
Log:
version bump
(Portage version: 2.2.0_alpha110/cvs/Linux i686)
Revision Changes Path
1.40 sys-apps/kmod/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/kmod/ChangeLog?rev=1.40&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/kmod/ChangeLog?rev=1.40&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/kmod/ChangeLog?r1=1.39&r2=1.40
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/kmod/ChangeLog,v
retrieving revision 1.39
retrieving revision 1.40
diff -u -r1.39 -r1.40
--- ChangeLog 13 Jun 2012 15:46:09 -0000 1.39
+++ ChangeLog 19 Jun 2012 23:52:51 -0000 1.40
@@ -1,5 +1,10 @@
# ChangeLog for sys-apps/kmod# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/kmod/ChangeLog,v 1.39 2012/06/13 15:46:09 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/kmod/ChangeLog,v 1.40 2012/06/19 23:52:51 williamh Exp $
+
+*kmod-9 (19 Jun 2012)
+
+ 19 Jun 2012; William Hubbs <williamh@g.o> +kmod-9.ebuild:
+ version bump
13 Jun 2012; Mike Frysinger <vapier@g.o>
+files/kmod-8-gc-sections.patch, kmod-8.ebuild:
1.1 sys-apps/kmod/kmod-9.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/kmod/kmod-9.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/kmod/kmod-9.ebuild?rev=1.1&content-type=text/plain
Index: kmod-9.ebuild
===================================================================
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/kmod/kmod-9.ebuild,v 1.1 2012/06/19 23:52:51 williamh Exp $
EAPI=4
EGIT_REPO_URI="git://git.kernel.org/pub/scm/utils/kernel/${PN}/${PN}.git"
[[ ${PV} == 9999 ]] && vcs=git-2
inherit ${vcs} autotools eutils toolchain-funcs libtool
unset vcs
if [[ ${PV} != 9999 ]] ; then
SRC_URI="mirror://kernel/linux/utils/kernel/kmod/${P}.tar.xz"
KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~x86"
fi
DESCRIPTION="library and tools for managing linux kernel modules"
HOMEPAGE="http://git.kernel.org/?p=utils/kernel/kmod/kmod.git"
LICENSE="LGPL-2"
SLOT="0"
IUSE="debug doc lzma static-libs +tools zlib"
RDEPEND="!sys-apps/module-init-tools
!sys-apps/modutils
lzma? ( app-arch/xz-utils )
zlib? ( sys-libs/zlib )"
DEPEND="${RDEPEND}
doc? ( dev-util/gtk-doc )
lzma? ( virtual/pkgconfig )
zlib? ( virtual/pkgconfig )"
# Upstream does not support running the test suite with custom configure flags.
# I was also told that the test suite is intended for kmod developers.
# So we have to restrict it.
# See bug #408915.
RESTRICT="test"
src_prepare()
{
if [ ! -e configure ]; then
if use doc; then
gtkdocize --copy --docdir libkmod/docs || die
else
touch libkmod/docs/gtk-doc.make
fi
eautoreconf
else
elibtoolize
fi
}
src_configure()
{
# http://bugs.gentoo.org/410865
if has_version '<sys-libs/zlib-1.2.6'; then
export zlib_CFLAGS="-I/usr/include"
export zlib_LIBS="-lz"
fi
econf \
$(use_enable static-libs static) \
$(use_enable tools) \
$(use_enable debug) \
$(use_enable doc gtk-doc) \
$(use_with lzma xz) \
$(use_with zlib)
}
src_install()
{
default
find "${D}" -name libkmod.la -exec rm -f {} +
if use tools; then
dodir /bin
dosym /usr/bin/kmod /bin/lsmod
dodir /sbin
local cmd
for cmd in depmod insmod modinfo modprobe rmmod; do
dosym /usr/bin/kmod /sbin/${cmd}
done
fi
}
|
|