diff options
author | marcus <marcus@FreeBSD.org> | 2003-01-23 16:22:00 +0000 |
---|---|---|
committer | marcus <marcus@FreeBSD.org> | 2003-01-23 16:22:00 +0000 |
commit | c7f59bb6921d1d13480600725a13f7b76b322907 (patch) | |
tree | 6ffa9e28d350bfc20146f2d7900997ec7c8fdeea /editors/abiword-devel/Makefile | |
parent | c434fbb87c6ab6ae3dd308f4285069678a255b5a (diff) | |
download | FreeBSD-ports-c7f59bb6921d1d13480600725a13f7b76b322907.zip FreeBSD-ports-c7f59bb6921d1d13480600725a13f7b76b322907.tar.gz |
* Update to 1.0.4
* Fix up the automake stuff to be in line with the new rules in bsd.port.mk [1]
Requested by: alane [1]
Diffstat (limited to 'editors/abiword-devel/Makefile')
-rw-r--r-- | editors/abiword-devel/Makefile | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/editors/abiword-devel/Makefile b/editors/abiword-devel/Makefile index 4f498c3..3eca7f4 100644 --- a/editors/abiword-devel/Makefile +++ b/editors/abiword-devel/Makefile @@ -6,7 +6,7 @@ # PORTNAME= AbiWord -PORTVERSION= 1.0.3 +PORTVERSION= 1.0.4 CATEGORIES= editors MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} \ http://www.abisource.com/downloads/Version-${PORTVERSION}/lf/ @@ -32,13 +32,9 @@ USE_REINPLACE= yes USE_GNOMENG= yes USE_GNOME= gtk12 gnomehier WANT_GNOME= yes -AUTOMAKE= ${WRKSRC}/autogen.sh && ${FIXME} CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ LDFLAGS="-L${LOCALBASE}/lib -liconv" MAKEFILE= GNUmakefile -FIXME= find ${WRKSRC} -name GNUmakefile.in | xargs ${REINPLACE_CMD} -e \ - 's|[(]libdir[)]/@PACKAGE@|(datadir)/@PACKAGE@|g ; \ - s|@DEFS@|-I${WRKSRC}/../libiconv/include @DEFS@|g' && ${TRUE} .if defined(PACKAGE_BUILDING) || defined(PARALLEL_PACKAGE_BUILD) .undef WITHOUT_GNOME @@ -61,9 +57,13 @@ BROKEN= "This port cannot be built when textproc/wv is installed because of a he .endif pre-configure: - @cd ${WRKSRC} && ${TOUCH} NEWS README AUTHORS ChangeLog + @cd ${WRKSRC} && ${TOUCH} NEWS README AUTHORS ChangeLog INSTALL @cd ${WRKSRC}/ac-helpers && ${RM} -f install-sh mkinstalldirs missing @${RM} -f ${WRKSRC}/configure.ac + @cd ${WRKSRC} && ./autogen.sh && ${TRUE} + @${FIND} ${WRKSRC} -name GNUmakefile.in | xargs ${REINPLACE_CMD} -e \ + 's|[(]libdir[)]/@PACKAGE@|(datadir)/@PACKAGE@|g ; \ + s|@DEFS@|-I${WRKSRC}/../libiconv/include @DEFS@|g' && ${TRUE} post-install: @${CAT} ${PKGMESSAGE} |