diff options
author | Patrick Lauer <patrick@gentoo.org> | 2009-09-09 21:40:56 +0000 |
---|---|---|
committer | Patrick Lauer <patrick@gentoo.org> | 2009-09-09 21:40:56 +0000 |
commit | e20e1d5e7fc001bf17a5f1fb9a590105fc91d55f (patch) | |
tree | d55a0fe685cda8476f4cda9f22eed47bc4d1e807 /dev-db | |
parent | Bump to 8.4.0. Fixes #276125 (diff) | |
download | gentoo-2-e20e1d5e7fc001bf17a5f1fb9a590105fc91d55f.tar.gz gentoo-2-e20e1d5e7fc001bf17a5f1fb9a590105fc91d55f.tar.bz2 gentoo-2-e20e1d5e7fc001bf17a5f1fb9a590105fc91d55f.zip |
Bump to 8.4.0. Fixes #276125
(Portage version: 2.2_rc40/cvs/Linux x86_64)
Diffstat (limited to 'dev-db')
-rw-r--r-- | dev-db/postgresql-docs/ChangeLog | 8 | ||||
-rw-r--r-- | dev-db/postgresql-docs/postgresql-docs-8.4.0.ebuild | 44 |
2 files changed, 51 insertions, 1 deletions
diff --git a/dev-db/postgresql-docs/ChangeLog b/dev-db/postgresql-docs/ChangeLog index 7969ca6566f0..935f9f2547c7 100644 --- a/dev-db/postgresql-docs/ChangeLog +++ b/dev-db/postgresql-docs/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-db/postgresql-docs # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-db/postgresql-docs/ChangeLog,v 1.14 2009/06/05 22:47:08 beandog Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-db/postgresql-docs/ChangeLog,v 1.15 2009/09/09 21:40:56 patrick Exp $ + +*postgresql-docs-8.4.0 (09 Sep 2009) + + 09 Sep 2009; Patrick Lauer <patrick@gentoo.org> + +postgresql-docs-8.4.0.ebuild: + Bump to 8.4.0. Fixes #276125 05 Jun 2009; Steve Dibb <beandog@gentoo.org> postgresql-docs-7.3.21.ebuild, postgresql-docs-7.4.19.ebuild, diff --git a/dev-db/postgresql-docs/postgresql-docs-8.4.0.ebuild b/dev-db/postgresql-docs/postgresql-docs-8.4.0.ebuild new file mode 100644 index 000000000000..719bf6cc3f18 --- /dev/null +++ b/dev-db/postgresql-docs/postgresql-docs-8.4.0.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-db/postgresql-docs/postgresql-docs-8.4.0.ebuild,v 1.1 2009/09/09 21:40:56 patrick Exp $ + +inherit versionator + +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~sparc-fbsd ~x86 ~x86-fbsd" + +# Nothing to test here per 232157 +RESTRICT="test" + +DESCRIPTION="PostgreSQL documentation" +HOMEPAGE="http://www.postgresql.org/" +SRC_URI="mirror://postgresql/source/v${PV}/postgresql-${PV}.tar.bz2" +LICENSE="POSTGRESQL" +SLOT="$(get_version_component_range 1-2)" +IUSE="" + +DEPEND="" + +S="${WORKDIR}/postgresql-${PV}" + +src_compile() { + : +} + +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/* + docinto sgml + dodoc src/sgml/*.{sgml,dsl} + docinto sgml/ref + dodoc src/sgml/ref/*.sgml + docinto + dodoc TODO + + dodir /etc/eselect/postgresql/slots/${SLOT} + { + echo "postgres_ebuilds=\"\${postgres_ebuilds} ${PF}\"" + } >"${D}/etc/eselect/postgresql/slots/${SLOT}/docs" +} |