blob: ac540de9ef052caf0cf413a82327b09ef71ca879 (
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
27
28
29
30
31
32
33
34
35
36
37
|
# Copyright 2002 Felix Kurth <felix@fkurth.de>
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/app-cdr/disc-cover/disc-cover-1.3.1.ebuild,v 1.6 2002/07/22 01:39:12 lostlogic Exp $
DESCRIPTION="Creates CD-Covers via Latex by fetching cd-info from freedb.org or local file"
HOMEPAGE="http://www.liacs.nl/~jvhemert/disc-cover/"
LICENSE="GPL-2"
KEYWORDS="x86"
SLOT="0"
DEPEND=">=dev-perl/Audio-CD-disc-cover-0.04
>=app-text/tetex-1.0.7-r7"
SRC_URI="http://www.liacs.nl/~jvhemert/disc-cover/download/unstable/${P}.tar.gz"
src_compile () {
pod2man disc-cover > disc-cover.1 || die
}
src_install () {
into /usr
dobin disc-cover
doman disc-cover.1
dodoc AUTHORS CHANGELOG COPYING TODO
docinto freedb
dodoc freedb/*
docinto docs
docinto docs/english
dodoc docs/english/*
docinto docs/dutch
dodoc docs/dutch/*
docinto docs/german
dodoc docs/german/*
docinto docs/spanish
dodoc docs/spanish/*
}
|