summaryrefslogtreecommitdiff
path: root/www-misc/pglogd/pglogd-2.3.ebuild
blob: dad9a04aace0ed86413a4f8f07626e85381308c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

inherit eutils postgresql

DESCRIPTION="pgLOGd writes web server log entries to a PostgreSQL database"
HOMEPAGE="http://www.digitalstratum.com/pglogd/"
SRC_URI="http://www.digitalstratum.com/pglogd/${P}.tar.gz"

LICENSE="BSD"
SLOT="0"
KEYWORDS="~x86 ~amd64"
IUSE=""

DEPEND="dev-db/postgresql-libs"

src_unpack() {
	unpack ${A}
	cd ${S}
	epatch ${FILESDIR}/${P}-path.patch
}

src_compile() {
	local pgconfig=$(postgresql_get_pgconfig)
	emake COPTS= \
		CFLAGS="${CFLAGS} -I$(${pgconfig} --includedir)" \
		LDFLAGS="${LDFLAGS} -L$(${pgconfig} --libdir)" \
		|| die "emake failed"
}

src_install() {
	dobin pglogctl
	dosbin pglogd
	dodoc CHANGELOG README pglogd_tables.sql weblog_daily.sql queries.txt pglogd.conf

	insinto /etc
	doins pglogd.conf

	exeinto /etc/init.d
	newexe ${FILESDIR}/pglogd.init pglogd
}

pkg_postinst() {
	echo
	einfo "Create a database on PostgreSQL server,"
	einfo "default name pglogd, but call it what you want,"
	einfo "and create the required tables within the database. An SQL script is"
	einfo "included with the source /usr/share/doc/${PF}/pglogd_tables.sql.gz"
	einfo "to accomplish this:"
	einfo
	einfo "  # su - postgres"
	einfo "  $ createdb pglogd"
	einfo "  $ zcat /usr/share/doc/${PF}/pglogd_tables.sql.gz | psql pglogd"
	einfo "  $ exit"
	einfo
	einfo "Then, you need to edit /etc/pglogd.conf against your enviroment."
	einfo "Finally, start up pglogd."
	einfo "   # /etc/init.d/pglogd start before apache server."
	echo
}