aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjokey <jokey@32389bae-6d03-0410-99cf-db05cde120eb>2007-10-07 05:29:17 +0000
committerjokey <jokey@32389bae-6d03-0410-99cf-db05cde120eb>2007-10-07 05:29:17 +0000
commitf0231c57a7d9d1746c0ded96d7d6d9927bc009a9 (patch)
tree4b825dc642cb6eb9a060e54bf8d69288fbee4904 /sci-electronics/linsmith/linsmith-0.99.1.ebuild
parentdeleted ifc and icc, now in main tree (diff)
downloadsci-f0231c57a7d9d1746c0ded96d7d6d9927bc009a9.tar.gz
sci-f0231c57a7d9d1746c0ded96d7d6d9927bc009a9.tar.bz2
sci-f0231c57a7d9d1746c0ded96d7d6d9927bc009a9.zip
move stuff to root
git-svn-id: http://overlays.gentoo.org/svn/proj/science/overlay@753 32389bae-6d03-0410-99cf-db05cde120eb
Diffstat (limited to 'sci-electronics/linsmith/linsmith-0.99.1.ebuild')
-rw-r--r--sci-electronics/linsmith/linsmith-0.99.1.ebuild59
1 files changed, 0 insertions, 59 deletions
diff --git a/sci-electronics/linsmith/linsmith-0.99.1.ebuild b/sci-electronics/linsmith/linsmith-0.99.1.ebuild
deleted file mode 100644
index a986fa744..000000000
--- a/sci-electronics/linsmith/linsmith-0.99.1.ebuild
+++ /dev/null
@@ -1,59 +0,0 @@
-# Copyright 1999-2006 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-inherit eutils
-
-DESCRIPTION="linSmith is a Smith Charting program, mainly designed for educational use"
-HOMEPAGE="http://jcoppens.com/soft/linsmith/index.en.php"
-SRC_URI="mirror://sourceforge/linsmith/${P}.tar.gz"
-
-LICENSE="GPL-2 LGPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="doc examples"
-
-DEPEND=">=gnome-base/libgnomeprint-2.10.3
- >=dev-libs/libxml2-2.6.20-r2
- >=gnome-base/libgnomeui-2.10.1"
-RDEPEND=""
-
-src_unpack() {
- unpack ${A}
- cd ${S}
- # This patch is to prevent make install copying
- # the examples in /usr/share/linsmith
- # Now they are cp to the correct location.
- epatch ${FILESDIR}/${PN}-datafiles.patch
-
- einfo "Regenerating autotools files..."
- WANT_AUTOMAKE=1.9 automake || die "automake failed"
-}
-
-src_install() {
- # Delete this file, otherwise it is installed with the pixmaps.
- rm pixmaps/Makefile.am~
-
- make DESTDIR=${D} install || die "make install failed"
-
- insinto "/usr/share/${PN}"
- doins datafiles/conv0809
-
- dodoc AUTHORS NEWS README ChangeLog TODO
- doman doc/linsmith.1
-
- insinto "/usr/share/applications"
- doins linsmith.desktop
- insinto "/usr/share/pixmaps/${PN}"
- doins linsmith_icon.xpm
-
- if use doc; then
- insinto "/usr/share/doc/${PF}"
- doins doc/manual.pdf
- fi
-
- if use examples; then
- insinto "/usr/share/doc/${PF}/examples"
- doins datafiles/*.circ datafiles/*.load
- fi
-}