mirror of
https://git.freebsd.org/ports.git
synced 2025-06-05 12:56:28 -04:00
- Fix a USE_GMAKE conversion. USES is redefined later without gmake.
Evidently gmake isn't needed. - Also remove the libtool dependency.
This commit is contained in:
parent
c6ec7f883b
commit
1b9e1f4e00
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=345121
2 changed files with 3 additions and 4 deletions
|
@ -3,6 +3,7 @@
|
||||||
|
|
||||||
PORTNAME= mxml
|
PORTNAME= mxml
|
||||||
PORTVERSION= 2.7
|
PORTVERSION= 2.7
|
||||||
|
PORTREVISION= 1
|
||||||
CATEGORIES= textproc
|
CATEGORIES= textproc
|
||||||
MASTER_SITES= http://www.msweet.org/files/project3/
|
MASTER_SITES= http://www.msweet.org/files/project3/
|
||||||
|
|
||||||
|
@ -15,8 +16,6 @@ LICENSE_FILE= ${WRKSRC}/COPYING
|
||||||
LICENSE_PERMS= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept
|
LICENSE_PERMS= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept
|
||||||
|
|
||||||
GNU_CONFIGURE= yes
|
GNU_CONFIGURE= yes
|
||||||
USES= gmake
|
|
||||||
USE_AUTOTOOLS= libtool
|
|
||||||
USES= pathfix desthack
|
USES= pathfix desthack
|
||||||
CONFIGURE_ARGS= --with-docdir=no
|
CONFIGURE_ARGS= --with-docdir=no
|
||||||
USE_LDCONFIG= yes
|
USE_LDCONFIG= yes
|
||||||
|
|
|
@ -5,11 +5,11 @@
|
||||||
#
|
#
|
||||||
|
|
||||||
-INSTALL_BIN = $(LIBTOOL) $(INSTALL) -m 755 -s
|
-INSTALL_BIN = $(LIBTOOL) $(INSTALL) -m 755 -s
|
||||||
+INSTALL_BIN = $(LIBTOOL) --mode=install $(INSTALL) -m 755 -s
|
+INSTALL_BIN = $(INSTALL) -m 755 -s
|
||||||
INSTALL_DATA = $(INSTALL) -m 644
|
INSTALL_DATA = $(INSTALL) -m 644
|
||||||
INSTALL_DIR = $(INSTALL) -d
|
INSTALL_DIR = $(INSTALL) -d
|
||||||
-INSTALL_LIB = $(LIBTOOL) $(INSTALL) -m 755
|
-INSTALL_LIB = $(LIBTOOL) $(INSTALL) -m 755
|
||||||
+INSTALL_LIB = $(LIBTOOL) --mode=install $(INSTALL) -m 755
|
+INSTALL_LIB = $(INSTALL) -m 755 -s
|
||||||
INSTALL_MAN = $(INSTALL) -m 644
|
INSTALL_MAN = $(INSTALL) -m 644
|
||||||
INSTALL_SCRIPT = $(INSTALL) -m 755
|
INSTALL_SCRIPT = $(INSTALL) -m 755
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue