summaryrefslogtreecommitdiff
blob: d5a780ce6f810a54934933420154f724bb0b0402 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/vde/vde-1.5.7.ebuild,v 1.2 2005/07/14 13:07:13 swegener Exp $

DESCRIPTION="vde is a virtual distributed ethernet emulator for emulators like qemu, bochs, and uml."
SRC_URI="mirror://sourceforge/vde/${P}.tgz"
HOMEPAGE="http://vde.sourceforge.net/"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86"
IUSE=""

DEPEND=""

src_compile() {
	mv Makefile Makefile.1
	sed -e 's/ $(BIN_DIR)/ $(DESTDIR)$(BIN_DIR)/' <Makefile.1      >Makefile
	cat Makefile
	cd vdetaplib
	mv Makefile Makefile.1
	sed -e 's/ $(BIN_DIR)/ $(DESTDIR)$(BIN_DIR)/' -e 's/ $(LIB_DIR)/ $(DESTDIR)$(LIB_DIR)/' <Makefile.1      >Makefile
	cd ..
	cd doc
	mv Makefile Makefile.1
	sed -e 's/ $(MAN_DIR)/ $(DESTDIR)$(MAN_DIR)/'  <Makefile.1      >Makefile
	cd ..
	BIN_DIR=/usr/bin LIB_DIR=/usr/lib MAN_DIR=/usr/man emake || die
}

src_install() {

	BIN_DIR=/usr/bin LIB_DIR=/usr/lib MAN_DIR=/usr/man make DESTDIR=${D} install || die

	dodoc COPYING INSTALL PORTS README
}