blob: 67c5aa8cd12407750bd5dc60700d8dab818d17aa (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-tex/mpm/mpm-2.7.3107.ebuild,v 1.4 2008/07/21 06:24:35 opfer Exp $
inherit eutils cmake-utils
DESCRIPTION="MiKTeX Tools -- package manager for a TeX distribution"
HOMEPAGE="http://www.miktex.org/unx/"
SRC_URI="http://ftp.dante.de/tex-archive/systems/win32/miktex/source/miktex-${PV}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~amd64"
IUSE=""
DEPEND="net-misc/curl
dev-libs/pth
virtual/latex-base
www-client/lynx
dev-libs/libxslt
!media-sound/mpc"
S="${WORKDIR}/miktex-${PV}"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}/${PN}-2.7.2817-multipleroots.patch"
epatch "${FILESDIR}/${P}-gcc-4.3.patch"
}
pkg_postinst() {
elog ""
elog "Remember to run \"mpm --update-db\" as root before using mpm."
elog ""
}
|