pkgsrc-WIP-changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

flnews-devel: Delete reference Makefile



Module Name:	pkgsrc-wip
Committed By:	Michael Baeuerle <micha%NetBSD.org@localhost>
Pushed By:	micha
Date:		Mon Jun 12 15:50:14 2023 +0200
Changeset:	ca2eb253687208e6668ac2768ffb11f46f799f33

Removed Files:
	flnews-devel/Makefile.new

Log Message:
flnews-devel: Delete reference Makefile

To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=ca2eb253687208e6668ac2768ffb11f46f799f33

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

diffstat:
 flnews-devel/Makefile.new | 92 -----------------------------------------------
 1 file changed, 92 deletions(-)

diffs:
diff --git a/flnews-devel/Makefile.new b/flnews-devel/Makefile.new
deleted file mode 100644
index d42021bab6..0000000000
--- a/flnews-devel/Makefile.new
+++ /dev/null
@@ -1,92 +0,0 @@
-# $NetBSD$
-
-FLNEWS_VERSION=	1.2.0
-
-DISTNAME=	flnews-${FLNEWS_VERSION}
-CATEGORIES=	news
-MASTER_SITES=	http://micha.freeshell.org/flnews/src/
-MASTER_SITES+=	http://www.ybtra.de/flnews-mirror/src/
-MASTER_SITES+=	http://www.southcity.de/flnews/src/
-EXTRACT_SUFX=	.tar.bz2
-
-MAINTAINER=	micha%NetBSD.org@localhost
-HOMEPAGE=	https://micha.freeshell.org/flnews/
-COMMENT=	Fast and lightweight USENET newsreader with GUI
-LICENSE=	modified-bsd AND 2-clause-bsd AND unicode
-
-USE_LANGUAGES=	c c++
-
-TEST_TARGET=	test
-
-# https://reproducible-builds.org/specs/source-date-epoch/
-CONFIGURE_ENV=	SOURCE_DATE_EPOCH=1654099540
-
-# Bug report contact address used for GUI
-FLNEWS_MAINTAINER=	${MAINTAINER}
-
-.include "options.mk"
-
-# Prepare CONFIG file
-SUBST_CLASSES+=			edit-config
-SUBST_STAGE.edit-config=	pre-configure
-SUBST_MESSAGE.edit-config=	Preparing CONFIG file ...
-SUBST_FILES.edit-config=	CONFIG
-SUBST_SED.edit-config=		-e 's,@VERSION@,${FLNEWS_VERSION},g'
-SUBST_VARS.edit-config=		PREFIX
-SUBST_SED.edit-config+=		-e 's,@MAINT@,${FLNEWS_MAINTAINER},g'
-SUBST_SED.edit-config+=		-e 's,@IP6@,${FLNEWS_OPT_DISABLE_IP6},g'
-SUBST_SED.edit-config+=		-e 's,@NLS@,${FLNEWS_OPT_DISABLE_NLS},g'
-SUBST_SED.edit-config+=		-e 's,@XDBE@,${FLNEWS_OPT_DISABLE_XDBE},g'
-SUBST_SED.edit-config+=		-e 's,@MAN_PATH@,${PREFIX}/${PKGMANDIR},g'
-.if ${FLNEWS_OPT_DISABLE_XDG} == 0
-SUBST_SED.edit-config+=		-e 's,@XDG@,0,g'
-.else
-SUBST_SED.edit-config+=		-e 's,@XDG@,1,g'
-.endif
-# NetBSD reports X/Open XSI extension as not available using the POSIX
-# sysconf(_SC_XOPEN_VERSION) call, but has a sufficient implementation
-# => Force using it
-.if ${OPSYS} == "NetBSD"
-SUBST_SED.edit-config+=		-e 's,@FORCE_XSI@,1,g'
-.else
-SUBST_SED.edit-config+=		-e 's,@FORCE_XSI@,0,g'
-.endif
-# NetBSD reports IPv6 as not available using the POSIX sysconf(_SC_IPV6)
-# call, but has a sufficient implementation
-# => Force using it if inet6 option of pkgsrc package is selected
-.if ${OPSYS} == "NetBSD" && ${FLNEWS_OPT_DISABLE_IP6} == 0
-SUBST_SED.edit-config+=		-e 's,@FORCE_IP6@,1,g'
-.else
-SUBST_SED.edit-config+=		-e 's,@FORCE_IP6@,0,g'
-.endif
-# Old SunPro compilers cannot create dependencies with the "-M" option
-# => Use makedepend instead for all SunPro compilers
-.if ${OPSYS} == "SunOS" && ${PKGSRC_COMPILER:Msunpro}
-SUBST_SED.edit-config+=		-e 's,@DEP_MD@,,g'
-SUBST_SED.edit-config+=		-e 's,@DEP_COMP@,\#,g'
-.else
-SUBST_SED.edit-config+=		-e 's,@DEP_MD@,\#,g'
-SUBST_SED.edit-config+=		-e 's,@DEP_COMP@,,g'
-.endif
-
-post-extract:
-	${CP} ${FILESDIR}/CONFIG ${WRKSRC}
-
-do-configure:
-	cd ${WRKSRC} && \
-		${SETENV} ${CONFIGURE_ENV} ${MAKE_PROGRAM} ${MAKE_FLAGS} config
-
-.if ${OPSYS} == "SunOS" && ${PKGSRC_COMPILER:Msunpro}
-BUILD_DEPENDS+=			makedepend-[0-9]*:../../devel/makedepend
-.endif
-
-BUILDLINK_API_DEPENDS.zlib+=	zlib>=1.2.3
-.include "../../devel/zlib/buildlink3.mk"
-# OpenSSL 3 API is required for RFC 7919 FFDHE group negotiation
-.include "../../security/openssl/buildlink3.mk"
-# FLTK must be compiled with multithreading support
-# FLTK version 1.4 is supported (should be compiled with pango support)
-#.include "../../x11/fltk13/buildlink3.mk"
-.include "../../wip/fltk14-devel/buildlink3.mk"
-.include "../../mk/pthread.buildlink3.mk"
-.include "../../mk/bsd.pkg.mk"


Home | Main Index | Thread Index | Old Index