From 56bd759df1d0c750a065b8c845e93d5dfa6b549d Mon Sep 17 00:00:00 2001 From: "Robin H. Johnson" Date: Sat, 8 Aug 2015 13:49:04 -0700 Subject: proj/gentoo: Initial commit MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This commit represents a new era for Gentoo: Storing the gentoo-x86 tree in Git, as converted from CVS. This commit is the start of the NEW history. Any historical data is intended to be grafted onto this point. Creation process: 1. Take final CVS checkout snapshot 2. Remove ALL ChangeLog* files 3. Transform all Manifests to thin 4. Remove empty Manifests 5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$ 5.1. Do not touch files with -kb/-ko keyword flags. Signed-off-by: Robin H. Johnson X-Thanks: Alec Warner - did the GSoC 2006 migration tests X-Thanks: Robin H. Johnson - infra guy, herding this project X-Thanks: Nguyen Thai Ngoc Duy - Former Gentoo developer, wrote Git features for the migration X-Thanks: Brian Harring - wrote much python to improve cvs2svn X-Thanks: Rich Freeman - validation scripts X-Thanks: Patrick Lauer - Gentoo dev, running new 2014 work in migration X-Thanks: Michał Górny - scripts, QA, nagging X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed --- sci-libs/libpdb++/Manifest | 1 + sci-libs/libpdb++/files/040728-dynlib.patch | 12 +++++ .../files/libpdb++-040728-dynlib+flags.patch | 54 ++++++++++++++++++++++ sci-libs/libpdb++/libpdb++-040728-r1.ebuild | 44 ++++++++++++++++++ sci-libs/libpdb++/libpdb++-040728.ebuild | 46 ++++++++++++++++++ sci-libs/libpdb++/metadata.xml | 8 ++++ 6 files changed, 165 insertions(+) create mode 100644 sci-libs/libpdb++/Manifest create mode 100644 sci-libs/libpdb++/files/040728-dynlib.patch create mode 100644 sci-libs/libpdb++/files/libpdb++-040728-dynlib+flags.patch create mode 100644 sci-libs/libpdb++/libpdb++-040728-r1.ebuild create mode 100644 sci-libs/libpdb++/libpdb++-040728.ebuild create mode 100644 sci-libs/libpdb++/metadata.xml (limited to 'sci-libs/libpdb++') diff --git a/sci-libs/libpdb++/Manifest b/sci-libs/libpdb++/Manifest new file mode 100644 index 00000000000..09e88d0258b --- /dev/null +++ b/sci-libs/libpdb++/Manifest @@ -0,0 +1 @@ +DIST libpdb++-040728.shar 113174 SHA256 e37fcaa58e04e64a2a1ae6324c699d320c9d6bf07694e29d6bef63c61dd585e7 SHA512 4b3e4b12ea10395ba38fbc12fbb3589bd7b40997e1a0bcb79d3d0a495c361e4dea8dbdc4c434de290b5f62412e297df09742beeea0a8b881dbf92317013aa930 WHIRLPOOL 9bc9ce6861cce47da69609c402759813a050af4849c969b72d27669bd55143be48432e5dcc44d08b04d6f6f0915fdf6ff3860a4652de248d9d13df27ce2b9869 diff --git a/sci-libs/libpdb++/files/040728-dynlib.patch b/sci-libs/libpdb++/files/040728-dynlib.patch new file mode 100644 index 00000000000..a9792afb52a --- /dev/null +++ b/sci-libs/libpdb++/files/040728-dynlib.patch @@ -0,0 +1,12 @@ +diff --git a/libpdb++/Makefile b/libpdb++/Makefile +index bbf0778..286a638 100644 +--- a/libpdb++/Makefile ++++ b/libpdb++/Makefile +@@ -32,6 +32,7 @@ install: $(LIBARCH) + + $(LIBARCH): $(OBJS) + @echo "Loading $(LIBARCH) ... " ++ $(CXX) $(LDFLAGS) -shared -Wl,--soname,libpdb++.so.0 -o libpdb++.so.0.1 $(OBJS) + @ar cru $(LIBARCH) $(OBJS) + @$(RANLIB) $(LIBARCH) + @echo "done" diff --git a/sci-libs/libpdb++/files/libpdb++-040728-dynlib+flags.patch b/sci-libs/libpdb++/files/libpdb++-040728-dynlib+flags.patch new file mode 100644 index 00000000000..3600481f4c7 --- /dev/null +++ b/sci-libs/libpdb++/files/libpdb++-040728-dynlib+flags.patch @@ -0,0 +1,54 @@ + Makefile | 20 +++++++++++++------- + 1 file changed, 13 insertions(+), 7 deletions(-) + +diff --git a/Makefile b/Makefile +index bbf0778..1dc6c62 100644 +--- a/Makefile ++++ b/Makefile +@@ -4,22 +4,22 @@ + # On System V machines, RANLIB should be ':' + # + SHELL = /bin/sh +-RANLIB = : ++#RANLIB = : + +-CXX = gcc -felide-constructors ++CXX ?= g++ + #CXX = CC + + .SUFFIXES: .cc + + .cc.o: +- $(CXX) $(CCFLAGS) -c $< -o $@ ++ $(CXX) $(CXXFLAGS) -fPIC -felide-constructors -c $< -o $@ + + OPT = -O + DEBUG = + CCFLAGS = $(OPT) $(DEBUG) + LIBRARY = pdb++ + +-LIBARCH = lib$(LIBRARY).a ++LIBARCH = lib$(LIBRARY) + OBJS = pdb_read.o pdb_sprntf.o pdb_sscanf.o pdb_chars.o \ + pdb_type.o pdb++.o pdbinput.o + SRCS = pdb_read.cc pdb_sprntf.cc pdb_sscanf.cc pdb_chars.cc \ +@@ -30,10 +30,16 @@ all: $(LIBARCH) + install: $(LIBARCH) + install -F /usr/local/lib $(LIBARCH) + +-$(LIBARCH): $(OBJS) ++$(LIBARCH).a: $(OBJS) + @echo "Loading $(LIBARCH) ... " +- @ar cru $(LIBARCH) $(OBJS) +- @$(RANLIB) $(LIBARCH) ++ $(AR) cru $@ $(OBJS) ++ $(RANLIB) $@ ++ @echo "done" ++ ++$(LIBARCH).so: $(OBJS) ++ $(CXX) $(LDFLAGS) -shared -Wl,--soname,libpdb++.so.0 -o libpdb++.so.0.1 $(OBJS) ++ ln -sf libpdb++.so.0.1 libpdb++.so.0 ++ ln -sf libpdb++.so.0.1 libpdb++.so + @echo "done" + + clean:; @rm -f $(OBJS) diff --git a/sci-libs/libpdb++/libpdb++-040728-r1.ebuild b/sci-libs/libpdb++/libpdb++-040728-r1.ebuild new file mode 100644 index 00000000000..3edeb2df05b --- /dev/null +++ b/sci-libs/libpdb++/libpdb++-040728-r1.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=4 + +inherit eutils multilib toolchain-funcs + +DESCRIPTION="PDB Record I/O Libraries -- c++ version" +HOMEPAGE="http://www.cgl.ucsf.edu/Overview/software.html" +SRC_URI="mirror://gentoo/${P}.shar" + +SLOT="0" +LICENSE="BSD" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +IUSE="static-libs" + +RDEPEND="" +DEPEND="${RDEPEND} + app-arch/sharutils" + +S="${WORKDIR}"/${PN} + +src_unpack() { + "${EPREFIX}/usr/bin/unshar" "${DISTDIR}"/${A} || die +} + +src_prepare() { + epatch "${FILESDIR}"/${P}-dynlib+flags.patch + tc-export CXX AR RANLIB +} + +src_compile() { + emake ${PN}.so + use static-libs && emake ${PN}.a +} + +src_install() { + dolib.so ${PN}.so* + use static-libs && dolib.a ${PN}.a + + insinto /usr/include/${PN} + doins *.h +} diff --git a/sci-libs/libpdb++/libpdb++-040728.ebuild b/sci-libs/libpdb++/libpdb++-040728.ebuild new file mode 100644 index 00000000000..bd69f261d97 --- /dev/null +++ b/sci-libs/libpdb++/libpdb++-040728.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="3" + +inherit eutils multilib toolchain-funcs + +DESCRIPTION="PDB Record I/O Libraries -- c++ version" +HOMEPAGE="http://www.cgl.ucsf.edu/Overview/software.html" +SRC_URI="mirror://gentoo/${P}.shar" + +SLOT="0" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +LICENSE="BSD" +IUSE="" + +RDEPEND="" +DEPEND="${RDEPEND} + app-arch/sharutils" + +S="${WORKDIR}"/${PN} + +src_unpack() { + "${EPREFIX}"/usr/bin/unshar "${DISTDIR}"/${A} || die +} + +src_prepare() { + epatch "${FILESDIR}"/${PV}-dynlib.patch +} + +src_compile() { + emake \ + CXX="$(tc-getCXX)" \ + CCFLAGS="${CXXFLAGS} -fPIC -felide-constructors" \ + || die +} + +src_install() { + dolib.a ${PN}.a || die + dolib.so ${PN}.so.0.1 || die + dosym ${PN}.so.0.1 /usr/$(get_libdir)/${PN}.so.0 + dosym ${PN}.so.0.1 /usr/$(get_libdir)/${PN}.so + insinto /usr/include/${PN} + doins *.h || die +} diff --git a/sci-libs/libpdb++/metadata.xml b/sci-libs/libpdb++/metadata.xml new file mode 100644 index 00000000000..210ad0db014 --- /dev/null +++ b/sci-libs/libpdb++/metadata.xml @@ -0,0 +1,8 @@ + + + + sci + + jlec@gentoo.org + + -- cgit v1.2.1