diff options
author | Mike Frysinger <vapier@gentoo.org> | 2004-04-07 19:02:06 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2004-04-07 19:02:06 +0000 |
commit | e2293d0c61866c12b8a3c106f244ba7e81114edb (patch) | |
tree | d995b8eb2580f5286ee9fe5c90db726d4f6c8833 /app-office/tedia2sql | |
parent | use eutils for epatch (diff) | |
download | historical-e2293d0c61866c12b8a3c106f244ba7e81114edb.tar.gz historical-e2293d0c61866c12b8a3c106f244ba7e81114edb.tar.bz2 historical-e2293d0c61866c12b8a3c106f244ba7e81114edb.zip |
add inherit eutils
Diffstat (limited to 'app-office/tedia2sql')
-rw-r--r-- | app-office/tedia2sql/tedia2sql-1.2.8.ebuild | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/app-office/tedia2sql/tedia2sql-1.2.8.ebuild b/app-office/tedia2sql/tedia2sql-1.2.8.ebuild index e1e88f5a1ba1..ace3b4cfac2d 100644 --- a/app-office/tedia2sql/tedia2sql-1.2.8.ebuild +++ b/app-office/tedia2sql/tedia2sql-1.2.8.ebuild @@ -1,30 +1,29 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-office/tedia2sql/tedia2sql-1.2.8.ebuild,v 1.2 2004/03/14 01:47:30 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-office/tedia2sql/tedia2sql-1.2.8.ebuild,v 1.3 2004/04/07 19:02:06 vapier Exp $ -mypv=$(echo ${PV} | sed s/\\.//g) +inherit eutils +MY_PV=${PV//.} 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/2144/${PN}-${mypv}.tar.gz" +SRC_URI="http://tedia2sql.tigris.org/files/documents/282/2144/${PN}-${MY_PV}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~x86" - IUSE="doc" DEPEND=">=dev-lang/perl-5.8 - >=dev-perl/XML-DOM-1.43 - >=dev-perl/Digest-MD5-2.24" + >=dev-perl/XML-DOM-1.43 + >=dev-perl/Digest-MD5-2.24" S=${WORKDIR}/${PN} src_unpack() { unpack ${A} - cd ${S} - epatch ${FILESDIR}/${PN}-gentoo.patch || die + epatch ${FILESDIR}/${PN}-gentoo.patch } src_install() { @@ -32,6 +31,6 @@ src_install() { doins tedia2sqlrc dobin tedia2sql - dodoc LICENSE README + dodoc README use doc && dohtml -A sql -A dia www/* } |