blob: c4870331fdd60d68f0833383994cb9bd99ba9d4a (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/latex-calendar/latex-calendar-3.1.ebuild,v 1.1 2002/11/05 04:02:38 satai Exp $
inherit latex-package
MY_P="calendar"
S=${WORKDIR}/${MY_P}
DESCRIPTION="LaTeX package used to create Calendars. Very flexible and robust."
SRC_URI="http://www.ibiblio.org/gentoo/distfiles/${P}.tar.gz"
HOMEPAGE="ftp://ibiblio.org/pub/packages/TeX/macros/latex/contrib/supported/"
LICENSE="as-is"
SLOT="0"
KEYWORDS="~x86 ~sparc ~sparc64 ~ppc"
src_compile() {
debug-print function $FUNCNAME $*
cd ${S}
echo "Extracting from allcal.ins"
echo "y
y" | latex allcal.ins > /dev/null
}
src_install() {
cd ${S}
latex-package_src_doinstall styles fonts bin
dodoc README MANIFEST CATALOG
insinto /usr/share/doc/${P}/samples
doins bigdemo.tgz *.cfg *.tex *.cld
}
|