diff options
-rw-r--r-- | man/ebuild.5 | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/man/ebuild.5 b/man/ebuild.5 index 0c5a07e28..a98f6e36e 100644 --- a/man/ebuild.5 +++ b/man/ebuild.5 @@ -23,7 +23,7 @@ inherit some_eclass another_eclass DESCRIPTION="Super\-useful stream editor (sed)" HOMEPAGE="http://www.gnu.org/software/sed/sed.html" -SRC_URI="ftp://alpha.gnu.org/pub/gnu/sed/${P}.tar.gz" +SRC_URI="ftp://alpha.gnu.org/pub/gnu/${PN}/${P}.tar.gz" LICENSE="GPL\-2" SLOT="0" @@ -35,14 +35,13 @@ DEPEND="nls? ( sys-devel/gettext )" src_compile() { econf \\ - \-\-bindir=/bin \\ - || die "could not configure" + \-\-bindir=/bin emake || die "emake failed" } src_install() { emake install DESTDIR="${D}" || die "Install failed" - dodoc NEWS README* THANKS AUTHORS BUGS ChangeLog + dodoc NEWS README* THANKS AUTHORS BUGS ChangeLog || die "dodoc failed" } .fi .SH "VARIABLES" |