diff options
author | mandree <mandree@FreeBSD.org> | 2013-07-24 15:07:18 +0800 |
---|---|---|
committer | mandree <mandree@FreeBSD.org> | 2013-07-24 15:07:18 +0800 |
commit | 2cb57830157530cf0b46cec4407c71e7479a7c2d (patch) | |
tree | 0a2aae4b15a6ea8ca41fd79df8cbe3a4843de4d4 | |
parent | 922811d79d55f0b9988a0f186c43505f8e797b8e (diff) | |
download | freebsd-ports-gnome-2cb57830157530cf0b46cec4407c71e7479a7c2d.tar.gz freebsd-ports-gnome-2cb57830157530cf0b46cec4407c71e7479a7c2d.tar.zst freebsd-ports-gnome-2cb57830157530cf0b46cec4407c71e7479a7c2d.zip |
Really fix autotools abuse. The pre-configure: lacked the --install option,
but adding aclocal to USE_AUTOTOOLS obviates the need for autoreconf altogether.
-rw-r--r-- | devel/rapidsvn/Makefile | 13 |
1 files changed, 2 insertions, 11 deletions
diff --git a/devel/rapidsvn/Makefile b/devel/rapidsvn/Makefile index 0bb9b60a7eac..d4e3b8728484 100644 --- a/devel/rapidsvn/Makefile +++ b/devel/rapidsvn/Makefile @@ -1,15 +1,9 @@ -# New ports collection makefile for: rapidsvn -# Date created: Jan 1, 2005 -# Whom: kuriyama@FreeBSD.org -# # $FreeBSD$ -# PORTNAME= rapidsvn PORTVERSION= 0.12.1 CATEGORIES= devel -MASTER_SITES= http://www.rapidsvn.org/download/release/0.12.1/ -DISTNAME= ${PORTNAME}-0.12.1 +MASTER_SITES= http://www.rapidsvn.org/download/release/${PORTVERSION}/ MAINTAINER= robert.ayrapetyan@gmail.com COMMENT= Cross-platform GUI front-end for the Subversion revision system @@ -23,7 +17,7 @@ WX_CONF_ARGS= absolute GNU_CONFIGURE= yes USES= gettext -USE_AUTOTOOLS= autoconf libtool automake +USE_AUTOTOOLS= autoconf libtool automake aclocal AUTOMAKE_ARGS= --add-missing CONFIGURE_TARGET= CONFIGURE_ARGS= --with-apr-config=apr-1-config \ @@ -40,9 +34,6 @@ USE_LDCONFIG= yes MAN1= rapidsvn.1 AUTOTOOLSFILES= aclocal.m4 -pre-configure: - @cd ${WRKSRC} && ${AUTORECONF} - post-install: ${INSTALL_DATA} ${WRKSRC}/doc/manpage/rapidsvn.1 ${MAN1PREFIX}/man/man1/ |