diff options
author | Luis Medinas <metalgod@gentoo.org> | 2006-10-28 21:54:21 +0000 |
---|---|---|
committer | Luis Medinas <metalgod@gentoo.org> | 2006-10-28 21:54:21 +0000 |
commit | 5620ecb87b0ee66080917a70660844e5f08aa05c (patch) | |
tree | 9c1772a515637f503fa1f963addf42193f748072 /dev-libs/libnl/libnl-1.0_pre6.ebuild | |
parent | Remove older versions. (diff) | |
download | historical-5620ecb87b0ee66080917a70660844e5f08aa05c.tar.gz historical-5620ecb87b0ee66080917a70660844e5f08aa05c.tar.bz2 historical-5620ecb87b0ee66080917a70660844e5f08aa05c.zip |
Non maintainer commit. Bumped a new prerelease version in preparation for NetworkManager.
Package-Manager: portage-2.1.2_pre3-r9
Diffstat (limited to 'dev-libs/libnl/libnl-1.0_pre6.ebuild')
-rw-r--r-- | dev-libs/libnl/libnl-1.0_pre6.ebuild | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/dev-libs/libnl/libnl-1.0_pre6.ebuild b/dev-libs/libnl/libnl-1.0_pre6.ebuild new file mode 100644 index 000000000000..754de861c26d --- /dev/null +++ b/dev-libs/libnl/libnl-1.0_pre6.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libnl/libnl-1.0_pre6.ebuild,v 1.1 2006/10/28 21:54:21 metalgod Exp $ + +inherit eutils multilib linux-info + +DESCRIPTION="A library for applications dealing with netlink socket" +HOMEPAGE="http://people.suug.ch/~tgr/libnl/" +SRC_URI="http://dev.gentoo.org/~steev/distfiles/${P}.tar.bz2" +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="" + +src_unpack() { + unpack ${A} + cd ${S}/lib + sed -i Makefile -e 's:install -o root -g root:install:' + cd ${S}/include + sed -i Makefile -e 's:install -o root -g root:install:g' + epatch "${FILESDIR}/${PN}-1.0_pre5-include.diff" + epatch "${FILESDIR}/${PN}-1.0_pre6-amd64-typedef.diff" +} + +src_install() { + make DESTDIR="${D}" LIBDIR="/usr/$(get_libdir)" install || die + insinto /usr/share/pkgconfig/ + doins ${FILESDIR}/libnl-1.pc +} |