# Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-db/postgresql-docs/postgresql-docs-9.2.1.ebuild,v 1.4 2012/11/13 16:55:56 jer Exp $ EAPI="4" inherit versionator KEYWORDS="~alpha amd64 arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~ppc-macos ~x86-solaris" SLOT="$(get_version_component_range 1-2)" # Comment the following four lines when not a beta or rc. #MY_PV="${PV//_}" #MY_FILE_PV="${SLOT}$(get_version_component_range 4)" #S="${WORKDIR}/postgresql-${MY_FILE_PV}" #SRC_URI="mirror://postgresql/source/v${MY_FILE_PV}/postgresql-${MY_FILE_PV}.tar.bz2" # Comment the following two lines when a beta or rc. S="${WORKDIR}/postgresql-${PV}" SRC_URI="mirror://postgresql/source/v${PV}/postgresql-${PV}.tar.bz2" LICENSE="POSTGRESQL" DESCRIPTION="PostgreSQL documentation" HOMEPAGE="http://www.postgresql.org/" IUSE="" DEPEND="" RDEPEND="" src_unpack() { tar xjf "${DISTDIR}/${A}" -C "${WORKDIR}" "${A%.tar.bz2}/doc" } src_install() { dodir /usr/share/doc/${PF}/html cd "${S}/doc" docinto sgml dodoc src/sgml/*.{sgml,dsl} docinto sgml/ref dodoc src/sgml/ref/*.sgml docinto html dodoc src/sgml/html/*.html dodoc src/sgml/html/stylesheet.css docinto dodoc TODO dodir /etc/eselect/postgresql/slots/${SLOT} echo "postgres_ebuilds=\"\${postgres_ebuilds} ${PF}\"" > \ "${ED}/etc/eselect/postgresql/slots/${SLOT}/docs" }