summaryrefslogtreecommitdiff
path: root/app-text/u2ps
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-06-12 11:50:53 -0500
committerroot <root@alpha.trunkmasters.com>2026-06-12 11:50:53 -0500
commit290aebdea65a02557706eaeda477fef0437b6a48 (patch)
treef87a939169a508a2e943570501b64cc16b411cda /app-text/u2ps
parent6783ddcd4b73d9ce586a71770caed352bec93b16 (diff)
downloadbaldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.tar.gz
baldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.tar.xz
baldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.zip
Adding metadata
Diffstat (limited to 'app-text/u2ps')
-rw-r--r--app-text/u2ps/Manifest1
-rw-r--r--app-text/u2ps/files/u2ps-1.1-nostrip.patch14
-rw-r--r--app-text/u2ps/files/u2ps-1.2-respect-ldflags.patch13
-rw-r--r--app-text/u2ps/metadata.xml5
-rw-r--r--app-text/u2ps/u2ps-1.2-r1.ebuild36
5 files changed, 0 insertions, 69 deletions
diff --git a/app-text/u2ps/Manifest b/app-text/u2ps/Manifest
deleted file mode 100644
index 8988b9399383..000000000000
--- a/app-text/u2ps/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST u2ps-1.2.tar.gz 110917 BLAKE2B 223aec319d36191032e45a73d9053a970ef76c780c9260e3d6a3799c24f80eb0bddd645de87806570844c3e4e763a2eb1929d44bf122daeaebcefd711d61d35d SHA512 3c5c12b50b6d2d50c67a1051375aeb4cfb32a2c8c898837313ac7ff4a11f30c4625f71f77203f7b1367b1ccdb9143a1106b99deaef8f964af3d08336ce686198
diff --git a/app-text/u2ps/files/u2ps-1.1-nostrip.patch b/app-text/u2ps/files/u2ps-1.1-nostrip.patch
deleted file mode 100644
index 33ac79c4909e..000000000000
--- a/app-text/u2ps/files/u2ps-1.1-nostrip.patch
+++ /dev/null
@@ -1,14 +0,0 @@
-diff -ruN u2ps-1.1.orig/Makefile u2ps-1.1/Makefile
---- u2ps-1.1.orig/Makefile 2019-02-17 20:01:48.000000000 +0100
-+++ u2ps-1.1/Makefile 2019-12-22 20:43:17.667058496 +0100
-@@ -18,8 +18,8 @@
-
- install:
- install -dm 0755 $(DESTDIR)$(bindir)
-- install -sm 0755 u2ps $(DESTDIR)$(bindir)/u2ps
-- install -sm 0755 psfrem $(DESTDIR)$(bindir)/psfrem
-+ install -m 0755 u2ps $(DESTDIR)$(bindir)/u2ps
-+ install -m 0755 psfrem $(DESTDIR)$(bindir)/psfrem
- install -dm 0755 $(DESTDIR)$(basedir)
- install -dm 0755 $(DESTDIR)$(basedir)/ProcSet
- install -m 0644 res/*.ps $(DESTDIR)$(basedir)
diff --git a/app-text/u2ps/files/u2ps-1.2-respect-ldflags.patch b/app-text/u2ps/files/u2ps-1.2-respect-ldflags.patch
deleted file mode 100644
index a9d4ac5e1ebf..000000000000
--- a/app-text/u2ps/files/u2ps-1.2-respect-ldflags.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-diff --git a/Makefile b/Makefile
-index 8a526f0..88b90b3 100644
---- a/Makefile
-+++ b/Makefile
-@@ -11,7 +11,7 @@ u2ps: u2ps.o u2ps_opts.o u2ps_data.o u2ps_file.o u2ps_page.o u2ps_pswr.o \
- ttf2pt42: ttf2pt42.o warn.o
-
- %: %.o
-- $(CC) -o $@ $(filter %.o,$^)
-+ $(CC) -o $@ $(filter %.o,$^) ${LDFLAGS}
-
- .c.o:
- $(CC) $(CFLAGS) -o $@ -c $<
diff --git a/app-text/u2ps/metadata.xml b/app-text/u2ps/metadata.xml
deleted file mode 100644
index 5f33304011d5..000000000000
--- a/app-text/u2ps/metadata.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://docs.baldeagleos.com/dtd/metadata.dtd">
-<pkgmetadata>
- <origin>baldeagleos-repo</origin>
-</pkgmetadata>
diff --git a/app-text/u2ps/u2ps-1.2-r1.ebuild b/app-text/u2ps/u2ps-1.2-r1.ebuild
deleted file mode 100644
index 93bb789cdacc..000000000000
--- a/app-text/u2ps/u2ps-1.2-r1.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit flag-o-matic toolchain-funcs
-
-DESCRIPTION="A text to PostScript converter like a2ps, but supports UTF-8"
-HOMEPAGE="https://github.com/arsv/u2ps"
-SRC_URI="https://github.com/arsv/${PN}/releases/download/${PV}/${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="amd64 ~x86"
-
-DEPEND="app-text/ghostscript-gpl"
-RDEPEND="${DEPEND}"
-BDEPEND="${DEPEND}"
-
-PATCHES=(
- "${FILESDIR}/${PN}-1.1-nostrip.patch"
- "${FILESDIR}/${PN}-1.2-respect-ldflags.patch"
-)
-
-src_configure() {
- # bug #945504
- append-flags -std=gnu17
- # this isnt autoconf, so econf fails...
- tc-export CC
- ./configure \
- --prefix="${EPREFIX}"/usr \
- --datadir="${EPREFIX}"/usr/share \
- --mandir="${EPREFIX}"/usr/share/man \
- --with-gs="${EPREFIX}"/usr/bin/gs \
- || die 'configure failed'
-}