summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Seifert <soap@gentoo.org>2020-02-10 11:00:16 +0100
committerDavid Seifert <soap@gentoo.org>2020-02-10 11:00:16 +0100
commitb87b002a4c0ebb5997e477a07f876c808391f3aa (patch)
treec5be36d1be96878518ad120fe0a8fccb93be8e9a /sci-electronics/gerbv/gerbv-2.6.0.ebuild
parentsci-electronics/pcb: Remove old (diff)
downloadgentoo-b87b002a4c0ebb5997e477a07f876c808391f3aa.tar.gz
gentoo-b87b002a4c0ebb5997e477a07f876c808391f3aa.tar.bz2
gentoo-b87b002a4c0ebb5997e477a07f876c808391f3aa.zip
sci-electronics/gerbv: Remove old
Closes: https://bugs.gentoo.org/220421 Package-Manager: Portage-2.3.88, Repoman-2.3.20 Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'sci-electronics/gerbv/gerbv-2.6.0.ebuild')
-rw-r--r--sci-electronics/gerbv/gerbv-2.6.0.ebuild54
1 files changed, 0 insertions, 54 deletions
diff --git a/sci-electronics/gerbv/gerbv-2.6.0.ebuild b/sci-electronics/gerbv/gerbv-2.6.0.ebuild
deleted file mode 100644
index e2618cd1f896..000000000000
--- a/sci-electronics/gerbv/gerbv-2.6.0.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="4"
-
-inherit fdo-mime
-
-DESCRIPTION="A RS-274X (Gerber) and NC drill (Excellon) file viewer"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
-HOMEPAGE="http://gerbv.geda-project.org/"
-
-IUSE="doc examples static-libs unit-mm"
-SLOT="0"
-LICENSE="GPL-2"
-KEYWORDS="amd64 ppc x86"
-RESTRICT="test"
-
-RDEPEND="
- x11-libs/gtk+:2
- x11-libs/cairo"
-
-DEPEND="${RDEPEND}
- virtual/pkgconfig"
-
-src_configure() {
- econf \
- $(use_enable unit-mm) \
- --disable-update-desktop-database \
- $(use_enable static-libs static)
-}
-
-src_install () {
- emake DESTDIR="${D}" install
- dodoc AUTHORS BUGS ChangeLog CONTRIBUTORS HACKING NEWS README* TODO
-
- rm doc/Doxyfile.nopreprocessing
- if use doc; then
- find doc -name "Makefile*" -exec rm -f '{}' \;
- dodoc -r doc/*
- fi
-
- if use examples; then
- find example -name "Makefile*" -exec rm -f '{}' \;
- dodoc -r example/*
- fi
-}
-
-pkg_postinst() {
- fdo-mime_desktop_database_update
-}
-
-pkg_postrm() {
- fdo-mime_desktop_database_update
-}