Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 1280 | Differences between
and this patch

Collapse All | Expand All

(-)libnet-1.0.2a.ebuild (-12 / +9 lines)
Lines 1-4 Link Here
1
# Copyright 1999-2001 Gentoo Technologies, Inc.
1
# Copyright 1999-2002 Gentoo Technologies, Inc.
2
# Distributed under the terms of the GNU General Public License, v2 or later
2
# Distributed under the terms of the GNU General Public License, v2 or later
3
# Author Ben Lutgens <lamer@gentoo.org>
3
# Author Ben Lutgens <lamer@gentoo.org>
4
# /space/gentoo/cvsroot/gentoo-x86/net-libs/libnet/libnet-1.0.2a.ebuild,v 1.1 2001/08/16 04:15:22 lamer Exp
4
# /space/gentoo/cvsroot/gentoo-x86/net-libs/libnet/libnet-1.0.2a.ebuild,v 1.1 2001/08/16 04:15:22 lamer Exp
Lines 14-34 Link Here
14
#RDEPEND=""
14
#RDEPEND=""
15
15
16
src_compile() {
16
src_compile() {
17
	try ./configure --infodir=/usr/share/info --mandir=/usr/share/man --prefix=/usr --host=${CHOST}
17
	./configure --infodir=/usr/share/info --mandir=/usr/share/man --prefix=/usr --host=${CHOST} || die
18
	
18
	
19
	try emake
19
	emake || die
20
	#try make
21
}
20
}
22
21
23
src_install () {
22
src_install () {
24
	
23
	
25
	# try make prefix=${D}/usr install
24
    make DESTDIR=${D} MAN_PREFIX=/usr/share/man/man3 install || die
26
25
	dodoc VERSION doc/{README,TODO*,CHANGELOG*,COPYING}
27
    try make DESTDIR=${D} MAN_DIR=${D}/usr/share/man install
26
	newdoc README README.1st
28
	 dodoc VERSION doc/{README,TODO*,CHANGELOG*,COPYING}
27
	dodoc example/libnet*
29
	 newdoc README README.1st
28
	docinto Ancillary
30
	 dodoc example/libnet*
29
	dodoc doc/Ancillary/*
31
	 docinto Ancillary
32
	 dodoc doc/Ancillary/*
33
}
30
}
34
31

Return to bug 1280