diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2006-05-06 07:21:59 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2006-05-06 07:21:59 +0000 |
commit | f3861091b8c1602e8dbaa95af1443713b779f9d3 (patch) | |
tree | 2fe3a68e5097ea918a218c57fd93094c2f71dc87 /app-cdr/cdw/cdw-0.2.4.ebuild | |
parent | fix #132052 (diff) | |
download | historical-f3861091b8c1602e8dbaa95af1443713b779f9d3.tar.gz historical-f3861091b8c1602e8dbaa95af1443713b779f9d3.tar.bz2 historical-f3861091b8c1602e8dbaa95af1443713b779f9d3.zip |
version bump
Package-Manager: portage-2.1_pre10-r2
Diffstat (limited to 'app-cdr/cdw/cdw-0.2.4.ebuild')
-rw-r--r-- | app-cdr/cdw/cdw-0.2.4.ebuild | 85 |
1 files changed, 85 insertions, 0 deletions
diff --git a/app-cdr/cdw/cdw-0.2.4.ebuild b/app-cdr/cdw/cdw-0.2.4.ebuild new file mode 100644 index 000000000000..1b90485e11d2 --- /dev/null +++ b/app-cdr/cdw/cdw-0.2.4.ebuild @@ -0,0 +1,85 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-cdr/cdw/cdw-0.2.4.ebuild,v 1.1 2006/05/06 07:21:59 mr_bones_ Exp $ + +inherit eutils + +MY_P=${PN}-${PV/_/-} +DESCRIPTION="gtk2 and ncurses-based console frontend to cdrecord and mkisofs" +HOMEPAGE="http://cdw.sourceforge.net" +SRC_URI="mirror://sourceforge/cdw/${PN}-${PV/_/-}.tar.gz" + +KEYWORDS="~ppc ~sparc ~x86" +LICENSE="GPL-2" +SLOT="0" +IUSE="encode gtk mysql nls vorbis sqlite" + +RDEPEND="virtual/cdrtools + gtk? ( >=x11-libs/gtk+-2 + >=dev-libs/glib-2 ) + sys-libs/ncurses + sys-libs/zlib + vorbis? ( media-libs/libvorbis ) + sqlite? ( dev-db/sqlite ) + mysql? ( dev-db/mysql ) + encode? ( media-sound/lame )" +DEPEND="${RDEPEND} + nls? ( sys-devel/gettext ) + gtk? ( dev-util/pkgconfig )" + +S=${WORKDIR}/${MY_P} + +src_compile() { + local myconf + + use vorbis \ + && myconf="${myconf} --with-oggenc=/usr/bin/oggenc" \ + || myconf="${myconf} $(use_with vorbis oggenc)" + + use encode \ + && myconf="${myconf} --with-lame=/usr/bin/lame" \ + || myconf="${myconf} $(use_with encode lame)" + + econf \ + --disable-dependency-tracking \ + ${myconf} \ + $(use_enable nls) \ + $(use_enable mysql) \ + $(use_enable sqlite) \ + $(use_enable gtk gui) || die + emake || die "emake failed" +} + +src_install() { + make DESTDIR="${D}" install || die "make install failed" + + dodoc AUTHORS ChangeLog NEWS THANKS \ + doc/{KNOWN_BUGS,README*,default.conf} + + if use mysql || use sqlite ; then + insinto /usr/share/${PF}/ + doins doc/cdw.sql || die "doins failed" + fi + + # clean up the docs installed with make install + rm -rf "${D}/usr/share/doc/${PN}" + if use gtk ; then + make_desktop_entry cdw CDW cdw.png + doicon pixmaps/cdw.png + fi +} + +pkg_postinst() { + if use mysql || use sqlite ; then + echo + einfo "You have chosen, either by selecting 'USE=mysql' or 'USE=sqlite'" + einfo "to install Disk Catalog support." + einfo "You will have a new tool called cdwdic." + echo + einfo "The directory /usr/share/${PF}/" + einfo "contains a cdw.sql file. You must install this to your system" + einfo "for using the Disk Catalog. The installation process is very" + einfo "simple, you can find the instructions in" + einfo "/usr/share/doc/${PF}/README.gz" + fi +} |