mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-03 01:23:49 +00:00
Remove expired ports:
2015-10-09 www/moodle27: Please upgrade to moodle28 or moodle29 2015-10-10 graphics/epeg: Merged into devel/efl
This commit is contained in:
parent
d417455b24
commit
e7b763ee7a
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=399094
2
MOVED
2
MOVED
@ -7890,3 +7890,5 @@ x11/xlogout||2015-09-27|Has expired: Useless cruft from 1989
|
||||
net/rubygem-amq-client||2015-10-01|Has expired: Deprecated by Upstream. It is part of net/rubygem-amqp codebase now
|
||||
emulators/ppsspp-devel|emulators/ppsspp|2015-10-06|Out of date: use emulators/ppsspp for now
|
||||
ports-mgmt/bpm||2015-10-10|No support for pkg
|
||||
www/moodle27||2015-10-11|Has expired: Please upgrade to moodle28 or moodle29
|
||||
graphics/epeg|devel/efl|2015-10-11|Has expired: Merged into devel/efl
|
||||
|
@ -148,7 +148,6 @@
|
||||
SUBDIR += eom
|
||||
SUBDIR += eos-movrec
|
||||
SUBDIR += epdfview
|
||||
SUBDIR += epeg
|
||||
SUBDIR += epix
|
||||
SUBDIR += eps2png
|
||||
SUBDIR += epstool
|
||||
|
@ -1,24 +0,0 @@
|
||||
# Created by: vanilla
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= epeg
|
||||
PORTVERSION= 0.9.1.042
|
||||
PORTREVISION= 3
|
||||
PORTEPOCH= 2
|
||||
CATEGORIES= graphics
|
||||
MASTER_SITES= ftp://ftp.springdaemons.com/pub/snapshots/e17/ \
|
||||
http://download.enlightenment.org/snapshots/2008-01-25/
|
||||
|
||||
MAINTAINER= bf@FreeBSD.org
|
||||
COMMENT= Immensely fast JPEG thumbnailing library
|
||||
|
||||
GNU_CONFIGURE= yes
|
||||
USES= jpeg libtool pathfix tar:bzip2
|
||||
USE_LDCONFIG= yes
|
||||
CPPFLAGS+= -I${LOCALBASE}/include
|
||||
LIBS+= -L${LOCALBASE}/lib
|
||||
|
||||
DEPRECATED= Merged into devel/efl
|
||||
EXPIRATION_DATE=2015-10-10
|
||||
|
||||
.include <bsd.port.mk>
|
@ -1,2 +0,0 @@
|
||||
SHA256 (epeg-0.9.1.042.tar.bz2) = e36ae9a19036db4742b05aef022418da1977ecda4b28b5cd40e42bec9f765759
|
||||
SIZE (epeg-0.9.1.042.tar.bz2) = 214226
|
@ -1,13 +0,0 @@
|
||||
epeg is a convenient, fast library that uses libjpeg to: load JPEG
|
||||
images destined to be turned into thumbnails; save and retrieve
|
||||
thumbnail information; and manage loading of the image, ready for
|
||||
scaling, with the minimum of overhead.
|
||||
|
||||
epeg loads and scales large JPEG images very quickly, with a speed-up
|
||||
proportional to the difference in the number of pixels in the source
|
||||
image and the thumbnail. This is accomplished by decoding only the DCT
|
||||
coefficients needed to reconstruct an image. If the YUV (or GRAY8, if
|
||||
the source is grayscale) format is used, then colorspace conversions
|
||||
are also avoided.
|
||||
|
||||
WWW: http://docs.enlightenment.org/api/epeg/
|
@ -1,7 +0,0 @@
|
||||
bin/epeg
|
||||
include/Epeg.h
|
||||
lib/libepeg.a
|
||||
lib/libepeg.so
|
||||
lib/libepeg.so.0
|
||||
lib/libepeg.so.0.9.1
|
||||
libdata/pkgconfig/epeg.pc
|
@ -535,7 +535,6 @@
|
||||
SUBDIR += monast
|
||||
SUBDIR += mongoose
|
||||
SUBDIR += mongrel2
|
||||
SUBDIR += moodle27
|
||||
SUBDIR += moodle28
|
||||
SUBDIR += moodle29
|
||||
SUBDIR += mozplugger
|
||||
|
@ -1,85 +0,0 @@
|
||||
# Created by: Javier Martin Rueda <jmrueda@diatel.upm.es>
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= moodle
|
||||
PORTVERSION= 2.7.10
|
||||
CATEGORIES= www
|
||||
MASTER_SITES= SF/moodle/Moodle/stable27/
|
||||
PKGNAMESUFFIX= ${PKGORIGIN:T:S/moodle//}
|
||||
|
||||
MAINTAINER= wen@FreeBSD.org
|
||||
COMMENT= Course management system based on social constructionism
|
||||
|
||||
LICENSE= GPLv3
|
||||
|
||||
BUILD_DEPENDS= ${PHPBASE}/lib/php/${PHP_EXT_DIR}/intl.so:${PORTSDIR}/devel/pecl-intl
|
||||
RUN_DEPENDS= ${PHPBASE}/lib/php/${PHP_EXT_DIR}/intl.so:${PORTSDIR}/devel/pecl-intl
|
||||
|
||||
CONFLICTS= moodle28-2.8.[0-9]* moodle29-2.9.[0-9]*
|
||||
|
||||
DEPRECATED= Please upgrade to moodle28 or moodle29
|
||||
EXPIRATION_DATE= 2015-10-09
|
||||
|
||||
USES= tar:tgz
|
||||
USE_PHP= session gd pcre mbstring iconv tokenizer curl xml xmlrpc ctype \
|
||||
soap openssl simplexml spl dom json zip zlib hash opcache
|
||||
WRKSRC= ${WRKDIR}/moodle
|
||||
|
||||
OPTIONS_SINGLE= BACKEND
|
||||
OPTIONS_SINGLE_BACKEND= MYSQL PGSQL MSSQL
|
||||
OPTIONS_DEFINE= LDAP MIMETEX
|
||||
OPTIONS_DEFAULT= MYSQL
|
||||
MIMETEX_DESC= mimeTeX filter functionality support
|
||||
|
||||
.include <bsd.port.options.mk>
|
||||
|
||||
.if ${PORT_OPTIONS:MMYSQL}
|
||||
USE_PHP+= mysqli
|
||||
.endif
|
||||
|
||||
.if ${PORT_OPTIONS:MPGSQL}
|
||||
USE_PHP+= pgsql
|
||||
.endif
|
||||
|
||||
.if ${PORT_OPTIONS:MMSSQL}
|
||||
USE_PHP+= mssql
|
||||
.endif
|
||||
|
||||
.if ${PORT_OPTIONS:MLDAP}
|
||||
USE_PHP+= ldap
|
||||
.endif
|
||||
|
||||
.if ${PORT_OPTIONS:MMIMETEX}
|
||||
RUN_DEPENDS+= ${LOCALBASE}/www/mimetex/cgi-bin/mimetex.cgi:${PORTSDIR}/www/mimetex
|
||||
.endif
|
||||
|
||||
NO_BUILD= yes
|
||||
PLIST= ${WRKDIR}/plist
|
||||
SUB_FILES= pkg-message
|
||||
SUB_LIST= MOODLEDIR=${MOODLEDIR} \
|
||||
MOODLEDATADIR=${MOODLEDATADIR}
|
||||
|
||||
MOODLEDIR?= www/moodle
|
||||
MOODLEDATADIR?= moodledata
|
||||
|
||||
pre-install:
|
||||
@${FIND} -s -d ${WRKSRC} -type f | ${SED} "s?${WRKSRC}?${MOODLEDIR}?g" >>${PLIST}
|
||||
@${FIND} -s -d ${WRKSRC} -type d | ${SED} "s?${WRKSRC}?@dir ${MOODLEDIR}?g" >> ${PLIST}
|
||||
|
||||
@${ECHO_CMD} "@owner ${WWWOWN}" >> ${PLIST}
|
||||
@${ECHO_CMD} "@group ${WWWGRP}" >> ${PLIST}
|
||||
@${ECHO_CMD} "@mode 755" >> ${PLIST}
|
||||
@${ECHO} @dir ${MOODLEDATADIR} >> ${PLIST}
|
||||
@${ECHO_CMD} "@mode" >> ${PLIST}
|
||||
@${ECHO_CMD} "@group" >> ${PLIST}
|
||||
@${ECHO_CMD} "@owner" >> ${PLIST}
|
||||
|
||||
do-install:
|
||||
@cd ${WRKSRC} && ${COPYTREE_SHARE} . ${STAGEDIR}${PREFIX}/${MOODLEDIR}
|
||||
@${INSTALL} -d ${STAGEDIR}${PREFIX}/${MOODLEDATADIR}
|
||||
.if ${PORT_OPTIONS:MMIMETEX}
|
||||
${LN} -sf ${PREFIX}/www/mimetex/cgi-bin/mimetex.cgi \
|
||||
${STAGEDIR}${PREFIX}/${MOODLEDIR}/filter/tex/mimetex.freebsd
|
||||
.endif
|
||||
|
||||
.include <bsd.port.mk>
|
@ -1,2 +0,0 @@
|
||||
SHA256 (moodle-2.7.10.tgz) = 0cc41106b462b244cb4aac02999f099ede4b10c721e07df0d0f6860403fa4f4c
|
||||
SIZE (moodle-2.7.10.tgz) = 34992167
|
@ -1,66 +0,0 @@
|
||||
POST-INSTALL CONFIGURATION FOR MOODLE
|
||||
=====================================
|
||||
|
||||
1) Create a user and a database for Moodle to store all
|
||||
its tables in (or choose an existing database).
|
||||
It doesn't matter what the database or user names are,
|
||||
as this will be configured in a later step.
|
||||
NOTE: this package assumes that either the phpX-pgsql,
|
||||
phpX-mysql, or phpX-mssql packages are installed.
|
||||
|
||||
2) Add the following to your Apache configuration file
|
||||
httpd.conf, and restart the server:
|
||||
|
||||
For Apache versions earlier than 2.4:
|
||||
|
||||
Alias /moodle %%PREFIX%%/%%MOODLEDIR%%/
|
||||
AcceptPathInfo On
|
||||
<Directory %%PREFIX%%/%%MOODLEDIR%%>
|
||||
AllowOverride None
|
||||
Order Allow,Deny
|
||||
Allow from all
|
||||
</Directory>
|
||||
|
||||
For Apache version 2.4.x or above:
|
||||
|
||||
Alias /moodle %%PREFIX%%/%%MOODLEDIR%%/
|
||||
AcceptPathInfo On
|
||||
<Directory %%PREFIX%%/%%MOODLEDIR%%/>
|
||||
AllowOverride None
|
||||
Require all granted
|
||||
</Directory>
|
||||
|
||||
3) Visit your Moodle site with a browser (i.e.,
|
||||
http://your.server.com/moodle/), and you should
|
||||
be taken to the install.php script, which will lead
|
||||
you through creating a config.php file and then
|
||||
setting up Moodle, creating an admin account, etc.
|
||||
|
||||
At one step, you will get a message saying that the
|
||||
installer script was not able to automatically create
|
||||
the config.php file. Just download it and copy it to
|
||||
%%PREFIX%%/%%MOODLEDIR%%/config.php. Beware that it
|
||||
will contain the database password in cleartext, so
|
||||
set up whatever file permissions you deem more adequate.
|
||||
For instance, user=root, group=www, mask=640.
|
||||
|
||||
4) Set up a cron task to invoke the file admin/cron.php
|
||||
every five minutes or so. For instance:
|
||||
*/5 * * * * fetch http://your.server.com/moodle/admin/cron.php
|
||||
|
||||
For more information, see the INSTALL DOCUMENTATION:
|
||||
|
||||
http://docs.moodle.org/en/Installing_Moodle
|
||||
|
||||
It may be worth reading the installation docs even if Moodle seems
|
||||
to be working at first, to ensure your PHP settings and database
|
||||
configuration will allow Moodle to operate properly.
|
||||
|
||||
If you are upgrading from an earlier version of Moodle, check out
|
||||
possible additional steps at:
|
||||
|
||||
http://docs.moodle.org/en/Upgrading
|
||||
http://docs.moodle.org/en/Upgrading_to_Moodle_2.0
|
||||
|
||||
If you have real trouble, please visit the Moodle course
|
||||
"Using Moodle" on moodle.org.
|
@ -1,7 +0,0 @@
|
||||
Moodle is a course management system (CMS) - a free, Open Source software
|
||||
package designed using sound pedagogical principles, to help educators
|
||||
create effective online learning communities. You can use it on any
|
||||
computer you have handy (including webhosts), yet it can scale from a
|
||||
single-teacher site to a 40,000-student University.
|
||||
|
||||
WWW: http://www.moodle.org/
|
Loading…
Reference in New Issue
Block a user