diff options
author | jlam <jlam> | 2002-10-31 08:17:24 +0000 |
---|---|---|
committer | jlam <jlam> | 2002-10-31 08:17:24 +0000 |
commit | 19b06b1be7852a521a65c54c7324d6576ca37044 (patch) | |
tree | 0d4b05f8382e0243e36a5f6202202d6d9d59c6ac /graphics | |
parent | a241e489b581e7d7713e9ff707bb155700e6d25e (diff) | |
download | pkgsrc-19b06b1be7852a521a65c54c7324d6576ca37044.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.
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/aalib-x11/Makefile | 9 |
1 files changed, 7 insertions, 2 deletions
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" \ |