diff options
author | Patrick Lauer <patrick@gentoo.org> | 2009-11-08 13:52:32 +0000 |
---|---|---|
committer | Patrick Lauer <patrick@gentoo.org> | 2009-11-08 13:52:32 +0000 |
commit | 0bad9a4ea2f574bba40ee9db36e345d5ee8665a0 (patch) | |
tree | 5a661d1287849fbb36687851827a36fdd559e4be /dev-libs/vanessa-adt | |
parent | Missing virtual/tex-base dep. (diff) | |
download | gentoo-2-0bad9a4ea2f574bba40ee9db36e345d5ee8665a0.tar.gz gentoo-2-0bad9a4ea2f574bba40ee9db36e345d5ee8665a0.tar.bz2 gentoo-2-0bad9a4ea2f574bba40ee9db36e345d5ee8665a0.zip |
Bump
(Portage version: 2.2_rc49/cvs/Linux x86_64)
Diffstat (limited to 'dev-libs/vanessa-adt')
-rw-r--r-- | dev-libs/vanessa-adt/ChangeLog | 9 | ||||
-rw-r--r-- | dev-libs/vanessa-adt/vanessa-adt-0.0.8.ebuild | 28 |
2 files changed, 35 insertions, 2 deletions
diff --git a/dev-libs/vanessa-adt/ChangeLog b/dev-libs/vanessa-adt/ChangeLog index f5432c7ddc77..b0f61a8757fc 100644 --- a/dev-libs/vanessa-adt/ChangeLog +++ b/dev-libs/vanessa-adt/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-libs/vanessa-adt -# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/vanessa-adt/ChangeLog,v 1.13 2008/01/05 02:34:29 rbu Exp $ +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/vanessa-adt/ChangeLog,v 1.14 2009/11/08 13:52:32 patrick Exp $ + +*vanessa-adt-0.0.8 (08 Nov 2009) + + 08 Nov 2009; Patrick Lauer <patrick@gentoo.org> +vanessa-adt-0.0.8.ebuild: + Bump 05 Jan 2008; Robert Buchholz <rbu@gentoo.org> vanessa-adt-0.0.6.ebuild, vanessa-adt-0.0.7.ebuild: diff --git a/dev-libs/vanessa-adt/vanessa-adt-0.0.8.ebuild b/dev-libs/vanessa-adt/vanessa-adt-0.0.8.ebuild new file mode 100644 index 000000000000..0a9e4ea4b335 --- /dev/null +++ b/dev-libs/vanessa-adt/vanessa-adt-0.0.8.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/vanessa-adt/vanessa-adt-0.0.8.ebuild,v 1.1 2009/11/08 13:52:32 patrick Exp $ + +MY_PN="${PN/-/_}" +MY_P="${MY_PN}-${PV}" + +DESCRIPTION="Provides Abstract Data Types (ADTs) Includes queue, dynamic array, hash and key value ADT." +HOMEPAGE="http://www.vergenet.net/linux/vanessa/" +SRC_URI="http://www.vergenet.net/linux/vanessa/download/${MY_PN}/${PV}/${MY_P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="" + +DEPEND=">=dev-libs/vanessa-logger-0.0.7" +S="${WORKDIR}/${MY_P}" + +src_compile() { + econf || die "error configure" + emake || die "error compiling" +} + +src_install() { + make DESTDIR="${D}" install || die "error installing" + dodoc AUTHORS NEWS README TODO +} |