diff options
author | Mamoru Komachi <usata@gentoo.org> | 2004-06-21 17:28:06 +0000 |
---|---|---|
committer | Mamoru Komachi <usata@gentoo.org> | 2004-06-21 17:28:06 +0000 |
commit | a0b8e9dde70cecd1c19e1d3871dcb358e1cc7b65 (patch) | |
tree | f27b87c7d497be1dae7e01a2c5755cf545dff865 /app-i18n/unicon | |
parent | Marked as stable. (diff) | |
download | historical-a0b8e9dde70cecd1c19e1d3871dcb358e1cc7b65.tar.gz historical-a0b8e9dde70cecd1c19e1d3871dcb358e1cc7b65.tar.bz2 historical-a0b8e9dde70cecd1c19e1d3871dcb358e1cc7b65.zip |
Removed default S and MAKEOPTS; use epatch instaed of patch
Diffstat (limited to 'app-i18n/unicon')
-rw-r--r-- | app-i18n/unicon/ChangeLog | 5 | ||||
-rw-r--r-- | app-i18n/unicon/unicon-3.0.4.ebuild | 15 |
2 files changed, 9 insertions, 11 deletions
diff --git a/app-i18n/unicon/ChangeLog b/app-i18n/unicon/ChangeLog index 72d88c8653b0..b414dbbedf85 100644 --- a/app-i18n/unicon/ChangeLog +++ b/app-i18n/unicon/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-i18n/unicon # Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-i18n/unicon/ChangeLog,v 1.2 2004/04/26 15:59:20 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-i18n/unicon/ChangeLog,v 1.3 2004/06/21 17:28:06 usata Exp $ + + 22 Jun 2004; Mamoru KOMACHI <usata@gentoo.org> unicon-3.0.4.ebuild: + Removed default S and MAKEOPTS; use epatch instaed of patch 26 Apr 2004; Aron Griffis <agriffis@gentoo.org> unicon-3.0.4.ebuild: Add die following econf for bug 48950 diff --git a/app-i18n/unicon/unicon-3.0.4.ebuild b/app-i18n/unicon/unicon-3.0.4.ebuild index 8dad975bea55..05060e0a0971 100644 --- a/app-i18n/unicon/unicon-3.0.4.ebuild +++ b/app-i18n/unicon/unicon-3.0.4.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-i18n/unicon/unicon-3.0.4.ebuild,v 1.4 2004/04/26 15:59:20 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-i18n/unicon/unicon-3.0.4.ebuild,v 1.5 2004/06/21 17:28:06 usata Exp $ inherit eutils @@ -23,26 +23,21 @@ DEPEND="virtual/kernel dev-libs/newt dev-libs/pth" -S=${WORKDIR}/${P} - -MAKEOPTS="${MAKEOPTS} -j1" - src_unpack() { unpack ${A} cd ${S} - einfo "Applying unicon-3.0.4-debian.patch" - patch -p1 < ${FILESDIR}/unicon-3.0.4-debian.patch || die "Failed applying debian patch" + epatch ${FILESDIR}/unicon-3.0.4-debian.patch epatch ${FILESDIR}/unicon-3.0.4-gentoo.patch } src_compile() { econf || die "econf failed" - make || die "make failed" - make data || die "make data failed" + emake -j1 || die "make failed" + emake data -j1 || die "make data failed" cd ${S}/tools - make || die "make tools failed" + emake -j1 || die "make tools failed" # still has gcc-3.2 issues # make -C sfonts/tools || die "make tools failed" |