ea8c8ec7da
as defined in Mk/bsd.default-versions.mk which has moved from GCC 8.3 to GCC 9.1 under most circumstances now after revision 507371. 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, everything INDEX-11 shows with a dependency on lang/gcc9 now. PR: 238330
43 lines
945 B
Makefile
43 lines
945 B
Makefile
# Created by: alepulver
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= multiget
|
|
PORTVERSION= 1.1.3
|
|
PORTREVISION= 12
|
|
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>
|