blob: 019ac7edfc1fb0946b576309586ce19264888088 (
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
|
# 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.2960.ebuild,v 1.1 2008/02/16 17:57:13 opfer Exp $
inherit eutils cmake-utils
MY_PV=${PV/_beta/-beta-}
DESCRIPTION="MiKTeX Tools -- package manager for a TeX distribution"
HOMEPAGE="http://www.miktex.org/unx/"
SRC_URI="mirror://sourceforge/miktex/miktex-${MY_PV}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~amd64"
IUSE=""
DEPEND="net-misc/curl
dev-libs/pth
www-client/lynx
virtual/latex-base"
S="${WORKDIR}/miktex-${MY_PV}"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}/${PN}-2.7.2817-multipleroots.patch"
}
pkg_postinst() {
elog ""
elog "Remember to run \"mpm --update-db\" as root before using mpm."
elog ""
}
|