diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2003-10-10 06:44:54 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2003-10-10 06:44:54 +0000 |
commit | 6afe02ed34746bcaa079c094f9a3eea14c1126c6 (patch) | |
tree | 2104fa61114ed2f515f7d80c8359ff295a4c57b2 /app-cdr/cdw/cdw-0.1.4.ebuild | |
parent | initial commit (bug 21217) (diff) | |
download | gentoo-2-6afe02ed34746bcaa079c094f9a3eea14c1126c6.tar.gz gentoo-2-6afe02ed34746bcaa079c094f9a3eea14c1126c6.tar.bz2 gentoo-2-6afe02ed34746bcaa079c094f9a3eea14c1126c6.zip |
initial commit (bug 21217)
Diffstat (limited to 'app-cdr/cdw/cdw-0.1.4.ebuild')
-rw-r--r-- | app-cdr/cdw/cdw-0.1.4.ebuild | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/app-cdr/cdw/cdw-0.1.4.ebuild b/app-cdr/cdw/cdw-0.1.4.ebuild new file mode 100644 index 000000000000..f101add8e8ba --- /dev/null +++ b/app-cdr/cdw/cdw-0.1.4.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-cdr/cdw/cdw-0.1.4.ebuild,v 1.1 2003/10/10 06:44:52 mr_bones_ Exp $ + +DESCRIPTION="ncurses-based console frontend to cdrecord and mkisofs" +HOMEPAGE="http://cdw.sourceforge.net" +SRC_URI="mirror://sourceforge/cdw/${P}.tar.gz" + +KEYWORDS="~x86" +LICENSE="GPL-2" +SLOT="0" + +IUSE="nls" + +RDEPEND="virtual/cdrtools" +DEPEND="sys-libs/ncurses + nls? ( sys-devel/gettext )" + +src_unpack() { + unpack ${A} + sed -i \ + -e '/SUBDIRS/ s/doc//' ${S}/Makefile.in || \ + die "sed Makefile.in failed" +} + +src_compile() { + econf `use_enable nls` || die + emake || die "emake failed" +} + +src_install() { + einstall || die + dodoc AUTHORS ChangeLog NEWS THANKS \ + doc/{KNOWN_BUGS,README,default.conf} || die "dodoc failed" +} |