freebsd-ports/ftp/multiget/Makefile
Gerald Pfeifer a9f015d155 Bump PORTREVISION for ports depending on the canonical version of GCC
defined via Mk/bsd.default-versions.mk which has moved from GCC 7.4 t
GCC 8.2 under most circumstances.

This includes ports
 - with USE_GCC=yes or USE_GCC=any,
 - with USES=fortran,
 - using Mk/bsd.octave.mk which in turn features USES=fortran, and
 - with USES=compiler specifying openmp, nestedfct, c11, c++0x, c++11-lang,
   c++11-lib, c++14-lang, c++17-lang, or gcc-c++11-lib
plus, as a double check, everything INDEX-11 showed depending on lang/gcc7.

PR:		231590
2018-12-12 01:35:33 +00:00

43 lines
945 B
Makefile

# Created by: alepulver
# $FreeBSD$
PORTNAME= multiget
PORTVERSION= 1.1.3
PORTREVISION= 11
CATEGORIES= ftp www
MASTER_SITES= SF/${PORTNAME}/OldFiles
MAINTAINER= ports@FreeBSD.org
COMMENT= HTTP/FTP downloader with a nice GUI
LICENSE= GPLv2+
WRKSRC_SUBDIR= src
USES= alias compiler:c++11-lang dos2unix
USE_WX= 2.8
MAKEFILE= makefile
ALL_TARGET= MultiGet
PLIST_FILES= bin/${PORTNAME} share/pixmaps/MultiGet.png
DESKTOP_ENTRIES="MultiGet" "" "${PREFIX}/share/pixmaps/MultiGet.png" \
"${PORTNAME}" "" ""
post-patch:
@${REINPLACE_CMD} -e \
's|$$(CC)|$$(CXX)| ; \
s|$$(CFLAGS)|$$(CXXFLAGS)| ; \
s|^CC =|CXX ?=| ; \
s|^CFLAGS =|CXXFLAGS +=| ; \
s| -O2 | | ; \
s| -s | | ; \
s|wx-config|$${WX_CONFIG}|' \
${WRKSRC}/${MAKEFILE}
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/MultiGet ${STAGEDIR}${PREFIX}/bin/${PORTNAME}
${INSTALL_DATA} ${WRKSRC}/../MultiGet.png ${STAGEDIR}${PREFIX}/share/pixmaps
.include <bsd.port.mk>