From mboxrd@z Thu Jan  1 00:00:00 1970
X-Spam-Checker-Version: SpamAssassin 4.0.0 (2022-12-14) on finch.gentoo.org
X-Spam-Level: 
X-Spam-Status: No, score=0.9 required=5.0 tests=DATE_IN_PAST_06_12,
	DMARC_MISSING,INVALID_DATE,MAILING_LIST_MULTI,RDNS_DYNAMIC
	autolearn=no autolearn_force=no version=4.0.0
Received: from lsanca1-ar15-113-161.elnk.dsl.gtei.net ([4.41.113.161] helo=portablehole.net)
	by cvs.gentoo.org with esmtp (Exim 3.30 #1)
	id 15y7Bs-0002Oh-00
	for gentoo-dev@cvs.gentoo.org; Mon, 29 Oct 2001 00:50:36 -0700
Received: (qmail 30407 invoked from network); 29 Oct 2001 07:50:49 -0000
Received: from unknown (HELO www.portablehole.net) (127.0.0.1)
  by localhost with SMTP; 29 Oct 2001 07:50:49 -0000
Received: from 63.204.249.241
        (SquirrelMail authenticated user jano)
        by www.portablehole.net with HTTP;
        Sun, 28 Oct 2001 23:50:49 -0800 (PST)
Message-ID: <32806.63.204.249.241.1004341849.squirrel@www.portablehole.net>
From: "jano" <jano@portablehole.net>
To: <gentoo-dev@cvs.gentoo.org>
Cc: <gentoo-ebuild@cvs.gentoo.org>
X-Mailer: SquirrelMail (version 1.1.3 [cvs])
MIME-Version: 1.0
Content-Type: text/plain; charset=iso-8859-1
Content-Transfer-Encoding: 8bit
Subject: [gentoo-dev] abiword ebuild
Sender: gentoo-dev-admin@cvs.gentoo.org
Errors-To: gentoo-dev-admin@cvs.gentoo.org
X-BeenThere: gentoo-dev@cvs.gentoo.org
X-Mailman-Version: 2.0
Precedence: bulk
Reply-To: gentoo-dev@cvs.gentoo.org
List-Help: <mailto:gentoo-dev-request@cvs.gentoo.org?subject=help>
List-Post: <mailto:gentoo-dev@cvs.gentoo.org>
List-Subscribe: <http://cvs.gentoo.org/mailman/listinfo/gentoo-dev>,
	<mailto:gentoo-dev-request@cvs.gentoo.org?subject=subscribe>
List-Id: Gentoo Linux development list <gentoo-dev.cvs.gentoo.org>
List-Unsubscribe: <http://cvs.gentoo.org/mailman/listinfo/gentoo-dev>,
	<mailto:gentoo-dev-request@cvs.gentoo.org?subject=unsubscribe>
List-Archive: <http://cvs.gentoo.org/pipermail/gentoo-dev/>
Date: Mon Oct 29 00:51:02 2001
X-Original-Date: Sun, 28 Oct 2001 23:50:49 -0800 (PST)
X-Archives-Salt: b4427ff4-1c15-4c60-b8a1-29468e130600
X-Archives-Hash: dbd3039949e47038602a8e7a89ca9813

Hey.. wasn't sure which mailing list this one should go to, so I sent to
both (I'm not subscribed to the ebuild one).

Anyway, there's a small problem with the abiword-0.9.4 ebuild, in that once
built, the /usr/bin/abiword file is empty.  here's the fix:
---
to line 66 add:
cp ${D}/usr/bin/AbiWord ${D}/usr/bin/AbiWord.orig

change line 67 to read:
sed -e "s:${D}::" ${D}/usr/bin/AbiWord.orig | cat> ${D}/usr/bin/AbiWord
---

the original was running sed on the same file and then 'cat'ing to it, which
resulted in blank file.

Later,
jano