diff options
Diffstat (limited to 'app-cdr/cdrkit/cdrkit-1.1.4.ebuild')
-rw-r--r-- | app-cdr/cdrkit/cdrkit-1.1.4.ebuild | 78 |
1 files changed, 78 insertions, 0 deletions
diff --git a/app-cdr/cdrkit/cdrkit-1.1.4.ebuild b/app-cdr/cdrkit/cdrkit-1.1.4.ebuild new file mode 100644 index 000000000000..68ba98cf916e --- /dev/null +++ b/app-cdr/cdrkit/cdrkit-1.1.4.ebuild @@ -0,0 +1,78 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-cdr/cdrkit/cdrkit-1.1.4.ebuild,v 1.1 2007/04/01 21:47:47 pylon Exp $ + +inherit eutils toolchain-funcs + +DESCRIPTION="A suite of programs for recording CDs and DVDs, blanking CD-RW media, creating ISO-9660 filesystem images, extracting audio CD data, and more." +HOMEPAGE="http://cdrkit.org/" +SRC_URI="http://debburn.alioth.debian.org/${P}.tgz" + +LICENSE="GPL-2 LGPL-2.1" +SLOT="0" +KEYWORDS="~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd" +IUSE="hfs unicode kernel_linux kernel_FreeBSD" + +DEPEND=">=dev-util/cmake-2.4 + !app-cdr/cdrtools + kernel_linux? ( sys-libs/libcap ) + unicode? ( virtual/libiconv ) + hfs? ( sys-apps/file )" +RDEPEND="unicode? ( virtual/libiconv )" + +PROVIDE="virtual/cdrtools" + +src_compile() { + cmake \ + -DCMAKE_C_COMPILER=$(type -P $(tc-getCC)) \ + -DCMAKE_C_FLAGS="${CFLAGS}" \ + -DCMAKE_CXX_COMPILER=$(type -P $(tc-getCXX)) \ + -DCMAKE_CXX_FLAGS="${CXXFLAGS}" \ + -DCMAKE_BUILD_TYPE=None \ + -DCMAKE_INSTALL_PREFIX=/usr \ + || die "cmake failed" + + emake || die "emake failed" +} + +src_install() { + emake DESTDIR=${D} install || die "emake install failed" + + dosym /usr/bin/wodim /usr/bin/cdrecord + dosym /usr/bin/genisoimage /usr/bin/mkisofs + dosym /usr/bin/icedax /usr/bin/cdda2wav + dosym /usr/bin/readom /usr/bin/readcd + + cd ${S} + dodoc ABOUT Changelog FAQ FORK START TODO VERSION + + cd ${S}/doc/READMEs + dodoc README* + + cd ${S}/doc/wodim + dodoc README* + + cd ${S}/doc/genisoimage + docinto genisoimage + dodoc * + + cd ${S}/doc/icedax + docinto icedax + dodoc FAQ Frontends HOWTOUSE NEEDED README TODO + + cd ${S}/doc/plattforms + docinto platforms + dodoc README.{linux,parallel} + + cd ${S} + insinto /etc + newins wodim/wodim.dfl wodim.conf + newins netscsid/netscsid.dfl netscsid.conf + + cd ${S} + insinto /usr/include/scsilib + doins include/*.h + insinto /usr/include/scsilib/usal + doins include/usal/*.h + dosym /usr/include/scsilib/usal /usr/include/scsilib/scg +} |