diff options
Diffstat (limited to 'app-cdr/isomaster/isomaster-1.3.7.ebuild')
-rw-r--r-- | app-cdr/isomaster/isomaster-1.3.7.ebuild | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/app-cdr/isomaster/isomaster-1.3.7.ebuild b/app-cdr/isomaster/isomaster-1.3.7.ebuild new file mode 100644 index 000000000000..2275066eded6 --- /dev/null +++ b/app-cdr/isomaster/isomaster-1.3.7.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-cdr/isomaster/isomaster-1.3.7.ebuild,v 1.1 2010/01/09 14:41:59 idl0r Exp $ + +EAPI=2 +inherit eutils toolchain-funcs + +DESCRIPTION="Graphical CD image editor for reading, modifying and writing ISO images" +HOMEPAGE="http://littlesvr.ca/isomaster" +SRC_URI="http://littlesvr.ca/${PN}/releases/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~x86-fbsd" +IUSE="nls" + +RDEPEND=">=x11-libs/gtk+-2:2 + dev-libs/iniparser" +DEPEND="${RDEPEND} + dev-util/pkgconfig" + +MYFLAGS="" + +pkg_setup() { + MYFLAGS="PREFIX=/usr" + + if ! use nls; then + MYFLAGS="${MYFLAGS} WITHOUT_NLS=1" + fi +} + +src_prepare() { + epatch "${FILESDIR}/${P}-noiniparser.patch" +} + +# bug 274361 +src_configure() { :; } + +src_compile() { + tc-export CC + emake ${MYFLAGS} || die "emake failed" +} + +src_install() { + emake ${MYFLAGS} DESTDIR="${D}" install || die "emake install failed" + dodoc {CHANGELOG,CREDITS,README,TODO}.TXT +} |