From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 4.0.0 (2022-12-14) on finch.gentoo.org X-Spam-Level: X-Spam-Status: No, score=-0.1 required=5.0 tests=DMARC_NONE,MAILING_LIST_MULTI autolearn=unavailable autolearn_force=no version=4.0.0 Received: from email.fidnet.com (ecomm1.fidnet.com [216.229.64.80]) by chiba.3jane.net (Postfix) with SMTP id 6E84E2004E1A for ; Wed, 30 Jan 2002 11:56:16 -0600 (CST) Received: (qmail 17353 invoked from network); 30 Jan 2002 17:55:43 -0000 Received: from dialup-mo-146.rolla.fidnet.com (HELO silica.localmosci) (216.229.74.146) by email.fidnet.com with SMTP; 30 Jan 2002 17:55:43 -0000 From: "Tod M. Neidt" To: gentoo-dev@gentoo.org Content-Type: multipart/mixed; boundary="=-yEoLI39CGrfrGyr86IS8" X-Mailer: Evolution/1.0 (Preview Release) Date: 30 Jan 2002 11:55:20 -0600 Message-Id: <1012413326.13523.22.camel@silica.localmosci> Mime-Version: 1.0 Subject: [gentoo-dev] Help! @#$%!& aspell Sender: gentoo-dev-admin@gentoo.org Errors-To: gentoo-dev-admin@gentoo.org X-BeenThere: gentoo-dev@gentoo.org X-Mailman-Version: 2.0.6 Precedence: bulk Reply-To: gentoo-dev@gentoo.org List-Help: List-Post: List-Subscribe: , List-Id: Gentoo Linux developer list List-Unsubscribe: , List-Archive: X-Archives-Salt: 9004d450-9120-4bb4-98ec-69073cb0f340 X-Archives-Hash: 58786415712f676db53439be037d21e6 --=-yEoLI39CGrfrGyr86IS8 Content-Type: text/plain Content-Transfer-Encoding: 7bit Hi! aspell (the "Something Wicked This Way Comes" version )is giving me fits. Rather than shoot myself in the head, I will swallow my pride and bare my ass to the world by asking for help. Maybe the solution is painfully (to me) obvious to someone else. Everything goes smoothly merging with the ebuild, until the build enters the data subdir where it promptly bombs with a "cat broken pipe" error. A .manual /configure, make sequence also bombs, but with a error 134. The ebuild is fairly straight forward, just patching the tarball with the lastest upstream patch, and enabling a doc-dir configure flag. I'll attach my working (or more appropriately non-working) ebuild. Below is a snippet from the offending data/Makefile. There are multiple section in the ebuild just like this one. Very humbly, tod ******snip aspell-.33.7.1/data/Makefile ****************** english-med-only: cd ../; bd=`pwd`; cd scowl/final; \ cat english-*.10 english-*.20 english-*.35 english-*.50 \ english-*.60 english-*.65 \ special-*.35 special-*.50 \ | $$bd/src/aspell --lang=english \ create master $$bd/data/english-med-only ********end snip************************************************ --=-yEoLI39CGrfrGyr86IS8 Content-Disposition: attachment; filename=aspell-0.33.7.1-r1.ebuild Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=ISO-8859-1 # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or late= r # Author Achim Gottinger # /space/gentoo/cvsroot/gentoo-x86/app-text/aspell/aspell-0.33.ebuild,v 1.2= 2001/05/28 14:32:32 achim Exp #Remove leading zero from version MYPV=3D${PV#0} MYP=3D${PN}-${MYPV} S=3D${WORKDIR}/${MYP} DESCRIPTION=3D"A spell checker replacement for ispell" SRC_URI=3D"http://prdownloads.sourceforge.net/${PN}/${MYP}.tar.gz http://pr= downloads.sourceforge.net/${PN}/${PN}-.33-fix2.diff" HOMEPAGE=3D"http://aspell.sourceforge.net" DEPEND=3D">=3Dapp-text/pspell-0.12.2-r1 >=3Dsys-libs/ncurses-5.2" src_unpack() { cd ${WORKDIR} unpack ${MYP}.tar.gz #Apply fix2 patch cd ${S} patch -p0 < ${DISTDIR}/${PN}-.33-fix2.diff } src_compile() { ./configure \ --prefix=3D/usr \ --sysconfdir=3D/etc/aspell \ --host=3D${CHOST} \ --enable-doc-dir=3D/usr/share/doc/${PF} \ || die "./configure failed" =09 emake || die "Parallel Make Failed" } src_install () { make DESTDIR=3D${D} install || die "Installation Failed" =20 dodoc README* TODO =09 cd ${D}/usr/share/doc/${PF} mv man-html html mv man-text txt prepalldocs =20 } --=-yEoLI39CGrfrGyr86IS8--