diff options
author | Lars Weiler <pylon@gentoo.org> | 2007-04-10 13:56:15 +0000 |
---|---|---|
committer | Lars Weiler <pylon@gentoo.org> | 2007-04-10 13:56:15 +0000 |
commit | 983cc632690be64b48c0d60e722ac94112cc3433 (patch) | |
tree | 51067ad0caf7f86bf440e729f163a1879bdb7376 /app-cdr/isomaster/isomaster-0.8.1.ebuild | |
parent | mips stable (diff) | |
download | gentoo-2-983cc632690be64b48c0d60e722ac94112cc3433.tar.gz gentoo-2-983cc632690be64b48c0d60e722ac94112cc3433.tar.bz2 gentoo-2-983cc632690be64b48c0d60e722ac94112cc3433.zip |
Version bump; bug #171520.
(Portage version: 2.1.2.3)
Diffstat (limited to 'app-cdr/isomaster/isomaster-0.8.1.ebuild')
-rw-r--r-- | app-cdr/isomaster/isomaster-0.8.1.ebuild | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/app-cdr/isomaster/isomaster-0.8.1.ebuild b/app-cdr/isomaster/isomaster-0.8.1.ebuild new file mode 100644 index 000000000000..0bc5712fd77b --- /dev/null +++ b/app-cdr/isomaster/isomaster-0.8.1.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-cdr/isomaster/isomaster-0.8.1.ebuild,v 1.1 2007/04/10 13:56:15 pylon Exp $ + +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="~amd64 ~x86" +SLOT="0" +IUSE="" + +RDEPEND=">=x11-libs/gtk+-2.0" +DEPEND="${RDEPEND}" + +src_compile() { + emake PREFIX="/usr" || 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;" +} + |