summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Elio Pettenò <flameeyes@gentoo.org>2010-08-21 21:12:53 +0000
committerDiego Elio Pettenò <flameeyes@gentoo.org>2010-08-21 21:12:53 +0000
commit07dbb9336107fa7f632b930ad56b2bbdd7353d6f (patch)
tree696d7e7492f54e3b86baa1c76ea42415d6ff0548 /sci-electronics/geda
parentRemove non-stable versions as per masking. (diff)
downloadgentoo-2-07dbb9336107fa7f632b930ad56b2bbdd7353d6f.tar.gz
gentoo-2-07dbb9336107fa7f632b930ad56b2bbdd7353d6f.tar.bz2
gentoo-2-07dbb9336107fa7f632b930ad56b2bbdd7353d6f.zip
Remove non-stable versions as per masking.
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'sci-electronics/geda')
-rw-r--r--sci-electronics/geda/ChangeLog6
-rw-r--r--sci-electronics/geda/geda-1.4.1.ebuild109
-rw-r--r--sci-electronics/geda/geda-1.4.3-r1.ebuild22
-rw-r--r--sci-electronics/geda/geda-1.4.3.ebuild110
-rw-r--r--sci-electronics/geda/geda-1.6.0-r1.ebuild93
5 files changed, 5 insertions, 335 deletions
diff --git a/sci-electronics/geda/ChangeLog b/sci-electronics/geda/ChangeLog
index 3b2d3b01b73b..fb1e6e02339d 100644
--- a/sci-electronics/geda/ChangeLog
+++ b/sci-electronics/geda/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for sci-electronics/geda
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-electronics/geda/ChangeLog,v 1.62 2010/07/11 18:56:04 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-electronics/geda/ChangeLog,v 1.63 2010/08/21 21:12:53 flameeyes Exp $
+
+ 21 Aug 2010; Diego E. Pettenò <flameeyes@gentoo.org> -geda-1.4.1.ebuild,
+ -geda-1.4.3.ebuild, -geda-1.4.3-r1.ebuild, -geda-1.6.0-r1.ebuild:
+ Remove non-stable versions as per masking.
11 Jul 2010; Raúl Porcel <armin76@gentoo.org> geda-1.6.1.ebuild:
sparc stable wrt #285470
diff --git a/sci-electronics/geda/geda-1.4.1.ebuild b/sci-electronics/geda/geda-1.4.1.ebuild
deleted file mode 100644
index 32fc1746d3dc..000000000000
--- a/sci-electronics/geda/geda-1.4.1.ebuild
+++ /dev/null
@@ -1,109 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-electronics/geda/geda-1.4.1.ebuild,v 1.1 2008/11/30 21:24:05 calchan Exp $
-
-inherit eutils versionator
-
-SUBDIR="v$(get_version_component_range 1-2)"
-S="${WORKDIR}"
-
-HOMEPAGE="http://www.geda.seul.org"
-DESCRIPTION="Core metapackage for all the necessary components you would need for a minimal gEDA/gaf system"
-SRC_URI="http://www.geda.seul.org/release/${SUBDIR}/${PV}/geda-gattrib-${PV}.tar.gz
- http://www.geda.seul.org/release/${SUBDIR}/${PV}/geda-gnetlist-${PV}.tar.gz
- http://www.geda.seul.org/release/${SUBDIR}/${PV}/geda-gschem-${PV}.tar.gz
- http://www.geda.seul.org/release/${SUBDIR}/${PV}/geda-gsymcheck-${PV}.tar.gz
- http://www.geda.seul.org/release/${SUBDIR}/${PV}/geda-symbols-${PV}.tar.gz
- http://www.geda.seul.org/release/${SUBDIR}/${PV}/geda-utils-${PV}.tar.gz
- doc? ( http://www.geda.seul.org/release/${SUBDIR}/${PV}/geda-docs-${PV}.tar.gz )
- examples? ( http://www.geda.seul.org/release/${SUBDIR}/${PV}/geda-examples-${PV}.tar.gz )"
-
-IUSE="doc examples gd threads"
-LICENSE="GPL-2"
-KEYWORDS="~amd64 ~ppc ~sparc ~x86"
-SLOT="0"
-
-DEPEND=">=x11-libs/gtk+-2.4
- >=dev-scheme/guile-1.6.3
- =sci-libs/libgeda-${PV}"
-
-pkg_setup() {
- if has_version ">=dev-scheme/guile-1.8" ; then
- built_with_use "dev-scheme/guile" deprecated \
- || die "You need either <dev-scheme/guile-1.8, or >=dev-scheme/guile-1.8 with USE=deprecated"
- fi
- if use gd ; then
- built_with_use sci-libs/libgeda gd || die "sci-libs/libgeda must be compiled with USE=gd"
- else
- ! built_with_use sci-libs/libgeda gd || die "sci-libs/libgeda must be compiled with USE=-gd"
- fi
-}
-
-src_unpack() {
- unpack ${A}
- # Fix security bug #247538 (CVE-2008-5148), thanks to Chitlesh Goorah
- sed -i \
- -e 's:TMP=/tmp/\$\$:TMP=$(mktemp):' \
- -e 's:>/tmp/\$\$:>${TMP}:' \
- "${S}"/geda-gnetlist-${PV}/scripts/sch2eaglepos.sh \
- || die "sed failed"
-}
-
-src_compile() {
- local myconf="--disable-threads"
- use threads || myconf="--enable-threads=posix"
- for subdir in geda-{symbols,gschem,gnetlist,gsymcheck,gattrib,utils}-${PV}; do
- cd "${S}/${subdir}"
- econf \
- ${myconf} \
- --disable-dependency-tracking \
- --with-docdir=/usr/share/doc/${PF} \
- --with-pcbconfdir=/usr/share/pcb \
- --with-pcbm4dir=/usr/share/pcb/m4 \
- --disable-update-desktop-database \
- --disable-rpath \
- --with-x \
- || die "Configuration failed in ${subdir}"
- emake || die "Compilation failed in ${subdir}"
- done
-
- if use doc ; then
- cd "${S}/geda-docs-${PV}"
- econf --with-docdir=/usr/share/doc/${PF} || die "Configuration failed in geda-docs-${PV}"
- emake || die "Compilation failed in geda-docs-${PV}"
- fi
-}
-
-src_install () {
- for subdir in geda-{symbols,gschem,gnetlist,gsymcheck,gattrib,utils}-${PV}; do
- cd "${S}/${subdir}"
- emake DESTDIR="${D}" install || die "Installation failed in geda-${subdir}-${PV}"
- newdoc AUTHORS AUTHORS.${subdir}
- newdoc BUGS BUGS.${subdir}
- for READMEx in $(ls README*); do
- newdoc ${READMEx} ${READMEx}.${subdir}
- done
- done
-
- rm "${D}"/usr/share/gEDA/sym/gnetman -Rf # Fix collision with gnetman; bug #77361.
-
- if use doc ; then
- cd "${S}"/geda-docs-${PV}
- emake DESTDIR="${D}" install || die "Installation failed in geda-docs-${PV}"
- fi
-
- if use examples ; then
- cd "${S}"
- mv geda-examples-${PV} examples
- insinto /usr/share/gEDA
- doins -r examples
- fi
-}
-
-src_postinst() {
- fdo-mime_desktop_database_update
-}
-
-src_postrm() {
- fdo-mime_desktop_database_update
-}
diff --git a/sci-electronics/geda/geda-1.4.3-r1.ebuild b/sci-electronics/geda/geda-1.4.3-r1.ebuild
deleted file mode 100644
index a5d631968375..000000000000
--- a/sci-electronics/geda/geda-1.4.3-r1.ebuild
+++ /dev/null
@@ -1,22 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-electronics/geda/geda-1.4.3-r1.ebuild,v 1.1 2009/05/20 02:26:08 calchan Exp $
-
-DESCRIPTION="Meta-package for the gEDA/gaf tools"
-HOMEPAGE="http://www.gpleda.org/"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~sparc ~x86"
-IUSE="doc examples"
-
-DEPEND="!<sci-electronics/geda-1.4.3-r1"
-RDEPEND="=sci-libs/libgeda-${PV}*
- =sci-electronics/geda-gattrib-${PV}*
- =sci-electronics/geda-gnetlist-${PV}*
- =sci-electronics/geda-gschem-${PV}*
- =sci-electronics/geda-gsymcheck-${PV}*
- =sci-electronics/geda-symbols-${PV}*
- =sci-electronics/geda-utils-${PV}*
- doc? ( =sci-electronics/geda-docs-${PV}* )
- examples? ( =sci-electronics/geda-examples-${PV}* )"
diff --git a/sci-electronics/geda/geda-1.4.3.ebuild b/sci-electronics/geda/geda-1.4.3.ebuild
deleted file mode 100644
index ed65cf68b254..000000000000
--- a/sci-electronics/geda/geda-1.4.3.ebuild
+++ /dev/null
@@ -1,110 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-electronics/geda/geda-1.4.3.ebuild,v 1.1 2009/03/07 21:33:57 patrick Exp $
-
-inherit eutils versionator
-
-SUBDIR="v$(get_version_component_range 1-2)"
-S="${WORKDIR}"
-
-HOMEPAGE="http://www.geda.seul.org"
-DESCRIPTION="Core metapackage for all the necessary components you would need for a minimal gEDA/gaf system"
-SRC_URI="http://www.geda.seul.org/release/${SUBDIR}/${PV}/geda-gattrib-${PV}.tar.gz
- http://www.geda.seul.org/release/${SUBDIR}/${PV}/geda-gnetlist-${PV}.tar.gz
- http://www.geda.seul.org/release/${SUBDIR}/${PV}/geda-gschem-${PV}.tar.gz
- http://www.geda.seul.org/release/${SUBDIR}/${PV}/geda-gsymcheck-${PV}.tar.gz
- http://www.geda.seul.org/release/${SUBDIR}/${PV}/geda-symbols-${PV}.tar.gz
- http://www.geda.seul.org/release/${SUBDIR}/${PV}/geda-utils-${PV}.tar.gz
- doc? ( http://www.geda.seul.org/release/${SUBDIR}/${PV}/geda-docs-${PV}.tar.gz )
- examples? ( http://www.geda.seul.org/release/${SUBDIR}/${PV}/geda-examples-${PV}.tar.gz )"
-
-IUSE="doc examples gd threads"
-LICENSE="GPL-2"
-KEYWORDS="~amd64 ~ppc ~sparc ~x86"
-SLOT="0"
-
-DEPEND=">=x11-libs/gtk+-2.4
- >=dev-scheme/guile-1.6.3
- =sci-libs/libgeda-${PV}"
-RDEPEND="${DEPEND}"
-
-pkg_setup() {
- if has_version ">=dev-scheme/guile-1.8" ; then
- built_with_use "dev-scheme/guile" deprecated \
- || die "You need either <dev-scheme/guile-1.8, or >=dev-scheme/guile-1.8 with USE=deprecated"
- fi
- if use gd ; then
- built_with_use sci-libs/libgeda gd || die "sci-libs/libgeda must be compiled with USE=gd"
- else
- ! built_with_use sci-libs/libgeda gd || die "sci-libs/libgeda must be compiled with USE=-gd"
- fi
-}
-
-src_unpack() {
- unpack ${A}
- # Fix security bug #247538 (CVE-2008-5148), thanks to Chitlesh Goorah
- sed -i \
- -e 's:TMP=/tmp/\$\$:TMP=$(mktemp):' \
- -e 's:>/tmp/\$\$:>${TMP}:' \
- "${S}"/geda-gnetlist-${PV}/scripts/sch2eaglepos.sh \
- || die "sed failed"
-}
-
-src_compile() {
- local myconf="--disable-threads"
- use threads || myconf="--enable-threads=posix"
- for subdir in geda-{symbols,gschem,gnetlist,gsymcheck,gattrib,utils}-${PV}; do
- cd "${S}/${subdir}"
- econf \
- ${myconf} \
- --disable-dependency-tracking \
- --with-docdir=/usr/share/doc/${PF} \
- --with-pcbconfdir=/usr/share/pcb \
- --with-pcbm4dir=/usr/share/pcb/m4 \
- --disable-update-desktop-database \
- --disable-rpath \
- --with-x \
- || die "Configuration failed in ${subdir}"
- emake || die "Compilation failed in ${subdir}"
- done
-
- if use doc ; then
- cd "${S}/geda-docs-${PV}"
- econf --with-docdir=/usr/share/doc/${PF} || die "Configuration failed in geda-docs-${PV}"
- emake || die "Compilation failed in geda-docs-${PV}"
- fi
-}
-
-src_install () {
- for subdir in geda-{symbols,gschem,gnetlist,gsymcheck,gattrib,utils}-${PV}; do
- cd "${S}/${subdir}"
- emake DESTDIR="${D}" install || die "Installation failed in geda-${subdir}-${PV}"
- newdoc AUTHORS AUTHORS.${subdir}
- newdoc BUGS BUGS.${subdir}
- for READMEx in $(ls README*); do
- newdoc ${READMEx} ${READMEx}.${subdir}
- done
- done
-
- rm "${D}"/usr/share/gEDA/sym/gnetman -Rf # Fix collision with gnetman; bug #77361.
-
- if use doc ; then
- cd "${S}"/geda-docs-${PV}
- emake DESTDIR="${D}" install || die "Installation failed in geda-docs-${PV}"
- fi
-
- if use examples ; then
- cd "${S}"
- mv geda-examples-${PV} examples
- insinto /usr/share/gEDA
- doins -r examples
- fi
-}
-
-src_postinst() {
- fdo-mime_desktop_database_update
-}
-
-src_postrm() {
- fdo-mime_desktop_database_update
-}
diff --git a/sci-electronics/geda/geda-1.6.0-r1.ebuild b/sci-electronics/geda/geda-1.6.0-r1.ebuild
deleted file mode 100644
index b87c52296f11..000000000000
--- a/sci-electronics/geda/geda-1.6.0-r1.ebuild
+++ /dev/null
@@ -1,93 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-electronics/geda/geda-1.6.0-r1.ebuild,v 1.4 2009/12/22 23:11:40 flameeyes Exp $
-
-EAPI="2"
-
-inherit fdo-mime versionator gnome2-utils
-
-MY_P="${PN}-gaf-${PV}"
-DESCRIPTION="GPL Electronic Design Automation (gEDA):gaf core package"
-HOMEPAGE="http://www.gpleda.org/"
-SRC_URI="http://geda.seul.org/release/v$(get_version_component_range 1-2)/${PV}/${MY_P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~sparc ~x86"
-IUSE="debug doc examples nls stroke threads"
-
-CDEPEND="
- >=dev-libs/glib-2.12
- >=x11-libs/gtk+-2.10
- >=x11-libs/cairo-1.2.0
- >=dev-scheme/guile-1.8
- nls? ( virtual/libintl )
- stroke? ( >=dev-libs/libstroke-0.5.1 )"
-
-DEPEND="${CDEPEND}
- !sci-libs/libgeda
- !sci-electronics/geda-docs
- !sci-electronics/geda-examples
- !sci-electronics/geda-gattrib
- !sci-electronics/geda-gnetlist
- !sci-electronics/geda-gschem
- !sci-electronics/geda-symcheck
- !sci-electronics/geda-symbols
- !sci-electronics/geda-utils
- sys-apps/groff
- dev-util/desktop-file-utils
- x11-misc/shared-mime-info
- >=dev-util/pkgconfig-0.15.0
- nls? ( >=sys-devel/gettext-0.16 )"
-
-RDEPEND="${CDEPEND}
- sci-electronics/electronics-menu"
-
-S="${WORKDIR}/${MY_P}"
-
-src_prepare() {
- if ! use doc ; then
- sed -i -e '/^SUBDIRS = /s/docs//' Makefile.in || die "sed failed"
- fi
- if ! use examples ; then
- sed -i -e 's/\texamples$//' Makefile.in || die "sed failed"
- fi
-}
-
-src_configure() {
- econf \
- --docdir=/usr/share/doc/${PF} \
- $(use_enable threads threads posix) \
- $(use_with stroke libstroke) \
- $(use_enable nls) \
- $(use_enable debug assert) \
- --disable-doxygen \
- --disable-dependency-tracking \
- --disable-rpath \
- --disable-update-xdg-database
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die "install failed"
- dodoc AUTHORS NEWS README
-}
-
-src_test() {
- emake -j1 check || die "test failed"
-}
-
-pkg_preinst() {
- gnome2_icon_savelist
-}
-
-pkg_postinst() {
- fdo-mime_desktop_database_update
- fdo-mime_mime_database_update
- gnome2_icon_cache_update
-}
-
-pkg_postrm() {
- fdo-mime_desktop_database_update
- fdo-mime_desktop_database_update
- gnome2_icon_cache_update
-}