diff options
author | Akinori Hattori <hattya@gentoo.org> | 2014-09-28 09:29:47 +0000 |
---|---|---|
committer | Akinori Hattori <hattya@gentoo.org> | 2014-09-28 09:29:47 +0000 |
commit | 9fd4b13d13e491160f339a39db9c5b7d01b7d498 (patch) | |
tree | 2941e3038c7cb03e6dd5f0e0fe4c15201547471b /dev-db/tinycdb | |
parent | einstall -> emake wrt bug #521540 (diff) | |
download | gentoo-2-9fd4b13d13e491160f339a39db9c5b7d01b7d498.tar.gz gentoo-2-9fd4b13d13e491160f339a39db9c5b7d01b7d498.tar.bz2 gentoo-2-9fd4b13d13e491160f339a39db9c5b7d01b7d498.zip |
update to EAPI 5
(Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key EC917A6D)
Diffstat (limited to 'dev-db/tinycdb')
-rw-r--r-- | dev-db/tinycdb/ChangeLog | 5 | ||||
-rw-r--r-- | dev-db/tinycdb/tinycdb-0.77-r2.ebuild | 8 |
2 files changed, 8 insertions, 5 deletions
diff --git a/dev-db/tinycdb/ChangeLog b/dev-db/tinycdb/ChangeLog index 7230573c6218..3b007f715cf5 100644 --- a/dev-db/tinycdb/ChangeLog +++ b/dev-db/tinycdb/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-db/tinycdb # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-db/tinycdb/ChangeLog,v 1.41 2014/09/28 09:28:17 hattya Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-db/tinycdb/ChangeLog,v 1.42 2014/09/28 09:29:47 hattya Exp $ + + 28 Sep 2014; Akinori Hattori <hattya@gentoo.org> tinycdb-0.77-r2.ebuild: + update to EAPI 5 28 Sep 2014; Akinori Hattori <hattya@gentoo.org> tinycdb-0.77-r2.ebuild: einstall -> emake wrt bug #521540 diff --git a/dev-db/tinycdb/tinycdb-0.77-r2.ebuild b/dev-db/tinycdb/tinycdb-0.77-r2.ebuild index 9b62fa5748c1..dc769dd66bd0 100644 --- a/dev-db/tinycdb/tinycdb-0.77-r2.ebuild +++ b/dev-db/tinycdb/tinycdb-0.77-r2.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-db/tinycdb/tinycdb-0.77-r2.ebuild,v 1.8 2014/09/28 09:28:17 hattya Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-db/tinycdb/tinycdb-0.77-r2.ebuild,v 1.9 2014/09/28 09:29:47 hattya Exp $ -EAPI="4" +EAPI="5" inherit eutils multilib toolchain-funcs @@ -28,14 +28,14 @@ src_prepare() { src_compile() { local targets="shared" - use static-libs && targets="${targets} staticlib piclib" + use static-libs && targets+=" staticlib piclib" emake CC="$(tc-getCC)" CFLAGS="${CFLAGS} ${LDFLAGS}" ${targets} } src_install() { local targets="install-sharedlib" - use static-libs && targets="${targets} install-piclib" + use static-libs && targets+=" install-piclib" emake DESTDIR="${D}" ${targets} dodoc ChangeLog NEWS |