summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Horelick <jdhore@gentoo.org>2012-07-22 02:52:31 +0000
committerJeff Horelick <jdhore@gentoo.org>2012-07-22 02:52:31 +0000
commit13cd2d59ea848353884cc0b7be4ab45269d727bf (patch)
tree2f74edf61b6d7264acbeb4f2b446a2d6972c1b4b
parentVersion bump (bug #427570). (diff)
downloadgentoo-2-13cd2d59ea848353884cc0b7be4ab45269d727bf.tar.gz
gentoo-2-13cd2d59ea848353884cc0b7be4ab45269d727bf.tar.bz2
gentoo-2-13cd2d59ea848353884cc0b7be4ab45269d727bf.zip
Version bump
(Portage version: 2.2.0_alpha119/cvs/Linux i686)
-rw-r--r--dev-util/pkgconf/ChangeLog8
-rw-r--r--dev-util/pkgconf/files/pkgconf-0.8.1-newm4.patch66
-rw-r--r--dev-util/pkgconf/pkgconf-0.8.2.ebuild (renamed from dev-util/pkgconf/pkgconf-0.8.1.ebuild)3
3 files changed, 8 insertions, 69 deletions
diff --git a/dev-util/pkgconf/ChangeLog b/dev-util/pkgconf/ChangeLog
index 01ad4c82da9d..f861b1c5f9f4 100644
--- a/dev-util/pkgconf/ChangeLog
+++ b/dev-util/pkgconf/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for dev-util/pkgconf
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/pkgconf/ChangeLog,v 1.28 2012/07/22 01:25:02 jdhore Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/pkgconf/ChangeLog,v 1.29 2012/07/22 02:52:31 jdhore Exp $
+
+*pkgconf-0.8.2 (22 Jul 2012)
+
+ 22 Jul 2012; Jeff Horelick <jdhore@gentoo.org> +pkgconf-0.8.2.ebuild,
+ -files/pkgconf-0.8.1-newm4.patch, -pkgconf-0.8.1.ebuild:
+ Version bump
22 Jul 2012; Jeff Horelick <jdhore@gentoo.org> metadata.xml:
Set myself as the maintainer instead of dev-embedded. I'm the de-facto
diff --git a/dev-util/pkgconf/files/pkgconf-0.8.1-newm4.patch b/dev-util/pkgconf/files/pkgconf-0.8.1-newm4.patch
deleted file mode 100644
index 498850485d23..000000000000
--- a/dev-util/pkgconf/files/pkgconf-0.8.1-newm4.patch
+++ /dev/null
@@ -1,66 +0,0 @@
-commit 840ecc846d1a168b475a31bb927b78c3677d565a
-Author: Dan Nicholson <dbn.lists@gmail.com>
-Date: Sat Jul 21 01:09:13 2012 -0500
-
- Add autoconf macros to help packagers install .pc files
-
- Some distros and users have unusual installation needs that don't
- conform to the standard $libdir/pkgconfig and $datadir/pkgconfig
- pathways. Help packagers support these users with the macros
- PKG_INSTALLDIR and PKG_NOARCH_INSTALLDIR. These are simple macros that
- provide the configure parameters --with-pkgconfigdir and
- --with-noarch-pkgconfigdir to allow users to override the standard
- locations.
-
- Freedesktop #48743
-
-diff --git a/pkg.m4 b/pkg.m4
-index 4748f99..0354609 100644
---- a/pkg.m4
-+++ b/pkg.m4
-@@ -158,6 +158,45 @@ else
- fi[]dnl
- ])# PKG_CHECK_MODULES
-
-+# PKG_INSTALLDIR(DIRECTORY)
-+# -------------------------
-+# Substitutes the variable pkgconfigdir as the location where a module
-+# should install pkg-config .pc files. By default the directory is
-+# $libdir/pkgconfig, but the default can be changed by passing
-+# DIRECTORY. The user can override through the --with-pkgconfigdir
-+# parameter.
-+AC_DEFUN([PKG_INSTALLDIR],
-+[m4_pushdef([pkg_default], [m4_default([$1], ['${libdir}/pkgconfig'])])
-+m4_pushdef([pkg_description],
-+ [pkg-config installation directory @<:@]pkg_default[@:>@])
-+AC_ARG_WITH([pkgconfigdir],
-+ [AS_HELP_STRING([--with-pkgconfigdir], pkg_description)],,
-+ [with_pkgconfigdir=]pkg_default)
-+AC_SUBST([pkgconfigdir], [$with_pkgconfigdir])
-+m4_popdef([pkg_default])
-+m4_popdef([pkg_description])
-+]) dnl PKG_INSTALLDIR
-+
-+
-+# PKG_NOARCH_INSTALLDIR(DIRECTORY)
-+# -------------------------
-+# Substitutes the variable noarch_pkgconfigdir as the location where a
-+# module should install arch-independent pkg-config .pc files. By
-+# default the directory is $datadir/pkgconfig, but the default can be
-+# changed by passing DIRECTORY. The user can override through the
-+# --with-noarch-pkgconfigdir parameter.
-+AC_DEFUN([PKG_NOARCH_INSTALLDIR],
-+[m4_pushdef([pkg_default], [m4_default([$1], ['${datadir}/pkgconfig'])])
-+m4_pushdef([pkg_description],
-+ [pkg-config arch-independent installation directory @<:@]pkg_default[@:>@])
-+AC_ARG_WITH([noarch-pkgconfigdir],
-+ [AS_HELP_STRING([--with-noarch-pkgconfigdir], pkg_description)],,
-+ [with_noarch_pkgconfigdir=]pkg_default)
-+AC_SUBST([noarch_pkgconfigdir], [$with_noarch_pkgconfigdir])
-+m4_popdef([pkg_default])
-+m4_popdef([pkg_description])
-+]) dnl PKG_NOARCH_INSTALLDIR
-+
- # PKG_WITH_MODULES(VARIABLE-PREFIX, MODULES,
- # [ACTION-IF-FOUND],[ACTION-IF-NOT-FOUND],
- # [DESCRIPTION], [DEFAULT])
diff --git a/dev-util/pkgconf/pkgconf-0.8.1.ebuild b/dev-util/pkgconf/pkgconf-0.8.2.ebuild
index 51f80f53b2d2..bf4629f3c5b9 100644
--- a/dev-util/pkgconf/pkgconf-0.8.1.ebuild
+++ b/dev-util/pkgconf/pkgconf-0.8.2.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/pkgconf/pkgconf-0.8.1.ebuild,v 1.2 2012/07/21 06:35:44 jdhore Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/pkgconf/pkgconf-0.8.2.ebuild,v 1.1 2012/07/22 02:52:31 jdhore Exp $
EAPI="4"
@@ -31,7 +31,6 @@ RDEPEND="${DEPEND}
)"
src_prepare() {
- epatch "${FILESDIR}"/${P}-newm4.patch
[[ -e configure ]] || AT_M4DIR="m4" eautoreconf
}