summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTomas Chvatal <scarabeus@gentoo.org>2010-10-18 11:54:42 +0000
committerTomas Chvatal <scarabeus@gentoo.org>2010-10-18 11:54:42 +0000
commitf601a4b26d1bb14436c76b9bf4a9d6010e2c615e (patch)
tree2aada414d38b02fec5aa90a5973042439bfccf3d /dev-libs
parent*portage-2.2_rc98 (18 Oct 2010) (diff)
downloadhistorical-f601a4b26d1bb14436c76b9bf4a9d6010e2c615e.tar.gz
historical-f601a4b26d1bb14436c76b9bf4a9d6010e2c615e.tar.bz2
historical-f601a4b26d1bb14436c76b9bf4a9d6010e2c615e.zip
Treeclean. No update since 2k4. None else ship this. Per bug #335227.
Diffstat (limited to 'dev-libs')
-rw-r--r--dev-libs/phlib/ChangeLog25
-rw-r--r--dev-libs/phlib/Manifest6
-rw-r--r--dev-libs/phlib/files/phlib-soname.patch34
-rw-r--r--dev-libs/phlib/files/phlib-types.patch11
-rw-r--r--dev-libs/phlib/metadata.xml5
-rw-r--r--dev-libs/phlib/phlib-1.20.ebuild35
6 files changed, 0 insertions, 116 deletions
diff --git a/dev-libs/phlib/ChangeLog b/dev-libs/phlib/ChangeLog
deleted file mode 100644
index da5ffc176fdc..000000000000
--- a/dev-libs/phlib/ChangeLog
+++ /dev/null
@@ -1,25 +0,0 @@
-# ChangeLog for dev-libs/phlib
-# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/phlib/ChangeLog,v 1.6 2009/09/23 17:25:41 patrick Exp $
-
- 23 Sep 2009; Patrick Lauer <patrick@gentoo.org> phlib-1.20.ebuild:
- Remove virtual/libc
-
- 21 Oct 2008; Peter Alfredsen <loki_val@gentoo.org>
- +files/phlib-soname.patch, +files/phlib-types.patch, phlib-1.20.ebuild:
- Fix bug 240213 with patches imported from PLD linux. Make phlib not break
- the sandbox, now that it compiles.
-
- 09 Feb 2007; Diego Pettenò <flameeyes@gentoo.org> ChangeLog:
- Regenerate digest in Manifest2 format.
-
- 01 Jul 2004; Jeremy Huddleston <eradicator@gentoo.org> phlib-1.20.ebuild:
- virtual/glibc -> virtual/libc
-
-*phlib-1.20 (02 Apr 2004)
-
- 02 Apr 2004; Rainer Groesslinger <scandium@gentoo.org> phlib-1.20.ebuild:
- Initial commit.
- Ebuild submitted by Michael C. Ferguson (bug #45570) with some minor
- changes added
-
diff --git a/dev-libs/phlib/Manifest b/dev-libs/phlib/Manifest
deleted file mode 100644
index 7f3880721ee1..000000000000
--- a/dev-libs/phlib/Manifest
+++ /dev/null
@@ -1,6 +0,0 @@
-AUX phlib-soname.patch 1295 RMD160 223c83b25baf56335af1a8d72142fc0cc3778296 SHA1 db1c363f16dab68121dcd36827cdc17fe8124455 SHA256 20b4e84423b4d724be478e024f2336af956d252a964146a7543b14e34f14d134
-AUX phlib-types.patch 352 RMD160 a002b5d8e37434b4f9ec71da8a79423573c39202 SHA1 1a34f206ad295f4c5e2cc5a0344997f6b40aa2bd SHA256 157a4cf7c151421e9b2c6be393752f201ebb9976cfa66acb747892f38d0e3501
-DIST phlib-1.20.tgz 86172 RMD160 67e0263870355a5348d7219e6c2a8a9c2dafb780 SHA1 ecd73113c24fd25ef25c249002ab825d4f9794d5 SHA256 fbe6a9bbde886355b5211c1027a0b3c281cdae31962fff3e745b57e3814e31a3
-EBUILD phlib-1.20.ebuild 829 RMD160 051436462a57ea7debf3dc036704c2f5211446df SHA1 da9f385ed1bfdfc938814a1f9ce12e142c04d3c4 SHA256 c667008684c59035d055117256a8b05b7fffd09a3291e766fb298908805fed8a
-MISC ChangeLog 959 RMD160 3f94c766003aabc2c913f8c49408e4f5d7a370a2 SHA1 ed4b4c9406eb079e34202670f79a20e026d458b1 SHA256 423378fa73205460852f52444f3715cdb2020d0269208149d1f1e947fd9594f9
-MISC metadata.xml 159 RMD160 41527b6d3fa74dfdcd619b7d91c478b72ecc8ae8 SHA1 ac19a418765e817e54d4c54c1992c9062d5dcf3e SHA256 986c3e2fa3baa5d6e8c0b5c27a2550601780d0cc7857f7f1c01523491706d909
diff --git a/dev-libs/phlib/files/phlib-soname.patch b/dev-libs/phlib/files/phlib-soname.patch
deleted file mode 100644
index 9c11cd95285f..000000000000
--- a/dev-libs/phlib/files/phlib-soname.patch
+++ /dev/null
@@ -1,34 +0,0 @@
---- phlib-1.20/Makefile.in~ Mon Oct 20 21:08:46 2003
-+++ phlib-1.20/Makefile.in Fri Dec 5 18:02:38 2003
-@@ -108,7 +108,9 @@
- $(OURLIBSO): $(OBJS) $(HEAD)
- @echo Creating shared library $(OURLIBSO)
- @rm -f $@
-- $(SHLD) -o $@ $(OBJS)
-+ $(CC) -shared -o$@.$(VER_MAJOR).$(VER_MINOR) -Wl,-soname=$@.$(VER_MAJOR) $(OBJS)
-+ ln -sf $@.$(VER_MAJOR).$(VER_MINOR) $@.$(VER_MAJOR)
-+ ln -sf $@.$(VER_MAJOR).$(VER_MINOR) $@
-
- $(OURLIBDB): $(OBJS) $(MDBOBJS) $(HEAD)
- @echo Creating library $@
-@@ -118,15 +120,17 @@
- $(OURLIBDBSO): $(OBJS) $(MDBOBJS) $(HEAD)
- @echo Creating shared library $@
- @rm -f $@
-- $(SHLD) -o $@ $(OBJS) $(MDBOBJS)
-+ $(CC) -shared -o$@.$(VER_MAJOR).$(VER_MINOR) -Wl,-soname=$@.$(VER_MAJOR) $(OBJS)
-+ ln -sf $@.$(VER_MAJOR).$(VER_MINOR) $@.$(VER_MAJOR)
-+ ln -sf $@.$(VER_MAJOR).$(VER_MINOR) $@
-
- $(OBJ)/%.o: %.c $(HEAD)
- $(CC) $(CFLAGS) -D_XL_LIB_BUILD -o $@ $<
-
- install: $(OURLIB)
- @./mkinstalldirs $(i_libdir) $(MINC)
-- @./install-lib $(OURLIB) $(OURLIB) $(i_libdir) $(VER_MAJOR) $(VER_MINOR)
-- @./install-lib $(OURLIBSO) $(OURLIBSO) $(i_libdir) $(VER_MAJOR) $(VER_MINOR)
-+ @install $(OURLIB) $(i_libdir)/$(OURLIB)
-+ @./install-lib $(OURLIBSO).$(VER_MAJOR).$(VER_MINOR) $(OURLIBSO) $(i_libdir) $(VER_MAJOR) $(VER_MINOR)
- @./install-head $(SINC) $(MINC) $(HEADF)
-
- clean:
diff --git a/dev-libs/phlib/files/phlib-types.patch b/dev-libs/phlib/files/phlib-types.patch
deleted file mode 100644
index 7cca8acf461a..000000000000
--- a/dev-libs/phlib/files/phlib-types.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- phlib-1.20/include/phlib/xl_ufile.h~ 2003-01-11 13:40:09.000000000 +0100
-+++ phlib-1.20/include/phlib/xl_ufile.h 2007-09-05 18:30:40.000000000 +0200
-@@ -32,7 +32,7 @@
- extern "C" {
- #endif
-
--Boolean xl_unique_filename(char*,const char*,size_t);
-+RetValue xl_unique_filename(char*,const char*,size_t);
-
- #ifdef __cplusplus
- } /* extern "C" */
diff --git a/dev-libs/phlib/metadata.xml b/dev-libs/phlib/metadata.xml
deleted file mode 100644
index e85974a7fa17..000000000000
--- a/dev-libs/phlib/metadata.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-<herd>dotnet</herd>
-</pkgmetadata>
diff --git a/dev-libs/phlib/phlib-1.20.ebuild b/dev-libs/phlib/phlib-1.20.ebuild
deleted file mode 100644
index 291f5da07ccf..000000000000
--- a/dev-libs/phlib/phlib-1.20.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/phlib/phlib-1.20.ebuild,v 1.6 2009/09/23 17:25:41 patrick Exp $
-
-inherit eutils
-
-DESCRIPTION="phlib is a collection of support functions and classes used by Goldwater and the DGEE"
-HOMEPAGE="http://www.nfluid.com/"
-SRC_URI="http://www.nfluid.com/download/src/${P}.tgz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="x86"
-
-IUSE=""
-
-DEPEND=""
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- sed -i s/cflags/CFLAGS/ configure
- epatch "${FILESDIR}/${PN}-types.patch"
- epatch "${FILESDIR}/${PN}-soname.patch"
-}
-
-src_compile() {
- CFLAGS="${CFLAGS} -fPIC -Wall"
- econf || die "econf failed"
- emake -j1 || die "emake failed"
-}
-
-src_install() {
- emake -j1 DESTDIR="${D}" install || die "install failed"
-}