diff options
author | Patrick Lauer <patrick@gentoo.org> | 2010-10-06 14:57:39 +0000 |
---|---|---|
committer | Patrick Lauer <patrick@gentoo.org> | 2010-10-06 14:57:39 +0000 |
commit | 24abf7a436abbe13fd581aa0f431c2a5c728e8d8 (patch) | |
tree | 9e364b1f495bb78f235caa2e33580301a3dfa510 /dev-db/postgresql-docs/postgresql-docs-9.0.1.ebuild | |
parent | Bump (diff) | |
download | gentoo-2-24abf7a436abbe13fd581aa0f431c2a5c728e8d8.tar.gz gentoo-2-24abf7a436abbe13fd581aa0f431c2a5c728e8d8.tar.bz2 gentoo-2-24abf7a436abbe13fd581aa0f431c2a5c728e8d8.zip |
Bump
(Portage version: 2.2_rc88/cvs/Linux x86_64)
Diffstat (limited to 'dev-db/postgresql-docs/postgresql-docs-9.0.1.ebuild')
-rw-r--r-- | dev-db/postgresql-docs/postgresql-docs-9.0.1.ebuild | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/dev-db/postgresql-docs/postgresql-docs-9.0.1.ebuild b/dev-db/postgresql-docs/postgresql-docs-9.0.1.ebuild new file mode 100644 index 000000000000..380ede3df493 --- /dev/null +++ b/dev-db/postgresql-docs/postgresql-docs-9.0.1.ebuild @@ -0,0 +1,64 @@ +# Copyright 1999-2010 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.0.1.ebuild,v 1.1 2010/10/06 14:57:39 patrick Exp $ + +EAPI=2 + +inherit versionator autotools + +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd" + +# Nothing to test here per 232157 +RESTRICT="test" + +DESCRIPTION="PostgreSQL documentation" +HOMEPAGE="http://www.postgresql.org/" + +MY_PV=${PV/_/} +SRC_URI="mirror://postgresql/source/v${MY_PV}/postgresql-${MY_PV}.tar.bz2" +S=${WORKDIR}/postgresql-${MY_PV} + +LICENSE="POSTGRESQL" +SLOT="$(get_version_component_range 1-2)" +IUSE="" + +DEPEND="app-text/openjade + app-text/docbook2X + app-text/docbook-sgml + app-text/docbook-sgml-dtd:4.2 + app-text/docbook-xml-dtd:4.2 + app-text/docbook-dsssl-stylesheets + app-text/sgmltools-lite" +RDEPEND="" + +src_prepare() { + epatch "${FILESDIR}/postgresql-${SLOT}-common.3.patch" + eautoconf || die "Failed to eautoconf" +} + +src_compile() { + cd doc + emake html || die +} + +src_install() { + dodir /usr/share/doc/${PF}/html + #tar -zxf "${S}/doc/postgres.tar.gz" -C "${D}/usr/share/doc/${PF}/html" + cd "${S}/doc" + docinto FAQ_html + #dodoc src/FAQ/* # no longer there? + 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}\"" + } >"${D}/etc/eselect/postgresql/slots/${SLOT}/docs" +} |