diff options
author | reed <reed@pkgsrc.org> | 2006-04-19 12:22:20 +0000 |
---|---|---|
committer | reed <reed@pkgsrc.org> | 2006-04-19 12:22:20 +0000 |
commit | a24f707aa4f40022d37b2df01331536134e181a2 (patch) | |
tree | 48be897d1ef99938a8fa76f5eec610c638cd7a1a /x11/Xcomposite | |
parent | 4d28f1b9a71cc2c0de714c654a5b3e616f596ed3 (diff) | |
download | pkgsrc-a24f707aa4f40022d37b2df01331536134e181a2.tar.gz |
Add patch so version checking for the compositeproto.pc is not too
high.
Because Xorg project released library with lower version because
they say the testing xlibs version was never official. This just
patches configure, the real check is still forced by pkgsrc.
Diffstat (limited to 'x11/Xcomposite')
-rw-r--r-- | x11/Xcomposite/distinfo | 3 | ||||
-rw-r--r-- | x11/Xcomposite/patches/patch-aa | 16 |
2 files changed, 18 insertions, 1 deletions
diff --git a/x11/Xcomposite/distinfo b/x11/Xcomposite/distinfo index f31379bd9bc..c8bfad008c3 100644 --- a/x11/Xcomposite/distinfo +++ b/x11/Xcomposite/distinfo @@ -1,5 +1,6 @@ -$NetBSD: distinfo,v 1.2 2005/02/23 17:36:09 wiz Exp $ +$NetBSD: distinfo,v 1.3 2006/04/19 12:22:20 reed Exp $ SHA1 (libXcomposite-1.0.1.tar.bz2) = a3b9f2d5293e1f84a063da1de692f372f5e24356 RMD160 (libXcomposite-1.0.1.tar.bz2) = 5df01817b4152cfa54346148d6c8b98c4b2b0441 Size (libXcomposite-1.0.1.tar.bz2) = 181910 bytes +SHA1 (patch-aa) = 6cac5babd295e26b10db709b8432a49657e032d4 diff --git a/x11/Xcomposite/patches/patch-aa b/x11/Xcomposite/patches/patch-aa new file mode 100644 index 00000000000..fc2f46c2705 --- /dev/null +++ b/x11/Xcomposite/patches/patch-aa @@ -0,0 +1,16 @@ +$NetBSD: patch-aa,v 1.1 2006/04/19 12:22:20 reed Exp $ + +--- configure.orig 2006-04-18 22:25:00.000000000 -0700 ++++ configure 2006-04-18 22:27:54.000000000 -0700 +@@ -19875,7 +19875,11 @@ + # Check compositeext configuration, strip extra digits from package version to + # find the required protocol version + ++#COMPOSITEEXT_VERSION=`echo $VERSION | sed 's/^\([0-9][0-9]*\.[0-9][0-9]*\).*$/\1/'` ++# hack until we get this updated ++# pkgsrc was using testing versions, real versions have lower version + COMPOSITEEXT_VERSION=`echo $VERSION | sed 's/^\([0-9][0-9]*\.[0-9][0-9]*\).*$/\1/'` ++COMPOSITEEXT_VERSION=0.3 + + succeeded=no + |