diff options
author | Andreas K. Hüttel <dilfridge@gentoo.org> | 2012-07-09 20:01:56 +0000 |
---|---|---|
committer | Andreas K. Hüttel <dilfridge@gentoo.org> | 2012-07-09 20:01:56 +0000 |
commit | dfe5bd8d792b6d5e16c009565f1561d350434830 (patch) | |
tree | 0b1f46ef8d11a594b774324786a6a6b0c9857f61 /media-libs | |
parent | Specify exact libpgf version, newer does not work, see bug 424563 (diff) | |
download | gentoo-2-dfe5bd8d792b6d5e16c009565f1561d350434830.tar.gz gentoo-2-dfe5bd8d792b6d5e16c009565f1561d350434830.tar.bz2 gentoo-2-dfe5bd8d792b6d5e16c009565f1561d350434830.zip |
Version bump, see bug 424563. Thanks to Francesco Riosa!
(Portage version: 2.2.0_alpha116/cvs/Linux x86_64)
Diffstat (limited to 'media-libs')
-rw-r--r-- | media-libs/libpgf/ChangeLog | 8 | ||||
-rw-r--r-- | media-libs/libpgf/libpgf-6.12.27.ebuild | 37 |
2 files changed, 44 insertions, 1 deletions
diff --git a/media-libs/libpgf/ChangeLog b/media-libs/libpgf/ChangeLog index f0d656a5acc6..6c4ade648859 100644 --- a/media-libs/libpgf/ChangeLog +++ b/media-libs/libpgf/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for media-libs/libpgf # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libpgf/ChangeLog,v 1.11 2012/05/13 13:51:02 dilfridge Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/libpgf/ChangeLog,v 1.12 2012/07/09 20:01:56 dilfridge Exp $ + +*libpgf-6.12.27 (09 Jul 2012) + + 09 Jul 2012; Andreas K. Huettel <dilfridge@gentoo.org> + +libpgf-6.12.27.ebuild: + Version bump, see bug 424563. Thanks to Francesco Riosa! 13 May 2012; Andreas K. Huettel <dilfridge@gentoo.org> -libpgf-6.09.44-r1.ebuild, -files/libpgf-6.09.44-pkg.patch, diff --git a/media-libs/libpgf/libpgf-6.12.27.ebuild b/media-libs/libpgf/libpgf-6.12.27.ebuild new file mode 100644 index 000000000000..0e7198e93d01 --- /dev/null +++ b/media-libs/libpgf/libpgf-6.12.27.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libpgf/libpgf-6.12.27.ebuild,v 1.1 2012/07/09 20:01:56 dilfridge Exp $ + +EAPI=4 +inherit autotools + +DESCRIPTION="Library to load, handle and manipulate images in the PGF format" +HOMEPAGE="http://www.libpgf.org/" +SRC_URI="http://dev.gentoo.org/~dilfridge/distfiles/${P}.tar.bz2" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="doc static-libs" + +RDEPEND="" +DEPEND="doc? ( app-doc/doxygen ) + app-arch/unzip" + +src_prepare() { + if ! use doc; then + sed -i -e "/HAS_DOXYGEN/{N;N;d}" Makefile.am || die + fi + + eautoreconf +} + +src_configure() { + econf $(use_enable static-libs static) +} + +src_install() { + default + + find "${ED}" -name '*.la' -delete || die +} |