diff options
Diffstat (limited to 'dev-util/uno/uno-2.13.ebuild')
-rw-r--r-- | dev-util/uno/uno-2.13.ebuild | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/dev-util/uno/uno-2.13.ebuild b/dev-util/uno/uno-2.13.ebuild new file mode 100644 index 000000000..9f72cf44f --- /dev/null +++ b/dev-util/uno/uno-2.13.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +inherit eutils toolchain-funcs + +DESCRIPTION="A tool for analyzing the source code of programs written in ANSI-C" +HOMEPAGE="http://spinroot.com/uno/" +SRC_URI="http://spinroot.com/${PN}/${PN}_v${PV/./}.tar.gz" + +LICENSE="as-is" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="doc" + +S="${WORKDIR}/${PN}/src" + +src_unpack() { + unpack ${A} + cd "${S}" + + epatch "${FILESDIR}/${PV}-makefile.patch" +} + +src_compile() { + emake CC="$(tc-getCC)" || die "emake failed" +} + +src_install() { + dobin uno uno_local uno_global + doman ../doc/uno.1 + + insinto /usr/share/${PN} + doins -r ../prop + + if use doc ; then + dodoc ../doc/*.pdf + fi +} |