public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: sci-electronics/netgen/
@ 2016-03-06 23:35 David Seifert
  0 siblings, 0 replies; 3+ messages in thread
From: David Seifert @ 2016-03-06 23:35 UTC (permalink / raw
  To: gentoo-commits

commit:     dbb5d2c02805532b21f3a3be59f62dcc458ce911
Author:     David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Sun Mar  6 23:33:53 2016 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sun Mar  6 23:35:46 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dbb5d2c0

sci-electronics/netgen: Add 'mailto:' to <bugs-to/> tag

Package-Manager: portage-2.2.27

 sci-electronics/netgen/metadata.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sci-electronics/netgen/metadata.xml b/sci-electronics/netgen/metadata.xml
index b686435..c15c8e2 100644
--- a/sci-electronics/netgen/metadata.xml
+++ b/sci-electronics/netgen/metadata.xml
@@ -16,6 +16,6 @@
     </maintainer>
     <changelog>http://www.opencircuitdesign.com/netgen/history.html</changelog>
     <doc lang="en">http://www.opencircuitdesign.com/netgen/reference.html</doc>
-    <bugs-to>tim@opencircuitdesign.com</bugs-to>
+    <bugs-to>mailto:tim@opencircuitdesign.com</bugs-to>
   </upstream>
 </pkgmetadata>


^ permalink raw reply related	[flat|nested] 3+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-electronics/netgen/
@ 2019-11-13 19:58 Aaron Bauman
  0 siblings, 0 replies; 3+ messages in thread
From: Aaron Bauman @ 2019-11-13 19:58 UTC (permalink / raw
  To: gentoo-commits

commit:     0acd36c380128db285bda4780ae8384c7b277785
Author:     Aaron Bauman <bman <AT> gentoo <DOT> org>
AuthorDate: Wed Nov 13 19:41:00 2019 +0000
Commit:     Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Wed Nov 13 19:58:42 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0acd36c3

sci-electronics/netgen: drop old EAPI

Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>

 sci-electronics/netgen/Manifest             |  1 -
 sci-electronics/netgen/netgen-1.3.11.ebuild | 60 -----------------------------
 2 files changed, 61 deletions(-)

diff --git a/sci-electronics/netgen/Manifest b/sci-electronics/netgen/Manifest
index 27c6f9707d9..db18abb7fa0 100644
--- a/sci-electronics/netgen/Manifest
+++ b/sci-electronics/netgen/Manifest
@@ -1,2 +1 @@
-DIST netgen-1.3.11.tgz 350678 BLAKE2B 03d957abe5240d55dfd179484ae564d9e0ed431e380b35de5c39680312b11fb6104c9f1109bace32e96d435290a1e7b3fb07f716f9454f85473e25ffb6cab703 SHA512 31bc3daccc99681268935f82f282df94ea3889d24d40ef53611e2c1a14d005422d813eb614426c85ef953ae214f362b5d502f2907745f756aa2fc2b014b1cd22
 DIST netgen-1.4.52.tgz 408225 BLAKE2B 49b19832a9f3fa22eca82846f4cca0774c8ba8f0a342a350ef5bc8ffa72f5ccfc6917876c9d8cad3c9b25ad2923ec24d7e8d88e099dda79c6139680ebb84b767 SHA512 ecee6243181e90fbd277c1315b28c34539ebdf254a03544819dbeffe8ddd22fb7ca76c783364bbf97bfbf269cbb446dd6e16f95621774a6cbaa83f0e0b6dd703

diff --git a/sci-electronics/netgen/netgen-1.3.11.ebuild b/sci-electronics/netgen/netgen-1.3.11.ebuild
deleted file mode 100644
index 6bba0ed1b4e..00000000000
--- a/sci-electronics/netgen/netgen-1.3.11.ebuild
+++ /dev/null
@@ -1,60 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-
-inherit eutils multilib
-
-DESCRIPTION="LVS tool (layout versus schematic comparison)"
-HOMEPAGE="http://www.opencircuitdesign.com/netgen/index.html"
-SRC_URI="http://www.opencircuitdesign.com/${PN}/archive/${P}.tgz"
-
-LICENSE="GPL-1"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="X"
-
-DEPEND="X? (
-		dev-lang/tcl:0
-		dev-lang/tk:0
-		x11-libs/libX11 )"
-RDEPEND="${DEPEND}"
-
-src_prepare() {
-	epatch "${FILESDIR}"/${PN}-1.3.10-tcl-bin-name.patch
-
-	if $(use X) ; then
-		cp -r "${S}" "${WORKDIR}"/with-x || die
-	fi
-}
-
-src_configure() {
-	cd scripts
-	econf --without-x
-
-	if $(use X) ; then
-		cd "${WORKDIR}"/with-x/scripts || die
-		econf --with-x
-	fi
-}
-
-src_compile() {
-	emake
-
-	if $(use X) ; then
-		cd "${WORKDIR}"/with-x || die
-		emake
-	fi
-}
-
-src_install() {
-	dodir /usr/$(get_libdir)/${PN}
-	emake DESTDIR="${D}" DOCDIR=/usr/share/doc/${PF} install
-
-	if $(use X) ; then
-		cd "${WORKDIR}"/with-x || die
-		emake DESTDIR="${D}" DOCDIR=/usr/share/doc/${PF} install
-	fi
-
-	dodoc Changes README TO_DO
-}


^ permalink raw reply related	[flat|nested] 3+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-electronics/netgen/
@ 2019-12-13 17:41 David Seifert
  0 siblings, 0 replies; 3+ messages in thread
From: David Seifert @ 2019-12-13 17:41 UTC (permalink / raw
  To: gentoo-commits

commit:     1abf0f8ccce5e2d8275bb0b4fc1c12fd128bdec1
Author:     David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Fri Dec 13 17:40:42 2019 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Fri Dec 13 17:40:42 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1abf0f8c

sci-electronics/netgen: Port to EAPI 7

Package-Manager: Portage-2.3.81, Repoman-2.3.20
Signed-off-by: David Seifert <soap <AT> gentoo.org>

 sci-electronics/netgen/netgen-1.4.52.ebuild | 49 +++++++----------------------
 1 file changed, 12 insertions(+), 37 deletions(-)

diff --git a/sci-electronics/netgen/netgen-1.4.52.ebuild b/sci-electronics/netgen/netgen-1.4.52.ebuild
index 0c90872fda8..c07ac1310bc 100644
--- a/sci-electronics/netgen/netgen-1.4.52.ebuild
+++ b/sci-electronics/netgen/netgen-1.4.52.ebuild
@@ -1,9 +1,7 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=4
-
-inherit eutils
+EAPI=7
 
 DESCRIPTION="LVS tool (layout versus schematic comparison)"
 HOMEPAGE="http://www.opencircuitdesign.com/netgen/index.html"
@@ -14,46 +12,23 @@ SLOT="0"
 KEYWORDS="~amd64"
 IUSE="X"
 
-DEPEND="X? (
+DEPEND="
+	X? (
 		dev-lang/tcl:0
 		dev-lang/tk:0
-		x11-libs/libX11 )"
+		x11-libs/libX11
+	)"
 RDEPEND="${DEPEND}"
 
-src_prepare() {
-	epatch "${FILESDIR}"/${PN}-1.4.40-tcl-bin-name.patch
-
-	if $(use X) ; then
-		cp -r "${S}" "${WORKDIR}"/with-x || die
-	fi
-}
+PATCHES=( "${FILESDIR}"/${PN}-1.4.40-tcl-bin-name.patch )
 
 src_configure() {
-	cd scripts
-	econf --without-x
-
-	if $(use X) ; then
-		cd "${WORKDIR}"/with-x/scripts || die
-		econf --with-x
-	fi
-}
-
-src_compile() {
-	emake
-
-	if $(use X) ; then
-		cd "${WORKDIR}"/with-x || die
-		emake
-	fi
+	cd scripts || die
+	econf $(use_with X x)
 }
 
 src_install() {
-	emake DESTDIR="${D}" DOCDIR=/usr/share/doc/${PF} install
-
-	if $(use X) ; then
-		cd "${WORKDIR}"/with-x || die
-		emake DESTDIR="${D}" DOCDIR=/usr/share/doc/${PF} install
-	fi
-
-	dodoc Changes README TO_DO
+	emake DESTDIR="${D}" DOCDIR="${EPREFIX}"/usr/share/doc/${PF} install
+	einstalldocs
+	dodoc Changes TO_DO
 }


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2019-12-13 17:41 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-03-06 23:35 [gentoo-commits] repo/gentoo:master commit in: sci-electronics/netgen/ David Seifert
  -- strict thread matches above, loose matches on Subject: below --
2019-11-13 19:58 Aaron Bauman
2019-12-13 17:41 David Seifert

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox