# Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 # $Header: $ DESCRIPTION="Converts CloneCD images (popular under Windows) to ISOs." HOMEPAGE="http://sourceforge.net/projects/ccd2iso/" SRC_URI="http://umn.dl.sourceforge.net/sourceforge/ccd2iso/${PN}.tar.gz" LICENSE="GPL2" SLOT="0" KEYWORDS="~x86" IUSE="" DEPEND="virtual/glibc" S=${WORKDIR}/${PN} src_compile() { #./configure \ # --host=${CHOST} \ # --prefix=/usr \ # --infodir=/usr/share/info \ # --mandir=/usr/share/man || die "./configure failed" # Note the use of --infodir and --mandir, above. This is to make # this package FHS 2.2-compliant. For more information, see # http://www.pathname.com/fhs/ econf || die "Configure failed." emake || die "Make failed." } src_install() { einstall || die "Install failed." }