Commit 9be02a5d authored by Muhammad Moinur Rahman's avatar Muhammad Moinur Rahman
Browse files

www/drupal8: Remove expired port

2023-09-30 www/drupal8: Upstream EOL reached on 2021-11-17
parent 2e0a45af
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -7915,3 +7915,4 @@ textproc/popup||2023-09-30|Has expired: Abandonware, last release in 2004 and de
textproc/yamcha||2023-09-30|Has expired: Last upstream release was in 2005
japanese/awffull||2023-09-30|Has expired: Abandonware, last release in 14+ years ago. Consider using www/awstats
www/dhttpd||2023-09-30|Has expired: Abandonware, last release in 15+ years ago. Consider using www/darkhttpd, www/obhttpd or www/miniserve
www/drupal8|www/drupal9|2023-09-30|Has expired: Upstream EOL reached on 2021-11-17
+0 −1
Original line number Diff line number Diff line
@@ -149,7 +149,6 @@
    SUBDIR += drupal10
    SUBDIR += drupal7
    SUBDIR += drupal7-wysiwyg
    SUBDIR += drupal8
    SUBDIR += drupal9
    SUBDIR += drush
    SUBDIR += dtse

www/drupal8/Makefile

deleted100644 → 0
+0 −52
Original line number Diff line number Diff line
PORTNAME=	drupal8
PORTVERSION=	8.9.20
CATEGORIES=	www
MASTER_SITES=	http://ftp.drupal.org/files/projects/
DISTNAME=	drupal-${PORTVERSION}
DIST_SUBDIR=	drupal

MAINTAINER=	acm@FreeBSD.org
COMMENT=	Database driven web content management system (CMS)
WWW=		https://www.drupal.org/

LICENSE=	GPLv2+

DEPRECATED=	Upstream EOL reached on 2021-11-17
EXPIRATION_DATE=	2023-09-30

USES=		php:web shebangfix
USE_PHP=	dom filter gd mbstring opcache pdo session \
		simplexml tokenizer xml
SHEBANG_FILES=	core/scripts/password-hash.sh

NO_ARCH=	yes
NO_BUILD=	yes
DOCS=		core/CHANGELOG.txt core/INSTALL.mysql.txt core/INSTALL.sqlite.txt \
		LICENSE.txt README.txt core/COPYRIGHT.txt core/INSTALL.pgsql.txt \
		core/INSTALL.txt core/MAINTAINERS.txt core/UPDATE.txt

OPTIONS_DEFINE=		MYSQL SQLITE3 PGSQL DOCS
OPTIONS_DEFAULT=	MYSQL

SUB_FILES+=	pkg-message

PGSQL_USES=	pgsql
PGSQL_USE=	PHP=pdo_pgsql
SQLITE3_USE=	PHP=pdo_sqlite
MYSQL_USES=	mysql
MYSQL_USE=	PHP=pdo_mysql

post-extract:
	@${MKDIR} ${WRKDIR}/DOCS
	@${MV} ${DOCS:S|^|${WRKSRC}/|} ${WRKDIR}/DOCS/

do-install:
	(cd ${WRKSRC} && ${COPYTREE_SHARE} . \
		${STAGEDIR}${WWWDIR})

do-install-DOCS-on:
	@${MKDIR} ${STAGEDIR}${DOCSDIR}
	(cd ${WRKDIR}/DOCS && ${COPYTREE_SHARE} . \
		${STAGEDIR}${DOCSDIR})

.include <bsd.port.mk>

www/drupal8/distinfo

deleted100644 → 0
+0 −3
Original line number Diff line number Diff line
TIMESTAMP = 1638760121
SHA256 (drupal/drupal-8.9.20.tar.gz) = 5a525bcee6f83a10151c93ba2cd995a0bfe53f3b916d2d50221dc1435ace05b3
SIZE (drupal/drupal-8.9.20.tar.gz) = 19837562

www/drupal8/files/pkg-message.in

deleted100644 → 0
+0 −52
Original line number Diff line number Diff line
[
{ type: install
  message: <<EOM
Complete instructions for installing and configuring Drupal can be found here:

%%DOCSDIR%%/INSTALL.txt

You need to create the DB where Drupal is going to live, and depending on
which database you intend to use, you should consult one of the following
documents:

 %%DOCSDIR%%/INSTALL.mysql.txt
 %%DOCSDIR%%/INSTALL.pgsql.txt
 %%DOCSDIR%%/INSTALL.sqlite.txt

You also need to add appropriate configuration directives to your apache
configuration file (%%PREFIX%%/etc/apache(2)/httpd.conf).

A typical configuration might read:

    Alias /drupal "%%DRUPAL_DIR%%"
    <Directory "%%DRUPAL_DIR%%">
        Options Indexes FollowSymlinks MultiViews
        AllowOverride None
        Order allow,deny
        Allow from all
    </Directory>

Please see http://drupal.org/cron for important information on setting up
periodic maintenance tasks in Drupal.

Please see http://drupal.org/requirements for important information on
system requirements for Drupal 8.  In particular, please ensure that your
configuration:

- uses PHP 5.2.5 or later
- PHP "memory_limit" is set to "32Mb" or larger
- PHP "register_globals" is set to "Off"
- PHP "safe_mode" is set to "Off"
- PHP "session.cache_limiter" is set to "nocache"
EOM
}
{ type: UPGRADE
  message: <<EOM
For important information about upgrading from previous versions of Drupal, please
please see: %%DOCSDIR%%/UPDATE.txt

You can install www/drush if you have problems with Drupal update. Drush is a 
command line tool for Drupal
EOM
}
]
Loading