diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2004-04-13 00:41:39 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2004-04-13 00:41:39 +0000 |
commit | a836a915b1fd523cf84cb229b564fcd6c3ceea33 (patch) | |
tree | 956ce940c787a32adca793b78cb5d0c7e9df77f4 /dev-tcltk/tix/tix-8.2.0.ebuild | |
parent | Marked stable on hppa. (diff) | |
download | historical-a836a915b1fd523cf84cb229b564fcd6c3ceea33.tar.gz historical-a836a915b1fd523cf84cb229b564fcd6c3ceea33.tar.bz2 historical-a836a915b1fd523cf84cb229b564fcd6c3ceea33.zip |
fix for bug #46561; inherit eutils for epatch; use emake -j1 for buggy makefiles
Diffstat (limited to 'dev-tcltk/tix/tix-8.2.0.ebuild')
-rw-r--r-- | dev-tcltk/tix/tix-8.2.0.ebuild | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/dev-tcltk/tix/tix-8.2.0.ebuild b/dev-tcltk/tix/tix-8.2.0.ebuild index 9db742538ccc..6408e3e5988f 100644 --- a/dev-tcltk/tix/tix-8.2.0.ebuild +++ b/dev-tcltk/tix/tix-8.2.0.ebuild @@ -1,6 +1,8 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/tix/tix-8.2.0.ebuild,v 1.13 2004/04/04 23:00:24 zx Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/tix/tix-8.2.0.ebuild,v 1.14 2004/04/13 00:41:39 mr_bones_ Exp $ + +inherit eutils MY_P=${P/-/} S=${WORKDIR}/${MY_P}/unix @@ -19,7 +21,7 @@ DEPEND=">=sys-apps/portage-2.0.47-r10 src_unpack() { unpack ${A} cd ${S}/.. - epatch ${FILESDIR}/${PF}-gentoo.diff || die + epatch "${FILESDIR}/${PF}-gentoo.diff" } src_compile() { @@ -37,9 +39,10 @@ src_compile() { -i ${S}/unix/Makefile eend $? - make || die + emake -j1 || die "emake failed" } src_install() { + dodir /usr/include einstall || die } |