diff options
author | mi <mi@FreeBSD.org> | 2003-01-25 21:38:10 +0000 |
---|---|---|
committer | mi <mi@FreeBSD.org> | 2003-01-25 21:38:10 +0000 |
commit | 23a4e46685172b53969446a2e5ef71a36f1e871e (patch) | |
tree | bf13b8674de9207a4db3f2c59381d08101a8e831 /print/lyx-devel/Makefile | |
parent | 19e1206f6a8156553775e94bbf7e2124aa2c0877 (diff) | |
download | FreeBSD-ports-23a4e46685172b53969446a2e5ef71a36f1e871e.zip FreeBSD-ports-23a4e46685172b53969446a2e5ef71a36f1e871e.tar.gz |
Upgrade to 1.2.3. Set MAINTAINER to the submitter.
PR: ports/46796
Submitted by: Miguel Mendez, KATO Tsuguru
Diffstat (limited to 'print/lyx-devel/Makefile')
-rw-r--r-- | print/lyx-devel/Makefile | 23 |
1 files changed, 12 insertions, 11 deletions
diff --git a/print/lyx-devel/Makefile b/print/lyx-devel/Makefile index 2ab42e3..60a0ded 100644 --- a/print/lyx-devel/Makefile +++ b/print/lyx-devel/Makefile @@ -6,14 +6,13 @@ # PORTNAME= lyx -PORTVERSION= 1.2.1 -PORTREVISION= 1 +PORTVERSION= 1.2.3 CATEGORIES= print MASTER_SITES= ftp://ftp.lyx.org/pub/lyx/stable/ \ ftp://ftp.sdsc.edu/pub/other/lyx/stable/ \ ftp://gd.tuwien.ac.at/publishing/tex/lyx/stable/ -MAINTAINER= ports@FreeBSD.org +MAINTAINER= flynn@energyhq.homeip.net BUILD_DEPENDS= gm4:${PORTSDIR}/devel/m4 \ latex:${PORTSDIR}/print/teTeX @@ -27,10 +26,11 @@ USE_REINPLACE= yes USE_PERL5= yes USE_GMAKE= yes USE_AUTOMAKE_VER= 15 -AUTOMAKE= ${WRKSRC}/autogen.sh -AUTOCONF= ${TRUE} +CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL} CONFIGURE_ARGS= --with-extra-lib="${LOCALBASE}/lib" \ --with-extra-inc="${LOCALBASE}/include" +MAKE_ARGS= ACLOCAL="${TRUE}" AUTOCONF="${TRUE}" AUTOMAKE="${TRUE}" \ + AUTOHEADER="${TRUE}" MAN1= lyx.1 reLyX.1 .if defined(WITH_ASPELL) @@ -59,12 +59,13 @@ pre-everything:: @${ECHO_MSG} .endif -post-extract: - @${CP} -f ${FILESDIR}/xforms.m4 ${WRKSRC}/config - post-patch: - @${FIND} ${WRKSRC} -name "configure.in" | ${XARGS} ${REINPLACE_CMD} -e \ - 's|AC_CHECK_LIB(c,|AC_CHECK_FUNC(|g ; \ - s|^INSTALL_SCRIPT=|#INSTALL_SCRIPT=|g' +.for file in src/Makefile.am src/frontends/Makefile.am + @${REINPLACE_CMD} -e 's|LIBS +=|LDFLAGS = @LDFLAGS@|g' ${WRKSRC}/${file} +.endfor +.for file in configure.in lib/reLyX/configure.in + @${REINPLACE_CMD} -e 's|AC_CHECK_LIB(c,|AC_CHECK_FUNC(|g ; \ + s|^INSTALL_SCRIPT=|#INSTALL_SCRIPT=|g' ${WRKSRC}/${file} +.endfor .include <bsd.port.mk> |