diff options
author | nemysis <nemysis@FreeBSD.org> | 2014-12-08 18:47:46 +0800 |
---|---|---|
committer | nemysis <nemysis@FreeBSD.org> | 2014-12-08 18:47:46 +0800 |
commit | f33209fe82a11db825b7fba6faf1bcb67b0e3ff2 (patch) | |
tree | fe7b090062bace37ee6d2d4b5dac7fb6f390217e /net/enet | |
parent | 665f9dfb7abae0b965290ba6746e390e3046b99a (diff) | |
download | freebsd-ports-gnome-f33209fe82a11db825b7fba6faf1bcb67b0e3ff2.tar.gz freebsd-ports-gnome-f33209fe82a11db825b7fba6faf1bcb67b0e3ff2.tar.zst freebsd-ports-gnome-f33209fe82a11db825b7fba6faf1bcb67b0e3ff2.zip |
- Change USES, remove autoreconf [1]
- Remove PATHFIX_MAKEFILEIN and USE_AUTOTOOLS [1]
- Add GNU_CONFIGURE and INSTALL_TARGET=install-strip, remove STRIP_CMD [1]
Reported by: tijl [1]
>-This line, and those below, will be ignored--
> Description of fields to fill in above: 76 columns --|
> PR: If a GNATS PR is affected by the change.
> Differential Revision: https://reviews.freebsd.org/D### (*full* phabric URL needed).
> Submitted by: If someone else sent in the change.
> Reviewed by: If someone else reviewed your modification.
> Approved by: If you needed approval for this commit.
> Obtained from: If the change is from a third party.
> MFC after: N [day[s]|week[s]|month[s]]. Request a reminder email.
> MFH: Ports tree branch name. Request approval for merge.
> Relnotes: Set to 'yes' for mention in release notes.
> Security: Vulnerability reference (one per line) or description.
> Sponsored by: If the change was sponsored by an organization.
> Empty fields above will be automatically removed.
M Makefile
Diffstat (limited to 'net/enet')
-rw-r--r-- | net/enet/Makefile | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/net/enet/Makefile b/net/enet/Makefile index a35143f9377d..7ec136c0badf 100644 --- a/net/enet/Makefile +++ b/net/enet/Makefile @@ -13,9 +13,9 @@ COMMENT= Simple and robust communication library based on UDP LICENSE= MIT -USES= autoreconf pathfix libtool -PATHFIX_MAKEFILEIN= Makefile.am -USE_AUTOTOOLS= aclocal automake autoconf +USES= pathfix libtool +GNU_CONFIGURE= yes +INSTALL_TARGET= install-strip USE_LDCONFIG= yes PORTDOCS= * @@ -23,7 +23,6 @@ PORTDOCS= * OPTIONS_DEFINE= DOCS post-install: - ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libenet.so.7 @(cd ${WRKSRC}/docs && ${COPYTREE_SHARE} html ${STAGEDIR}${DOCSDIR}) .include <bsd.port.mk> |