summaryrefslogtreecommitdiff
blob: 88f47f67dd4871ed1625c0053c89492779330154 (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
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/dvnet/dvnet-0.9.6.ebuild,v 1.3 2003/07/15 18:41:14 pvdabeel Exp $

A=dvnet-${PV}.tar.gz
S=${WORKDIR}/dvnet-${PV}
DESCRIPTION="dvnet provides an interface wrapping sockets into streams"
SRC_URI="http://tinf2.vub.ac.be/~dvermeir/software/dv/dvnet/download/${A}"
HOMEPAGE="http://tinf2.vub.ac.be/~dvermeir/software/dv/dvnet/html/"
KEYWORDS="x86 ppc"
LICENSE="GPL-2"
SLOT="0"

IUSE=""
DEPEND="virtual/glibc
	dev-libs/dvutil
	>=sys-apps/sed-4"
RDEPEND=${DEPEND}

src_unpack() {
	unpack ${A}
	cd ${S}
	aclocal
	autoconf
	automake
	sed -i 's:$(pkgdatadir:$(DESTDIR)\/$(pkgdatadir:' ${S}/doc/Makefile.am
}

src_install() {
	make DESTDIR=${D} prefix=${D}/usr install
}