Commit graph

260359 commits

Author SHA1 Message Date
Sergey Skvortsov
9915be03c1 Update to 3.6.0
Changes:	http://www.parrot.org/news/2011/Parrot-3.6.0
2011-07-26 07:23:17 +00:00
Dimitry Andric
6547a5ca86 In the AES-NI inline assembly, change instances of 'cmpq' to 'cmpl'. I
had erroneously assumed this would only be compiled on amd64, but even
then a 64 bit compare is wrong.  The variables referenced in the inline
assembly are all plain int, so 32 bit.

PR:	ports/159147
Pointy hat to:	dim
Requested by:	Hirohisa Yamaguchi <umq@ueo.co.jp> (maintainer)
2011-07-26 06:54:46 +00:00
Stanislav Sedov
399f367833 - Update to a new snapshot. This revision adds compatibility with
ruby 1.9 using patches contributed by Steve Wills <swills@FreeBSD.org>.
2011-07-26 04:53:56 +00:00
Mario Sergio Fujikawa Ferreira
a9a449cd31 New port py-periscope version 0.2.4: Subtitles searching module 2011-07-26 03:03:46 +00:00
Mario Sergio Fujikawa Ferreira
45283d4f7b - Update to 3.2.0
- Take over maintainership

PR:		ports/159169
Approved by: 	Mike Meyer <mwm@mired.org> (previous maintainer)
2011-07-26 03:00:25 +00:00
Shaun Amott
226783f711 - Fix build on clang. [1]
- Respect PREFIX and CFLAGS.

PR:		ports/158546 [1]
Submitted by:	Niclas Zeising <niclas.zeising@gmail.com> [1]
2011-07-26 02:53:57 +00:00
Steve Wills
05bbaae201 - Add CVE reference for OpenSAML2 issue
- Use official citation
2011-07-26 02:12:47 +00:00
Sahil Tandon
d56e5eb7da Update to 2.8.4 and use the ports framework to
create USERS and GROUPS. Also remove replace()
function from pkg-install script.

PR:		ports/158765
Submitted by:	ohauer
2011-07-26 01:49:28 +00:00
Steve Wills
0d6bf530f3 - Remove unnecessary ruby-iconv dependency covered by
USE_RUBY_FEATURES=iconv

Pointed out by:		pgollucci
Point hat to:		swills
2011-07-26 01:26:15 +00:00
Ryan Steinmetz
3decd2cb74 Update to 3.4.3.2
PR:		ports/159143
Submitted by:	Matthew Seaman <m.seaman@infracaninophile.co.uk> [maintainer]
Approved by:	wxs (mentor)
2011-07-26 01:21:53 +00:00
Ryan Steinmetz
3bb538877f # New ports collection makefile for: phpMyAdmin
# Date created:		19 Jan 2001
# Whom:			nbm
#
# $FreeBSD: ports/databases/phpmyadmin/Makefile,v 1.139 2011/07/13 01:23:50 sunpoet Exp $
#

PORTNAME=	phpMyAdmin
DISTVERSION=	3.4.3.2
CATEGORIES=	databases www
MASTER_SITES=	SF/${PORTNAME:L}/${PORTNAME}/${PORTVERSION}
DISTNAME=	${PORTNAME}-${DISTVERSION}-all-languages

MAINTAINER=	m.seaman@infracaninophile.co.uk
COMMENT=	A set of PHP-scripts to manage MySQL over the web

LICENSE=	GPLv2

USE_MYSQL=	compat
IGNORE_WITH_PHP=	4
IGNORE_WITH_MYSQL=	323 40 41
USE_BZIP2=	yes
NO_BUILD=	yes
.if !defined(WITHOUT_PHP_DEPENDS)
USE_PHP=	ctype mysql session filter mbstring json spl
.endif

# Note: default settings will pull in X11 client support.  If you don't
# want this, either turn off GD in the config dialog, or else turn off
# FONTCONFIG in the graphics/gd port options.

OPTIONS=	SUPHP	"suPHP support"			      off \
		BZ2	"bzip2 library support" 	      on  \
		GD	"GD library support (requires X11)"   on  \
		MYSQLI	"Improved MySQL support" 	      off \
		OPENSSL	"OpenSSL support" 		      on  \
		PDF	"PDFlib support" 		      on  \
		ZLIB	"ZLIB support" 			      on  \
		MCRYPT	"MCrypt library support" 	      on  \
		ZIP	"Zip compression support" 	      on  \
		APC	"APC (animated progress bar) support" on

.include <bsd.port.options.mk>

.if defined(WITH_SUPHP) && !defined(WITHOUT_SUPHP)

PKGNAMESUFFIX=	-suphp
RUN_DEPENDS+=	${LOCALBASE}/sbin/suphp:${PORTSDIR}/www/suphp
WANT_PHP_CGI=	yes

.else

WANT_PHP_WEB=	yes

.endif

# USERS is only used WITH_SUPHP
GROUPS?=	${WWWGRP}
CFGFILE=	config.inc.php

PLIST=		${WRKDIR}/plist
PLIST_SUB+=	PMA_GRP=${GROUPS}

.if defined(WITH_SUPHP) && !defined(WITHOUT_SUPHP)

USERS?=		_pma

SUB_LIST+=	PMA_USR=${USERS}     \
		PMA_GRP=${GROUPS}
SUB_FILES+=	pkg-install pkg-deinstall

.endif

SUB_LIST+=	PKGNAME=${PKGNAME}
SUB_FILES+=	pkg-message

LATEST_LINK=	${PORTNAME}${PKGNAMESUFFIX}

.if !defined(WITHOUT_PHP_DEPENDS)

# Options that default to on:
.for opt in BZ2 GD OPENSSL PDF ZLIB MCRYPT MBSTRING ZIP APC
.    if !defined(WITHOUT_${opt}) || defined(WITH_${opt})
USE_PHP+=	${opt:L}
.    endif
.endfor

# Options that default to off:
.for opt in MYSQLI
.    if defined(WITH_${opt}) && !defined(WITHOUT_${opt})
USE_PHP+=	${opt:L}
.    endif
.endfor
.endif

.SILENT:

# When creating a package, empty directories will not be generated
# from the pkg tarball.	 Therefore make sure no directories are empty.

post-patch:
	cd ${WRKSRC} ; \
	for emptydir in $$( ${FIND} . -type d -empty -print ) ; do \
	    ${TOUCH} $${emptydir}/.keep-me ; \
	done ; \
	${CP} ${FILESDIR}/${CFGFILE}.sample ${WRKSRC}/${CFGFILE}.sample ; \
	${FIND} . ! -type d ! -name ${CFGFILE}.sample ! -name '*.bak' | \
	    ${SORT} | ${SED} -e "s,^\.,%%WWWDIR%%,"   >${PLIST} ; \
	${CAT} ${PKGDIR}/pkg-plist-chunk	     >>${PLIST} ; \
	${FIND} . -type d | ${SORT} -r | ${SED} \
	    -e "s,^\.$$,@dirrmtry %%WWWDIR%%," \
	    -e "s,^\.,@dirrm %%WWWDIR%%,"	     >>${PLIST}

do-install: install-app install-conf

install-app:
	cd ${WRKSRC} ; \
	for src in $$( ${FIND} . ! -name .cvsignore ! -name '*.bak' ) ; do \
	    dst=${WWWDIR}$${src#.} ; \
	    if ${TEST} -d "$$src" ; then \
		${MKDIR} "$$dst" ; \
	    else \
		${INSTALL_DATA} "$$src" "$$dst" ; \
	    fi \
	done

install-conf: install-app
	cd ${WWWDIR} ; \
	${CHMOD} 0640 ${CFGFILE}.sample ; \
	${CHGRP} ${WWWGRP} ${CFGFILE}.sample ; \
	if ${TEST} ! -f ${CFGFILE} ; then \
	    ${CP} -p ${CFGFILE}.sample ${CFGFILE} ; \
	fi

post-install:
.if defined(WITH_SUPHP)
	${SETENV} ${SCRIPTS_ENV} ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL
.endif
	${CAT} ${PKGMESSAGE}

.include <bsd.port.mk>
2011-07-26 01:13:02 +00:00
Ryan Steinmetz
2e218f51b5 Document phpmyadmin vulnerabilities
Approved by:	wxs (mentor)
2011-07-26 01:12:25 +00:00
Ryan Steinmetz
43578c221d Update to 0.7.12
Pass maintainership to submitter
Remove DEPRECATED/EXPIRATION_DATE

PR:		ports/158140
Submitted by:	Uffe Jakobsen <uffe@uffe.org>
Approved by:	tabthorpe (mentor)
2011-07-26 01:00:53 +00:00
Matthias Andree
f25f4fecdd Update to Beta 16, for real this time. Bump PORTREVISION.
Derive portversion-related variables from PORTVERSION.

Brown paper bag with two holes at eye level to: mandree@
2011-07-25 23:51:16 +00:00
Steve Wills
30f46fb6dd Document OpenSAML2 issue 2011-07-25 23:47:57 +00:00
Beech Rintoul
66911cea9f - Back out last commit, return to 1.9.1.1
- Bump PORTEPOCH

Requested by:	maintainer
Approved by:	Rusty Nejdl <rnejdl@ringofsaturn.com> (maintainer)
2011-07-25 23:06:35 +00:00
Steve Wills
4ad820565c - Fix with Ruby 1.9
PR:		ports/159171
Submitted by:	swills
Approved by:	maintainer (bapt)
2011-07-25 22:44:29 +00:00
Pav Lucistnik
0982b5834c - Fix build with new gnutls
Reported by:	pointyhat
2011-07-25 22:15:43 +00:00
Pav Lucistnik
d72e079535 - Fix build with new libgcrypt
- Provide avahi option

PR:		ports/159018
Submitted by:	Grzegorz Blach <magik@roorback.net> (maintainer)
2011-07-25 22:03:16 +00:00
Pav Lucistnik
278bb6f052 - Mark BROKEN: does not compile
wizard.c:1298: error: 'label' undeclared (first use in this function)

Reported by:	pointyhat
2011-07-25 21:55:52 +00:00
Florian Smeets
10847663d9 connect asterisk10 to the build 2011-07-25 21:03:44 +00:00
Chris Rees
c2a08171fe net/gatekeeper now uses USERS/GROUPS
Approved by:	rene (mentor, implicit)
2011-07-25 20:22:12 +00:00
Johan van Selst
8140241372 Fix sc build with clang 2011-07-25 20:19:16 +00:00
Matthias Andree
69f20e878e Move LICENSE= up into a block of its own to silence portlint.
Remove the lzo/lzo2 version switch now that we only have lzo2.

Mark temporarily DEPRECATED while there are no formal test releases by the
upstream.

Approved by: ecrist@secure-computing.net (maintainer)
2011-07-25 20:03:44 +00:00
Matthias Andree
74fb18cff0 Move LICENSE= up into a block of its own to silence portlint.
Remove the lzo/lzo2 version switch now that we only have lzo2.

Approved by: ecrist@secure-computing.net (maintainer)
2011-07-25 20:03:10 +00:00
Matthias Andree
070b942883 Fix Pointyhat build failures by skipping (not failing) network-based tests.
Approved by: ecrist@secure-computing.net (maintainer)
2011-07-25 20:01:33 +00:00
Matthias Andree
3a6b14d13d archivers/lzo was removed, remove support for it. 2011-07-25 19:47:12 +00:00
Matthias Andree
2913e3b281 Fix Pointyhat build failures by skipping (not failing) network-based tests. 2011-07-25 19:45:11 +00:00
Johan van Selst
ffece4b331 Fix mrouted build with clang 2011-07-25 19:45:10 +00:00
Johan van Selst
044d86321d - Respect $CC
- Fix build with clang
2011-07-25 19:40:47 +00:00
Ulrich Spörlein
088953dd8b Update to 1.11.5 2011-07-25 19:23:06 +00:00
Shaun Amott
48a52afd82 - Remove dead master sites.
- Distfile was re-rolled - content is the same as the old one.
- Fix build with clang.
2011-07-25 19:19:03 +00:00
Stephen Montgomery-Smith
8ad2090df4 - Update to 2.5.0.
Approved by:	maho (mentor, implicit)
2011-07-25 19:04:03 +00:00
Shaun Amott
6e05ae4775 Fix build with clang. 2011-07-25 19:00:26 +00:00
Johan van Selst
40a3b0ef5f - Respect $CC
- Fix build with clang
- Regenerate patchfiles after including the clang patches
2011-07-25 18:54:26 +00:00
Johan van Selst
3bd5e9159f Fix elm build with clang (respect $CC in configure) 2011-07-25 18:07:13 +00:00
Jung-uk Kim
36fb73325e Fix build with Clang. 2011-07-25 17:45:00 +00:00
Thomas Abthorpe
1910f8ae15 - Reset at maintainer's request 2011-07-25 17:28:27 +00:00
Florian Smeets
d280c4da6a add asterisk 10 beta1 to net/asterisk10
As asterisk 1.8 is a LTS release it is going to stay in net/asterisk for the
time being.
2011-07-25 16:34:26 +00:00
Daniel Gerzo
0f6bc44a6f - install uwsgidecorators.py as well [1]
- improve the rc.d script - allow multiple instances etc (see PR) [2]

PR:		ports/156723 [2]
Submitted by:	Luka Lalinsky <lalinsky@gmail.com> [2]
Requested by:	Attila Nagy <bra@fsn.hu> [1]
2011-07-25 16:15:50 +00:00
Florian Smeets
0869bab8de Forced commit to note the repocopy from net/asterisk18 to net/asterisk10 2011-07-25 16:14:23 +00:00
Thomas Abthorpe
239add946e - Reset ports at maintainers request 2011-07-25 14:54:06 +00:00
Martin Matuska
a53988aed0 WITH_IMAGEMAGICK_DJVU depend on graphics/djvulibre-nox11 [1]
Fix handling of WITH_IMAGEMAGICK_LZMA
Bump PORTREVISION

PR:	ports/158861 [1]
2011-07-25 14:04:37 +00:00
Christian Weisgerber
3d4cbe1f53 Update to 0.1.33, which fixes the verb "chauvir".
Approved by:	maintainer timeout (8 weeks)
2011-07-25 13:53:25 +00:00
Andrej Zverev
0d35a7200b - Update to 0.07
PR:		ports/158329
Submitted by:	Jin-Sih Lin <linpct@gmail.com>
Approved by:	maintainer (tobez via IM)
2011-07-25 13:23:09 +00:00
Andrej Zverev
1548a7b804 - Update to 1.35
- Pet portlint

PR:		ports/157824
Submitted by:	Jin-Sih Lin <linpct@gmail.com>
Approved by:	maintainer (tobez via IM)
2011-07-25 13:19:01 +00:00
Sunpoet Po-Chuan Hsieh
75b21ad5d4 - Add BUILD_DEPENDS back
Suggested by:	az
2011-07-25 12:06:15 +00:00
Andrej Zverev
c6e2f456f9 - Update to 1.01
- Pet portlint

PR:		ports/157758
Submitted by:	Jin-Sih Lin <linpct@gmail.com>
Approved by:	mantainer (tobez via IM)
2011-07-25 12:01:32 +00:00
Matthias Andree
a8c4963d98 Bump PORTVERSION to 0.2.0 according to HISTORY section in embedded manual. 2011-07-25 11:53:30 +00:00
Matthias Andree
cf1e3e5d07 - fixed a bug where skipping non-existent command line arguments
failed and resulted in an unterminated (endless) loop.

- added the --no-find option
2011-07-25 11:49:29 +00:00