Gentoo Archives: gentoo-commits

From: "Andreas K. Hüttel" <dilfridge@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-tex/dvi2gr/
Date: Thu, 17 Jan 2019 22:35:05
Message-Id: 1547764486.e2d609a7ef0537bcdebf15e86514b4b557602413.dilfridge@gentoo
1 commit: e2d609a7ef0537bcdebf15e86514b4b557602413
2 Author: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jan 17 22:34:46 2019 +0000
4 Commit: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
5 CommitDate: Thu Jan 17 22:34:46 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e2d609a7
7
8 dev-tex/dvi2gr: Remove old, bug 648050
9
10 Package-Manager: Portage-2.3.56, Repoman-2.3.12
11 Signed-off-by: Andreas K. Hüttel <dilfridge <AT> gentoo.org>
12
13 dev-tex/dvi2gr/dvi2gr-0.4.ebuild | 40 ----------------------------------------
14 1 file changed, 40 deletions(-)
15
16 diff --git a/dev-tex/dvi2gr/dvi2gr-0.4.ebuild b/dev-tex/dvi2gr/dvi2gr-0.4.ebuild
17 deleted file mode 100644
18 index 6d50d1eebc1..00000000000
19 --- a/dev-tex/dvi2gr/dvi2gr-0.4.ebuild
20 +++ /dev/null
21 @@ -1,40 +0,0 @@
22 -# Copyright 1999-2010 Gentoo Foundation
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=2
26 -
27 -DESCRIPTION="DVI to Grace translator"
28 -HOMEPAGE="http://plasma-gate.weizmann.ac.il/Grace/"
29 -SRC_URI="ftp://plasma-gate.weizmann.ac.il/pub/grace/src/devel/${P}.tar.gz"
30 -
31 -SLOT="0"
32 -LICENSE="GPL-2"
33 -KEYWORDS="~amd64 ~x86"
34 -IUSE="examples"
35 -
36 -DEPEND="media-libs/t1lib"
37 -RDEPEND="${DEPEND}"
38 -
39 -src_prepare() {
40 - # respect flags
41 - sed -i \
42 - -e '/^LDFLAGS/d' -e '/^CFLAGS/d' -e '/^CC/d' \
43 - Makefile || die
44 - sed -i -e 's/DVI2GR=\.\/dvi2gr/DVI2GR=$(which dvi2gr)/g' runtest.sh || die
45 -}
46 -
47 -src_install() {
48 - dobin ${PN} || die
49 - if use examples; then
50 - insinto /usr/share/doc/${PF}/examples
51 - doins *.ti runtest.sh || die
52 - fi
53 -
54 - insinto /usr/share/${PN}
55 - doins -r fonts || die
56 -}
57 -
58 -pkg_postinst() {
59 - einfo "Don't forget install the TeX-Fonts in Grace"
60 - einfo " /usr/share/${PN}/fonts/FontDataBase"
61 -}