You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-util/astyle/astyle-1.24.ebuild

46 lines
1.1 KiB

# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/astyle/astyle-1.24.ebuild,v 1.3 2012/07/29 16:56:41 armin76 Exp $
EAPI=3
inherit base java-pkg-opt-2 autotools
DESCRIPTION="Artistic Style is a reindenter and reformatter of C++, C and Java source code"
HOMEPAGE="http://astyle.sourceforge.net/"
SRC_URI="mirror://sourceforge/astyle/astyle_${PV}_linux.tar.gz
http://gentoo.ccss.cz/${PV}-autotools.patch.bz2"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
IUSE="debug java"
DEPEND="java? ( >=virtual/jdk-1.6 )"
RDEPEND="${DEPEND}"
S=${WORKDIR}/${PN}
src_prepare() {
java-pkg-opt-2_src_prepare
cd "${WORKDIR}"
epatch "${PV}-autotools.patch"
cd "${S}"
eautoreconf
}
src_configure() {
local myopts
if use java; then
myopts="--with-java-include-dir=${JAVA_HOME}/include/"
fi
econf \
--disable-dependency-tracking \
--htmldir="${EPREFIX}"/usr/share/doc/${PF}/html/ \
$(use_enable debug) \
${myopts}
}