public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Andrew Savchenko" <bircoph@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libafterimage/
Date: Wed, 19 May 2021 21:37:57 +0000 (UTC)	[thread overview]
Message-ID: <1621459949.75080953d8137f77bdd110e9eedd3318d6d6017b.bircoph@gentoo> (raw)

commit:     75080953d8137f77bdd110e9eedd3318d6d6017b
Author:     Andrew Savchenko <bircoph <AT> gentoo <DOT> org>
AuthorDate: Wed May 19 21:32:29 2021 +0000
Commit:     Andrew Savchenko <bircoph <AT> gentoo <DOT> org>
CommitDate: Wed May 19 21:32:29 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=75080953

media-libs/libafterimage: cleanup old

Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Andrew Savchenko <bircoph <AT> gentoo.org>

 .../libafterimage/libafterimage-1.20-r2.ebuild     | 107 ---------------------
 1 file changed, 107 deletions(-)

diff --git a/media-libs/libafterimage/libafterimage-1.20-r2.ebuild b/media-libs/libafterimage/libafterimage-1.20-r2.ebuild
deleted file mode 100644
index f66921efd7c..00000000000
--- a/media-libs/libafterimage/libafterimage-1.20-r2.ebuild
+++ /dev/null
@@ -1,107 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit autotools
-
-MY_PN=libAfterImage
-
-DESCRIPTION="Afterstep's standalone generic image manipulation library"
-HOMEPAGE="http://www.afterstep.org/afterimage/index.php"
-SRC_URI="ftp://ftp.afterstep.org/stable/${MY_PN}/${MY_PN}-${PV}.tar.bz2"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~alpha amd64 ~hppa ~ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux"
-IUSE="+X cpu_flags_x86_mmx examples gif jpeg nls opengl png static-libs shm +shaping svg tiff truetype"
-
-RDEPEND="
-	X?		( x11-libs/libSM
-			  x11-libs/libXext
-			  x11-libs/libXrender )
-	gif?	( media-libs/giflib:0= )
-	jpeg?	( virtual/jpeg:0 )
-	opengl?	( virtual/opengl )
-	png?	( >=media-libs/libpng-1.4:0= )
-	svg?	( gnome-base/librsvg:2 )
-	tiff?	( media-libs/tiff:0 )
-	truetype? ( media-libs/freetype )"
-DEPEND="${RDEPEND}
-	X?		( x11-base/xorg-proto )
-	virtual/pkgconfig
-	!!x11-wm/afterstep"
-REQUIRED_USE="
-	opengl?	 ( X )
-	shaping? ( X )
-	shm?	 ( X )"
-
-S="${WORKDIR}/${MY_PN}-${PV}"
-
-src_prepare() {
-	default
-
-	# fix some ldconfig problem in makefile.in
-	eapply -p0 "${FILESDIR}"/${PN}-makefile.in.patch
-	# fix lib paths in afterimage-config
-	eapply -p0 "${FILESDIR}"/${PN}-config.patch
-	# fix gif unbundle
-	eapply -p0 "${FILESDIR}"/${PN}-gif.patch
-	# fix for libpng15 compability
-	eapply -p0 "${FILESDIR}"/${PN}-libpng15.patch
-	# add giflib-5 API support, bug 571654
-	eapply "${FILESDIR}"/${PN}-giflib5-v2.patch
-	# do not build examples
-	use examples || sed -i \
-		-e '/^all:/s/apps//' \
-		-e '/^install:/s/install.apps//' \
-		Makefile.in || die "sed failed"
-	# remove forced flags
-	sed -i \
-		-e 's/CFLAGS="-O3"//' \
-		-e 's/ -rdynamic//' \
-		configure.in || die "sed failed"
-
-	mv configure.in configure.ac || die
-	eautoreconf
-}
-
-src_configure() {
-	econf \
-		$(use_enable cpu_flags_x86_mmx mmx-optimization) \
-		$(use_enable opengl glx) \
-		$(use_enable nls i18n) \
-		$(use_enable shaping) \
-		$(use_enable shm shmimage ) \
-		$(use_enable static-libs staticlibs) \
-		$(use_with X x) \
-		$(use_with gif) \
-		$(use_with jpeg) \
-		$(use_with png) \
-		$(use_with svg) \
-		$(use_with tiff) \
-		$(use_with truetype ttf) \
-		--enable-sharedlibs \
-		--with-xpm \
-		--without-builtin-gif \
-		--without-builtin-jpeg \
-		--without-builtin-png \
-		--without-builtin-zlib \
-		--without-afterbase
-}
-
-src_install() {
-	emake \
-		DESTDIR="${D}" \
-		AFTER_DOC_DIR="${ED}/usr/share/doc/${PF}" \
-		install
-	dodoc ChangeLog README
-	if use examples; then
-		cd apps || die
-		mv ascompose.man ascompose.1 || die
-		doman ascompose.1
-		emake clean
-		rm Makefile* ascompose.1 || die
-		insinto /usr/share/doc/${PF}/examples
-		doins *
-	fi
-}


             reply	other threads:[~2021-05-19 21:38 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-05-19 21:37 Andrew Savchenko [this message]
  -- strict thread matches above, loose matches on Subject: below --
2021-10-29 12:06 [gentoo-commits] repo/gentoo:master commit in: media-libs/libafterimage/ Marek Szuba
2021-10-13  6:01 Agostino Sarubbo
2021-10-12 18:58 Sam James
2021-10-12 18:57 Sam James
2021-10-12 18:10 Marek Szuba
2021-05-19 23:12 Andrew Savchenko
2019-07-26 13:00 Guilherme Amadio
2017-01-29 20:58 Jeroen Roovers
2017-01-25  9:27 Tobias Klausmann
2017-01-23 16:27 Agostino Sarubbo
2017-01-22 16:27 Agostino Sarubbo
2017-01-21 20:33 Agostino Sarubbo
2017-01-20 11:05 Agostino Sarubbo
2017-01-19 10:59 Agostino Sarubbo
2017-01-18 16:52 Agostino Sarubbo
2016-11-22 23:41 Marek Szuba
2016-11-15 15:34 Tobias Klausmann
2016-10-16  9:03 Pacho Ramos
2016-05-02 15:52 Andrew Savchenko

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=1621459949.75080953d8137f77bdd110e9eedd3318d6d6017b.bircoph@gentoo \
    --to=bircoph@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