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/app-doc/autobook/autobook-1.5.ebuild

32 lines
944 B

# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-doc/autobook/autobook-1.5.ebuild,v 1.8 2007/06/24 21:12:03 vapier Exp $
DESCRIPTION="GNU Autoconf, Automake and Libtool"
HOMEPAGE="http://sources.redhat.com/autobook/"
SRC_URI="http://sources.redhat.com/autobook/${P}.tar.gz
examples? (
http://sources.redhat.com/autobook/foonly-2.0.tar.gz
http://sources.redhat.com/autobook/small-2.0.tar.gz
http://sources.redhat.com/autobook/hello-2.0.tar.gz
http://sources.redhat.com/autobook/convenience-2.0.tar.gz
)"
LICENSE="OPL"
SLOT="0"
KEYWORDS="amd64 arm hppa ia64 m68k ppc s390 sh x86"
IUSE="examples"
DEPEND=""
src_install() {
dohtml * || die
if use examples ; then
local d
for d in {convenience,foonly,hello,small}-2.0 ; do
insinto /usr/share/doc/${PF}/${d}
doins -r "${WORKDIR}"/${d}/* || die "doins ${d} failed"
done
fi
}