* [gentoo-commits] gentoo-x86 commit in sys-auth/bioapi: ChangeLog bioapi-1.2.3-r2.ebuild
@ 2009-03-08 19:49 Mike Frysinger (vapier)
0 siblings, 0 replies; 5+ messages in thread
From: Mike Frysinger (vapier) @ 2009-03-08 19:49 UTC (permalink / raw
To: gentoo-commits
vapier 09/03/08 19:49:11
Modified: ChangeLog
Added: bioapi-1.2.3-r2.ebuild
Log:
Do not let mod_install delete symlinks as that is the job of portage.
(Portage version: 2.2_rc23/cvs/Linux x86_64)
Revision Changes Path
1.10 sys-auth/bioapi/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/bioapi/ChangeLog?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/bioapi/ChangeLog?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/bioapi/ChangeLog?r1=1.9&r2=1.10
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-auth/bioapi/ChangeLog,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- ChangeLog 26 Oct 2008 19:13:05 -0000 1.9
+++ ChangeLog 8 Mar 2009 19:49:11 -0000 1.10
@@ -1,6 +1,12 @@
# ChangeLog for sys-auth/bioapi
-# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-auth/bioapi/ChangeLog,v 1.9 2008/10/26 19:13:05 maekke Exp $
+# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sys-auth/bioapi/ChangeLog,v 1.10 2009/03/08 19:49:11 vapier Exp $
+
+*bioapi-1.2.3-r2 (08 Mar 2009)
+
+ 08 Mar 2009; Mike Frysinger <vapier@gentoo.org>
+ +files/bioapi-1.2.3-no-delete.patch, +bioapi-1.2.3-r2.ebuild:
+ Do not let mod_install delete symlinks as that is the job of portage.
26 Oct 2008; Markus Meier <maekke@gentoo.org> bioapi-1.2.3-r1.ebuild:
amd64/x86 stable, bug #244447
1.1 sys-auth/bioapi/bioapi-1.2.3-r2.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/bioapi/bioapi-1.2.3-r2.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/bioapi/bioapi-1.2.3-r2.ebuild?rev=1.1&content-type=text/plain
Index: bioapi-1.2.3-r2.ebuild
===================================================================
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-auth/bioapi/bioapi-1.2.3-r2.ebuild,v 1.1 2009/03/08 19:49:11 vapier Exp $
inherit eutils multilib
DESCRIPTION="Framework for biometric-based authentication"
HOMEPAGE="http://code.google.com/p/bioapi-linux/"
SRC_URI="http://bioapi-linux.googlecode.com/files/${PN}_${PV}.tar.gz"
LICENSE="bioapi"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="qt3"
DEPEND="qt3? ( =x11-libs/qt-3* )"
S=${WORKDIR}/bioapi-linux
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${P}-enroll-ret.patch #236654
epatch "${FILESDIR}"/${P}-no-delete.patch
}
src_compile() {
econf $(use_with qt3 Qt-dir /usr/qt/3) || die "./configure failed"
emake || die "emake failed"
}
src_install() {
emake SKIPCONFIG=true DESTDIR="${D}" install || die "install failed"
dodoc README
dohtml *.htm
# rename generic binaries
mv "${D}"/usr/bin/{,BioAPI}Sample || die
if use qt3 ; then
mv "${D}"/usr/bin/{,BioAPI}QSample || die
fi
}
pkg_config() {
mds_install -s /usr/$(get_libdir)
mod_install -fi /usr/$(get_libdir)/libbioapi100.so
mod_install -fi /usr/$(get_libdir)/libbioapi_dummy100.so
mod_install -fi /usr/$(get_libdir)/libpwbsp.so
use qt3 && mod_install -fi /usr/$(get_libdir)/libqtpwbsp.so
}
pkg_preinst() {
if [[ -e ${ROOT}/var/bioapi ]] && [[ ! -e ${ROOT}/var/lib/bioapi ]] ; then
einfo "Moving /var/bioapi to /var/lib/bioapi"
dodir /var/lib
mv "${ROOT}"/var/bioapi "${ROOT}"/var/lib/bioapi
fi
}
pkg_postinst() {
einfo "Some generic-named programs have been renamed:"
einfo " Sample -> BioAPISample"
einfo " QSample -> BioAPIQSample"
if [[ ${ROOT} == "/" ]] ; then
pkg_config
else
ewarn "You will need to run 'emerge --config bioapi' before"
ewarn " you can use bioapi properly."
fi
# XXX: this can't be correct ...
enewgroup bioapi
chgrp bioapi "${ROOT}"/var/lib/bioapi -R
chmod g+w,o= "${ROOT}"/var/lib/bioapi -R
einfo "Note: users using bioapi must be in group bioapi."
}
pkg_prerm() {
mod_install -fu libbioapi100.so
mod_install -fu libbioapi_dummy100.so
mod_install -fu libpwbsp.so
use qt3 && mod_install -fu libqtpwbsp.so
}
^ permalink raw reply [flat|nested] 5+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sys-auth/bioapi: ChangeLog bioapi-1.2.3-r2.ebuild
@ 2009-07-25 20:28 Samuli Suominen (ssuominen)
0 siblings, 0 replies; 5+ messages in thread
From: Samuli Suominen (ssuominen) @ 2009-07-25 20:28 UTC (permalink / raw
To: gentoo-commits
ssuominen 09/07/25 20:28:44
Modified: ChangeLog bioapi-1.2.3-r2.ebuild
Log:
Fix building with GCC 4.4 wrt #273159.
(Portage version: 2.2_rc33/cvs/Linux x86_64)
Revision Changes Path
1.11 sys-auth/bioapi/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/bioapi/ChangeLog?rev=1.11&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/bioapi/ChangeLog?rev=1.11&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/bioapi/ChangeLog?r1=1.10&r2=1.11
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-auth/bioapi/ChangeLog,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- ChangeLog 8 Mar 2009 19:49:11 -0000 1.10
+++ ChangeLog 25 Jul 2009 20:28:44 -0000 1.11
@@ -1,6 +1,10 @@
# ChangeLog for sys-auth/bioapi
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-auth/bioapi/ChangeLog,v 1.10 2009/03/08 19:49:11 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-auth/bioapi/ChangeLog,v 1.11 2009/07/25 20:28:44 ssuominen Exp $
+
+ 25 Jul 2009; Samuli Suominen <ssuominen@gentoo.org>
+ bioapi-1.2.3-r2.ebuild, +files/bioapi-1.2.3-gcc44.patch:
+ Fix building with GCC 4.4 wrt #273159.
*bioapi-1.2.3-r2 (08 Mar 2009)
1.2 sys-auth/bioapi/bioapi-1.2.3-r2.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/bioapi/bioapi-1.2.3-r2.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/bioapi/bioapi-1.2.3-r2.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/bioapi/bioapi-1.2.3-r2.ebuild?r1=1.1&r2=1.2
Index: bioapi-1.2.3-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-auth/bioapi/bioapi-1.2.3-r2.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- bioapi-1.2.3-r2.ebuild 8 Mar 2009 19:49:11 -0000 1.1
+++ bioapi-1.2.3-r2.ebuild 25 Jul 2009 20:28:44 -0000 1.2
@@ -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/sys-auth/bioapi/bioapi-1.2.3-r2.ebuild,v 1.1 2009/03/08 19:49:11 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-auth/bioapi/bioapi-1.2.3-r2.ebuild,v 1.2 2009/07/25 20:28:44 ssuominen Exp $
inherit eutils multilib
@@ -22,6 +22,7 @@
cd "${S}"
epatch "${FILESDIR}"/${P}-enroll-ret.patch #236654
epatch "${FILESDIR}"/${P}-no-delete.patch
+ epatch "${FILESDIR}"/${P}-gcc44.patch
}
src_compile() {
^ permalink raw reply [flat|nested] 5+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sys-auth/bioapi: ChangeLog bioapi-1.2.3-r2.ebuild
@ 2010-01-18 19:24 Markus Meier (maekke)
0 siblings, 0 replies; 5+ messages in thread
From: Markus Meier (maekke) @ 2010-01-18 19:24 UTC (permalink / raw
To: gentoo-commits
maekke 10/01/18 19:24:08
Modified: ChangeLog bioapi-1.2.3-r2.ebuild
Log:
amd64/x86 stable, bug #299192
(Portage version: 2.2_rc61/cvs/Linux x86_64)
Revision Changes Path
1.12 sys-auth/bioapi/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/bioapi/ChangeLog?rev=1.12&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/bioapi/ChangeLog?rev=1.12&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/bioapi/ChangeLog?r1=1.11&r2=1.12
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-auth/bioapi/ChangeLog,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- ChangeLog 25 Jul 2009 20:28:44 -0000 1.11
+++ ChangeLog 18 Jan 2010 19:24:07 -0000 1.12
@@ -1,6 +1,9 @@
# ChangeLog for sys-auth/bioapi
-# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-auth/bioapi/ChangeLog,v 1.11 2009/07/25 20:28:44 ssuominen Exp $
+# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sys-auth/bioapi/ChangeLog,v 1.12 2010/01/18 19:24:07 maekke Exp $
+
+ 18 Jan 2010; Markus Meier <maekke@gentoo.org> bioapi-1.2.3-r2.ebuild:
+ amd64/x86 stable, bug #299192
25 Jul 2009; Samuli Suominen <ssuominen@gentoo.org>
bioapi-1.2.3-r2.ebuild, +files/bioapi-1.2.3-gcc44.patch:
1.3 sys-auth/bioapi/bioapi-1.2.3-r2.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/bioapi/bioapi-1.2.3-r2.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/bioapi/bioapi-1.2.3-r2.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/bioapi/bioapi-1.2.3-r2.ebuild?r1=1.2&r2=1.3
Index: bioapi-1.2.3-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-auth/bioapi/bioapi-1.2.3-r2.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- bioapi-1.2.3-r2.ebuild 25 Jul 2009 20:28:44 -0000 1.2
+++ bioapi-1.2.3-r2.ebuild 18 Jan 2010 19:24:07 -0000 1.3
@@ -1,6 +1,6 @@
-# Copyright 1999-2009 Gentoo Foundation
+# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-auth/bioapi/bioapi-1.2.3-r2.ebuild,v 1.2 2009/07/25 20:28:44 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-auth/bioapi/bioapi-1.2.3-r2.ebuild,v 1.3 2010/01/18 19:24:07 maekke Exp $
inherit eutils multilib
@@ -10,7 +10,7 @@
LICENSE="bioapi"
SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
IUSE="qt3"
DEPEND="qt3? ( =x11-libs/qt-3* )"
^ permalink raw reply [flat|nested] 5+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sys-auth/bioapi: ChangeLog bioapi-1.2.3-r2.ebuild
@ 2010-02-16 20:15 Samuli Suominen (ssuominen)
0 siblings, 0 replies; 5+ messages in thread
From: Samuli Suominen (ssuominen) @ 2010-02-16 20:15 UTC (permalink / raw
To: gentoo-commits
ssuominen 10/02/16 20:15:02
Modified: ChangeLog bioapi-1.2.3-r2.ebuild
Log:
Remove USE="qt3" wrt #304475, thanks to Ben de Groot for reporting.
(Portage version: 2.2_rc62/cvs/Linux x86_64)
Revision Changes Path
1.13 sys-auth/bioapi/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/bioapi/ChangeLog?rev=1.13&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/bioapi/ChangeLog?rev=1.13&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/bioapi/ChangeLog?r1=1.12&r2=1.13
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-auth/bioapi/ChangeLog,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- ChangeLog 18 Jan 2010 19:24:07 -0000 1.12
+++ ChangeLog 16 Feb 2010 20:15:02 -0000 1.13
@@ -1,6 +1,10 @@
# ChangeLog for sys-auth/bioapi
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-auth/bioapi/ChangeLog,v 1.12 2010/01/18 19:24:07 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-auth/bioapi/ChangeLog,v 1.13 2010/02/16 20:15:02 ssuominen Exp $
+
+ 16 Feb 2010; Samuli Suominen <ssuominen@gentoo.org>
+ bioapi-1.2.3-r2.ebuild:
+ Remove USE="qt3" wrt #304475, thanks to Ben de Groot for reporting.
18 Jan 2010; Markus Meier <maekke@gentoo.org> bioapi-1.2.3-r2.ebuild:
amd64/x86 stable, bug #299192
1.4 sys-auth/bioapi/bioapi-1.2.3-r2.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/bioapi/bioapi-1.2.3-r2.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/bioapi/bioapi-1.2.3-r2.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/bioapi/bioapi-1.2.3-r2.ebuild?r1=1.3&r2=1.4
Index: bioapi-1.2.3-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-auth/bioapi/bioapi-1.2.3-r2.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- bioapi-1.2.3-r2.ebuild 18 Jan 2010 19:24:07 -0000 1.3
+++ bioapi-1.2.3-r2.ebuild 16 Feb 2010 20:15:02 -0000 1.4
@@ -1,7 +1,8 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-auth/bioapi/bioapi-1.2.3-r2.ebuild,v 1.3 2010/01/18 19:24:07 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-auth/bioapi/bioapi-1.2.3-r2.ebuild,v 1.4 2010/02/16 20:15:02 ssuominen Exp $
+EAPI=2
inherit eutils multilib
DESCRIPTION="Framework for biometric-based authentication"
@@ -11,35 +12,28 @@
LICENSE="bioapi"
SLOT="0"
KEYWORDS="amd64 x86"
-IUSE="qt3"
-
-DEPEND="qt3? ( =x11-libs/qt-3* )"
+IUSE=""
S=${WORKDIR}/bioapi-linux
-src_unpack() {
- unpack ${A}
- cd "${S}"
+src_prepare() {
epatch "${FILESDIR}"/${P}-enroll-ret.patch #236654
epatch "${FILESDIR}"/${P}-no-delete.patch
epatch "${FILESDIR}"/${P}-gcc44.patch
}
-src_compile() {
- econf $(use_with qt3 Qt-dir /usr/qt/3) || die "./configure failed"
- emake || die "emake failed"
+src_configure() {
+ econf \
+ --without-Qt-dir
}
src_install() {
- emake SKIPCONFIG=true DESTDIR="${D}" install || die "install failed"
+ emake SKIPCONFIG=true DESTDIR="${D}" install || die
dodoc README
dohtml *.htm
# rename generic binaries
mv "${D}"/usr/bin/{,BioAPI}Sample || die
- if use qt3 ; then
- mv "${D}"/usr/bin/{,BioAPI}QSample || die
- fi
}
pkg_config() {
@@ -47,7 +41,6 @@
mod_install -fi /usr/$(get_libdir)/libbioapi100.so
mod_install -fi /usr/$(get_libdir)/libbioapi_dummy100.so
mod_install -fi /usr/$(get_libdir)/libpwbsp.so
- use qt3 && mod_install -fi /usr/$(get_libdir)/libqtpwbsp.so
}
pkg_preinst() {
@@ -61,7 +54,6 @@
pkg_postinst() {
einfo "Some generic-named programs have been renamed:"
einfo " Sample -> BioAPISample"
- einfo " QSample -> BioAPIQSample"
if [[ ${ROOT} == "/" ]] ; then
pkg_config
@@ -81,5 +73,4 @@
mod_install -fu libbioapi100.so
mod_install -fu libbioapi_dummy100.so
mod_install -fu libpwbsp.so
- use qt3 && mod_install -fu libqtpwbsp.so
}
^ permalink raw reply [flat|nested] 5+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sys-auth/bioapi: ChangeLog bioapi-1.2.3-r2.ebuild
@ 2010-11-26 5:19 Mike Frysinger (vapier)
0 siblings, 0 replies; 5+ messages in thread
From: Mike Frysinger (vapier) @ 2010-11-26 5:19 UTC (permalink / raw
To: gentoo-commits
vapier 10/11/26 05:19:37
Modified: ChangeLog bioapi-1.2.3-r2.ebuild
Log:
Respect build settings #336107 by Diego Elio Pettenò and make config.guess/config.sub into plain files #337805 by Ben Kero.
(Portage version: 2.2.0_alpha4/cvs/Linux x86_64)
Revision Changes Path
1.14 sys-auth/bioapi/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/bioapi/ChangeLog?rev=1.14&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/bioapi/ChangeLog?rev=1.14&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/bioapi/ChangeLog?r1=1.13&r2=1.14
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-auth/bioapi/ChangeLog,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- ChangeLog 16 Feb 2010 20:15:02 -0000 1.13
+++ ChangeLog 26 Nov 2010 05:19:37 -0000 1.14
@@ -1,6 +1,11 @@
# ChangeLog for sys-auth/bioapi
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-auth/bioapi/ChangeLog,v 1.13 2010/02/16 20:15:02 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-auth/bioapi/ChangeLog,v 1.14 2010/11/26 05:19:37 vapier Exp $
+
+ 26 Nov 2010; Mike Frysinger <vapier@gentoo.org> bioapi-1.2.3-r2.ebuild,
+ +files/bioapi-1.2.3-build.patch:
+ Respect build settings #336107 by Diego Elio Pettenò and make
+ config.guess/config.sub into plain files #337805 by Ben Kero.
16 Feb 2010; Samuli Suominen <ssuominen@gentoo.org>
bioapi-1.2.3-r2.ebuild:
1.5 sys-auth/bioapi/bioapi-1.2.3-r2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/bioapi/bioapi-1.2.3-r2.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/bioapi/bioapi-1.2.3-r2.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/bioapi/bioapi-1.2.3-r2.ebuild?r1=1.4&r2=1.5
Index: bioapi-1.2.3-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-auth/bioapi/bioapi-1.2.3-r2.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- bioapi-1.2.3-r2.ebuild 16 Feb 2010 20:15:02 -0000 1.4
+++ bioapi-1.2.3-r2.ebuild 26 Nov 2010 05:19:37 -0000 1.5
@@ -1,8 +1,9 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-auth/bioapi/bioapi-1.2.3-r2.ebuild,v 1.4 2010/02/16 20:15:02 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-auth/bioapi/bioapi-1.2.3-r2.ebuild,v 1.5 2010/11/26 05:19:37 vapier Exp $
+
+EAPI="2"
-EAPI=2
inherit eutils multilib
DESCRIPTION="Framework for biometric-based authentication"
@@ -20,11 +21,13 @@
epatch "${FILESDIR}"/${P}-enroll-ret.patch #236654
epatch "${FILESDIR}"/${P}-no-delete.patch
epatch "${FILESDIR}"/${P}-gcc44.patch
+ epatch "${FILESDIR}"/${P}-build.patch #336107
+ rm -f config.{guess,sub} #337805
+ touch config.{guess,sub}
}
src_configure() {
- econf \
- --without-Qt-dir
+ econf --without-Qt-dir
}
src_install() {
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2010-11-26 5:19 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-11-26 5:19 [gentoo-commits] gentoo-x86 commit in sys-auth/bioapi: ChangeLog bioapi-1.2.3-r2.ebuild Mike Frysinger (vapier)
-- strict thread matches above, loose matches on Subject: below --
2010-02-16 20:15 Samuli Suominen (ssuominen)
2010-01-18 19:24 Markus Meier (maekke)
2009-07-25 20:28 Samuli Suominen (ssuominen)
2009-03-08 19:49 Mike Frysinger (vapier)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox