blob: 333446235d00437ab00a8be8636042672a10b76d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-cdr/cdlabelgen/cdlabelgen-2.3.0.ebuild,v 1.10 2004/02/22 18:00:59 agriffis Exp $
DESCRIPTION="CD cover, tray card and envelope generator"
HOMEPAGE="http://www.aczone.com/tools/cdinsert"
SRC_URI="http://www.aczone.com/pub/tools/${P}.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ppc sparc"
RDEPEND=">=perl-5.6.1"
DEPEND="app-arch/tar
app-arch/gzip"
S="${WORKDIR}/${P}"
src_compile() {
patch -p0 -i ${FILESDIR}/makefile.patch
}
src_install() {
emake DESTDIR="${D}" install || die "install problem"
dodoc README INSTALL.WEB *.spec cdinsert.pl
dohtml *.html
}
|