dev-db/libflaim: new point release

git-svn-id: https://svn.disconnected-by-peer.at/svn/linamh/trunk/ifolder@1405 6952d904-891a-0410-993b-d76249ca496b
This commit is contained in:
geos_one 2009-07-24 20:59:00 +00:00
parent 9af78540d3
commit be11068ddf
3 changed files with 44 additions and 1 deletions

View File

@ -2,6 +2,12 @@
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
# $Header: $
*libflaim-4.10_pre1106 (24 Jul 2009)
24 Jul 2009; Mario Fetka <mario.fetka@gmail.com>
+libflaim-4.10_pre1106.ebuild:
new point release
19 Apr 2009; Mario Fetka <mario.fetka@gmail.com> libflaim-4.10_pre1084:
depend on same svn release of flaimtk

View File

@ -1,3 +1,4 @@
EBUILD libflaim-4.10_pre1084.ebuild 918 RMD160 8c72b3cb944f44bb6539453e7c83270b8874de55 SHA1 bb900def3935b22ac06b682cf9c02b730b0480fb SHA256 eab82e9f3ec4068c2513087287e49ce242351ebc02f7fb7154ac90f44b4d8681
MISC ChangeLog 1959 RMD160 a2c10f17d8343057ee2bb563bb4dc58fcfb42f60 SHA1 643f71956c651f84cae5ca9bcfcb624355f25082 SHA256 6772b2e698675c9fd580d4a0ca16fd2ae72d82b1a4c833eee72a0c213414ee16
EBUILD libflaim-4.10_pre1106.ebuild 918 RMD160 8c72b3cb944f44bb6539453e7c83270b8874de55 SHA1 bb900def3935b22ac06b682cf9c02b730b0480fb SHA256 eab82e9f3ec4068c2513087287e49ce242351ebc02f7fb7154ac90f44b4d8681
MISC ChangeLog 2102 RMD160 071922a8aada4ad4c42a50fb9a8d59341549a678 SHA1 0ca49bd17eebf7de5b63b751dc8758d7f56fe7a6 SHA256 5fae56d4140170534a376abda116b0d8cb42933357fd631b0f6dfaeb315e4767
MISC metadata.xml 1238 RMD160 c82938e77f387291d6a1c3bf9b0d802f2878dd12 SHA1 b5738f14922c69e78cfb867acdc65eeea25977bf SHA256 2c13f98be5fa8bdaf21ac86bcd00bbeb8944df5615de0cfce35ae4c00ef4b4d5

View File

@ -0,0 +1,36 @@
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI="2"
inherit autotools subversion eutils
ESVN_REPO_URI="https://forgesvn1.novell.com/svn/flaim/trunk/flaim/@${PV/4.10_pre/}"
DESCRIPTION="FLAIM is an acronym that stands for FLexible Adaptable Information Management."
HOMEPAGE="http://forge.novell.com/modules/xfmod/project/?flaim"
LICENSE="GPL-2"
KEYWORDS="~x86 ~amd64"
SLOT="0"
IUSE="doc"
RDEPEND="sys-libs/ncurses
>=dev-libs/libflaimtk-1.2_pre${PV/4.10_pre/}"
DEPEND="${RDEPEND}
>=sys-devel/libtool-2.2
doc? ( app-doc/doxygen )"
src_prepare() {
eautoreconf -i
}
src_configure() {
econf || die "configure failed"
}
src_install() {
einstall || die "einstall failed"
rm -rf "${D}"/usr/share/doc/flaim || die "rm olddoc failed"
dodoc AUTHORS NEWS ChangeLog README || die "dodoc failed"
use doc && dohtml -r docs/doxygen/html/*
}