Hi Mark,
I had the same thing, while testing the new stable sources (1.0.2, slightly adapted ebuild (included: killall command to kill processes left behind, plus made some changes to keep me from making typo's ;-)...
<DIFF>
firebird # diff -ur firebird-1.0-r1.ebuild firebird-1.0.2.908.ebuild
--- firebird-1.0-r1.ebuild 2003-02-14 10:56:47.000000000 +0100
+++ firebird-1.0.2.908.ebuild 2003-02-14 11:53:38.000000000 +0100
@@ -2,10 +2,10 @@
# Distributed under the terms of the GNU General Public License v2
# $Header: /home/cvsroot/gentoo-x86/dev-db/firebird/firebird-1.0-r1.ebuild,v 1.6 2003/02/13 10:01:46 vapier Exp $
-S=${WORKDIR}/firebird-1.0.0.796
+S=${WORKDIR}/${P}
DESCRIPTION="Firebird is a relational database offering many ANSI SQL-92 features that runs on Linux, Windows, and a variety of Unix platforms. Firebird offers excellent concurrency, high performance, and powerful language support for stored procedures and triggers. It has been used in production systems, under a variety of names since 1981."
-SRC_URI="mirror://sourceforge/firebird/FirebirdCS-1.0.0.796-0.tar.gz
- mirror://sourceforge/firebird/Firebird-1.0.0.796.src.tar.gz"
+SRC_URI="mirror://sourceforge/firebird/FirebirdCS-${PV}-1.tar.gz
+ mirror://sourceforge/firebird/Firebird-${PV}.src.tar.gz"
HOMEPAGE="http://firebird.sourceforge.net/"
SLOT="0"
LICENSE="MPL-1.1"
@@ -15,10 +15,10 @@
>=sys-devel/gcc-2.95.3-r5"
src_unpack() {
- unpack FirebirdCS-1.0.0.796-0.tar.gz
+ unpack FirebirdCS-${PV}-1.tar.gz
cd ${WORKDIR}
- unpack Firebird-1.0.0.796.src.tar.gz
- cd ${WORKDIR}/FirebirdCS-1.0.0.796-0
+ unpack Firebird-${PV}.src.tar.gz
+ cd ${WORKDIR}/FirebirdCS-${PV}-1
tar xzf buildroot.tar.gz
cd ${S}
@@ -26,7 +26,7 @@
}
src_compile() {
- export INTERBASE="${WORKDIR}/FirebirdCS-1.0.0.796-0/opt/interbase/"
+ export INTERBASE="${WORKDIR}/FirebirdCS-${PV}-1/opt/interbase/"
export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:$INTERBASE/lib"
export FIREBIRD_64_BIT_IO="1"
export NOPROMPT_SETUP="1"
@@ -43,5 +43,6 @@
src_install () {
dodoc README
cd ${D}
- tar xzpf ${S}/FirebirdCS-1.0.0.796-0.64IO/buildroot.tar.gz
+ tar xzpf ${S}/FirebirdCS-${PV}-0.64IO/buildroot.tar.gz
+ killall gds_lock_mgr
}
</DIFF>
All goes well, except the gentoo-patch, looking into that now...
</SNIP>
patching file jrd/misc.c
Hunk #1 FAILED at 73.
Hunk #2 FAILED at 97.
2 out of 2 hunks FAILED -- saving rejects to file jrd/misc.c.rej
patching file qli/help.e
Hunk #1 FAILED at 160.
1 out of 1 hunk FAILED -- saving rejects to file qli/help.e.rej
</SNIP>
New ebuild included,
Rogi