diff options
author | miwi <miwi@FreeBSD.org> | 2009-06-17 03:46:54 +0800 |
---|---|---|
committer | miwi <miwi@FreeBSD.org> | 2009-06-17 03:46:54 +0800 |
commit | 15866e38a54692cb5e345a709dba6639f8085ea1 (patch) | |
tree | 84d561fe3bf88b9cc2604f6f071f64dc646be0f7 | |
parent | 2fb6557529e67d806388c853f344566e07aefa56 (diff) | |
download | freebsd-ports-gnome-15866e38a54692cb5e345a709dba6639f8085ea1.tar.gz freebsd-ports-gnome-15866e38a54692cb5e345a709dba6639f8085ea1.tar.zst freebsd-ports-gnome-15866e38a54692cb5e345a709dba6639f8085ea1.zip |
A Drupal module which gives editors control over the page title.
It allows editors specify patterns for how the title should be structured,
and on content creation pages, gives you the chance to specify the page
title rather than defaulting to the content's title.
WWW: http://drupal.org/project/page_title
PR: ports/135227
Submitted by: Nick Hilliard <nick at foobar.org>
-rw-r--r-- | www/Makefile | 1 | ||||
-rw-r--r-- | www/drupal6-page_title/Makefile | 27 | ||||
-rw-r--r-- | www/drupal6-page_title/distinfo | 3 | ||||
-rw-r--r-- | www/drupal6-page_title/pkg-descr | 7 |
4 files changed, 38 insertions, 0 deletions
diff --git a/www/Makefile b/www/Makefile index 49ac9ac8ba01..050f15c14513 100644 --- a/www/Makefile +++ b/www/Makefile @@ -169,6 +169,7 @@ SUBDIR += drupal6-mimedetect SUBDIR += drupal6-nice_menus SUBDIR += drupal6-nodewords + SUBDIR += drupal6-page_title SUBDIR += drupal6-print SUBDIR += drupal6-tagadelic SUBDIR += drupal6-token diff --git a/www/drupal6-page_title/Makefile b/www/drupal6-page_title/Makefile new file mode 100644 index 000000000000..c88d7b034a93 --- /dev/null +++ b/www/drupal6-page_title/Makefile @@ -0,0 +1,27 @@ +# New ports collection makefile for: drupal6-page_title +# Date created: 2 May 2009 +# Whom: Nick Hilliard <nick@foobar.org> +# +# $FreeBSD$ +# + +PORTNAME= page_title +DISTVERSION= 6.x-2.0 +CATEGORIES= www + +MAINTAINER= nick@foobar.org +COMMENT= Drupal module to provide fine-grained control of page titles + +RUN_DEPENDS= drupal6-token>=0:${PORTSDIR}/www/drupal6-token + +DRUPAL6_MODULE= yes +MODULE_FILES= translations/page_title.pot translations/ru.po \ + page_title-admin-settings-form.tpl.php page_title.admin.inc \ + page_title.info page_title.install page_title.module +MODULE_DIRS= translations + +DOC_FILES= CHANGELOG.txt README.txt LICENSE.txt + +.include <bsd.port.pre.mk> +.include "${.CURDIR}/../../www/drupal5/bsd.drupal.mk" +.include <bsd.port.post.mk> diff --git a/www/drupal6-page_title/distinfo b/www/drupal6-page_title/distinfo new file mode 100644 index 000000000000..d37f8f7dcdad --- /dev/null +++ b/www/drupal6-page_title/distinfo @@ -0,0 +1,3 @@ +MD5 (drupal/page_title-6.x-2.0.tar.gz) = ad928009c94a5c6e52b076c38f27e13f +SHA256 (drupal/page_title-6.x-2.0.tar.gz) = 9564d065276719ad6f6b3ac7e68e17726c61ae7db03ff3f348c120a265df31c1 +SIZE (drupal/page_title-6.x-2.0.tar.gz) = 14079 diff --git a/www/drupal6-page_title/pkg-descr b/www/drupal6-page_title/pkg-descr new file mode 100644 index 000000000000..72cee02e59f7 --- /dev/null +++ b/www/drupal6-page_title/pkg-descr @@ -0,0 +1,7 @@ +A Drupal module which gives editors control over the page title. + +It allows editors specify patterns for how the title should be structured, +and on content creation pages, gives you the chance to specify the page +title rather than defaulting to the content's title. + +WWW: http://drupal.org/project/page_title |