diff options
| author | root <root@alpha.trunkmasters.com> | 2026-06-04 16:24:49 -0500 |
|---|---|---|
| committer | root <root@alpha.trunkmasters.com> | 2026-06-04 16:24:49 -0500 |
| commit | a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7 (patch) | |
| tree | 0c52bbae1c242fbc296bd650fcd1167685f81492 /dev-libs/shhopt | |
| parent | bfd9c39e4712ebdb442d4ca0673061faed1e70e1 (diff) | |
| download | baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.gz baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.xz baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.zip | |
Adding metadata
Diffstat (limited to 'dev-libs/shhopt')
| -rw-r--r-- | dev-libs/shhopt/Manifest | 1 | ||||
| -rw-r--r-- | dev-libs/shhopt/files/shhopt-1.1.7-build.patch | 69 | ||||
| -rw-r--r-- | dev-libs/shhopt/metadata.xml | 9 | ||||
| -rw-r--r-- | dev-libs/shhopt/shhopt-1.1.7-r3.ebuild | 28 |
4 files changed, 0 insertions, 107 deletions
diff --git a/dev-libs/shhopt/Manifest b/dev-libs/shhopt/Manifest deleted file mode 100644 index 322f03d7f7b3..000000000000 --- a/dev-libs/shhopt/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST shhopt-1.1.7.tar.gz 9923 BLAKE2B 4f9fb23a67c03caf6c56227729a681eac3ee9c78e16f56d6fedd2b1cdbe56471150d9e91ecf84945348078d03102aa7e7cc98b4cf11dda6f5da79d1edc48b96d SHA512 bd985d50e87808b5c6993496ba3e7c255d47895d90e108f03fd72bb273e786730898048af3b30ca29cb5dbd058f2ea178ca73b6362211c50aa0eb75f743b5ec8 diff --git a/dev-libs/shhopt/files/shhopt-1.1.7-build.patch b/dev-libs/shhopt/files/shhopt-1.1.7-build.patch deleted file mode 100644 index 954011994bc9..000000000000 --- a/dev-libs/shhopt/files/shhopt-1.1.7-build.patch +++ /dev/null @@ -1,69 +0,0 @@ ---- a/Makefile -+++ b/Makefile -@@ -5,17 +5,11 @@ - VERPAT = 7 - VERSION = $(VERMAJ).$(VERMIN).$(VERPAT) - --# Define SHARED as 1 for Linux shared ELF library --#SHARED = 1 - --ifeq ($(SHARED),1) - LIBTARGET = lib$(DIST).so.$(VERSION) - LIBTARGETSO = lib$(DIST).so - LIBTARGETSOMAJ = $(LIBTARGETSO).$(VERMAJ) - CCSHRD = -fPIC --else --LIBTARGET = lib$(DIST).a --endif - - LIBHEAD = $(DIST).h - TARGETS = $(LIBTARGET) -@@ -27,12 +21,9 @@ - INSTALLPROG = install -m 755 - MKDIRP = install -d -m 755 - --CC = gcc --OPTIM = -O2 -- - INCDIR = -I. - --CCOPT = -s -Wall $(OPTIM) $(INCDIR) -+CCOPT = -Wall $(INCDIR) - - # Object files to store in the library - LIBOBJS = shhopt.o -@@ -44,12 +35,7 @@ - # that your ar does an implicit ranlib and you do not need to run ranlib - # separately. This error is harmless. - $(LIBTARGET): $(LIBOBJS) --ifeq ($(SHARED),1) -- $(CC) -shared -Wl,-soname,$(LIBTARGETSOMAJ) -o $(LIBTARGET) $(LIBOBJS) --else -- ar rc $(LIBTARGET) $(LIBOBJS) -- ranlib $(LIBTARGET) || true --endif -+ $(CC) $(LDFLAGS) -shared -Wl,-soname,$(LIBTARGETSOMAJ) -o $(LIBTARGET) $(LIBOBJS) - - # Note that you may need GNU's -liberty if your libc lacks strtoul - example: $(LIBTARGET) example.o -@@ -57,7 +43,7 @@ - -L. -I. -L$(INSTLIBDIR) -I$(INSTINCDIR) -lshhopt - - .c.o: -- $(CC) $(CCSHRD) -o $@ -c $(CCOPT) $< -+ $(CC) $(CFLAGS) $(CPPFLAGS) $(CCSHRD) -o $@ -c $(CCOPT) $< - - depend dep: - $(CC) $(INCDIR) -MM *.c >depend -@@ -66,11 +52,9 @@ - $(MKDIRP) $(INSTLIBDIR) $(INSTINCDIR) - $(INSTALL) $(LIBTARGET) $(INSTLIBDIR) - $(INSTALL) $(LIBHEAD) $(INSTINCDIR) --ifeq ($(SHARED),1) - ln -sf $(LIBTARGET) $(INSTLIBDIR)/$(LIBTARGETSOMAJ) - ln -sf $(LIBTARGETSOMAJ) $(INSTLIBDIR)/$(LIBTARGETSO) - echo "Now run ldconfig if necessary." --endif - - clean: - rm -f *.o core *~ depend diff --git a/dev-libs/shhopt/metadata.xml b/dev-libs/shhopt/metadata.xml deleted file mode 100644 index 30a37a048830..000000000000 --- a/dev-libs/shhopt/metadata.xml +++ /dev/null @@ -1,9 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <!-- maintainer-needed --> - <longdescription lang="en"> - C-functions for parsing command line options, both traditional - one-character options, and GNU'ish --long-options. - </longdescription> -</pkgmetadata> diff --git a/dev-libs/shhopt/shhopt-1.1.7-r3.ebuild b/dev-libs/shhopt/shhopt-1.1.7-r3.ebuild deleted file mode 100644 index c1fd89d7f6c8..000000000000 --- a/dev-libs/shhopt/shhopt-1.1.7-r3.ebuild +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit toolchain-funcs - -DESCRIPTION="library for parsing command line options" -HOMEPAGE="https://shh.thathost.com/pub-unix/" -SRC_URI="https://shh.thathost.com/pub-unix/files/${P}.tar.gz" - -LICENSE="Artistic" -SLOT="0" -KEYWORDS="amd64 ppc x86" - -PATCHES=( "${FILESDIR}"/${P}-build.patch ) - -src_compile() { - emake CC="$(tc-getCC)" -} - -src_install() { - ln -s libshhopt.so.${PV} libshhopt.so || die - ln -s libshhopt.so.${PV} libshhopt.so.${PV:0:1} || die - dolib.so libshhopt.so* - doheader shhopt.h - dodoc ChangeLog CREDITS README TODO -} |
