diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2020-01-03 19:44:52 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2020-01-03 19:53:37 +0100 |
commit | a82c1d74fab751a318cd0efce9c90a6036935125 (patch) | |
tree | bf1ed3856f5f4ac86c4681aa3b653f214b22f49e /dev-libs/9libs | |
parent | profile: use masks for kismet on some arches (diff) | |
download | gentoo-a82c1d74fab751a318cd0efce9c90a6036935125.tar.gz gentoo-a82c1d74fab751a318cd0efce9c90a6036935125.tar.bz2 gentoo-a82c1d74fab751a318cd0efce9c90a6036935125.zip |
dev-libs/9libs: Drop 1.0-r3
Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'dev-libs/9libs')
-rw-r--r-- | dev-libs/9libs/9libs-1.0-r3.ebuild | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/dev-libs/9libs/9libs-1.0-r3.ebuild b/dev-libs/9libs/9libs-1.0-r3.ebuild deleted file mode 100644 index 22450aa79dbf..000000000000 --- a/dev-libs/9libs/9libs-1.0-r3.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=4 - -inherit eutils toolchain-funcs - -DESCRIPTION="A package of Plan 9 compatibility libraries" -HOMEPAGE="https://www.netlib.org/research/9libs/9libs-1.0.README" -SRC_URI="https://www.netlib.org/research/9libs/${P}.tar.bz2" - -LICENSE="PLAN9" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="" - -DEPEND=" - >=x11-libs/libX11-1.0.0 - >=x11-libs/libXt-1.0.0" -RDEPEND="${DEPEND}" - -src_prepare() { - # Bug 385387 - epatch "${FILESDIR}/${PN}-va_list.patch" -} - -src_configure() { - tc-export CC - econf \ - --includedir=/usr/include/9libs \ - --enable-shared -} - -src_install() { - make install DESTDIR="${D}" - dodoc README - - # rename some man pages to avoid collisions with dev-libs/libevent - local f - for f in add balloc bitblt cachechars event frame graphics rgbpix; do - mv "${D}"/usr/share/man/man3/${f}.{3,3g} || die - done -} |