diff options
author | jlam <jlam@pkgsrc.org> | 2002-10-31 08:17:24 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2002-10-31 08:17:24 +0000 |
commit | eeb82239ac7e28f67b6bb7a0058f834ac50e739a (patch) | |
tree | 0d4b05f8382e0243e36a5f6202202d6d9d59c6ac | |
parent | ec4d4c1220a54d81ad1917e86f06d64cdd22dd06 (diff) | |
download | pkgsrc-eeb82239ac7e28f67b6bb7a0058f834ac50e739a.tar.gz |
Correct the aalib-x11-config script to return "-laa-x11" instead of "-laa".
Bump the PKGREVISION since this is a user-visible change.
-rw-r--r-- | doc/CHANGES | 3 | ||||
-rw-r--r-- | graphics/aalib-x11/Makefile | 9 |
2 files changed, 9 insertions, 3 deletions
diff --git a/doc/CHANGES b/doc/CHANGES index e34087f400f..f2e89bfbe53 100644 --- a/doc/CHANGES +++ b/doc/CHANGES @@ -1,4 +1,4 @@ -$NetBSD: CHANGES,v 1.423 2002/10/31 02:06:50 dmcmahill Exp $ +$NetBSD: CHANGES,v 1.424 2002/10/31 08:17:24 jlam Exp $ Changes to the packages collection and infrastructure in 2002: @@ -3465,3 +3465,4 @@ Changes to the packages collection and infrastructure in 2002: Added dnstop-20021030 [itojun 2002-10-30] Updated phoenix-linux to 0.4 [grant 2002-10-31] Updated latex-mk to 0.9.1 [dmcmahill 2002-10-30] + Updated aalib-x11 to 1.4.0.4nb2 [jlam 2002-10-31] diff --git a/graphics/aalib-x11/Makefile b/graphics/aalib-x11/Makefile index 80062ac0560..82dca068693 100644 --- a/graphics/aalib-x11/Makefile +++ b/graphics/aalib-x11/Makefile @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.3 2002/08/26 19:38:05 jlam Exp $ +# $NetBSD: Makefile,v 1.4 2002/10/31 08:17:43 jlam Exp $ PKGNAME= aalib-x11-${BASE_VERS} CATEGORIES+= x11 -PKGREVISION= 1 +PKGREVISION= 2 COMMENT= ASCII Art library with X11 support @@ -12,6 +12,11 @@ USE_X11= # defined ALL_TARGET= libaa-x11.la INSTALL_TARGET= install-libLTLIBRARIES +# We need to correct the aalib-config script to return "-laa-x11" instead +# of "-laa". +# +BUILDLINK_TRANSFORM+= l:aa:aa-x11 + post-patch: for file in ${WRKSRC}/src/Makefile.in; do \ ${SED} -e "s,libaa\.la,libaa-x11.la,g" \ |