diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2002-05-24 10:46:06 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2002-05-24 10:46:06 +0000 |
commit | a03a1c8d04c6198fb02971d13337b6e95fa9bb31 (patch) | |
tree | d374acf6bb1769857c7ba03221a75d2e36b9a9b6 /app-cdr | |
parent | version bump (diff) | |
download | gentoo-2-a03a1c8d04c6198fb02971d13337b6e95fa9bb31.tar.gz gentoo-2-a03a1c8d04c6198fb02971d13337b6e95fa9bb31.tar.bz2 gentoo-2-a03a1c8d04c6198fb02971d13337b6e95fa9bb31.zip |
small nls fix0r
Diffstat (limited to 'app-cdr')
-rw-r--r-- | app-cdr/gcombust/ChangeLog | 9 | ||||
-rw-r--r-- | app-cdr/gcombust/files/digest-gcombust-0.1.50-r1 | 1 | ||||
-rw-r--r-- | app-cdr/gcombust/gcombust-0.1.50-r1.ebuild | 37 |
3 files changed, 46 insertions, 1 deletions
diff --git a/app-cdr/gcombust/ChangeLog b/app-cdr/gcombust/ChangeLog index 3bbd19255810..b8e51f04b06a 100644 --- a/app-cdr/gcombust/ChangeLog +++ b/app-cdr/gcombust/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for app-cdr/gcombust # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/app-cdr/gcombust/ChangeLog,v 1.3 2002/05/24 05:31:14 agenkin Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-cdr/gcombust/ChangeLog,v 1.4 2002/05/24 10:46:06 seemant Exp $ + +*gcombust-0.1.50-r1 (24 May 2002) + + 24 May 2002; Seemant Kulleen <seemant@gentoo.org> + gcombust-0.1.50-r1.ebuild files/digest-gcombust-0.1.50-r1 : + + NLS fix so that it won't break when there is no system libintl.h file. *gcombust-0.1.50 (24 May 2002) diff --git a/app-cdr/gcombust/files/digest-gcombust-0.1.50-r1 b/app-cdr/gcombust/files/digest-gcombust-0.1.50-r1 new file mode 100644 index 000000000000..491e11619dcc --- /dev/null +++ b/app-cdr/gcombust/files/digest-gcombust-0.1.50-r1 @@ -0,0 +1 @@ +MD5 f3779091a01a97237fa0fc5e1fd2e897 gcombust-0.1.50.tar.gz 751399 diff --git a/app-cdr/gcombust/gcombust-0.1.50-r1.ebuild b/app-cdr/gcombust/gcombust-0.1.50-r1.ebuild new file mode 100644 index 000000000000..f1913a6f98c3 --- /dev/null +++ b/app-cdr/gcombust/gcombust-0.1.50-r1.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# $Header: /var/cvsroot/gentoo-x86/app-cdr/gcombust/gcombust-0.1.50-r1.ebuild,v 1.1 2002/05/24 10:46:06 seemant Exp $ + +DESCRIPTION="A GUI for mkisofs/mkhybrid/cdda2wav/cdrecord/cdlabelgen" +HOMEPAGE="http://www.abo.fi/~jmunsin/gcombust/" + +DEPEND="=x11-libs/gtk+-1.2* + nls? ( sys-devel/gettext )" + +SLOT="0" +SRC_URI="http://www.abo.fi/~jmunsin/gcombust/${P}.tar.gz" +S=${WORKDIR}/${P} + +src_compile() { + local myopts + + if [ -z "`use nls`" ] + then + myopts="${myopts} --disable-nls" + touch intl/libintl.h + else + myopts="${myopts} --enable-nls" + fi + + ./configure --host=${CHOST} \ + --prefix=/usr \ + ${myopts} \ + || 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 +} |