diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2010-07-15 22:57:22 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2010-07-15 22:57:22 +0000 |
commit | 3f527277982fd9f8e0dbba253be051ab7f0ddcbf (patch) | |
tree | 616bd823f4eb8ba2e83f2f755737e3bd349666f5 /app-cdr/cdw | |
parent | Version bump. (diff) | |
download | gentoo-2-3f527277982fd9f8e0dbba253be051ab7f0ddcbf.tar.gz gentoo-2-3f527277982fd9f8e0dbba253be051ab7f0ddcbf.tar.bz2 gentoo-2-3f527277982fd9f8e0dbba253be051ab7f0ddcbf.zip |
Add live cvs ebuild with ebuild submitted by Roger via bug #320089
(Portage version: 2.1.8.3/cvs/Linux i686)
Diffstat (limited to 'app-cdr/cdw')
-rw-r--r-- | app-cdr/cdw/ChangeLog | 7 | ||||
-rw-r--r-- | app-cdr/cdw/cdw-9999.ebuild | 35 |
2 files changed, 41 insertions, 1 deletions
diff --git a/app-cdr/cdw/ChangeLog b/app-cdr/cdw/ChangeLog index 850b7cc5eed6..f504d5901c3b 100644 --- a/app-cdr/cdw/ChangeLog +++ b/app-cdr/cdw/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-cdr/cdw # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-cdr/cdw/ChangeLog,v 1.36 2010/07/15 10:50:15 hwoarang Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-cdr/cdw/ChangeLog,v 1.37 2010/07/15 22:57:22 mr_bones_ Exp $ + +*cdw-9999 (15 Jul 2010) + + 15 Jul 2010; Michael Sterrett <mr_bones_@gentoo.org> +cdw-9999.ebuild: + Add live cvs ebuild with ebuild submitted by Roger via bug #320089 15 Jul 2010; Markos Chandras <hwoarang@gentoo.org> cdw-0.4.0.ebuild: Stable on amd64 wrt bug #328311 diff --git a/app-cdr/cdw/cdw-9999.ebuild b/app-cdr/cdw/cdw-9999.ebuild new file mode 100644 index 000000000000..ed0129a63fee --- /dev/null +++ b/app-cdr/cdw/cdw-9999.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-cdr/cdw/cdw-9999.ebuild,v 1.1 2010/07/15 22:57:22 mr_bones_ Exp $ + +EAPI=2 +ECVS_SERVER="cdw.cvs.sourceforge.net:/cvsroot/cdw" +ECVS_MODULE="cdw" +ECVS_TOPDIR="${DISTDIR}/cvs-src/${ECVS_MODULE}" + +inherit autotools eutils cvs + +MY_P=${PN}_${PV} +DESCRIPTION="An ncurses based console frontend for cdrtools and dvd+rw-tools" +HOMEPAGE="http://cdw.sourceforge.net" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="" +IUSE="" + +DEPEND="virtual/cdrtools + app-cdr/dvd+rw-tools + dev-libs/libcdio[-minimal] + sys-libs/ncurses[unicode]" + +S=${WORKDIR}/${ECVS_MODULE} + +src_prepare() { + eautoreconf +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed." + dodoc AUTHORS ChangeLog NEWS THANKS +} |