mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-26 05:02:18 +00:00
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
38 lines
856 B
Makefile
38 lines
856 B
Makefile
# Created by: Miguel Mendez <flynn@energyhq.homeip.net>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= decurs
|
|
PORTVERSION= 0.55.1
|
|
PORTREVISION= 14
|
|
CATEGORIES= x11
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Simple X11 mouse cursor editor
|
|
|
|
LICENSE= GPLv2
|
|
|
|
LIB_DEPENDS= libgtkmm-2.0.so:x11-toolkits/gtkmm20
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= danfe
|
|
GH_TAGNAME= 10c5691
|
|
|
|
USES= compiler:c++11-lang dos2unix gnome pkgconfig
|
|
DOS2UNIX_FILES= src/cppstring.cc
|
|
GNU_CONFIGURE= yes
|
|
USE_XORG= x11
|
|
USE_GNOME= gtk20
|
|
|
|
post-patch:
|
|
@${SED} -e 's:%%PREFIX%%:${PREFIX}:' \
|
|
${FILESDIR}/decurs.exec > ${WRKSRC}/decurs.exec
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/src/decurs \
|
|
${STAGEDIR}${PREFIX}/bin/decurs.bin
|
|
${INSTALL_SCRIPT} ${WRKSRC}/decurs.exec ${STAGEDIR}${PREFIX}/bin/decurs
|
|
@${MKDIR} ${STAGEDIR}${DATADIR}
|
|
${INSTALL_DATA} ${WRKSRC}/fonts/*.bdf ${STAGEDIR}${DATADIR}
|
|
|
|
.include <bsd.port.mk>
|