blob: 29ff694f5e9b07b613844e4df7e420d12c666e77 (
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-dns/mydns/mydns-0.11.0.ebuild,v 1.3 2004/07/01 22:12:33 eradicator Exp $
DESCRIPTION="A DNS-Server which gets its data from mysql-databases"
HOMEPAGE="http://mydns.bboy.net/"
SRC_URI="http://mydns.bboy.net/download/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~ppc ~sparc ~alpha ~hppa ~amd64 ~ia64"
IUSE="nls static debug mysql postgres ssl zlib"
RDEPEND="virtual/libc
openssl? ( dev-libs/openssl )
zlib? ( sys-libs/zlib )
|| (
mysql? ( dev-db/mysql )
postgres? ( dev-db/postgresql )
!postgres? ( dev-db/mysql )
)"
DEPEND="${RDEPEND}
sys-devel/bison"
src_compile() {
local myconf
if use mysql || ! use postgres; then
myconf="${myconf} --with-mysql"
else
myconf="${myconf} --without-mysql --with-pgsql"
fi
econf --enable-alias \
`use_enable nls` \
`use_enable debug` \
`use_enable static static-build` \
`use_with ssl openssl` \
`use_with zlib` \
${myconf} || die
emake || die
}
src_install() {
make DESTDIR=${D} install || die
dodoc ABOUT-NLS AUTHORS BUGS ChangeLog INSTALL NEWS README TODO
exeinto /etc/init.d; newexe ${FILESDIR}/mydns.rc6-${PV} mydns || die
if use mysql || ! use postgres; then
sed -i -e 's/__db__/mysql/g' ${D}/etc/init.d/mydns || die
dodoc QUICKSTART.mysql
else
sed -i -e 's/__db__/postgresql/g' ${D}/etc/init.d/mydns || die
dodoc QUICKSTART.postgres
fi
}
pkg_postinst() {
einfo
einfo "You should now run these commands:"
einfo
einfo "# /usr/sbin/mydns --dump-config > /etc/mydns.conf"
einfo "# chmod 0600 /etc/mydns.conf"
if use mysql || ! use postgres; then
einfo "# mysqladmin -u <useruname> -p create mydns"
einfo "# /usr/sbin/mydns --create-tables | mysql -u <username> -p mydns"
einfo
einfo "to create the tables in the MySQL-Database."
einfo "For more info see QUICKSTART.mysql."
else
einfo "# createdb mydns"
einfo "# /usr/sbin/mydns --create-tables | psql mydns"
einfo
einfo "to create the tables in the PostgreSQL-Database."
einfo "For more info see QUICKSTART.postgres."
fi
einfo
}
|