diff options
author | Patrick Lauer <patrick@gentoo.org> | 2009-09-09 22:11:52 +0000 |
---|---|---|
committer | Patrick Lauer <patrick@gentoo.org> | 2009-09-09 22:11:52 +0000 |
commit | aa550e1a38b970ce5ccb26e562be3a534a1745e1 (patch) | |
tree | ab12b3ba1e4802a53da56eb1998006a5e6241306 /dev-db/postgresql-docs | |
parent | Bump to 8.4.1 and 8.3.8 (diff) | |
download | gentoo-2-aa550e1a38b970ce5ccb26e562be3a534a1745e1.tar.gz gentoo-2-aa550e1a38b970ce5ccb26e562be3a534a1745e1.tar.bz2 gentoo-2-aa550e1a38b970ce5ccb26e562be3a534a1745e1.zip |
Bump to 8.4.1 and 8.3.8
(Portage version: 2.2_rc40/cvs/Linux x86_64)
Diffstat (limited to 'dev-db/postgresql-docs')
-rw-r--r-- | dev-db/postgresql-docs/ChangeLog | 9 | ||||
-rw-r--r-- | dev-db/postgresql-docs/postgresql-docs-8.3.8.ebuild | 46 | ||||
-rw-r--r-- | dev-db/postgresql-docs/postgresql-docs-8.4.1.ebuild | 44 |
3 files changed, 98 insertions, 1 deletions
diff --git a/dev-db/postgresql-docs/ChangeLog b/dev-db/postgresql-docs/ChangeLog index 935f9f2547c7..fb797942fcc5 100644 --- a/dev-db/postgresql-docs/ChangeLog +++ b/dev-db/postgresql-docs/ChangeLog @@ -1,6 +1,13 @@ # 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.15 2009/09/09 21:40:56 patrick Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-db/postgresql-docs/ChangeLog,v 1.16 2009/09/09 22:11:52 patrick Exp $ + +*postgresql-docs-8.4.1 (09 Sep 2009) +*postgresql-docs-8.3.8 (09 Sep 2009) + + 09 Sep 2009; Patrick Lauer <patrick@gentoo.org> + +postgresql-docs-8.3.8.ebuild, +postgresql-docs-8.4.1.ebuild: + Bump to 8.4.1 and 8.3.8 *postgresql-docs-8.4.0 (09 Sep 2009) diff --git a/dev-db/postgresql-docs/postgresql-docs-8.3.8.ebuild b/dev-db/postgresql-docs/postgresql-docs-8.3.8.ebuild new file mode 100644 index 000000000000..2b3da4869417 --- /dev/null +++ b/dev-db/postgresql-docs/postgresql-docs-8.3.8.ebuild @@ -0,0 +1,46 @@ +# 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.3.8.ebuild,v 1.1 2009/09/09 22:11:52 patrick Exp $ + +inherit versionator + +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~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="" +RDEPEND="" +RESTRICT="test" + +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 TODO.detail + dodoc TODO.detail/* + + dodir /etc/eselect/postgresql/slots/${SLOT} + { + echo "postgres_ebuilds=\"\${postgres_ebuilds} ${PF}\"" + } >"${D}/etc/eselect/postgresql/slots/${SLOT}/docs" +} diff --git a/dev-db/postgresql-docs/postgresql-docs-8.4.1.ebuild b/dev-db/postgresql-docs/postgresql-docs-8.4.1.ebuild new file mode 100644 index 000000000000..7caf7c180049 --- /dev/null +++ b/dev-db/postgresql-docs/postgresql-docs-8.4.1.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.1.ebuild,v 1.1 2009/09/09 22:11:52 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/* # no longer there? + 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" +} |