# ChangeLog for app-cdr/isomaster
-# Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-cdr/isomaster/ChangeLog,v 1.1 2006/12/03 05:55:55 pylon Exp $
+# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-cdr/isomaster/ChangeLog,v 1.2 2007/02/04 02:35:24 pylon Exp $
+
+*isomaster-0.7 (04 Feb 2007)
+
+ 04 Feb 2007; Lars Weiler <pylon@gentoo.org> +isomaster-0.7.ebuild:
+ Version bump; bug #157697; thanks to Wojciech Myrda for the ebuild.
*isomaster-0.5 (03 Dec 2006)
--- /dev/null
+MD5 ecc0a033211bb61c18a0bdde5612f2c9 isomaster-0.7.tar.bz2 161558
+RMD160 693f19986a96b73de265655e0bb1743192239746 isomaster-0.7.tar.bz2 161558
+SHA256 f72472173be1c69ce74249a956fe7cad80ce0563a97dd0cbc1fa098a24c851d7 isomaster-0.7.tar.bz2 161558
--- /dev/null
+# Copyright 1999-2007 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header:
+
+inherit eutils
+
+DESCRIPTION="GTK2 (bootable) CD ISO Image editor."
+HOMEPAGE="http://littlesvr.ca/isomaster/"
+SRC_URI="http://littlesvr.ca/isomaster/releases/${P}.tar.bz2"
+
+LICENSE="GPL-2"
+KEYWORDS="~x86"
+SLOT="0"
+IUSE=""
+
+RDEPEND=">=x11-libs/gtk+-2.0"
+DEPEND="${RDEPEND}"
+
+src_compile() {
+ # make flags useful
+ sed -i -e "s:-Wall:${CFLAGS}:" Makefile || die "sed failed"
+ sed -i -e "s:-Wall:${CFLAGS}:" */Makefile || die "sed failed"
+
+ emake -j1 || die "emake failed"
+}
+
+src_install() {
+ emake PREFIX="/usr" DESTDIR="${D}" install || die "Install failed"
+ dodoc *.TXT bk/TODO.TXT
+
+ doicon icons/${PN}.png
+ make_desktop_entry ${PN} "Isomaster" ${PN}.png "Application;AudioVideo;"
+}
+