diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2009-01-09 15:41:50 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2009-01-09 15:41:50 +0000 |
commit | 3235f95f4cfc9c3a639ff384b4b1187e79d135b0 (patch) | |
tree | 85ca58135f333a3c2a3c066b7b8b83e865be6f1a /app-cdr/uif2iso | |
parent | x11-wm/pekwm: Change virtual/xft dependency to x11-libs/libXft, bug 253771. (diff) | |
download | gentoo-2-3235f95f4cfc9c3a639ff384b4b1187e79d135b0.tar.gz gentoo-2-3235f95f4cfc9c3a639ff384b4b1187e79d135b0.tar.bz2 gentoo-2-3235f95f4cfc9c3a639ff384b4b1187e79d135b0.zip |
Version bump.
(Portage version: 2.2_rc20/cvs/Linux 2.6.28-gentoo x86_64)
Diffstat (limited to 'app-cdr/uif2iso')
-rw-r--r-- | app-cdr/uif2iso/ChangeLog | 10 | ||||
-rw-r--r-- | app-cdr/uif2iso/uif2iso-0.1.7a.ebuild | 32 |
2 files changed, 40 insertions, 2 deletions
diff --git a/app-cdr/uif2iso/ChangeLog b/app-cdr/uif2iso/ChangeLog index 42c11cabb71c..4049bc829672 100644 --- a/app-cdr/uif2iso/ChangeLog +++ b/app-cdr/uif2iso/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for app-cdr/uif2iso -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-cdr/uif2iso/ChangeLog,v 1.6 2008/12/07 03:04:38 flameeyes Exp $ +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-cdr/uif2iso/ChangeLog,v 1.7 2009/01/09 15:41:50 flameeyes Exp $ + +*uif2iso-0.1.7a (09 Jan 2009) + + 09 Jan 2009; Diego E. Pettenò <flameeyes@gentoo.org> + +uif2iso-0.1.7a.ebuild: + Version bump. 07 Dec 2008; Diego E. Pettenò <flameeyes@gentoo.org> metadata.xml: Add long description. diff --git a/app-cdr/uif2iso/uif2iso-0.1.7a.ebuild b/app-cdr/uif2iso/uif2iso-0.1.7a.ebuild new file mode 100644 index 000000000000..1e678116ff97 --- /dev/null +++ b/app-cdr/uif2iso/uif2iso-0.1.7a.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-cdr/uif2iso/uif2iso-0.1.7a.ebuild,v 1.1 2009/01/09 15:41:50 flameeyes Exp $ + +inherit eutils toolchain-funcs + +DESCRIPTION="Converts MagicISO CD-images to iso" +HOMEPAGE="http://aluigi.org/mytoolz.htm#uif2iso" +SRC_URI="mirror://gentoo/${P}.zip" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND="sys-libs/zlib" +DEPEND="${RDEPEND} + app-arch/unzip" + +S="${WORKDIR}/src" + +src_compile() { + # Yes we use our own makefile, I'll try to explain this to + # upstream _again_. + emake CC="$(tc-getCC)" -f "${FILESDIR}/0.1.7-Makefile" || die "emake failed" +} + +src_install() { + dobin ${PN} || die "failed to install" + + dodoc "${WORKDIR}"/${PN}.txt "${WORKDIR}"/README +} |