diff options
-rw-r--r-- | app-office/dia2code/ChangeLog | 10 | ||||
-rw-r--r-- | app-office/dia2code/dia2code-0.8.1.ebuild | 6 | ||||
-rw-r--r-- | app-office/dia2code/dia2code-0.8.3.ebuild | 25 |
3 files changed, 36 insertions, 5 deletions
diff --git a/app-office/dia2code/ChangeLog b/app-office/dia2code/ChangeLog index 8125208ad349..200d625c26a7 100644 --- a/app-office/dia2code/ChangeLog +++ b/app-office/dia2code/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for app-office/dia2code -# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-office/dia2code/ChangeLog,v 1.13 2007/02/09 00:43:13 flameeyes Exp $ +# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-office/dia2code/ChangeLog,v 1.14 2008/02/24 10:31:25 eva Exp $ + +*dia2code-0.8.3 (24 Feb 2008) + + 24 Feb 2008; Gilles Dartiguelongue <eva@gentoo.org> + +dia2code-0.8.3.ebuild: + bump to 0.8.3, fix bug #168870 09 Feb 2007; Diego Pettenò <flameeyes@gentoo.org> ChangeLog: Regenerate digest in Manifest2 format. diff --git a/app-office/dia2code/dia2code-0.8.1.ebuild b/app-office/dia2code/dia2code-0.8.1.ebuild index ecb08888050c..9cdd592b08ae 100644 --- a/app-office/dia2code/dia2code-0.8.1.ebuild +++ b/app-office/dia2code/dia2code-0.8.1.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2005 Gentoo Foundation +# Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-office/dia2code/dia2code-0.8.1.ebuild,v 1.16 2005/10/13 17:12:52 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-office/dia2code/dia2code-0.8.1.ebuild,v 1.17 2008/02/24 10:31:25 eva Exp $ inherit flag-o-matic @@ -26,7 +26,7 @@ src_compile () { } src_install() { - make DESTDIR=${D} install || die + make DESTDIR="${D}" install || die dodoc AUTHORS ChangeLog README TODO doman dia2code.1 } diff --git a/app-office/dia2code/dia2code-0.8.3.ebuild b/app-office/dia2code/dia2code-0.8.3.ebuild new file mode 100644 index 000000000000..cc918acb4784 --- /dev/null +++ b/app-office/dia2code/dia2code-0.8.3.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-office/dia2code/dia2code-0.8.3.ebuild,v 1.1 2008/02/24 10:31:25 eva Exp $ + +inherit flag-o-matic + +DESCRIPTION="Convert UML diagrams produced with Dia to various source code flavours." +HOMEPAGE="http://dia2code.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ia64 ~ppc ~sparc ~x86" +IUSE="" + +DEPEND="virtual/libc + dev-libs/libxml2" +RDEPEND="${DEPEND} + >=app-office/dia-0.90.0" + +src_install() { + emake DESTDIR="${D}" install || die + dodoc AUTHORS ChangeLog README TODO + doman dia2code.1 +} |