Ticket #21463: Portfile

File Portfile, 1.7 KB (added by chuck@…, 15 years ago)
Line 
1# $Id$
2PortSystem          1.0
3name                acquia-drupal
4version             1.2.16.5110
5categories          www php
6platforms           darwin
7
8maintainers         chuck@acquia.com
9description         Drupal Open Source enterprise content management platform
10long_description    Drupal is Open Source social publishing software that empowers individuals, teams, and communities  \
11                    to easily publish, manage and organize a wide variety of content on a website. Tens of thousands of \
12                    people and organizations have used Drupal to power scores of different web sites, including community \
13                    web portals, corporate web sites, social networking sites, personal web sites or blogs, and much more.\
14                    \
15                    Acquia Drupal provides a bundle of commonly use Drupal modules is a single distribution, simplifiying \
16                    the time required to getting up and running with a new Drupal site.
17                   
18homepage            http://acquia.com
19fetch.type          svn
20svn.url             https://svn.acquia.com/drupal/branches/1.x-6.x
21svn.revision        5110         
22depends_lib         port:apache2 \
23                    port:php52 \
24                    port:mysql5
25
26worksrcdir          1.x-6.x
27use_configure       no
28build               {}
29
30set docroot ${destroot}/${prefix}/www/data
31
32variant apache1 description "use apache 1.x instead of apache 2.x" {
33  depends_lib-append      port:apache
34  depends_lib-delete      port:apache2
35}
36
37
38destroot {
39  xinstall -d -m 0755 ${docroot}/acquia-drupal
40  eval file copy [glob ${worksrcpath}/*] ${docroot}/acquia-drupal
41  eval file copy ${worksrcpath}/.htaccess ${docroot}/acquia-drupal
42}
43