summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDoug Goldstein <cardoe@gentoo.org>2007-12-18 14:31:13 +0000
committerDoug Goldstein <cardoe@gentoo.org>2007-12-18 14:31:13 +0000
commit55f1a0980adc9d4c8a970e350aac1afdc308903e (patch)
treee11a4ec3425fa6883de8003e36155f227d69d960
parentold (diff)
downloadgentoo-2-55f1a0980adc9d4c8a970e350aac1afdc308903e.tar.gz
gentoo-2-55f1a0980adc9d4c8a970e350aac1afdc308903e.tar.bz2
gentoo-2-55f1a0980adc9d4c8a970e350aac1afdc308903e.zip
remove old version
(Portage version: 2.1.4_rc10)
-rw-r--r--sys-apps/dmapi/ChangeLog6
-rw-r--r--sys-apps/dmapi/dmapi-2.2.3.ebuild45
-rw-r--r--sys-apps/dmapi/files/digest-dmapi-2.2.33
-rw-r--r--sys-apps/dmapi/files/dmapi-2.2.3-LDFLAGS.patch26
4 files changed, 5 insertions, 75 deletions
diff --git a/sys-apps/dmapi/ChangeLog b/sys-apps/dmapi/ChangeLog
index 24788cf751e3..e9a2033f6440 100644
--- a/sys-apps/dmapi/ChangeLog
+++ b/sys-apps/dmapi/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for sys-apps/dmapi
# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/dmapi/ChangeLog,v 1.49 2007/12/17 18:46:24 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/dmapi/ChangeLog,v 1.50 2007/12/18 14:31:12 cardoe Exp $
+
+ 18 Dec 2007; Doug Klima <cardoe@gentoo.org>
+ -files/dmapi-2.2.3-LDFLAGS.patch, -dmapi-2.2.3.ebuild:
+ remove old version
17 Dec 2007; Markus Meier <maekke@gentoo.org> dmapi-2.2.8.ebuild:
x86 stable, bug #202153
diff --git a/sys-apps/dmapi/dmapi-2.2.3.ebuild b/sys-apps/dmapi/dmapi-2.2.3.ebuild
deleted file mode 100644
index d80cb8100760..000000000000
--- a/sys-apps/dmapi/dmapi-2.2.3.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2006 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/dmapi/dmapi-2.2.3.ebuild,v 1.10 2006/09/05 05:15:25 kumba Exp $
-
-inherit eutils toolchain-funcs
-
-DESCRIPTION="XFS data management API library"
-HOMEPAGE="http://oss.sgi.com/projects/xfs/"
-SRC_URI="ftp://oss.sgi.com/projects/xfs/download/cmd_tars/${P}.src.tar.gz"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~alpha amd64 ia64 mips ppc ppc64 ~sparc x86"
-IUSE=""
-
-DEPEND="sys-fs/xfsprogs"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- epatch "${FILESDIR}"/${PN}-2.2.1-only-symlink-when-needed.patch
- epatch "${FILESDIR}"/${P}-LDFLAGS.patch #126825
- sed -i \
- -e "/^PKG_DOC_DIR/s:=.*:= /usr/share/doc/${PF}:" \
- include/builddefs.in \
- || die "failed to update builddefs"
-}
-
-src_compile() {
- export OPTIMIZER=${CFLAGS}
- export DEBUG=-DNDEBUG
-
- econf --libexecdir=/usr/$(get_libdir) || die
- emake || die
-}
-
-src_install() {
- make DIST_ROOT="${D}" install install-dev || die
- prepalldocs
-
- # move shared libs to /
- dodir /$(get_libdir)
- mv "${D}"/usr/$(get_libdir)/libdm.so* "${D}"/$(get_libdir)/ || die
- gen_usr_ldscript libdm.so
-}
diff --git a/sys-apps/dmapi/files/digest-dmapi-2.2.3 b/sys-apps/dmapi/files/digest-dmapi-2.2.3
deleted file mode 100644
index 5da45be8cb79..000000000000
--- a/sys-apps/dmapi/files/digest-dmapi-2.2.3
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 e3bb24818f07139e7c5f024dc4e7bb89 dmapi-2.2.3.src.tar.gz 78451
-RMD160 96cd9fa7fd3ab3a45591a71fecb32b057e1a3ef3 dmapi-2.2.3.src.tar.gz 78451
-SHA256 e34e04e4a8893194bbaebba1122db946ee113fb20dcb8864bd03defb51f7b35f dmapi-2.2.3.src.tar.gz 78451
diff --git a/sys-apps/dmapi/files/dmapi-2.2.3-LDFLAGS.patch b/sys-apps/dmapi/files/dmapi-2.2.3-LDFLAGS.patch
deleted file mode 100644
index 9ed5d29bbf2f..000000000000
--- a/sys-apps/dmapi/files/dmapi-2.2.3-LDFLAGS.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-Respect user LDFLAGS
-
-http://bugs.gentoo.org/126825
-
---- include/buildmacros
-+++ include/buildmacros
-@@ -9,7 +9,8 @@
- # $(CXXFILES), or $(HFILES) and is used to construct the manifest list
- # during the "dist" phase (packaging).
-
--LDFLAGS = $(LLDFLAGS)
-+LDFLAGS += $(LDFLAGS_OPT) $(LLDFLAGS)
-+LTLDFLAGS += $(LDFLAGS_OPT)
- LDLIBS = $(LLDLIBS) $(PLDLIBS) $(MALLOCLIB)
-
- MAKEOPTS = --no-print-directory
---- include/builddefs.in
-+++ include/builddefs.in
-@@ -9,6 +9,7 @@
-
- DEBUG = @debug_build@
- OPTIMIZER = @opt_build@
-+LDFLAGS_OPT = @LDFLAGS@
- MALLOCLIB = @malloc_lib@
-
- LIBATTR = $(TOPDIR)/libattr/libattr.la