diff options
author | Michael Imhof <tantive@gentoo.org> | 2003-03-12 16:03:24 +0000 |
---|---|---|
committer | Michael Imhof <tantive@gentoo.org> | 2003-03-12 16:03:24 +0000 |
commit | 5b79d244a1b4d4a4218710426f82c69e333fef3d (patch) | |
tree | 82d803739bdf4adcead6addbc72f060bead7cb16 /sys-apps/usermode-utilities | |
parent | Added sparc to keywords. (diff) | |
download | historical-5b79d244a1b4d4a4218710426f82c69e333fef3d.tar.gz historical-5b79d244a1b4d4a4218710426f82c69e333fef3d.tar.bz2 historical-5b79d244a1b4d4a4218710426f82c69e333fef3d.zip |
Added -DTUNTAP to emake. Should close #16384.
Diffstat (limited to 'sys-apps/usermode-utilities')
3 files changed, 31 insertions, 1 deletions
diff --git a/sys-apps/usermode-utilities/ChangeLog b/sys-apps/usermode-utilities/ChangeLog index 43579e860839..08daaa4dab79 100644 --- a/sys-apps/usermode-utilities/ChangeLog +++ b/sys-apps/usermode-utilities/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sys-apps/usermode-utilities # Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/usermode-utilities/ChangeLog,v 1.10 2003/03/02 20:47:42 tantive Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/usermode-utilities/ChangeLog,v 1.11 2003/03/12 16:03:24 tantive Exp $ + +*usermode-utilities-20030205-r1 (12 Mar 2003) + + 12 Mar 2003; Michael Imhof <tantive@gentoo.org> + Added -DTUNTAP to emake. Should close #16384. *usermode-utilities-20030205 (02 Mar 2003) diff --git a/sys-apps/usermode-utilities/files/digest-usermode-utilities-20030205-r1 b/sys-apps/usermode-utilities/files/digest-usermode-utilities-20030205-r1 new file mode 100644 index 000000000000..1ff8d7ca5e0a --- /dev/null +++ b/sys-apps/usermode-utilities/files/digest-usermode-utilities-20030205-r1 @@ -0,0 +1 @@ +MD5 e5cf1131686febff9fb3496061ea00f8 uml_utilities_20030205.tar.bz2 36479 diff --git a/sys-apps/usermode-utilities/usermode-utilities-20030205-r1.ebuild b/sys-apps/usermode-utilities/usermode-utilities-20030205-r1.ebuild new file mode 100644 index 000000000000..3459f4f3cf8a --- /dev/null +++ b/sys-apps/usermode-utilities/usermode-utilities-20030205-r1.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/usermode-utilities/usermode-utilities-20030205-r1.ebuild,v 1.1 2003/03/12 16:03:24 tantive Exp $ + +S=${WORKDIR}/tools +DESCRIPTION="Tools for use with Usermode Linux virtual machines" +SRC_URI="mirror://sourceforge/user-mode-linux/uml_utilities_${PV}.tar.bz2" +HOMEPAGE="http://user-mode-linux.sourceforge.net/" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~x86 -ppc ~sparc -alpha" + +DEPEND="virtual/glibc" + +src_compile() { + emake CFLAGS="${CFLAGS} -DTUNTAP -D_LARGEFILE64_SOURCE -g -Wall" all +} + +src_install () { + make DESTDIR=${D} install + + dodoc COPYING +} |