blob: 8489a95c090e500e5a00c9ff1430c66aed03e16f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/www-apps/drupal/drupal-4.6.8.ebuild,v 1.2 2006/06/10 11:52:36 vapier Exp $
inherit webapp eutils
MY_PV=${PV:0:3}.0
DESCRIPTION="PHP-based open-source platform and content management system"
HOMEPAGE="http://drupal.org/"
SRC_URI="http://drupal.org/files/projects/${P}.tar.gz"
LICENSE="GPL-2"
KEYWORDS="~alpha ~amd64 ~ppc ~x86"
IUSE=""
DEPEND="virtual/php"
RDEPEND="|| ( dev-db/mysql dev-db/postgresql )
>=net-www/apache-1.3"
src_compile() {
#Default compile hangs!
echo "Nothing to compile"
}
src_install() {
local docs="MAINTAINERS.txt LICENSE.txt INSTALL.txt CHANGELOG.txt"
webapp_src_preinst
# handle documentation files
#
# NOTE that doc files go into /usr/share/doc as normal; they do NOT
# get installed per vhost!
einfo "Installing docs"
dodoc ${docs}
for doc in ${docs} INSTALL; do
rm -f ${doc}
done
einfo "Copying main files"
cp -r . ${D}/${MY_HTDOCSDIR}
# we install the .htaccess file to enable support for clean URLs
cp .htaccess ${D}/${MY_HTDOCSDIR}
# create the files upload directory
mkdir ${D}/${MY_HTDOCSDIR}/files
webapp_serverowned ${MY_HTDOCSDIR}/files
#All files must be owned by server
for x in `find . -type f -print` ; do
webapp_serverowned ${MY_HTDOCSDIR}/$x
done
webapp_configfile ${MY_HTDOCSDIR}/sites/default/settings.php
webapp_postinst_txt en ${FILESDIR}/postinstall-en-4.6.3.txt
webapp_src_install
}
pkg_postinst() {
webapp_pkg_postinst
einfo
einfo "You might want to run:"
einfo "\"emerge --config =${PF} \""
einfo "if this is a new install."
einfo
}
pkg_config() {
# This is the default directory, but we have this portion for the user to
# change the default directory if it does not exist.
MY_HTDOCSDIR=/usr/share/webapps/${PN}/${PV}/htdocs
if [ ! -d ${MY_HTDOCSDIR} ] && \
[ ! -d ${MY_HTDOCSDIR}/modules ] && \
[ ! -d ${MY_HTDOCSDIR}/themes ] && \
[ ! -d ${MY_HTDOCSDIR}/themes/engines ] && \
[ ! -d ${MY_HTDOCSDIR}/language ] ; then
einfo "Please specify the directory your drupal installation "
einfo "is installed in."
echo
while true
do
read -p " Please type in the name of the directory: " MY_HTDOCSDIR
[ -d ${MY_HTDOCSDIR} ] && \
[ -d ${MY_HTDOCSDIR}/modules ] && \
[ -d ${MY_HTDOCSDIR}/themes ] && \
[ -d ${MY_HTDOCSDIR}/themes/engines ] && \
[ -d ${MY_HTDOCSDIR}/language ] && \
break || \
ewarn "The directory ${MY_HTDOCSDIR} does not exist"
done
fi
if [ -d ${MY_HTDOCSDIR} ] && \
[ -d ${MY_HTDOCSDIR}/modules ] && \
[ -d ${MY_HTDOCSDIR}/themes ] && \
[ -d ${MY_HTDOCSDIR}/themes/engines ] && \
[ -d ${MY_HTDOCSDIR}/language ] ; then
for i in modules themes engines language; do
cd ${MY_HTDOCSDIR}/$i
[ "$i" == "engines" ] && cd ${S}/themes/$i
[ "$i" == "language" ] && cd ${S}/includes
for item in `cat ${PORTDIR}/www-apps/${PN}/files/${MY_PV}/$i`; do
einfo "Unpacking $item"
wget -q http://www.drupal.org/files/projects/$item-${MY_PV}.tar.gz
tar xfz $item-${MY_PV}.tar.gz
done
done
find ${MY_HTDOCSDIR} -name "*.tar.gz" -exec rm -rf {} \;
find ${MY_HTDOCSDIR} -type f -exec chmod 644 {} \;
find ${MY_HTDOCSDIR} -type d -exec chmod 755 {} \;
fi
}
|