From: "David Seifert" <soap@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libg15render/, dev-libs/libg15render/files/
Date: Mon, 10 Feb 2020 00:18:36 +0000 (UTC) [thread overview]
Message-ID: <1581293878.1668cfaaa0e6a036e3ae6d5831f0fd476ce67d90.soap@gentoo> (raw)
commit: 1668cfaaa0e6a036e3ae6d5831f0fd476ce67d90
Author: David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Mon Feb 10 00:17:58 2020 +0000
Commit: David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Mon Feb 10 00:17:58 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1668cfaa
dev-libs/libg15render: Port to EAPI 7
Package-Manager: Portage-2.3.88, Repoman-2.3.20
Signed-off-by: David Seifert <soap <AT> gentoo.org>
.../libg15render-1.2-freetype_pkgconfig.patch | 22 ++++++++++++++--
dev-libs/libg15render/libg15render-1.2-r2.ebuild | 30 ++++++++++------------
2 files changed, 33 insertions(+), 19 deletions(-)
diff --git a/dev-libs/libg15render/files/libg15render-1.2-freetype_pkgconfig.patch b/dev-libs/libg15render/files/libg15render-1.2-freetype_pkgconfig.patch
index 83df9fa4f0f..313d2ef5b6e 100644
--- a/dev-libs/libg15render/files/libg15render-1.2-freetype_pkgconfig.patch
+++ b/dev-libs/libg15render/files/libg15render-1.2-freetype_pkgconfig.patch
@@ -1,5 +1,5 @@
---- libg15render-1.2/configure.in
-+++ libg15render-1.2/configure.in
+--- a/configure.in
++++ b/configure.in
@@ -13,19 +13,20 @@
AC_PROG_LIBTOOL
@@ -33,3 +33,21 @@
# Checks for libraries.
AC_CHECK_LIB([g15], [writePixmapToLCD], ,AC_MSG_ERROR(["libg15 not found. please install it"]))
+--- a/Makefile.am
++++ b/Makefile.am
+@@ -1,5 +1,3 @@
+-LLIBDIR=@LIBDIR@
+-AM_CFLAGS=@CFLAGS@
+ lib_LTLIBRARIES = libg15render.la
+ libg15render_la_SOURCES = libg15render.h text.c pixel.c screen.c font_6x4.c font_7x5.c font_8x8.c
+ libg15render_la_LIBADD = @FTLIB@
+@@ -7,8 +5,7 @@
+ include_HEADERS= libg15render.h
+ EXTRA_DIST = debian Doxyfile libg15render.3
+ man3_MANS = $(top_srcdir)/libg15render.3
+-docdir = $(prefix)/share/doc/$(PACKAGE)-$(VERSION)
+-doc_DATA = AUTHORS ChangeLog COPYING NEWS README
++doc_DATA = AUTHORS ChangeLog NEWS README
+
+ dist-hook:
+ rm -rf `find $(distdir)/debian -name .svn`
diff --git a/dev-libs/libg15render/libg15render-1.2-r2.ebuild b/dev-libs/libg15render/libg15render-1.2-r2.ebuild
index 816da20255e..1082ceb99bf 100644
--- a/dev-libs/libg15render/libg15render-1.2-r2.ebuild
+++ b/dev-libs/libg15render/libg15render-1.2-r2.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=6
+EAPI=7
inherit autotools
@@ -12,19 +12,18 @@ SRC_URI="mirror://sourceforge/g15tools/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc ppc64 x86"
-
IUSE="truetype"
RDEPEND="
dev-libs/libg15
- truetype? ( media-libs/freetype )
-"
-DEPEND="${RDEPEND}
+ truetype? ( media-libs/freetype )"
+DEPEND="${RDEPEND}"
+BDEPEND="
truetype? ( virtual/pkgconfig )"
PATCHES=(
- "${FILESDIR}/${P}-pixel-c.patch"
- "${FILESDIR}/${P}-freetype_pkgconfig.patch"
+ "${FILESDIR}"/${P}-pixel-c.patch
+ "${FILESDIR}"/${P}-freetype_pkgconfig.patch
)
src_prepare() {
@@ -34,17 +33,14 @@ src_prepare() {
}
src_configure() {
- local myeconfargs=(
- --disable-static
- $(use_enable truetype ttf )
- )
- econf "${myeconfargs[@]}"
+ econf \
+ --disable-static \
+ $(use_enable truetype ttf)
}
src_install() {
- emake DESTDIR="${D}" \
- docdir=/usr/share/doc/${PF} install
- rm "${ED%/}/usr/share/doc/${PF}/COPYING"
+ default
- find "${ED}" -name '*.la' -delete || die
+ # no static archives
+ find "${D}" -name '*.la' -delete || die
}
next reply other threads:[~2020-02-10 0:18 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-02-10 0:18 David Seifert [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-10-07 6:23 [gentoo-commits] repo/gentoo:master commit in: dev-libs/libg15render/, dev-libs/libg15render/files/ Petr Vaněk
2024-05-06 6:10 Sam James
2022-05-14 22:56 Lars Wendler
2022-05-14 22:56 Lars Wendler
2018-05-04 10:57 Lars Wendler
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1581293878.1668cfaaa0e6a036e3ae6d5831f0fd476ce67d90.soap@gentoo \
--to=soap@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox