summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Palimaka <kensington@gentoo.org>2016-05-23 05:16:22 +1000
committerMichael Palimaka <kensington@gentoo.org>2016-05-23 05:16:50 +1000
commit0b4b4428624c1003fe2e95c26abbbc4197d4e1c7 (patch)
treed21a57ef6c00ffd01ffd6b0d7ef2981991a47dee
parentmedia-gfx/digikam: remove bogus LINGUAS options (diff)
downloadgentoo-0b4b4428624c1003fe2e95c26abbbc4197d4e1c7.tar.gz
gentoo-0b4b4428624c1003fe2e95c26abbbc4197d4e1c7.tar.bz2
gentoo-0b4b4428624c1003fe2e95c26abbbc4197d4e1c7.zip
app-misc/tablix: remove last-rited package
-rw-r--r--app-misc/tablix/Manifest1
-rw-r--r--app-misc/tablix/metadata.xml9
-rw-r--r--app-misc/tablix/tablix-0.3.5-r1.ebuild59
3 files changed, 0 insertions, 69 deletions
diff --git a/app-misc/tablix/Manifest b/app-misc/tablix/Manifest
deleted file mode 100644
index 498edc1680b8..000000000000
--- a/app-misc/tablix/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST tablix2-0.3.5.tar.gz 4361294 SHA256 800ad85cb15d654a200a1b72969c219e29cbe5f55d4f092e316e52062083fd1d SHA512 bc5a892182185904ae836d4218668d23d9dfe7a593101ee26554212e71aabcb1d4a75fa2f09ce0635af46b03861759695418f4113abafe387de66b3e9be1b6d2 WHIRLPOOL c3ebae34df9844fa7d8a5c5702ae78e87504a201a8081ce40e273ca1b73b420dd2a5178cf956e859a95fa6d688f71283d819d52bcf1c56c8a6667ca8e57084b2
diff --git a/app-misc/tablix/metadata.xml b/app-misc/tablix/metadata.xml
deleted file mode 100644
index ebd5eb5468d7..000000000000
--- a/app-misc/tablix/metadata.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-<!-- maintainer-needed -->
-<use>
- <flag name="pvm">Add support for parallel virtual machine
- (sys-cluster/pvm)</flag>
-</use>
-</pkgmetadata>
diff --git a/app-misc/tablix/tablix-0.3.5-r1.ebuild b/app-misc/tablix/tablix-0.3.5-r1.ebuild
deleted file mode 100644
index 8c1feee3393f..000000000000
--- a/app-misc/tablix/tablix-0.3.5-r1.ebuild
+++ /dev/null
@@ -1,59 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="2"
-inherit eutils autotools
-
-MY_PV="${PN}2-${PV}"
-
-DESCRIPTION="Tablix is a powerful free software kernel for solving general timetabling problems"
-HOMEPAGE="http://www.tablix.org/"
-SRC_URI="http://www.tablix.org/releases/stable/${MY_PV}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc x86"
-IUSE="pvm"
-
-DEPEND=">=dev-libs/libxml2-2.4.3
- pvm? ( sys-cluster/pvm )"
-
-S="${WORKDIR}/${MY_PV}"
-
-pkg_setup() {
- if ! use pvm; then
- ewarn
- ewarn "Without parallel virtual machine support, tablix will not be able"
- ewarn "to solve even moderately complex problems. Even if you are using"
- ewarn "a single machine, USE=pvm is highly recommended."
- ewarn
- epause 5
- fi
-}
-
-src_prepare() {
- sed -i "/^localedir/s:/locale:/share/${PN}/locale:" configure.in \
- || die "sed failed"
- sed -i "/^ACLOCAL_AMFLAGS/s:^:#:" Makefile.am \
- || die "sed failed"
- eautoreconf
- # fix compilation when no optimizations are enabled wrt bug #240046
- sed -i -e '32 d' -e '34 d' src/master.c || die "sed failed"
- sed -i -e '31 d' -e '33 d' src/main.c || die "sed failed"
- sed -i -e '30 d' -e '32 d' src/output.c || die "sed failed"
-
-}
-
-src_configure() {
- econf \
- $(use_with pvm pvm3) \
- || die
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die
- dodoc AUTHORS BUGS ChangeLog NEWS README
- cd doc
- dodoc manual.pdf modules.pdf modules2.pdf morphix.pdf
-}