Mercurial > hg > portage
annotate dev-db/postgresql-docs/postgresql-docs-8.4.1.ebuild @ 163:f5d4e7d39897
samba-3.3.7 is updated in portage
author | holger |
---|---|
date | Mon, 21 Sep 2009 23:31:54 +0200 |
parents | 7ce3014adf4b |
children |
rev | line source |
---|---|
160
7ce3014adf4b
sync postgres ebuilds with Gentoo bug#276125, fixes misc. bugs
holger
parents:
159
diff
changeset
|
1 # Copyright 1999-2008 Gentoo Foundation |
148 | 2 # Distributed under the terms of the GNU General Public License v2 |
160
7ce3014adf4b
sync postgres ebuilds with Gentoo bug#276125, fixes misc. bugs
holger
parents:
159
diff
changeset
|
3 # $Header: /var/cvsroot/gentoo-x86/dev-db/postgresql-docs/postgresql-docs-8.3.5.ebuild,v 1.1 2008/12/03 19:20:23 caleb Exp $ |
148 | 4 |
5 inherit versionator | |
6 | |
160
7ce3014adf4b
sync postgres ebuilds with Gentoo bug#276125, fixes misc. bugs
holger
parents:
159
diff
changeset
|
7 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~sparc-fbsd ~x86 ~x86-fbsd" |
148 | 8 |
9 # Nothing to test here per 232157 | |
10 RESTRICT="test" | |
11 | |
12 DESCRIPTION="PostgreSQL documentation" | |
13 HOMEPAGE="http://www.postgresql.org/" | |
14 SRC_URI="mirror://postgresql/source/v${PV}/postgresql-${PV}.tar.bz2" | |
15 LICENSE="POSTGRESQL" | |
16 SLOT="$(get_version_component_range 1-2)" | |
17 IUSE="" | |
18 | |
19 DEPEND="" | |
20 | |
21 S="${WORKDIR}/postgresql-${PV}" | |
22 | |
23 src_compile() { | |
24 : | |
25 } | |
26 | |
27 src_install() { | |
28 dodir /usr/share/doc/${PF}/html | |
29 tar -zxf "${S}/doc/postgres.tar.gz" -C "${D}/usr/share/doc/${PF}/html" | |
30 cd "${S}/doc" | |
31 docinto FAQ_html | |
32 dodoc src/FAQ/* | |
160
7ce3014adf4b
sync postgres ebuilds with Gentoo bug#276125, fixes misc. bugs
holger
parents:
159
diff
changeset
|
33 docinto sgml |
7ce3014adf4b
sync postgres ebuilds with Gentoo bug#276125, fixes misc. bugs
holger
parents:
159
diff
changeset
|
34 dodoc src/sgml/*.{sgml,dsl} |
7ce3014adf4b
sync postgres ebuilds with Gentoo bug#276125, fixes misc. bugs
holger
parents:
159
diff
changeset
|
35 docinto sgml/ref |
7ce3014adf4b
sync postgres ebuilds with Gentoo bug#276125, fixes misc. bugs
holger
parents:
159
diff
changeset
|
36 dodoc src/sgml/ref/*.sgml |
7ce3014adf4b
sync postgres ebuilds with Gentoo bug#276125, fixes misc. bugs
holger
parents:
159
diff
changeset
|
37 docinto |
7ce3014adf4b
sync postgres ebuilds with Gentoo bug#276125, fixes misc. bugs
holger
parents:
159
diff
changeset
|
38 dodoc TODO |
148 | 39 |
40 dodir /etc/eselect/postgresql/slots/${SLOT} | |
41 { | |
42 echo "postgres_ebuilds=\"\${postgres_ebuilds} ${PF}\"" | |
43 } >"${D}/etc/eselect/postgresql/slots/${SLOT}/docs" | |
44 } |