1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-28 01:06:17 +00:00
Commit Graph

3950 Commits

Author SHA1 Message Date
Matthias Andree
f7fdb8279d Add #include <limits.h> to include/lzo/lzodefs.h to fix build issues
on some architectures, for instance, i386, that would otherwise
leave ULONG_MAX undefined.

Bug is reported upstream.

Reported by: Randy Bush
2014-06-27 06:37:24 +00:00
Matthias Andree
8bb6e06633 Update to new upstream release 2.07, fixing a potential buffer overrun.
MFH:	2014Q2
Security:	d1f5e12a-fd5a-11e3-a108-080027ef73ec
2014-06-27 00:51:13 +00:00
Matthias Andree
26342cd267 Mark MAKE_JOBS_UNSAFE to fix the build.
Failure log: https://people.freebsd.org/~mandree/arj-3.10.22_4.log.xz
2014-06-26 18:18:58 +00:00
Antoine Brodin
c0ef6553ab Allow to build with texinfo from ports
With hat:	portmgr
2014-06-26 08:41:34 +00:00
Baptiste Daroussin
aa57dea8a7 Allow to build with texinfo from ports 2014-06-25 19:37:36 +00:00
Baptiste Daroussin
669c094ac0 Allow to build with texinfo from ports 2014-06-25 19:37:01 +00:00
Alexey Dokuchaev
52919007a9 - Remove BROKEN_powerpc, builds and runs just fine (tested on Mac mini G4)
- Avoid changing the same file both via the patch and with sed(1)
- Now that with staging PLIST_FILES become long again, resurrect pkg-plist
- Improve COMMENT, port description, sort the knobs, and cleanup the port
2014-06-25 03:23:59 +00:00
Baptiste Daroussin
dd63ae1966 Use framework properly to build 2014-06-24 21:49:08 +00:00
Baptiste Daroussin
ef49fa1572 Replace GMAKE by MAKE_CMD 2014-06-24 21:47:12 +00:00
Baptiste Daroussin
1778ba491f Use MAKE_CMD instead of GMAKE 2014-06-24 21:46:28 +00:00
Baptiste Daroussin
65a37b8901 Simplify Makefile remove GMAKE 2014-06-24 21:45:50 +00:00
Baptiste Daroussin
c85a36b065 Add USES=charsetfix 2014-06-24 16:25:38 +00:00
Tijl Coosemans
8b351e0e84 Add USES=libtool. 2014-06-22 20:12:36 +00:00
Tijl Coosemans
d60178bc47 - Add USES=libtool to archivers/libarchive.
- Bump PORTREVISION on dependent ports.
2014-06-22 20:11:54 +00:00
Tijl Coosemans
3e4a806167 Add 4 new sed commands to USES=libtool. The first two apply some of the
changes that Debian made to their libtool.  The first command applies to
libtool versions 1.4 and up.  The second command is somewhat more elaborate
but essentially it uses the sed hold space to move an "elif...fi" block
down.  It applies to 2.x.  Together these reduce overlinking to unpatched
.la files (from ports that don't have USES=libtool yet but also .la files
in the work directory).

The third and fourth command fix relinking.  During staging libtool may
relink libA when it links to another library in the work directory libB.
The reason is that libA created during build phase has its runpath set to
the location of libB in the work directory.  This allows running an
executable that links to libA from within the work directory.  The relink
removes this extra runpath.

When libtool relinks libA it replaces "libB.la" on the linker command line
with "-L${STAGEDIR}${PREFIX}/lib -lB" with the intention to link to libB in
the stage directory but this -L flag isn't necessarily the first so another
libB may be linked instead.  The two sed commands make relink the same as a
normal link.  This means libtool will relink with libraries from the work
directory using a path similar to "../srcB/.libs/libB.so" without -L flags.
This applies to libtool 1.4 and up.  Earlier versions don't seem to relink
libraries.
(This fixes ports like devel/apr1 so they link with freshly built libraries
instead of installed libraries.)

Fix all ports with missing libraries.

Additionally:
archivers/rpm4: USES=patchfix.
databases/gdbm: INSTALL_TARGET=install-strip.
devel/gnome-vfs: remove patch that doesn't change anything.
devel/ois: INSTALL_TARGET=install-strip and use standard USE_AUTOTOOLS.
devel/zziplib: INSTALL_TARGET=install-strip, MAKE_CMD.
multimedia/mjpegtools: remove USE_AUTOTOOLS, use modern compiler on i386
   instead of disabling optimisations.
net/libnetdude: disable static plugins.

PR:		190941
Exp-run:	antoine
Approved by:	portmgr (antoine)
2014-06-22 10:44:29 +00:00
Dmitry Marakasov
2ab8bf6757 - Add missing USES=libtool to archivers/snappy
- Bump dependent ports as .so version has changed

Approved by:	portmgr blanket
2014-06-16 15:16:17 +00:00
Philippe Audeoud
a9c9b805e3 - Update to 2.00
- Add license
2014-06-16 13:31:05 +00:00
Kurt Jaeger
ceba983ef6 New port archivers/php5-snappy
PR:		ports/189885
Submitted by:	Melvyn Sopacua <melvyn@magemana.nl>
2014-06-15 13:45:01 +00:00
John Marino
d0bb05930a Reset the 99 ports still listed under sylvio@
Sylvio's last commit was 17 months ago, a full 5 months after all of his
ports could have been reset per policy.  Given the push to complete
staging (48 ports are still unstaged, something like 70+ have already
been staged by other committers) and given that PRs are automatically
assigned but never addressed, it's better just to reset all the ports and
PRs so that it's clear to others that these ports are free to maintain.

Approved by:	portmgr (implicit)
2014-06-11 18:55:29 +00:00
Tijl Coosemans
9f8b4bcde3 Support LIBS like LDFLAGS.
- Add LIBS="${LIBS}" to MAKE_ENV and CONFIGURE_ENV.
- Add an option helper for LIBS.
- Adjust all ports that already use LIBS.  Also remove references to
  PTHREAD_CFLAGS and PTHREAD_LIBS while here.
- Some ports did not support having a LIBS environment variable and
  required additional patches.

Somewhat simplified a linker command line looks like:

${CC} ${src_LDFLAGS} ${LDFLAGS} ${src_LIBS} ${LIBS}

where src_LDFLAGS and src_LIBS are controlled by upstream and LDFLAGS and
LIBS can be controlled by us.  If possible -L and -l flags need to be
added to LIBS to make sure they appear after any -L and -l flags set by
upstream.  Many ports currently add -L${LOCALBASE}/lib to LDFLAGS but this
may appear too early on the command line causing installed libraries to
be linked in instead of freshly built ones.

Additional changes:
benchmarks/netio: Replace WITH_IPV6 with an IPV6 option.
comms/gnokii: Replace some patches with USES=pathfix.  Also remove -fPIC.
graphics/gimageview: USES=libtool and install desktop file in DESKTOPDIR.
graphics/visionworkbench: Remove FreeBSD 7 support.
multimedia/libmovtar: New LIB_DEPENDS syntax.
multimedia/opencinematools: Use standard do-build.
net/siproxd: USES=libtool:keepla (port actually needs .la files for plugins)
net-mgmt/nagios: Remove -fPIC.
net-mgmt/nagios4: Remove -fPIC.
print/cups-base: Only add -lssp_nonshared on i386 and OSVERSION < 1000036.
security/p11-kit: Replace PTHREAD_LIBS in CONFIGURE_ENV with
ac_cv_func_pthread_mutexattr_init=no in CONFIGURE_ARGS.  This skips a test
in configure that falsely detects pthread_mutexattr_init in our libc.
sysutils/dar: Fix iconv detection.
x11/rxvt-unicode: Remove -lstdc++ and patch configure to remove a FreeBSD
hack and use $CXX as linker as on other platforms.

PR:		190592
Exp-run by:	antoine
Approved by:	portmgr (antoine)
2014-06-11 14:49:59 +00:00
John Marino
e576cffda4 Resurrect archivers/bzip and assign maintainer
This port was removed due not having a publically available distfile.
That has been fixed per the PR with maintainership assigned to submitter.

Additionally:

  * The patch-aa was renamed
  * The patch-ab and patch-ac touched the same file; they were combined
    and renamed
  * DragonFly support was added (hence the portrevision bump)
  * GPLv2 license was annotated
  * 80-column formatting was respected
  * PLIST sorted

PR:		188939
Submitted by:	Chris Hutchinson
Tweaks:		marino
2014-06-11 09:49:14 +00:00
Dmitry Marakasov
960c9a9789 - Drop .la files, no dependees require them
Approved by:	portmgr blanket
2014-06-10 20:57:03 +00:00
Dmitry Marakasov
6b4ff7ca75 - Add missing USES=libtool
Approved by:	portmgr blanket
2014-06-10 20:50:45 +00:00
Mathieu Arnold
61de712f46 Remove all the bootstrap files (.bs) from the plists.
Starting with perl 5.20, they're not installed any more if empty,
and on FreeBSD, they're (always ?) empty.

PR:		190681
Submitted by:	mat
Exp-Run by:	antoine
Sponsored by:	Absolight
2014-06-10 12:14:12 +00:00
Jimmy Olgeni
37e782dfbc Remove indefinite articles and trailing periods from COMMENT, plus
minor COMMENT typos and surrounding whitespace fixes. Categories A-C.

CR:		D196
Approved by:	portmgr (bapt)
2014-06-09 11:21:52 +00:00
Marcus von Appen
c88bb9334f - Remove easy_install dependency
- Convert to PYDISTUTILS_AUTOPLIST
- Bump PORTREVISION to enforce a cleanup for the easy_install references

With hat:	python@
Approved by:	portmgr (implicit)
2014-06-08 09:08:38 +00:00
Alex Kozlov
12e263b358 - Use /usr/bin/unzip for zip files extraction (part 2)
Remove most of USES=zip:infozip

PR:        ports/188419
Approved by:	portmgr (bapt)
Exp-run:	antoine
2014-06-06 15:26:41 +00:00
Dmitry Marakasov
8970961b47 - Drop .la files, no dependees require them
Approved by:	portmgr blanket
2014-06-05 19:49:16 +00:00
Dmitry Marakasov
a5dadce5f4 - Switch to USES=libtool, drop .la files
Approved by:	portmgr blanket
2014-06-05 18:20:15 +00:00
Dmitry Marakasov
9a2db5548d - Switch to USES=libtool, drop .la files
Approved by:	portmgr blanket
2014-06-05 13:04:49 +00:00
Dmitry Marakasov
a5579275d3 - Switch to USES=libtool, drop .la files
- Fix bash shebang

Approved by:	portmgr blanket
2014-06-04 17:37:51 +00:00
Vanilla I. Shu
28775aff66 Upgrade snappy to 1.1.1, and bump all related PORTREVISION to chase shared library version.
PR:		ports/190409
Submitted by:	ports at robakdesign.com
Approved by:	portmgr@ (for NO_STAGE)
2014-06-03 14:34:06 +00:00
Sunpoet Po-Chuan Hsieh
7330d63edd - Use USES=libtool
- Strip shared library in post-install:
- Bump PORTREVISION for package change
2014-06-03 12:44:13 +00:00
Tijl Coosemans
044449c06a Enable the libminizip library which will be used by multimedia/vlc:
- Use the standard MASTER_SITE for zlib.
- Replace PLIST_FILES with a separate pkg-plist.
- Instead of using the bundled "Makefile" set USE_AUTOTOOLS to generate
  a new Makefile from Makefile.am that allows building libminizip.so.
  Also remove MAKE_ARGS, do-install and patch-contrib-minizip-Makefile.
- Silence post-patch.
- Adjust regression-test.

PR:		190179
Approved by:	bapt
2014-06-02 20:38:38 +00:00
Mathieu Arnold
0d84fe27f6 Fix build with 5.20.
Sponsored by:	Absolight
2014-06-02 12:55:16 +00:00
Olli Hauer
73969bbf79 - fix sanity in CAT archivers
- USE_BZIP2   -> USES=tar:bzip2
 - LICENSE=BSD -> BSD[n]CLAUSE
2014-06-01 07:59:15 +00:00
Alex Kozlov
fe7fc772a5 - Fix various distinfo errors
- Remove unused USE_* knobs
- Convert USE_TWISTED_RUN to USES
- Remove empty lines after .include <bsd.port.mk>

Approved by:	portmgr (antoine)
2014-05-31 16:37:58 +00:00
Antoine Brodin
4e122f03e1 Reset maintainer, maintainer no longer wishes to maintain those ports
With hat:	portmgr
2014-05-29 23:18:42 +00:00
John Marino
9951638e48 2 more ports: convert to USES+= zip
USES=zip is currently desired when all distfiles are zip archives, unless
the after-extraction arguments are tailored for ${TAR}.  Currently
USES=zip is incompatible with multiple distfiles of different formats,
but this is being worked on.

Approved by:	general infrastructure blanket
2014-05-29 20:18:17 +00:00
John Marino
e7512728d3 2 more ports: convert to USES+= zip
USES=zip is required when at least one distfile is a zip archive, unless
the after-extraction arguments are tailored for ${TAR}

Approved by:	general infrastructure blanket
2014-05-29 17:48:12 +00:00
Sofian Brabez
8a925aeb82 - Add CONFLICTS
CR:		D70
Approved by:	bapt (portmgr)
2014-05-27 12:06:54 +00:00
Baptiste Daroussin
767c8514e9 Convert to USES=lua 2014-05-26 15:57:52 +00:00
Baptiste Daroussin
e836ab008a Replace lang/lua with the new lang/lua51
lang/lua51 is working the same way lang/lua52, chase ports using lua 5.1
Make the default lua lua52
Make all lua ports using USES=lua

Approved by:	portmgr (implicit)
2014-05-26 15:28:28 +00:00
Martin Matuska
893f6194bd Horde package update:
comms/pear-Horde_ActiveSync 2.15.1 -> 2.16.1
devel/pear-Horde_Alarm 2.2.0 -> 2.2.1
devel/pear-Horde_Argv 2.0.8 -> 2.0.9
security/pear-Horde_Auth 2.1.3 -> 2.1.4
archivers/pear-Horde_Compress 2.0.7 -> 2.0.8
security/pear-Horde_Crypt 2.4.2 -> 2.4.3
devel/pear-Horde_Data 2.0.4 -> 2.0.5
devel/pear-Horde_Date 2.0.9 -> 2.0.10
www/pear-Horde_Dav 1.0.4 -> 1.0.6
databases/pear-Horde_Db 2.1.1 -> 2.1.2
devel/pear-Horde_History 2.3.0 -> 2.3.1
graphics/pear-Horde_Image 2.0.7 -> 2.0.8
mail/pear-Horde_Imap_Client 2.19.6 -> 2.20.0
devel/pear-Horde_Itip 2.0.5 -> 2.0.6
mail/pear-Horde_ListHeaders 1.1.1 -> 1.1.2
devel/pear-Horde_Lock 2.1.0 -> 2.1.1
mail/pear-Horde_Mail 2.2.0 -> 2.3.0
mail/pear-Horde_Mime 2.3.4 -> 2.3.5
mail/pear-Horde_Mime_Viewer 2.0.6 -> 2.0.7
devel/pear-Horde_Nls 2.0.3 -> 2.0.4
mail/pear-Horde_Smtp 1.4.1 -> 1.5.0
devel/pear-Horde_Token 2.0.4 -> 2.0.5
2014-05-23 23:14:17 +00:00
Tijl Coosemans
f191d6b887 Quote ${CC} and similar variables in MAKE_ARGS.
Reported by:	Dominic Fandrey <kamikaze@bsdforen.de>
2014-05-20 19:32:39 +00:00
Alex Kozlov
4d37feee07 - Add liblzxcomp_p.a to orphans whitelist 2014-05-20 15:14:13 +00:00
Alex Kozlov
5d6a8e4ab8 - Add/update license when possible
- Modernize ports Makefiles
- Update MASTER_SITES/distfile for converters/chmview
2014-05-20 06:06:35 +00:00
Tijl Coosemans
5c0834bd1b For several MATE related ports:
- USES=libtool tar:xz.
- INSTALL_TARGET=install-strip.
- Add CONFIGURE_ARGS=--disable-static to ports that only install plugins.
2014-05-18 21:05:53 +00:00
Renato Botelho
aac4808550 Removed some expired ports:
2014-05-12 archivers/star: Depends on deprecated smake
2014-05-12 editors/ved: Depends on deprecated smake
2014-04-12 japanese/chasen: Unmaintained since 2001
2014-05-15 16:05:40 +00:00
Christian Weisgerber
c51f3f1605 Update to 1.27.1. Bug fixes:
* Fix unquoting of file names obtained via the -T option.
* Fix GNU long link header timestamp (backward compatibility).
* Fix extracting sparse members from star archives.

PR:		189675
Submitted by:	Jason Harris <jharris@widomaker.com>
2014-05-12 21:31:01 +00:00
Baptiste Daroussin
c80bd62d8d Convert to USES=dos2unix 2014-05-11 23:33:00 +00:00
Baptiste Daroussin
e1377ec47e Convert to USES=dos2unix 2014-05-11 23:31:52 +00:00
Max Brazhnikov
90e380e1cb KDE/FreeBSD team presents KDE SC 4.12.5 and KDE Workspace 4.11.9!
deskutils/kdepim4:
- Remove no longer needed patch, the problem was fixed since Qt 4.8.4.

The area51 repository features commits by rakuco and makc.
2014-05-10 19:43:14 +00:00
Pawel Pekala
d8c87341f3 Update to version 1.17.9 2014-05-06 20:44:17 +00:00
Sofian Brabez
bcf885b42a - Support STAGEDIR
PR:		ports/188462
Submitted by:	Bartek Rutkowski <ports at robakdesign.com>
2014-05-06 11:17:29 +00:00
Tijl Coosemans
a45da9a027 Convert archivers/libzip to USES=libtool. Bump PORTREVISION on all
dependent ports.

cad/repsnapper:
- Remove excessive dependencies.
- Convert to USES=libtool.
- Set LDFLAGS to fix detection of libintl.
- Use @sample.

databases/mysql-workbench51:
- Remove remnants of former slave ports.
- Convert some LIB_DEPENDS to USE_GNOME.
- Convert to USES=libtool.
- Staging.

databases/mysql-workbench52:
- USES=libtool.

devel/libsigrok:
- USES=libtool.
- INSTALL_TARGET=install-strip.

devel/liborcus:
- USES=libtool tar:bzip2.
2014-05-05 22:50:59 +00:00
Tijl Coosemans
553b3f1289 Drop libtool patch and .la library. 2014-05-05 21:54:32 +00:00
Tijl Coosemans
d0d9ec815e Convert to USES=libtool. 2014-05-05 21:53:16 +00:00
Tijl Coosemans
781090c033 Remove libtool patching. 2014-05-05 10:46:25 +00:00
Alex Kozlov
e9e650f0aa - Update to 0.616
PR:	ports/189195
Submitted by:	Gea-Suan Lin <gslin@gslin.org> (maintainer)
2014-05-05 09:59:59 +00:00
Baptiste Daroussin
4a4ec28d37 Convert all :U to :tu and :L to :tl
Since FreeBSD 8.4 and FreeBSD 9.1 make(1) do support :tu and :tl as a
replacement for :U and :L (which has been marked as deprecated)

bmake which is the default on FreeBSD 10+ only support by default
:tu/:tl a hack has been added at the time to support :U and :L to ease
migration. This hack is now not necessary anymore

Note that this makes the ports tree incompatible with make(1) from
FreeBSD 8.3 or earlier

With hat:	portmgr
2014-05-05 09:45:36 +00:00
Sunpoet Po-Chuan Hsieh
b44a6e2658 - Remove Author line 2014-05-03 18:21:43 +00:00
Sunpoet Po-Chuan Hsieh
5a19ae3878 - Remove Author line 2014-05-02 09:41:34 +00:00
Pawel Pekala
589d48437e Update to version 1.17.8 2014-04-29 16:36:42 +00:00
Baptiste Daroussin
e9e5e42574 Convert from USE_AUTOTOOLS=libtool to uses=libtool
While here:
- archivers/libmspack:
  * Strip binaries
2014-04-28 13:12:26 +00:00
Sunpoet Po-Chuan Hsieh
eacfebc2dd - Update to 0.09
Changes:	http://search.cpan.org/dist/Archive-Any-Lite/Changes
2014-04-26 18:09:39 +00:00
David Naylor
a39d5573ba Update my ports to be compliant with new USES framework and fix other issues.
Changes:
 * various: migrate USE_BZIP2 to USES=tar:bzip2
 * various: migrate USE_XZ to USES=tar:xz
 * multimedia/py-ffmpeg: add and prefer github (GH) as master site
 * ports-mgmt/portbuilder: specify license as BSD2CLAUSE (instead of just BSD)

Most ports are updated infrequently so a single batch commit is preferred over
collating changes per port.
2014-04-24 20:11:01 +00:00
Pawel Pekala
c10d2c9944 Update to version 1.17.7 2014-04-23 18:07:04 +00:00
Tijl Coosemans
aad09bc5e2 When linking a library libA with a library libB using libtool, if libB.la
exists, libtool will add all libraries libB.la refers to (dependency_libs
field) to the linker command line and store them in the dependency_libs
field of libA.la.  So everything that subsequently links with libA will also
link to these extra libraries.  This causes too much overlinking.

This commit modifies Mk/Uses/libtool.mk so it empties the dependency_libs
field in .la libraries during staging.  However, because .la libraries have
very limited use when dependency_libs is empty it makes sense to completely
remove them during staging.

So with this commit USES=libtool is modified to remove .la libraries and a
new form (USES=libtool:keepla) is introduced in case they need to be kept
(dependency_libs is still emptied).

PORTREVISION is bumped on all ports with USES=libtool that install .la
libraries.  Most ports are also changed to add :keepla because .la
libraries have to be kept around as long as there are dependent ports with
.la libraries that refer to them in their dependency_libs field.  In most
cases :keepla can be removed again as soon as all dependent ports that
install .la libraries have some form of USES=libtool added to their
Makefile.

PR:		ports/188759
Exp-run:	bdrewery
Approved by:	portmgr (bdrewery)
2014-04-23 13:25:16 +00:00
Olli Hauer
7251bdda73 - fix badly converted PORT_OPTIONS
s/:MWITH_PEAR_MAIL/:MPEAR_MAIL/

- no PORTREVION bump since all OPTIONS are off by default
2014-04-19 11:13:18 +00:00
Bryan Drewery
7c540e8148 - Don't remove directories owned by BSD.local.dist
With hat:	portmgr
2014-04-19 06:43:21 +00:00
Bryan Drewery
dd0de43921 - Fix shebang issues [1]
- Properly install and cleanup man dirs not in BSD.local.dist

PR:		ports/188755 [1]
Submitted by:	xmj [1]
2014-04-19 00:49:48 +00:00
Max Brazhnikov
1d7811daed archivers/libzip:
- Update to bugfix release 0.11.2
- Convert to USES=tar:xz
- Remove needless USE_AUTOTOOLS
- Strip installed library
2014-04-18 09:35:56 +00:00
Niclas Zeising
39fc32e828 The FreeBSD x11@ and graphics team proudly presents
a zeising, kwm production, with help from dumbbell, bdrewery:

NEW XORG ON FREEBSD 9-STABLE AND 10-STABLE

This update switches over to use the new xorg stack by default on FreeBSD 9
and 10 stable, on osversions where vt(9) is available.
It is still possible to use the old stack by specifying WITHOUT_NEW_XORG in
/etc/make.conf .
FreeBSD 8-STABLE and released versions of FreeBSD still use
the old version.
A package repository with binary packages for new xorg will
be available soon.

This patch also contains updates of libxcb and related ports, pixman, as well
as some drivers and utilities.

Bump portrevisions for xf86-* ports, as well as virtualbox-ose-additions due
to xserver version change.

Apart from these updates, the way shared libraries are handled has been
changed for all xorg ports, as well as libxml2 and freetype, which means
ltverhack is gone and as a consequence shared libraries have been bumped.
The plan is that this change will make library bumps less likely in the
future.
All affected ports have had their portrevisions bumped as a consequence of
this.

Fix some issues where WITH_NEW_XORG weren't detected properly on CURRENT.

Update instructions, hardware support, and more notes can be found on
https://wiki.freebsd.org/Graphics

Thanks to:	all testers, bdrewery and the FreeBSD x11@ team
exp-run by:	bdrewery [1]
PR:		ports/187602 [1]
Approved by:	portmgr (bdrewery), core (jhb)
2014-04-16 18:28:47 +00:00
Baptiste Daroussin
8f4c7ee1ee Chase smake deprecation
With hat:	portmgr
2014-04-11 07:59:26 +00:00
Akinori MUSHA
f2419e0f5d Remove ruby-libarchive; Use the gem version instead. 2014-04-09 02:38:39 +00:00
Akinori MUSHA
6934348ba0 Add rubygem-libarchive 0.1.2. 2014-04-09 02:33:59 +00:00
Baptiste Daroussin
6a84798a29 Simplification and cleanup of the port 2014-04-04 12:58:01 +00:00
Rene Ladan
b5e4d37e4f Remove expired ports:
2014-04-03 www/aolserver: abandonware, messing up on clusters
2014-04-03 www/openacs-dotlrn: Depends on expiring www/aolserver
2014-04-03 www/openacs: Depends on expiring www/aolserver
2014-04-03 security/aolserver-nsmcrypt: abandonware, messing up on clusters
2014-04-03 www/aolserver-xotcl: abandonware, messing up on clusters
2014-04-03 graphics/aolserver-nsgd: abandonware, messing up on clusters
2014-04-03 security/aolserver-nsencrypt: abandonware, messing up on clusters
2014-04-03 security/aolserver-nsmhash: abandonware, messing up on clusters
2014-04-03 archivers/aolserver-nszlib: abandonware, messing up on clusters
2014-04-03 security/aolserver-nsopenssl: abandonware, messing up on clusters
2014-04-03 databases/aolserver-nspostgres: abandonware, messing up on clusters
2014-04-03 databases/aolserver-nsmysql: abandonware, messing up on clusters
2014-04-03 security/aolserver-nssha1: abandonware, messing up on clusters
2014-04-03 23:01:30 +00:00
Max Brazhnikov
65b2b253dc KDE/FreeBSD team presents KDE SC 4.12.4 and KDE Workspace 4.11.8!
KDE ports:
- Convert to USES=tar:xz

devel/p5-perlqt, multimedia/kdemultimedia4-ffmpegthumbs:
- Convert LIB_DEPENDS to new style

devel/p5-perlqt, devel/p5-perlkde:
- Don't remove directories installed by perl port

net/kdnssd:
- moved to net/zeroconf-ioslave (renamed upstream)

x11/kdelibs4:
- Clean up non-standard shared mime files and directories after deinstall

The area51 repository features commits by Alonso Schaich
<alonsoschaich@fastmail.fm> and makc.
2014-04-03 09:49:10 +00:00
Renato Botelho
5530b79df2 Support STAGE
Approved by:	portmgr (blanket)
2014-03-31 14:37:43 +00:00
Nicola Vitale
798c36c6c4 - Add a patch to fix build, when a previous version is installed 2014-03-30 03:10:03 +00:00
Koop Mast
8fa5325438 Stageify. 2014-03-29 14:16:39 +00:00
Gabor Pali
8b1c971497 - Reroll and update bootstrap Haskell compilers to GHC 7.6.3 on 8.x and
9.x in order to prevent run-time breakage after the recent changes in
  libiconv
- Bump port revision for lang/ghc and all dependents, as a consequence

Obtained from:	FreeBSD Haskell
2014-03-29 00:52:54 +00:00
Antoine Brodin
e27d4b019c Stage support 2014-03-26 20:35:55 +00:00
Antoine Brodin
4cef51f686 Stage support 2014-03-26 20:18:38 +00:00
Baptiste Daroussin
cede96a7ab Support stage 2014-03-25 15:11:29 +00:00
Baptiste Daroussin
362d680e01 Support stage 2014-03-24 23:17:20 +00:00
Sunpoet Po-Chuan Hsieh
e41a946b4c - Fix PLIST: use NONEXISTENT instead of empty string [1]
- Strip shared library in post-install: phase
- Bump PORTREVISION for package change

Suggested by:	vd [1]
2014-03-18 16:16:53 +00:00
Sunpoet Po-Chuan Hsieh
d0e4e95b5f - Use USES=libtool
- Strip shared library in post-install: phase
- Bump PORTREVISION for package change
2014-03-18 16:16:49 +00:00
Emanuel Haupt
1df502b5ef Fix @@${MKDIR} -> @${MKDIR}
Notified by:	antoine (via irc)
2014-03-18 14:41:08 +00:00
Emanuel Haupt
50418f3429 Quiesce mkdir 2014-03-18 14:26:57 +00:00
Pawel Pekala
47ea202739 - Convert to USES=tar
- Use precise BSD licenses
2014-03-17 16:56:15 +00:00
Steve Wills
c2fb6a937f - Update to 0.6.2
- Fixes build on 11-CURRENT

PR:		ports/186611
Submitted by:	rakuco
Approved by:	maintainer timeout (nivit, >4 weeks)
2014-03-17 15:54:22 +00:00
Sunpoet Po-Chuan Hsieh
96d7569412 - Fix USE_PYTHON 2014-03-15 17:43:25 +00:00
Emanuel Haupt
7aef37f62e Convert USE_BZIP2=yes to USES=tar:bzip2 2014-03-14 10:15:52 +00:00
Christian Weisgerber
62ef31db61 USE_BZIP2 -> USES+=tar:bzip2
USE_XZ    -> USES+=tar:xz
2014-03-13 16:11:14 +00:00
Renato Botelho
ed70ca358f . Update to 4.14
. Replace USE_XZ=yes by USES=tar:xz
2014-03-13 12:43:19 +00:00
Renato Botelho
6d38c115f4 Remove uneeded keywords: line from pkg-descr 2014-03-13 12:27:54 +00:00
Danilo Egea Gondolfo
c917a16940 - Update from 1.18 to 1.19
- Add LICENSE
2014-03-12 13:00:43 +00:00