From 4f2d7949f03e1c198bc888f2d05f421d35c57e21 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Mon, 9 Oct 2017 18:53:29 +0100 Subject: reinit the tree, so we can have metadata --- dev-db/datadraw/datadraw-3.1.1.ebuild | 50 +++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 dev-db/datadraw/datadraw-3.1.1.ebuild (limited to 'dev-db/datadraw/datadraw-3.1.1.ebuild') diff --git a/dev-db/datadraw/datadraw-3.1.1.ebuild b/dev-db/datadraw/datadraw-3.1.1.ebuild new file mode 100644 index 000000000000..608c45988c11 --- /dev/null +++ b/dev-db/datadraw/datadraw-3.1.1.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=4 + +inherit multilib toolchain-funcs + +DESCRIPTION="feature rich database generator for high performance C applications" +HOMEPAGE="http://datadraw.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${PN}/${PN}${PV}/${PN}${PV}.tar.gz" + +LICENSE="LGPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="doc examples" + +DEPEND="" +RDEPEND="" + +S=${WORKDIR}/${PN}${PV} + +src_prepare() { + tc-export CC + sed -e "/^CFLAGS=/s:-g -Wall:${CFLAGS}:" \ + -i configure \ + -i dataview/configure \ + -i util/configure || die + + sed -e '/^datadraw:/,+2s:\\$(CFLAGS):\\$(CFLAGS) \\$(LDFLAGS):' \ + -i configure || die +} + +src_install() { + dobin ${PN} + + insinto /usr/$(get_libdir) + for lib in util/*.a ; do + newins ${lib} lib$(basename ${lib}) + done + insinto /usr/include + + doins util/*.h + + dodoc README + if use doc ; then + dodoc manual.pdf + dohtml -r www/index.html www/images + fi + use examples && dodoc -r examples +} -- cgit v1.2.3