--- libnet-1.0.2a.ebuild Sun Mar 24 16:32:35 2002 +++ libnet-1.0.2a-r1.ebuild Sun Mar 24 16:38:41 2002 @@ -1,4 +1,4 @@ -# Copyright 1999-2001 Gentoo Technologies, Inc. +# Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Ben Lutgens # /space/gentoo/cvsroot/gentoo-x86/net-libs/libnet/libnet-1.0.2a.ebuild,v 1.1 2001/08/16 04:15:22 lamer Exp @@ -14,21 +14,18 @@ #RDEPEND="" src_compile() { - try ./configure --infodir=/usr/share/info --mandir=/usr/share/man --prefix=/usr --host=${CHOST} + ./configure --infodir=/usr/share/info --mandir=/usr/share/man --prefix=/usr --host=${CHOST} || die - try emake - #try make + emake || die } src_install () { - # try make prefix=${D}/usr install - - try make DESTDIR=${D} MAN_DIR=${D}/usr/share/man install - dodoc VERSION doc/{README,TODO*,CHANGELOG*,COPYING} - newdoc README README.1st - dodoc example/libnet* - docinto Ancillary - dodoc doc/Ancillary/* + make DESTDIR=${D} MAN_PREFIX=/usr/share/man/man3 install || die + dodoc VERSION doc/{README,TODO*,CHANGELOG*,COPYING} + newdoc README README.1st + dodoc example/libnet* + docinto Ancillary + dodoc doc/Ancillary/* }