diff options
author | Chris Houser <chouser@gentoo.org> | 2002-02-05 04:05:35 +0000 |
---|---|---|
committer | Chris Houser <chouser@gentoo.org> | 2002-02-05 04:05:35 +0000 |
commit | c9d9c7a39ef3637bbb521841d22bfea2422a7d58 (patch) | |
tree | 7c9729ed4bdfac7fc6a3ba9cee5cb526c151657b /app-cdr/gcombust | |
parent | Adding cdcat. Thanks Ilian Zarov. (diff) | |
download | gentoo-2-c9d9c7a39ef3637bbb521841d22bfea2422a7d58.tar.gz gentoo-2-c9d9c7a39ef3637bbb521841d22bfea2422a7d58.tar.bz2 gentoo-2-c9d9c7a39ef3637bbb521841d22bfea2422a7d58.zip |
First ebuild. Thanks Matthew Kennedy.
http://bugs.gentoo.org/show_bug.cgi?id=519
Diffstat (limited to 'app-cdr/gcombust')
-rw-r--r-- | app-cdr/gcombust/files/digest-gcombust-0.1.48 | 1 | ||||
-rw-r--r-- | app-cdr/gcombust/gcombust-0.1.48.ebuild | 23 |
2 files changed, 24 insertions, 0 deletions
diff --git a/app-cdr/gcombust/files/digest-gcombust-0.1.48 b/app-cdr/gcombust/files/digest-gcombust-0.1.48 new file mode 100644 index 000000000000..9cfd4f8ccee4 --- /dev/null +++ b/app-cdr/gcombust/files/digest-gcombust-0.1.48 @@ -0,0 +1 @@ +MD5 5b998524ee45b766e75b7cf13e6e7b9f gcombust-0.1.48.tar.gz 778240 diff --git a/app-cdr/gcombust/gcombust-0.1.48.ebuild b/app-cdr/gcombust/gcombust-0.1.48.ebuild new file mode 100644 index 000000000000..c374aa9de3c2 --- /dev/null +++ b/app-cdr/gcombust/gcombust-0.1.48.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author: Matthew Kennedy <mbkennedy@ieee.com> +# Maintainer: Chris Houser <chouser@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/app-cdr/gcombust/gcombust-0.1.48.ebuild,v 1.1 2002/02/05 04:05:35 chouser Exp $ + +S=${WORKDIR}/${P} +DESCRIPTION="A GUI for mkisofs/mkhybrid/cdda2wav/cdrecord/cdlabelgen" +SRC_URI="http://www.abo.fi/~jmunsin/gcombust/${P}.tar.gz" +HOMEPAGE="http://www.abo.fi/~jmunsin/gcombust/" + +DEPEND=">=x11-libs/gtk+-1.2.10" + +src_compile() { + ./configure --host=${CHOST} --prefix=/usr || die + emake || die +} + +src_install() { + make prefix=${D}/usr install || die + dodoc ABOUT-NLS AUTHORS ChangeLog COPYING INSTALL NEWS README THANKS TODO + dohtml -a shtml FAQ.shtml +} |