* [gentoo-commits] gentoo-x86 commit in dev-lang/xsb: ChangeLog xsb-3.1.ebuild
@ 2007-11-25 5:09 Keri Harris (keri)
0 siblings, 0 replies; 4+ messages in thread
From: Keri Harris (keri) @ 2007-11-25 5:09 UTC (permalink / raw
To: gentoo-commits
keri 07/11/25 05:09:32
Modified: ChangeLog
Added: xsb-3.1.ebuild
Log:
Version bump
(Portage version: 2.1.4_rc1)
Revision Changes Path
1.9 dev-lang/xsb/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/xsb/ChangeLog?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/xsb/ChangeLog?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/xsb/ChangeLog?r1=1.8&r2=1.9
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/xsb/ChangeLog,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- ChangeLog 24 Apr 2007 22:51:37 -0000 1.8
+++ ChangeLog 25 Nov 2007 05:09:31 -0000 1.9
@@ -1,6 +1,18 @@
# ChangeLog for dev-lang/xsb
# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/xsb/ChangeLog,v 1.8 2007/04/24 22:51:37 keri Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/xsb/ChangeLog,v 1.9 2007/11/25 05:09:31 keri Exp $
+
+*xsb-3.1 (25 Nov 2007)
+
+ 25 Nov 2007; keri <keri@gentoo.org> +files/xsb-3.1-chr_d.patch,
+ +files/xsb-3.1-configure.patch, +files/xsb-3.1-gap.patch,
+ +files/xsb-3.1-justify.patch, +files/xsb-3.1-mysql.patch,
+ +files/xsb-3.1-nostrip.patch, +files/xsb-3.1-odbc.patch,
+ +files/xsb-3.1-orient.patch, +files/xsb-3.1-packages.patch,
+ +files/xsb-3.1-portage.patch, +files/xsb-3.1-varstring.patch,
+ +files/xsb-3.1-xpath.patch, +files/xsb-3.1-xsb-script.patch,
+ +xsb-3.1.ebuild:
+ Version bump.
24 Apr 2007; keri <keri@gentoo.org> files/xsb-3.0.1-configure.patch:
Respect -odbc -iodbc in USE flags. Closes bug #174696.
1.1 dev-lang/xsb/xsb-3.1.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/xsb/xsb-3.1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/xsb/xsb-3.1.ebuild?rev=1.1&content-type=text/plain
Index: xsb-3.1.ebuild
===================================================================
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lang/xsb/xsb-3.1.ebuild,v 1.1 2007/11/25 05:09:31 keri Exp $
MY_PN="XSB"
MY_P="${MY_PN}-unix"
inherit eutils autotools java-pkg-opt-2
DESCRIPTION="XSB is a logic programming and deductive database system"
HOMEPAGE="http://xsb.sourceforge.net"
SRC_URI="mirror://sourceforge/xsb/${MY_P}.tar.gz"
LICENSE="GPL-2 LGPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE="debug iodbc java libwww mysql odbc perl threads xml"
DEPEND="iodbc? ( dev-db/libiodbc )
java? ( >=virtual/jdk-1.4 )
libwww? ( net-libs/libwww )
mysql? ( virtual/mysql )
odbc? ( dev-db/unixODBC )
perl? ( dev-lang/perl )
xml? ( dev-libs/libxml2 )"
S="${WORKDIR}"/${MY_PN}
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${P}-configure.patch
epatch "${FILESDIR}"/${P}-portage.patch
epatch "${FILESDIR}"/${P}-varstring.patch
epatch "${FILESDIR}"/${P}-orient.patch
epatch "${FILESDIR}"/${P}-xsb-script.patch
epatch "${FILESDIR}"/${P}-nostrip.patch
epatch "${FILESDIR}"/${P}-packages.patch
epatch "${FILESDIR}"/${P}-chr_d.patch
epatch "${FILESDIR}"/${P}-gap.patch
epatch "${FILESDIR}"/${P}-justify.patch
epatch "${FILESDIR}"/${P}-mysql.patch
epatch "${FILESDIR}"/${P}-odbc.patch
epatch "${FILESDIR}"/${P}-xpath.patch
}
src_compile() {
cd "${S}"/build
eautoconf
einfo "Building xsb compiler"
econf \
--disable-optimization \
--without-smodels \
--with-config-tag="" \
$(use_with threads mt) \
$(use_with perl) \
$(use_with odbc) \
$(use_with iodbc) \
$(use_enable java interprolog) \
$(use_enable debug) \
$(use_enable debug debug-verbose) \
$(use_enable debug profile) \
|| die "econf failed"
emake -j1 || die "emake failed"
einfo "Building xsb packages"
if use libwww ; then
cd "${S}"/packages/libwww
econf --with-libwww=/usr || die "econf libwww package failed"
fi
if use mysql ; then
cd "${S}"/packages/dbdrivers/mysql
econf || die "econf mysql package failed"
fi
if use odbc ; then
cd "${S}"/packages/dbdrivers/odbc
econf || die "econf odbc package failed"
fi
if use xml ; then
cd "${S}"/packages/xpath
econf || die "econf xpath package failed"
fi
cd "${S}"/packages
rm -rf *.xwam
emake -j1 || die "emake packages failed"
if use libwww ; then
emake -j1 libwww || die "emake libwww package failed"
fi
if use mysql ; then
emake -j1 mysql || die "emake mysql package failed"
fi
if use odbc ; then
emake -j1 odbc || die "emake odbc package failed"
fi
if use perl ; then
emake -j1 perlmatch || die "emake perlmatch package failed"
fi
if use xml ; then
emake -j1 xpath || die "emake xpath package failed"
fi
}
src_install() {
cd "${S}"/build
make DESTDIR="${D}" install || die
dosym /usr/lib/xsb/bin/xsb /usr/bin/xsb
cd "${S}"/packages
local PACKAGES=/usr/lib/xsb/packages
insinto ${PACKAGES}
doins *.xwam
insinto ${PACKAGES}/chr
doins chr/*.xwam
insinto ${PACKAGES}/chr_d
doins chr_d/*.xwam
insinto ${PACKAGES}/gap
doins gap/*.xwam
insinto ${PACKAGES}/justify
doins justify/*.xwam
doins justify/*.H
insinto ${PACKAGES}/regmatch
doins regmatch/*.xwam
insinto ${PACKAGES}/regmatch/cc
doins regmatch/cc/*.H
insinto ${PACKAGES}/sgml
doins sgml/*.xwam
insinto ${PACKAGES}/sgml/cc
doins sgml/cc/*.H
insinto ${PACKAGES}/sgml/cc/dtd
doins sgml/cc/dtd/*
insinto ${PACKAGES}/slx
doins slx/*.xwam
insinto ${PACKAGES}/wildmatch
doins wildmatch/*.xwam
insinto ${PACKAGES}/wildmatch/cc
doins wildmatch/cc/*.H
if use libwww ; then
insinto ${PACKAGES}/libwww
doins libwww/*.xwam
insinto ${PACKAGES}/libwww/cc
doins libwww/cc/*.H
fi
if use mysql || use odbc ; then
insinto ${PACKAGES}/dbdrivers
doins dbdrivers/*.xwam
doins dbdrivers/*.H
insinto ${PACKAGES}/dbdrivers/cc
doins dbdrivers/cc/*.H
if use mysql ; then
insinto ${PACKAGES}/dbdrivers/mysql
doins dbdrivers/mysql/*.xwam
insinto ${PACKAGES}/dbdrivers/mysql/cc
doins dbdrivers/mysql/cc/*.H
fi
if use odbc ; then
insinto ${PACKAGES}/dbdrivers/odbc
doins dbdrivers/odbc/*.xwam
insinto ${PACKAGES}/dbdrivers/odbc/cc
doins dbdrivers/odbc/cc/*.H
fi
fi
if use perl ; then
insinto ${PACKAGES}/perlmatch
doins perlmatch/*.xwam
insinto ${PACKAGES}/perlmatch/cc
doins perlmatch/cc/*.H
fi
if use xml ; then
insinto ${PACKAGES}/xpath
doins xpath/*xwam
insinto ${PACKAGES}/xpath/cc
doins xpath/cc/*.H
fi
cd "${S}"
dodoc FAQ README
}
--
gentoo-commits@gentoo.org mailing list
^ permalink raw reply [flat|nested] 4+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-lang/xsb: ChangeLog xsb-3.1.ebuild
@ 2008-08-14 8:13 Keri Harris (keri)
0 siblings, 0 replies; 4+ messages in thread
From: Keri Harris (keri) @ 2008-08-14 8:13 UTC (permalink / raw
To: gentoo-commits
keri 08/08/14 08:13:48
Modified: ChangeLog xsb-3.1.ebuild
Log:
Fix up interprolog and mt options.
(Portage version: 2.1.4.4)
Revision Changes Path
1.13 dev-lang/xsb/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/xsb/ChangeLog?rev=1.13&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/xsb/ChangeLog?rev=1.13&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/xsb/ChangeLog?r1=1.12&r2=1.13
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/xsb/ChangeLog,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- ChangeLog 9 May 2008 07:15:03 -0000 1.12
+++ ChangeLog 14 Aug 2008 08:13:48 -0000 1.13
@@ -1,6 +1,9 @@
# ChangeLog for dev-lang/xsb
# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/xsb/ChangeLog,v 1.12 2008/05/09 07:15:03 keri Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/xsb/ChangeLog,v 1.13 2008/08/14 08:13:48 keri Exp $
+
+ 14 Aug 2008; <keri@gentoo.org> xsb-3.1.ebuild:
+ Fix up interprolog and mt options. Closes #234192.
09 May 2008; keri <keri@gentoo.org> xsb-3.0.1.ebuild:
inherit java-pkg-opt-2
1.3 dev-lang/xsb/xsb-3.1.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/xsb/xsb-3.1.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/xsb/xsb-3.1.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/xsb/xsb-3.1.ebuild?r1=1.2&r2=1.3
Index: xsb-3.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/xsb/xsb-3.1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- xsb-3.1.ebuild 16 Feb 2008 17:39:50 -0000 1.2
+++ xsb-3.1.ebuild 14 Aug 2008 08:13:48 -0000 1.3
@@ -1,6 +1,6 @@
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/xsb/xsb-3.1.ebuild,v 1.2 2008/02/16 17:39:50 keri Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/xsb/xsb-3.1.ebuild,v 1.3 2008/08/14 08:13:48 keri Exp $
MY_PN="XSB"
MY_P="${MY_PN}-unix"
@@ -56,11 +56,10 @@
--disable-optimization \
--without-smodels \
--with-config-tag="" \
- $(use_with threads mt) \
- $(use_with perl) \
+ $(use_with java interprolog) \
$(use_with odbc) \
$(use_with iodbc) \
- $(use_enable java interprolog) \
+ $(use_enable threads mt) \
$(use_enable debug) \
$(use_enable debug debug-verbose) \
$(use_enable debug profile) \
^ permalink raw reply [flat|nested] 4+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-lang/xsb: ChangeLog xsb-3.1.ebuild
@ 2009-01-27 5:22 Keri Harris (keri)
0 siblings, 0 replies; 4+ messages in thread
From: Keri Harris (keri) @ 2009-01-27 5:22 UTC (permalink / raw
To: gentoo-commits
keri 09/01/27 05:22:14
Modified: ChangeLog xsb-3.1.ebuild
Log:
Move patches into tarball; support multi-threaded packages
(Portage version: 2.1.6.4/cvs/Linux 2.6.27-gentoo-r8 x86_64)
Revision Changes Path
1.15 dev-lang/xsb/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/xsb/ChangeLog?rev=1.15&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/xsb/ChangeLog?rev=1.15&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/xsb/ChangeLog?r1=1.14&r2=1.15
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/xsb/ChangeLog,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- ChangeLog 11 Oct 2008 03:50:12 -0000 1.14
+++ ChangeLog 27 Jan 2009 05:22:14 -0000 1.15
@@ -1,6 +1,16 @@
# ChangeLog for dev-lang/xsb
-# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/xsb/ChangeLog,v 1.14 2008/10/11 03:50:12 keri Exp $
+# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/xsb/ChangeLog,v 1.15 2009/01/27 05:22:14 keri Exp $
+
+ 27 Jan 2009; <keri@gentoo.org> -files/xsb-3.1-chr_d.patch,
+ -files/xsb-3.1-configure.patch, -files/xsb-3.1-gap.patch,
+ -files/xsb-3.1-justify.patch, -files/xsb-3.1-mysql.patch,
+ -files/xsb-3.1-nostrip.patch, -files/xsb-3.1-odbc.patch,
+ -files/xsb-3.1-orient.patch, -files/xsb-3.1-packages.patch,
+ -files/xsb-3.1-portage.patch, -files/xsb-3.1-varstring.patch,
+ -files/xsb-3.1-xpath.patch, -files/xsb-3.1-xsb-script.patch,
+ xsb-3.1.ebuild:
+ Move patches into tarball; support multi-threaded packages
11 Oct 2008; <keri@gentoo.org> files/xsb-3.1-configure.patch:
Fix configure to ignore interprolog with USE=-java. Closes #240209
1.4 dev-lang/xsb/xsb-3.1.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/xsb/xsb-3.1.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/xsb/xsb-3.1.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/xsb/xsb-3.1.ebuild?r1=1.3&r2=1.4
Index: xsb-3.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/xsb/xsb-3.1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- xsb-3.1.ebuild 14 Aug 2008 08:13:48 -0000 1.3
+++ xsb-3.1.ebuild 27 Jan 2009 05:22:14 -0000 1.4
@@ -1,15 +1,18 @@
-# Copyright 1999-2008 Gentoo Foundation
+# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/xsb/xsb-3.1.ebuild,v 1.3 2008/08/14 08:13:48 keri Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/xsb/xsb-3.1.ebuild,v 1.4 2009/01/27 05:22:14 keri Exp $
MY_PN="XSB"
MY_P="${MY_PN}-unix"
+PATCHSET_VER="0"
+
inherit eutils autotools java-pkg-opt-2
DESCRIPTION="XSB is a logic programming and deductive database system"
HOMEPAGE="http://xsb.sourceforge.net"
-SRC_URI="mirror://sourceforge/xsb/${MY_P}.tar.gz"
+SRC_URI="mirror://sourceforge/xsb/${MY_P}.tar.gz
+ mirror://gentoo/${P}-gentoo-patchset-${PATCHSET_VER}.tar.gz"
LICENSE="GPL-2 LGPL-2"
SLOT="0"
@@ -30,19 +33,27 @@
unpack ${A}
cd "${S}"
- epatch "${FILESDIR}"/${P}-configure.patch
- epatch "${FILESDIR}"/${P}-portage.patch
- epatch "${FILESDIR}"/${P}-varstring.patch
- epatch "${FILESDIR}"/${P}-orient.patch
- epatch "${FILESDIR}"/${P}-xsb-script.patch
- epatch "${FILESDIR}"/${P}-nostrip.patch
- epatch "${FILESDIR}"/${P}-packages.patch
- epatch "${FILESDIR}"/${P}-chr_d.patch
- epatch "${FILESDIR}"/${P}-gap.patch
- epatch "${FILESDIR}"/${P}-justify.patch
- epatch "${FILESDIR}"/${P}-mysql.patch
- epatch "${FILESDIR}"/${P}-odbc.patch
- epatch "${FILESDIR}"/${P}-xpath.patch
+ EPATCH_FORCE=yes
+ EPATCH_SUFFIX=patch
+ epatch "${WORKDIR}"/${PV}
+
+# epatch "${FILESDIR}"/${P}-configure.patch
+# epatch "${FILESDIR}"/${P}-portage.patch
+# epatch "${FILESDIR}"/${P}-varstring.patch
+# epatch "${FILESDIR}"/${P}-orient.patch
+# epatch "${FILESDIR}"/${P}-xsb-script.patch
+# epatch "${FILESDIR}"/${P}-nostrip.patch
+# epatch "${FILESDIR}"/${P}-packages.patch
+# epatch "${FILESDIR}"/${P}-chr_d.patch
+# epatch "${FILESDIR}"/${P}-dbdrivers.patch
+# epatch "${FILESDIR}"/${P}-gap.patch
+# epatch "${FILESDIR}"/${P}-justify.patch
+# epatch "${FILESDIR}"/${P}-libwww.patch
+# epatch "${FILESDIR}"/${P}-mysql.patch
+# epatch "${FILESDIR}"/${P}-odbc.patch
+# epatch "${FILESDIR}"/${P}-perlmatch.patch
+# epatch "${FILESDIR}"/${P}-sgml.patch
+# epatch "${FILESDIR}"/${P}-xpath.patch
cd "${S}"/build
eautoconf
^ permalink raw reply [flat|nested] 4+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-lang/xsb: ChangeLog xsb-3.1.ebuild
@ 2009-01-27 5:23 Keri Harris (keri)
0 siblings, 0 replies; 4+ messages in thread
From: Keri Harris (keri) @ 2009-01-27 5:23 UTC (permalink / raw
To: gentoo-commits
keri 09/01/27 05:23:46
Modified: ChangeLog xsb-3.1.ebuild
Log:
Remove redundant comments
(Portage version: 2.1.6.4/cvs/Linux 2.6.27-gentoo-r8 x86_64)
Revision Changes Path
1.16 dev-lang/xsb/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/xsb/ChangeLog?rev=1.16&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/xsb/ChangeLog?rev=1.16&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/xsb/ChangeLog?r1=1.15&r2=1.16
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/xsb/ChangeLog,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- ChangeLog 27 Jan 2009 05:22:14 -0000 1.15
+++ ChangeLog 27 Jan 2009 05:23:46 -0000 1.16
@@ -1,6 +1,9 @@
# ChangeLog for dev-lang/xsb
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/xsb/ChangeLog,v 1.15 2009/01/27 05:22:14 keri Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/xsb/ChangeLog,v 1.16 2009/01/27 05:23:46 keri Exp $
+
+ 27 Jan 2009; <keri@gentoo.org> xsb-3.1.ebuild:
+ Remove redundant comments
27 Jan 2009; <keri@gentoo.org> -files/xsb-3.1-chr_d.patch,
-files/xsb-3.1-configure.patch, -files/xsb-3.1-gap.patch,
1.5 dev-lang/xsb/xsb-3.1.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/xsb/xsb-3.1.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/xsb/xsb-3.1.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/xsb/xsb-3.1.ebuild?r1=1.4&r2=1.5
Index: xsb-3.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/xsb/xsb-3.1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- xsb-3.1.ebuild 27 Jan 2009 05:22:14 -0000 1.4
+++ xsb-3.1.ebuild 27 Jan 2009 05:23:46 -0000 1.5
@@ -1,6 +1,6 @@
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/xsb/xsb-3.1.ebuild,v 1.4 2009/01/27 05:22:14 keri Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/xsb/xsb-3.1.ebuild,v 1.5 2009/01/27 05:23:46 keri Exp $
MY_PN="XSB"
MY_P="${MY_PN}-unix"
@@ -37,24 +37,6 @@
EPATCH_SUFFIX=patch
epatch "${WORKDIR}"/${PV}
-# epatch "${FILESDIR}"/${P}-configure.patch
-# epatch "${FILESDIR}"/${P}-portage.patch
-# epatch "${FILESDIR}"/${P}-varstring.patch
-# epatch "${FILESDIR}"/${P}-orient.patch
-# epatch "${FILESDIR}"/${P}-xsb-script.patch
-# epatch "${FILESDIR}"/${P}-nostrip.patch
-# epatch "${FILESDIR}"/${P}-packages.patch
-# epatch "${FILESDIR}"/${P}-chr_d.patch
-# epatch "${FILESDIR}"/${P}-dbdrivers.patch
-# epatch "${FILESDIR}"/${P}-gap.patch
-# epatch "${FILESDIR}"/${P}-justify.patch
-# epatch "${FILESDIR}"/${P}-libwww.patch
-# epatch "${FILESDIR}"/${P}-mysql.patch
-# epatch "${FILESDIR}"/${P}-odbc.patch
-# epatch "${FILESDIR}"/${P}-perlmatch.patch
-# epatch "${FILESDIR}"/${P}-sgml.patch
-# epatch "${FILESDIR}"/${P}-xpath.patch
-
cd "${S}"/build
eautoconf
}
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2009-01-27 5:23 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-01-27 5:23 [gentoo-commits] gentoo-x86 commit in dev-lang/xsb: ChangeLog xsb-3.1.ebuild Keri Harris (keri)
-- strict thread matches above, loose matches on Subject: below --
2009-01-27 5:22 Keri Harris (keri)
2008-08-14 8:13 Keri Harris (keri)
2007-11-25 5:09 Keri Harris (keri)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox