diff options
author | Mart Raudsepp <leio@gentoo.org> | 2012-09-04 06:23:05 +0000 |
---|---|---|
committer | Mart Raudsepp <leio@gentoo.org> | 2012-09-04 06:23:05 +0000 |
commit | 64d3d7b1c3fca1ae2e811ea190013ff94465325d (patch) | |
tree | 0e74708870bd2bb4968e3ebd9e90fea0a7ed4b69 /sci-electronics/linsmith | |
parent | Bump (diff) | |
download | gentoo-2-64d3d7b1c3fca1ae2e811ea190013ff94465325d.tar.gz gentoo-2-64d3d7b1c3fca1ae2e811ea190013ff94465325d.tar.bz2 gentoo-2-64d3d7b1c3fca1ae2e811ea190013ff94465325d.zip |
Remove old libgnomeprint using redundant version with maintainer ack
(Portage version: 2.2.0_alpha122/cvs/Linux i686)
Diffstat (limited to 'sci-electronics/linsmith')
-rw-r--r-- | sci-electronics/linsmith/ChangeLog | 6 | ||||
-rw-r--r-- | sci-electronics/linsmith/files/0.99.12-configure.in.patch | 10 | ||||
-rw-r--r-- | sci-electronics/linsmith/linsmith-0.99.12.ebuild | 66 |
3 files changed, 5 insertions, 77 deletions
diff --git a/sci-electronics/linsmith/ChangeLog b/sci-electronics/linsmith/ChangeLog index 1e15a617846e..4930a4d5a1e9 100644 --- a/sci-electronics/linsmith/ChangeLog +++ b/sci-electronics/linsmith/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for sci-electronics/linsmith # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-electronics/linsmith/ChangeLog,v 1.7 2012/05/04 07:10:20 jdhore Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-electronics/linsmith/ChangeLog,v 1.8 2012/09/04 06:23:04 leio Exp $ + + 04 Sep 2012; Mart Raudsepp <leio@gentoo.org> + -files/0.99.12-configure.in.patch, -linsmith-0.99.12.ebuild: + Remove old libgnomeprint using redundant version with maintainer ack 04 May 2012; Jeff Horelick <jdhore@gentoo.org> linsmith-0.99.12.ebuild, linsmith-0.99.21.ebuild, linsmith-0.99.22.ebuild: diff --git a/sci-electronics/linsmith/files/0.99.12-configure.in.patch b/sci-electronics/linsmith/files/0.99.12-configure.in.patch deleted file mode 100644 index 49f6ecc110ff..000000000000 --- a/sci-electronics/linsmith/files/0.99.12-configure.in.patch +++ /dev/null @@ -1,10 +0,0 @@ ---- linsmith-0.99.12/configure.in 2009-05-07 19:40:50.000000000 +0200 -+++ linsmith-0.99.12/configure.in.new 2009-10-23 21:57:51.788652724 +0200 -@@ -1,6 +1,6 @@ - dnl Process this file with autoconf to produce a configure script. - --AM_INIT(linsmith, 0.99.12) -+AC_INIT(linsmith, 0.99.12) - AM_CONFIG_HEADER(config.h) - AM_MAINTAINER_MODE - AM_INIT_AUTOMAKE(AC_PACKAGE_NAME, AC_PACKAGE_VERSION) diff --git a/sci-electronics/linsmith/linsmith-0.99.12.ebuild b/sci-electronics/linsmith/linsmith-0.99.12.ebuild deleted file mode 100644 index 1cdae689d5f0..000000000000 --- a/sci-electronics/linsmith/linsmith-0.99.12.ebuild +++ /dev/null @@ -1,66 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-electronics/linsmith/linsmith-0.99.12.ebuild,v 1.3 2012/05/04 07:10:20 jdhore Exp $ - -EAPI="2" - -inherit eutils autotools - -DESCRIPTION="Smith charting program, mainly designed for educational use." -HOMEPAGE="http://www.jcoppens.com/soft/linsmith/index.en.php" -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="doc examples" - -RDEPEND=" - x11-libs/gtk+:2 - dev-libs/libxml2:2 - dev-libs/glib:2 - dev-libs/atk - gnome-base/libgnome - gnome-base/libgnomecanvas - gnome-base/libgnomeprint:2.2 - gnome-base/libgnomeui" -DEPEND="${RDEPEND} - virtual/pkgconfig" - -src_prepare() { - # 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 \ - "${FILESDIR}"/${PV}-configure.in.patch - - einfo "Regenerating autotools files..." - eautoreconf -} - -src_install() { - # Delete this file, otherwise it is installed with the pixmaps. - rm pixmaps/Makefile.am~ - - emake DESTDIR="${D}" install || die "emake install failed" - - insinto "/usr/share/${PN}" - doins datafiles/conv0809 || die - - dodoc AUTHORS ChangeLog NEWS NOTES README THANKS TODO || die - doman doc/linsmith.1 || die - - domenu linsmith.desktop || die - doicon linsmith_icon.xpm || die - - if use doc; then - insinto "/usr/share/doc/${PF}" - doins doc/manual.pdf || die - fi - - if use examples; then - insinto "/usr/share/doc/${PF}/examples" - doins datafiles/*.circ datafiles/*.load || die - fi -} |