diff options
author | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2005-03-07 07:27:55 +0800 |
---|---|---|
committer | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2005-03-07 07:27:55 +0800 |
commit | caa460a3f0ef49f89d0bfc43209259f3e55d27e9 (patch) | |
tree | 92adac38c463b25df5b8e31b92fc9e9803384195 | |
parent | 17ddd967c80c66a25fb3bed3aa0428e02bea117d (diff) | |
download | marcuscom-ports-caa460a3f0ef49f89d0bfc43209259f3e55d27e9.tar marcuscom-ports-caa460a3f0ef49f89d0bfc43209259f3e55d27e9.tar.gz marcuscom-ports-caa460a3f0ef49f89d0bfc43209259f3e55d27e9.tar.bz2 marcuscom-ports-caa460a3f0ef49f89d0bfc43209259f3e55d27e9.tar.lz marcuscom-ports-caa460a3f0ef49f89d0bfc43209259f3e55d27e9.tar.xz marcuscom-ports-caa460a3f0ef49f89d0bfc43209259f3e55d27e9.tar.zst marcuscom-ports-caa460a3f0ef49f89d0bfc43209259f3e55d27e9.zip |
Update the compiler and libtool macros to be in sync with the other *mm ports.
Hopefully, bland won't mind.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@3820 df743ca5-7f9a-e211-a948-0013205c9059
-rw-r--r-- | print/libgnomeprintmm/Makefile | 15 | ||||
-rw-r--r-- | x11-toolkits/libgnomeprintuimm/Makefile | 14 |
2 files changed, 24 insertions, 5 deletions
diff --git a/print/libgnomeprintmm/Makefile b/print/libgnomeprintmm/Makefile index 4afadb223..d91a2a973 100644 --- a/print/libgnomeprintmm/Makefile +++ b/print/libgnomeprintmm/Makefile @@ -21,12 +21,21 @@ BUILD_DEPENDS= gm4:${PORTSDIR}/devel/m4 USE_BZIP2= yes USE_X_PREFIX= yes USE_GMAKE= yes -USE_GCC= 3.3 -USE_GNOME= gnomeprefix gnomehack lthack libgnomeprint +USE_GCC= 3.4 +USE_GNOME= gnomeprefix gnomehack libgnomeprint INSTALLS_SHLIB= yes -USE_INC_LIBTOOL_VER=13 +USE_INC_LIBTOOL_VER=15 CONFIGURE_ARGS= --enable-static PLIST_SUB= VERSION="2.5" API_VERSION="2.6" +patch-autotools: + @(cd ${PATCH_WRKSRC}; \ + for file in ${LIBTOOLFILES}; do \ + ${CP} $$file $$file.tmp; \ + ${SED} -e "/^ltmain=/s^\$$ac_aux_dir/ltmain.sh^${LTMAIN}^g" \ + $$file.tmp > $$file; \ + ${RM} $$file.tmp; \ + done); + .include <bsd.port.mk> diff --git a/x11-toolkits/libgnomeprintuimm/Makefile b/x11-toolkits/libgnomeprintuimm/Makefile index c8a571759..9029cbcdf 100644 --- a/x11-toolkits/libgnomeprintuimm/Makefile +++ b/x11-toolkits/libgnomeprintuimm/Makefile @@ -22,10 +22,11 @@ BUILD_DEPENDS= gm4:${PORTSDIR}/devel/m4 USE_BZIP2= yes USE_X_PREFIX= yes USE_GMAKE= yes -USE_GNOME= gnomeprefix gnomehack lthack libgnomeprintui +USE_GNOME= gnomeprefix gnomehack libgnomeprintui +USE_GCC= 3.4 INSTALLS_SHLIB= yes USE_REINPLACE= yes -USE_INC_LIBTOOL_VER=13 +USE_INC_LIBTOOL_VER=15 CONFIGURE_ARGS= --enable-static PLIST_SUB= VERSION="2.5" API_VERSION="2.6" @@ -33,4 +34,13 @@ PLIST_SUB= VERSION="2.5" API_VERSION="2.6" post-patch: @${REINPLACE_CMD} -e 's|2\.0|2.6|' ${WRKSRC}/tools/m4/Makefile.in +patch-autotools: + @(cd ${PATCH_WRKSRC}; \ + for file in ${LIBTOOLFILES}; do \ + ${CP} $$file $$file.tmp; \ + ${SED} -e "/^ltmain=/s^\$$ac_aux_dir/ltmain.sh^${LTMAIN}^g" \ + $$file.tmp > $$file; \ + ${RM} $$file.tmp; \ + done); + .include <bsd.port.mk> |