diff options
author | Patrick Lauer <patrick@gentoo.org> | 2009-10-22 20:47:22 +0000 |
---|---|---|
committer | Patrick Lauer <patrick@gentoo.org> | 2009-10-22 20:47:22 +0000 |
commit | 9aa3c28f014f236eb347b2066c22c71d669f9451 (patch) | |
tree | dd435fac205b16122edc5ff7703be7aa0f88318c /dev-db/tinycdb | |
parent | Stable on alpha, bug #288042 (diff) | |
download | gentoo-2-9aa3c28f014f236eb347b2066c22c71d669f9451.tar.gz gentoo-2-9aa3c28f014f236eb347b2066c22c71d669f9451.tar.bz2 gentoo-2-9aa3c28f014f236eb347b2066c22c71d669f9451.zip |
Bump, fixes #289357
(Portage version: 2.2_rc46/cvs/Linux x86_64)
Diffstat (limited to 'dev-db/tinycdb')
-rw-r--r-- | dev-db/tinycdb/ChangeLog | 9 | ||||
-rw-r--r-- | dev-db/tinycdb/tinycdb-0.77.ebuild | 40 |
2 files changed, 47 insertions, 2 deletions
diff --git a/dev-db/tinycdb/ChangeLog b/dev-db/tinycdb/ChangeLog index fd8d6e86d6f1..c57c69a0a406 100644 --- a/dev-db/tinycdb/ChangeLog +++ b/dev-db/tinycdb/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-db/tinycdb -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-db/tinycdb/ChangeLog,v 1.18 2008/10/26 15:30:34 hattya Exp $ +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-db/tinycdb/ChangeLog,v 1.19 2009/10/22 20:47:22 patrick Exp $ + +*tinycdb-0.77 (22 Oct 2009) + + 22 Oct 2009; Patrick Lauer <patrick@gentoo.org> +tinycdb-0.77.ebuild: + Bump, fixes #289357 26 Oct 2008; Akinori Hattori <hattya@gentoo.org> tinycdb-0.76.ebuild: fixes bug #243772 and bug #240171. diff --git a/dev-db/tinycdb/tinycdb-0.77.ebuild b/dev-db/tinycdb/tinycdb-0.77.ebuild new file mode 100644 index 000000000000..7a119e6e35af --- /dev/null +++ b/dev-db/tinycdb/tinycdb-0.77.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-db/tinycdb/tinycdb-0.77.ebuild,v 1.1 2009/10/22 20:47:22 patrick Exp $ + +inherit eutils toolchain-funcs + +IUSE="" + +DESCRIPTION="TinyCDB is a very fast and simple package for creating and reading constant data bases" +HOMEPAGE="http://www.corpit.ru/mjt/tinycdb.html" +SRC_URI="http://www.corpit.ru/mjt/${PN}/${P/-/_}.tar.gz" + +RESTRICT="test" +LICENSE="public-domain" +KEYWORDS="~amd64 ~hppa ~ia64 ~ppc ~x86" +SLOT="0" + +DEPEND="!dev-db/cdb" + +src_compile() { + + emake \ + CC="$(tc-getCC)" \ + CFLAGS="${CFLAGS}" \ + staticlib \ + sharedlib \ + piclib \ + cdb-shared \ + || die + +} + +src_install() { + + mv -f cdb-shared cdb + + einstall install-sharedlib install-piclib || die + dodoc NEWS + +} |