diff options
author | Karl Trygve Kalleberg <karltk@gentoo.org> | 2001-09-09 16:44:42 +0000 |
---|---|---|
committer | Karl Trygve Kalleberg <karltk@gentoo.org> | 2001-09-09 16:44:42 +0000 |
commit | 444219b087fbc89a5b335db7baed64fb4b1f81ab (patch) | |
tree | 8770e21108b30a4b3fcc67a04b51133f49a1e534 /net-dialup/minicom | |
parent | digests (diff) | |
download | gentoo-2-444219b087fbc89a5b335db7baed64fb4b1f81ab.tar.gz gentoo-2-444219b087fbc89a5b335db7baed64fb4b1f81ab.tar.bz2 gentoo-2-444219b087fbc89a5b335db7baed64fb4b1f81ab.zip |
Disabled the korean locale to get the package to compile. If anybody needs korean support in minicom, send them to me, and I'll see what I can do.
Diffstat (limited to 'net-dialup/minicom')
-rw-r--r-- | net-dialup/minicom/minicom-1.83.1.ebuild | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/net-dialup/minicom/minicom-1.83.1.ebuild b/net-dialup/minicom/minicom-1.83.1.ebuild index c206012a3e50..e23efed43320 100644 --- a/net-dialup/minicom/minicom-1.83.1.ebuild +++ b/net-dialup/minicom/minicom-1.83.1.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2001 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Ryan Tolboom <ryan@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/net-dialup/minicom/minicom-1.83.1.ebuild,v 1.1 2001/05/31 20:32:51 ryan Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-dialup/minicom/minicom-1.83.1.ebuild,v 1.2 2001/09/09 16:44:42 karltk Exp $ A="${P}.src.tar.gz" S=${WORKDIR}/${P} @@ -25,6 +25,8 @@ src_unpack() { cp common.c common.c.orig cat common.c.orig |\ sed -e "s:#include <stdarg.h>:#include <stdarg.h>\n#include <time.h>:" > common.c + cp po/Makefile po/Makefile.orig + cat po/Makefile.orig | sed -e 's:ko.mo::g' > po/Makefile } |