blob: 8b57304c680b7cc59ec61889f1359864dff58b7e (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-office/tedia2sql/tedia2sql-1.2.12.ebuild,v 1.1 2007/03/05 20:59:13 anant Exp $
inherit eutils
DESCRIPTION="Convert database ERD designed in Dia into SQL DDL scripts."
HOMEPAGE="http://tedia2sql.tigris.org/"
SRC_URI="http://tedia2sql.tigris.org/files/documents/282/19423/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~ppc ~x86"
IUSE="doc"
DEPEND=">=dev-lang/perl-5.8
>=dev-perl/XML-DOM-1.43
>=virtual/perl-Digest-MD5-2.36"
S=${WORKDIR}/${PN}
src_unpack() {
unpack ${A}
cd ${S}
}
src_install() {
insinto /etc
doins tedia2sqlrc
dobin tedia2sql
dodoc README
use doc && dohtml -A sql -A dia www/*
}
|