summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoe Sapp <nixphoeni@gentoo.org>2011-02-21 16:15:45 +0000
committerJoe Sapp <nixphoeni@gentoo.org>2011-02-21 16:15:45 +0000
commitc891cf1df3287d84b8101890570984689904003a (patch)
tree20b0e361d38c0bb3a166a79c1484c1dbf97ed6a3 /sci-electronics/eagle
parentUpdate maintainers (diff)
downloadgentoo-2-c891cf1df3287d84b8101890570984689904003a.tar.gz
gentoo-2-c891cf1df3287d84b8101890570984689904003a.tar.bz2
gentoo-2-c891cf1df3287d84b8101890570984689904003a.zip
Removed old unstable versions
(Portage version: 2.1.9.40/cvs/Linux x86_64)
Diffstat (limited to 'sci-electronics/eagle')
-rw-r--r--sci-electronics/eagle/ChangeLog8
-rw-r--r--sci-electronics/eagle/eagle-5.10.0.ebuild103
-rw-r--r--sci-electronics/eagle/eagle-5.7.0.ebuild94
-rw-r--r--sci-electronics/eagle/eagle-5.8.0.ebuild94
4 files changed, 6 insertions, 293 deletions
diff --git a/sci-electronics/eagle/ChangeLog b/sci-electronics/eagle/ChangeLog
index 2b53f4153b3d..5b479dec06c6 100644
--- a/sci-electronics/eagle/ChangeLog
+++ b/sci-electronics/eagle/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for sci-electronics/eagle
-# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-electronics/eagle/ChangeLog,v 1.43 2010/09/26 23:03:10 nixphoeni Exp $
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sci-electronics/eagle/ChangeLog,v 1.44 2011/02/21 16:15:45 nixphoeni Exp $
+
+ 21 Feb 2011; Joe Sapp <nixphoeni@gentoo.org> -eagle-5.7.0.ebuild,
+ -eagle-5.8.0.ebuild, -eagle-5.10.0.ebuild:
+ Removed old unstable versions
26 Sep 2010; Joe Sapp <nixphoeni@gentoo.org> eagle-5.10.0-r1.ebuild:
Reverted to SLOT=0 since SLOTting requires a bit more thought about
diff --git a/sci-electronics/eagle/eagle-5.10.0.ebuild b/sci-electronics/eagle/eagle-5.10.0.ebuild
deleted file mode 100644
index 84bbc23bbed1..000000000000
--- a/sci-electronics/eagle/eagle-5.10.0.ebuild
+++ /dev/null
@@ -1,103 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-electronics/eagle/eagle-5.10.0.ebuild,v 1.3 2010/08/22 20:19:15 nixphoeni Exp $
-
-EAPI="1"
-
-inherit eutils
-
-DESCRIPTION="CadSoft EAGLE schematic and printed circuit board (PCB) layout editor"
-HOMEPAGE="http://www.cadsoft.de"
-
-KEYWORDS="~amd64 ~x86"
-IUSE="linguas_de linguas_zh doc"
-LICENSE="cadsoft"
-RESTRICT="strip test"
-SLOT="0"
-
-# Cadsoft has used the suffix "_p" in the past which we translate to "r"
-MY_PV=${PV/_p/r}
-
-SRC_URI="ftp://ftp.cadsoft.de/eagle/program/${PV%\.[0-9]}/${PN}-lin-${MY_PV}.run"
-
-QA_DT_HASH="opt/eagle-${PV}/bin/eagle"
-
-RDEPEND="sys-libs/glibc
- x11-libs/libXext
- x11-libs/libX11
- x11-libs/libXau
- x11-libs/libXdmcp
- x86? ( media-libs/jpeg:62
- media-libs/libpng:1.2 )
- amd64? ( app-emulation/emul-linux-x86-baselibs
- app-emulation/emul-linux-x86-xlibs )"
-
-# Append ${PV} since that's what upstream installs to
-INSTALLDIR="/opt/eagle-${PV}"
-case "${LINGUAS}" in
- *de*)
- MY_LANG="de";;
- *)
- MY_LANG="en";;
-esac
-# Mandatory documentation being installed
-DOCS="README_${MY_LANG} UPDATE_${MY_LANG} library_${MY_LANG}.txt"
-
-src_unpack() {
-
- # Extract the built-in .tar.bz2 file starting at __DATA__
- sed -e '1,/^__DATA__$/d' "${DISTDIR}/${A}" | tar xj || die "unpacking failed"
-
-}
-
-src_install() {
-
- # Set MY_LANG for this function only since UPDATE_zh and README_zh
- # don't exist
- [[ ${LINGUAS} == *zh* ]] && MY_INST_LANG="zh" || MY_INST_LANG="${MY_LANG}"
-
- cd "${S}"
- dodir ${INSTALLDIR}
- # Copy all to INSTALLDIR
- cp -r . "${D}"/${INSTALLDIR}
-
- # Install wrapper (suppressing leading tabs)
- # see bug #188368 or http://www.cadsoft.de/faq.htm#17040701
- exeinto /usr/bin
- newexe "${FILESDIR}/eagle_wrapper_script" eagle
- # Finally, append the path of the eagle binary respecting INSTALLDIR and any
- # arguments passed to the script (thanks Denilson)
- echo "${INSTALLDIR}/bin/eagle" '"$@"' >> "${D}/usr/bin/eagle"
-
- # Install the documentation
- cd doc
- dodoc ${DOCS}
- doman eagle.1
- # Install extra documentation if requested
- use doc && dodoc elektro-tutorial.pdf manual_${MY_INST_LANG}.pdf tutorial_${MY_INST_LANG}.pdf
- # Remove docs left in INSTALLDIR
- rm -rf "${D}${INSTALLDIR}/doc"
- cd ..
-
- echo -e "ROOTPATH=${INSTALLDIR}/bin\nPRELINK_PATH_MASK=${INSTALLDIR}" > "${S}/90eagle"
- doenvd "${S}/90eagle"
-
- # Create desktop entry
- doicon bin/${PN}icon50.png
- make_desktop_entry "${ROOT}/usr/bin/eagle" ${PN} ${PN}icon50 "Graphics;Electronics"
-
-}
-
-pkg_postinst() {
-
- elog "Run \`env-update && source /etc/profile\` from within \${ROOT}"
- elog "now to set up the correct paths."
- elog "You must first run eagle as root to invoke product registration."
- echo
- ewarn "Due to some necessary changes in the data structure, once you edit"
- ewarn "a file with version 5.x you will no longer be able to edit it"
- ewarn "with versions prior to 5.0!"
- ewarn
- ewarn "Please read /usr/share/doc/${PF}/UPDATE_${MY_LANG} if you are upgrading from 4.xx."
-
-}
diff --git a/sci-electronics/eagle/eagle-5.7.0.ebuild b/sci-electronics/eagle/eagle-5.7.0.ebuild
deleted file mode 100644
index 0840f83ecf1f..000000000000
--- a/sci-electronics/eagle/eagle-5.7.0.ebuild
+++ /dev/null
@@ -1,94 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-electronics/eagle/eagle-5.7.0.ebuild,v 1.3 2010/03/09 12:22:43 abcd Exp $
-
-inherit eutils
-
-DESCRIPTION="CadSoft EAGLE schematic and printed circuit board (PCB) layout editor"
-HOMEPAGE="http://www.cadsoft.de"
-
-KEYWORDS="~amd64 ~x86"
-IUSE="linguas_de doc"
-LICENSE="cadsoft"
-RESTRICT="strip"
-SLOT="0"
-
-# Cadsoft has used the suffix "_p" in the past which we translate to "r"
-MY_PV=${PV/_p/r}
-
-SRC_URI="ftp://ftp.cadsoft.de/pub/program/${PV%\.[0-9]}/${PN}-lin-${MY_PV}.run"
-
-RDEPEND="sys-libs/glibc
- x11-libs/libXext
- x11-libs/libX11
- x11-libs/libXau
- x11-libs/libXdmcp
- x86? ( <media-libs/jpeg-7 )
- amd64? ( app-emulation/emul-linux-x86-baselibs
- app-emulation/emul-linux-x86-xlibs )"
-
-# Append ${PV} since that's what upstream installs to
-INSTALLDIR="/opt/eagle-${PV}"
-case "${LINGUAS}" in
- *de*)
- MY_LANG="de";;
- *)
- MY_LANG="en";;
-esac
-# Mandatory documentation being installed
-DOCS="README_${MY_LANG} UPDATE_${MY_LANG} library_${MY_LANG}.txt"
-
-src_unpack() {
-
- # Extract the built-in .tar.bz2 file starting at __DATA__
- sed -e '1,/^__DATA__$/d' "${DISTDIR}/${A}" | tar xj || die "unpacking failed"
-
-}
-
-src_install() {
-
- cd "${S}"
- dodir ${INSTALLDIR}
- # Copy all to INSTALLDIR
- cp -r . "${D}"/${INSTALLDIR}
-
- # Install wrapper (suppressing leading tabs)
- # see bug #188368 or http://www.cadsoft.de/faq.htm#17040701
- exeinto /usr/bin
- newexe "${FILESDIR}/eagle_wrapper_script" eagle
- # Finally, append the path of the eagle binary respecting INSTALLDIR and any
- # arguments passed to the script (thanks Denilson)
- echo "${INSTALLDIR}/bin/eagle" '"$@"' >> "${D}/usr/bin/eagle"
-
- # Install the documentation
- cd doc
- dodoc ${DOCS}
- doman eagle.1
- # Install extra documentation if requested
- use doc && dodoc elektro-tutorial.pdf manual_${MY_LANG}.pdf tutorial_${MY_LANG}.pdf
- # Remove docs left in INSTALLDIR
- rm -rf "${D}${INSTALLDIR}/doc"
- cd ..
-
- echo -e "ROOTPATH=${INSTALLDIR}/bin\nPRELINK_PATH_MASK=${INSTALLDIR}" > "${S}/90eagle"
- doenvd "${S}/90eagle"
-
- # Create desktop entry
- doicon bin/${PN}icon50.png
- make_desktop_entry "${ROOT}/usr/bin/eagle" ${PN} ${PN}icon50 "Graphics;Electronics"
-
-}
-
-pkg_postinst() {
-
- elog "Run \`env-update && source /etc/profile\` from within \${ROOT}"
- elog "now to set up the correct paths."
- elog "You must first run eagle as root to invoke product registration."
- echo
- ewarn "Due to some necessary changes in the data structure, once you edit"
- ewarn "a file with version 5.x you will no longer be able to edit it"
- ewarn "with versions prior to 5.0!"
- ewarn
- ewarn "Please read /usr/share/doc/${PF}/UPDATE_${MY_LANG} if you are upgrading from 4.xx."
-
-}
diff --git a/sci-electronics/eagle/eagle-5.8.0.ebuild b/sci-electronics/eagle/eagle-5.8.0.ebuild
deleted file mode 100644
index 3013a3f9d30e..000000000000
--- a/sci-electronics/eagle/eagle-5.8.0.ebuild
+++ /dev/null
@@ -1,94 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-electronics/eagle/eagle-5.8.0.ebuild,v 1.1 2010/04/24 16:26:59 nixphoeni Exp $
-
-inherit eutils
-
-DESCRIPTION="CadSoft EAGLE schematic and printed circuit board (PCB) layout editor"
-HOMEPAGE="http://www.cadsoft.de"
-
-KEYWORDS="~amd64 ~x86"
-IUSE="linguas_de doc"
-LICENSE="cadsoft"
-RESTRICT="strip"
-SLOT="0"
-
-# Cadsoft has used the suffix "_p" in the past which we translate to "r"
-MY_PV=${PV/_p/r}
-
-SRC_URI="ftp://ftp.cadsoft.de/eagle/program/${PV%\.[0-9]}/${PN}-lin-${MY_PV}.run"
-
-RDEPEND="sys-libs/glibc
- x11-libs/libXext
- x11-libs/libX11
- x11-libs/libXau
- x11-libs/libXdmcp
- x86? ( <media-libs/jpeg-7 )
- amd64? ( app-emulation/emul-linux-x86-baselibs
- app-emulation/emul-linux-x86-xlibs )"
-
-# Append ${PV} since that's what upstream installs to
-INSTALLDIR="/opt/eagle-${PV}"
-case "${LINGUAS}" in
- *de*)
- MY_LANG="de";;
- *)
- MY_LANG="en";;
-esac
-# Mandatory documentation being installed
-DOCS="README_${MY_LANG} UPDATE_${MY_LANG} library_${MY_LANG}.txt"
-
-src_unpack() {
-
- # Extract the built-in .tar.bz2 file starting at __DATA__
- sed -e '1,/^__DATA__$/d' "${DISTDIR}/${A}" | tar xj || die "unpacking failed"
-
-}
-
-src_install() {
-
- cd "${S}"
- dodir ${INSTALLDIR}
- # Copy all to INSTALLDIR
- cp -r . "${D}"/${INSTALLDIR}
-
- # Install wrapper (suppressing leading tabs)
- # see bug #188368 or http://www.cadsoft.de/faq.htm#17040701
- exeinto /usr/bin
- newexe "${FILESDIR}/eagle_wrapper_script" eagle
- # Finally, append the path of the eagle binary respecting INSTALLDIR and any
- # arguments passed to the script (thanks Denilson)
- echo "${INSTALLDIR}/bin/eagle" '"$@"' >> "${D}/usr/bin/eagle"
-
- # Install the documentation
- cd doc
- dodoc ${DOCS}
- doman eagle.1
- # Install extra documentation if requested
- use doc && dodoc elektro-tutorial.pdf manual_${MY_LANG}.pdf tutorial_${MY_LANG}.pdf
- # Remove docs left in INSTALLDIR
- rm -rf "${D}${INSTALLDIR}/doc"
- cd ..
-
- echo -e "ROOTPATH=${INSTALLDIR}/bin\nPRELINK_PATH_MASK=${INSTALLDIR}" > "${S}/90eagle"
- doenvd "${S}/90eagle"
-
- # Create desktop entry
- doicon bin/${PN}icon50.png
- make_desktop_entry "${ROOT}/usr/bin/eagle" ${PN} ${PN}icon50 "Graphics;Electronics"
-
-}
-
-pkg_postinst() {
-
- elog "Run \`env-update && source /etc/profile\` from within \${ROOT}"
- elog "now to set up the correct paths."
- elog "You must first run eagle as root to invoke product registration."
- echo
- ewarn "Due to some necessary changes in the data structure, once you edit"
- ewarn "a file with version 5.x you will no longer be able to edit it"
- ewarn "with versions prior to 5.0!"
- ewarn
- ewarn "Please read /usr/share/doc/${PF}/UPDATE_${MY_LANG} if you are upgrading from 4.xx."
-
-}