summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManuel Rüger <mrueg@gentoo.org>2015-08-03 23:06:01 +0000
committerManuel Rüger <mrueg@gentoo.org>2015-08-03 23:06:01 +0000
commit3dead4c6695fbf3105f64308ea00bbae8b852fe0 (patch)
tree950c0efdb6cf9a845474ba759fb71bd4a25b6403 /sci-libs
parentRemove old. (diff)
downloadgentoo-2-3dead4c6695fbf3105f64308ea00bbae8b852fe0.tar.gz
gentoo-2-3dead4c6695fbf3105f64308ea00bbae8b852fe0.tar.bz2
gentoo-2-3dead4c6695fbf3105f64308ea00bbae8b852fe0.zip
Remove old.
(Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key )
Diffstat (limited to 'sci-libs')
-rw-r--r--sci-libs/ufconfig/ChangeLog5
-rw-r--r--sci-libs/ufconfig/ufconfig-3.6.0.ebuild42
2 files changed, 4 insertions, 43 deletions
diff --git a/sci-libs/ufconfig/ChangeLog b/sci-libs/ufconfig/ChangeLog
index 38c080ec7c5a..10b115d0e6ea 100644
--- a/sci-libs/ufconfig/ChangeLog
+++ b/sci-libs/ufconfig/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for sci-libs/ufconfig
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/ufconfig/ChangeLog,v 1.37 2015/08/03 23:05:21 mrueg Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/ufconfig/ChangeLog,v 1.38 2015/08/03 23:06:01 mrueg Exp $
+
+ 03 Aug 2015; Manuel Rüger <mrueg@gentoo.org> -ufconfig-3.6.0.ebuild:
+ Remove old.
03 Aug 2015; Manuel Rüger <mrueg@gentoo.org> -ufconfig-3.1.0.ebuild:
Remove old.
diff --git a/sci-libs/ufconfig/ufconfig-3.6.0.ebuild b/sci-libs/ufconfig/ufconfig-3.6.0.ebuild
deleted file mode 100644
index 3dd1503134e3..000000000000
--- a/sci-libs/ufconfig/ufconfig-3.6.0.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/ufconfig/ufconfig-3.6.0.ebuild,v 1.1 2011/02/23 19:55:38 bicatali Exp $
-
-inherit multilib toolchain-funcs
-
-MY_PN=UFconfig
-DESCRIPTION="Common configuration scripts for the SuiteSparse libraries"
-HOMEPAGE="http://www.cise.ufl.edu/research/sparse/UFconfig"
-SRC_URI="http://www.cise.ufl.edu/research/sparse/${MY_PN}/${MY_PN}-${PV}.tar.gz"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-macos"
-IUSE="static-libs"
-DEPEND=""
-
-S="${WORKDIR}/${MY_PN}"
-
-src_compile() {
- echo "$(tc-getCC) ${CFLAGS} -fPIC -c UFconfig.c -o UFconfig.lo"
- $(tc-getCC) ${CFLAGS} -fPIC -c UFconfig.c -o UFconfig.lo || die
- echo "$(tc-getCC) ${LDFLAGS} -shared -Wl,-soname,libufconfig.so.${PV} -o libufconfig.so.${PV} UFconfig.lo"
- $(tc-getCC) ${LDFLAGS} -shared -Wl,-soname,libufconfig.so.${PV} -o libufconfig.so.${PV} UFconfig.lo || die
- if use static-libs; then
- echo "$(tc-getCC) ${CFLAGS} -c UFconfig.c -o UFconfig.o"
- $(tc-getCC) ${CFLAGS} -c UFconfig.c -o UFconfig.o || die
- echo "$(tc-getAR) libufconfig.a UFconfig.o"
- $(tc-getAR) cr libufconfig.a UFconfig.o
- fi
-}
-
-src_install() {
- dolib.so libufconfig.so.${PV} || die
- dosym libufconfig.so.${PV} /usr/$(get_libdir)/libufconfig.so
- if use static-libs; then
- dolib.a libufconfig.a || die
- fi
- insinto /usr/include
- doins UFconfig.h || die
- dodoc README.txt || die
-}