diff options
author | Lars Weiler <pylon@gentoo.org> | 2005-07-21 21:10:49 +0000 |
---|---|---|
committer | Lars Weiler <pylon@gentoo.org> | 2005-07-21 21:10:49 +0000 |
commit | fed78bc116beab95d74f3dcd12853444778fe635 (patch) | |
tree | 2a6a8ceadbdd24c75598651bc40efd65a4b3a1a0 /app-cdr/mdf2iso | |
parent | Stable on hppa (diff) | |
download | historical-fed78bc116beab95d74f3dcd12853444778fe635.tar.gz historical-fed78bc116beab95d74f3dcd12853444778fe635.tar.bz2 historical-fed78bc116beab95d74f3dcd12853444778fe635.zip |
Version bump; bug #97019.
Package-Manager: portage-2.0.51.22-r2
Diffstat (limited to 'app-cdr/mdf2iso')
-rw-r--r-- | app-cdr/mdf2iso/ChangeLog | 7 | ||||
-rw-r--r-- | app-cdr/mdf2iso/Manifest | 6 | ||||
-rw-r--r-- | app-cdr/mdf2iso/files/digest-mdf2iso-0.3.0 | 1 | ||||
-rw-r--r-- | app-cdr/mdf2iso/mdf2iso-0.3.0.ebuild | 26 |
4 files changed, 37 insertions, 3 deletions
diff --git a/app-cdr/mdf2iso/ChangeLog b/app-cdr/mdf2iso/ChangeLog index 7e0250b7d16e..2d4385e21e99 100644 --- a/app-cdr/mdf2iso/ChangeLog +++ b/app-cdr/mdf2iso/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-cdr/mdf2iso # Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-cdr/mdf2iso/ChangeLog,v 1.5 2005/05/30 18:44:44 pylon Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-cdr/mdf2iso/ChangeLog,v 1.6 2005/07/21 21:10:49 pylon Exp $ + +*mdf2iso-0.3.0 (21 Jul 2005) + + 21 Jul 2005; Lars Weiler <pylon@gentoo.org> +mdf2iso-0.3.0.ebuild: + Version bump; bug #97019. 30 May 2005; Lars Weiler <pylon@gentoo.org> mdf2iso-0.2.1.ebuild: Changed to toolchain-funcs; bug #92745. diff --git a/app-cdr/mdf2iso/Manifest b/app-cdr/mdf2iso/Manifest index 6187caf9f12e..06d53200d5f2 100644 --- a/app-cdr/mdf2iso/Manifest +++ b/app-cdr/mdf2iso/Manifest @@ -1,4 +1,6 @@ -MD5 54a10aba12f903d191069cf36c6966b3 metadata.xml 381 -MD5 291dbba16b1026fb625b9feb88db2442 ChangeLog 768 +MD5 19d7f530bb193d5b5c636d84eb5322f9 ChangeLog 896 MD5 1ddb20a68fa272a1344659de28a87486 mdf2iso-0.2.1.ebuild 670 +MD5 54a10aba12f903d191069cf36c6966b3 metadata.xml 381 +MD5 9564ca00299f6c63a91cf1adb6960e45 mdf2iso-0.3.0.ebuild 683 MD5 21c7873a3387ed12e7d9ddd8eeb024ca files/digest-mdf2iso-0.2.1 68 +MD5 f4ab406594d880779dd70ba750b1d5a2 files/digest-mdf2iso-0.3.0 69 diff --git a/app-cdr/mdf2iso/files/digest-mdf2iso-0.3.0 b/app-cdr/mdf2iso/files/digest-mdf2iso-0.3.0 new file mode 100644 index 000000000000..8c95c423aa91 --- /dev/null +++ b/app-cdr/mdf2iso/files/digest-mdf2iso-0.3.0 @@ -0,0 +1 @@ +MD5 a190625318476a196930ac66acd8fd07 mdf2iso-0.3.0-src.tar.bz2 97723 diff --git a/app-cdr/mdf2iso/mdf2iso-0.3.0.ebuild b/app-cdr/mdf2iso/mdf2iso-0.3.0.ebuild new file mode 100644 index 000000000000..5222e87eb129 --- /dev/null +++ b/app-cdr/mdf2iso/mdf2iso-0.3.0.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-cdr/mdf2iso/mdf2iso-0.3.0.ebuild,v 1.1 2005/07/21 21:10:49 pylon Exp $ + +inherit toolchain-funcs + +DESCRIPTION="Alcohol 120% bin image to ISO image file converter" +HOMEPAGE="http://mdf2iso.berlios.de/" +SRC_URI="http://download.berlios.de/${PN}/${P}-src.tar.bz2" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86 ~ppc ~amd64" +IUSE="" +DEPEND="virtual/libc" + +S=${WORKDIR}/${PN} + +src_compile() { + econf CFLAGS="${CFLAGS}" || die "configure failed" + emake || die "make failed" +} + +src_install() { + dodoc ChangeLog + dobin src/${PN} || die "dobin failed" +} |