diff options
author | thierry <thierry@FreeBSD.org> | 2006-07-26 22:16:28 +0800 |
---|---|---|
committer | thierry <thierry@FreeBSD.org> | 2006-07-26 22:16:28 +0800 |
commit | 733a6c5ad572bab9f893d1e1cca48472647240e8 (patch) | |
tree | fb0632a5c295999b8cbef97e7d36eb7366105a01 /x11-toolkits/xclasses | |
parent | b516152b266ac88ef9e9f4ab07dbbb58efa62aac (diff) | |
download | freebsd-ports-gnome-733a6c5ad572bab9f893d1e1cca48472647240e8.tar.gz freebsd-ports-gnome-733a6c5ad572bab9f893d1e1cca48472647240e8.tar.zst freebsd-ports-gnome-733a6c5ad572bab9f893d1e1cca48472647240e8.zip |
Fix new gmake end of line problem.
Diffstat (limited to 'x11-toolkits/xclasses')
-rw-r--r-- | x11-toolkits/xclasses/Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/x11-toolkits/xclasses/Makefile b/x11-toolkits/xclasses/Makefile index ad2e45bbc2be..a88e71c6bc09 100644 --- a/x11-toolkits/xclasses/Makefile +++ b/x11-toolkits/xclasses/Makefile @@ -15,8 +15,6 @@ DISTNAME= Xclasses-public-${PORTVERSION}.src MAINTAINER= ports@FreeBSD.org COMMENT= C++ layout library for X -BROKEN= fails to install - INSTALLS_SHLIB= yes NOT_FOR_ARCHS= alpha amd64 ia64 sparc64 PLIST= ${WRKDIR}/pkg-plist @@ -27,13 +25,14 @@ USE_X_PREFIX= yes USE_XPM= yes WRKSRC= ${WRKDIR}/xclasses -post-patch: +pre-configure: .for file in build System/ARules.FreeBSD @${PERL} -pi \ -e "s|%%CXX%%|${CXX}|g;" \ -e "s|%%CXXFLAGS%%|${CXXFLAGS}|g;" \ -e "s|%%X11BASE%%|${X11BASE}|g;" ${WRKSRC}/${file} .endfor + ${REINPLACE_CMD} -e 's|\([:alnum:]\)\\$$|\1 \\|' ${WRKSRC}/Makefile do-build: @cd ${WRKSRC} && ${SH} build all |