summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2024-10-04 13:42:19 +0200
committerAndreas Sturmlechner <asturm@gentoo.org>2024-10-04 19:36:52 +0200
commita33ce22b779f68dd4cd07d19129ca32898707d16 (patch)
treeb7c827aefcb5f4249c0de2937dfc8c70d3f6a337 /app-text
parentapp-misc/spacenavd: drop 0.8, 1.1 (diff)
downloadgentoo-a33ce22b779f68dd4cd07d19129ca32898707d16.tar.gz
gentoo-a33ce22b779f68dd4cd07d19129ca32898707d16.tar.bz2
gentoo-a33ce22b779f68dd4cd07d19129ca32898707d16.zip
app-text/libpaper: drop 1.1.28
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'app-text')
-rw-r--r--app-text/libpaper/Manifest1
-rw-r--r--app-text/libpaper/libpaper-1.1.28.ebuild43
2 files changed, 0 insertions, 44 deletions
diff --git a/app-text/libpaper/Manifest b/app-text/libpaper/Manifest
index e8ed3c20daac..4819a0c01cc7 100644
--- a/app-text/libpaper/Manifest
+++ b/app-text/libpaper/Manifest
@@ -1,3 +1,2 @@
DIST libpaper-2.1.2.tar.gz 1264200 BLAKE2B d931c70ea1b26e57ef5cf120189dbf089d7b122ab195b154e6dc100845f63acd051195662d1b019a2f738ebe65047207b39609f4db0e748eaabc3868f3a2ccb0 SHA512 29c5d8074c10f6413b4eaf779153828e59b4b7353e6b380b37ed6cac04a92dc367da775a62e561b47064728f4173cb526d05a8abd80334ad229ee2a42039ac7b
DIST libpaper-2.1.3.tar.gz 1263513 BLAKE2B 920fa9857cef5773a3570bd613152f09726cfeb8e07f8152460b37ee863b76ea28ef4c2d80d010e10368e952281e5138b1412c22e1cbfa27053bb3b6067bbcbf SHA512 7ebd469b7d6f22cd98e5811cf87403d066974dc2624d35653803c318258cb68506dc2abeb7129b03231aa32c36a7461275b20f4a43c51f0cd70b2db59a1a2988
-DIST libpaper_1.1.28.tar.gz 42356 BLAKE2B 48c4a28c6ff01bd91e257b6b306e787e5c6112052cff09bdb501d1cc4ddd10964c3588942098a6092d5a44391dfb22e10d5147d4c5012497f473473129ff7422 SHA512 3bf6ebb0af89931d2f72ea4a09a7fa958b2facda5f238983ec7bac39652e08614b33f0de3af74a03457b2a4203eee4950bf18a4b726e79aa64093ace6a1fb0bc
diff --git a/app-text/libpaper/libpaper-1.1.28.ebuild b/app-text/libpaper/libpaper-1.1.28.ebuild
deleted file mode 100644
index 40a9ec8ee620..000000000000
--- a/app-text/libpaper/libpaper-1.1.28.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit autotools multilib-minimal
-
-DESCRIPTION="Library for handling paper characteristics"
-HOMEPAGE="https://packages.debian.org/unstable/source/libpaper"
-SRC_URI="mirror://debian/pool/main/libp/libpaper/${P/-/_}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris"
-
-DOCS=( README ChangeLog debian/changelog )
-
-src_prepare() {
- sed -e "s/AM_CONFIG_HEADER/AC_CONFIG_HEADERS/" -i configure.ac || die
- eautoreconf
- default
-}
-
-multilib_src_configure() {
- ECONF_SOURCE="${S}" econf \
- --disable-static
-}
-
-multilib_src_install_all() {
- find "${ED}" -name '*.la' -exec rm -f {} +
-
- einstalldocs
-
- dodir /etc
- (paperconf 2>/dev/null || echo a4) > "${ED}"/etc/papersize \
- || die "papersize config failed"
-
- if ! has_version app-text/libpaper ; then
- echo
- elog "run e.g. \"paperconfig -p letter\" as root to use letter-pagesizes"
- echo
- fi
-}