You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
860 B
30 lines
860 B
# Copyright 1999-2013 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/dev-db/pgtune/pgtune-0.9.3.ebuild,v 1.3 2013/05/10 08:19:14 patrick Exp $
|
|
EAPI=4
|
|
|
|
inherit eutils
|
|
|
|
DESCRIPTION="A postgresql settings tuning wizard"
|
|
|
|
HOMEPAGE="http://pgfoundry.org/projects/pgtune/"
|
|
SRC_URI="http://pgfoundry.org/frs/download.php/2449/${P}.tar.gz"
|
|
LICENSE="BSD"
|
|
SLOT="0"
|
|
KEYWORDS="~x86 ~amd64"
|
|
|
|
IUSE=""
|
|
|
|
RDEPEND="dev-lang/python"
|
|
DEPEND="${RDEPEND}"
|
|
|
|
src_install() {
|
|
mkdir -p "${D}/usr/bin"
|
|
mkdir -p "${D}/usr/share/doc/${P}"
|
|
cp "${S}/pgtune" "${D}/usr/bin/pgtune" || die
|
|
for i in COPYRIGHT README TODO pg_settings-8.4-32 pg_settings-8.4-64 pgtune-settingsdir.patch pgtune.spec postgresql.conf.sample; do
|
|
cp "${S}/${i}" "${D}/usr/share/doc/${P}" || die
|
|
done
|
|
docompress -x /usr/share/doc
|
|
}
|