Commit graph

762 commits

Author SHA1 Message Date
Erwin Lansing
0c1a6fdcba Mark BROKEN: checksum mismatch 2008-02-28 20:12:54 +00:00
Mark Linimon
ed9f227942 Mark as broken on sparc64: does not compile. 2008-02-01 12:43:44 +00:00
Erwin Lansing
46206741d5 Mark BROKEN on 8.0: does not configure 2008-01-29 21:31:52 +00:00
Mario Sergio Fujikawa Ferreira
c74f714244 o Remove BROKEN, it actually does not build due to the lack of a
header file include required for __FreeBSD_version >= 700049:
  patch uppc.c accordingly
o Fix uppcsetup: kldxref(8) module directory when it is installed
o Bump PORTREVSION due to uppcsetup script change
2008-01-02 21:29:28 +00:00
Mario Sergio Fujikawa Ferreira
18b02469e6 Update MASTER_SITES 2008-01-02 01:32:44 +00:00
Boris Samorodov
479eb783b2 Unbreak the port for gcc-4.2 [1]
FYI: differences with the original patch from the PR:
. use post-patch stage (instead of post-configure stage) to
  conditionally apply the needed patches;
. gcc patch is splitted into per-file-patches.

PR:		ports/117279  [1]
Submitted by:	Alexandre "Sunny" Kovalenko <alex.kovalenko at verizon.net>  [1]
Approved by:	portmgr (erwin)
2007-11-07 21:45:30 +00:00
Joe Marcus Clarke
4acc6fb2a4 Presenting GNOME 2.20.1 and all related works for FreeBSD. The official
GNOME 2.20 release notes can be found at
http://www.gnome.org/start/2.20/notes/en/ .  Beyond that, this update
includes the new GIMP 2.4 (courtesy of ahze).

The GNOME 2.20 update also includes a huge change in the FreeBSD GNOME
hierarchy.  We are now using the more standard DATADIR of ${PREFIX}/share
rather than ${PREFIX}/share/gnome. The result is that fewer patches and
hacks are needed to port GNOME components to FreeBSD.  This will mean some
user changes may be required, so be sure to read /usr/ports/UPDATING for
more details.

This release and the things we accomplished in it would not have been
possible without mezz's crazy idea to collapse DATADIR, and his persistence
to make it happen successfully.  Ahze and pav also deserve thanks for
their work on porting modules and testing the whole ball of wax on
pointyhat (respectively).

The FreeBSD GNOME team would also like to thank our various testers and
contributors:

Yasuda Keisuke
Frank Jahnke
Pawel Worach
Brian Gruber
Franz Klammer
Yuri Pankov
Nick Barkas
Cristian KLEIN
Tony Maher
Scot Hetzel
Martin Matuska (mm)
Benoit Dejean
Martin Wilke (miwi)
(And anyone else I may have missed)

PRs fixed in this release:

111272, 113470, 115995, 116338
2007-10-24 23:37:25 +00:00
Ade Lovett
dbd39ca660 Migration from bison 1.x to 2.x
PR:		117086
Tested by:	-exp runs
2007-10-17 10:13:01 +00:00
Edwin Groothuis
4c97fac781 Replace all INSTALL_DATA/INSTALL_SCRIPT and INSTALL_PROGRAM/STRIP=
hacks to install kernel loadable modules correctly on amd64 platforms
with the new INSTALL_KLD command.

All PORTREVISIONS have been bumped to show when the new version of
installing became available.
2007-10-07 02:56:19 +00:00
Edwin Groothuis
52d564a552 Remove always-false/true conditions based on OSVERSION 500000 2007-10-04 02:24:29 +00:00
Mark Linimon
d65230d888 Mark broken on gcc4.2. 2007-10-01 06:06:17 +00:00
Mark Linimon
1b51a3243f Mark as broken with gcc4.2. 2007-10-01 06:04:56 +00:00
Mark Linimon
48420a5ebd Switch autoconf dependencies from 2.53 or 2.59 to 2.61.
PR:		ports/116639
Submitted by:	aDe
2007-09-30 04:47:36 +00:00
Mark Linimon
cd4b80489b Dominic is a new dad, and will be too busy for a while to work on ports.
Congratulations :-)
2007-09-24 07:38:42 +00:00
Edwin Groothuis
e141b3c45d uppc kmod installation problem on amd64
Please see a discussion thread starting with the following message:
	http://lists.freebsd.org/pipermail/freebsd-ports/2007-August/042999.html

	It seems that installation action of uppc-kmod port (do-install target)
	uses incorrect tool to put uppc.ko in its destination. It seems that the
	tool (${INSTALL_PROGRAM}) corrupts the .ko, so that it is not a valid
	kernel module anymore. If I put uppc.ko into /boot/kernel and do kldxref
	then kldxref complains about missing symbol table in uppc.ko and dumps
	core. If the module is loaded then it crashes my system.

	On the other hand, if I simply copy uppc.ko from work directory then it
	works ok.

	Essentially this is the same issue as described in the following PR only
	with another port:
	http://www.freebsd.org/cgi/query-pr.cgi?pr=100703

	Kostik Belousov confirms the issue with stripping kernel modules on amd64:
	You cannot strip kernel modules on amd64, because modules are elf object
	files, as opposed to shared objects on all other archs. Strip strips the
	object file symbol table, that is used by the static linker and in-kernel
	linker on amd64. On the other hand, shared object contains also a dynamic
	symbol table, that is not stripped and used by in-kernel linker on !amd64.

PR:		ports/115517
Submitted by:	Andriy Gapon <avg@icyb.net.ua>
2007-09-08 12:31:14 +00:00
Gabor Kovesdan
42542fb076 - Remove the DESTDIR modifications from individual ports as we have a new,
fully chrooted DESTDIR, which does not need such any more.

Sponsored by:	Google Summer of Code 2007
Approved by:	portmgr (pav)
2007-08-04 11:41:30 +00:00
Rong-En Fan
f935a609c5 - Set --mandir and --infodir in CONFIGURE_ARGS if the configure script
supports them.  This is determined by running ``configure --help'' in
  do-configure target and set the shell variable _LATE_CONFIGURE_ARGS
  which is then passed to CONFIGURE_ARGS.
- Remove --mandir and --infodir in ports' Makefile where applicable
  Few ports use REINPLACE_CMD to achieve the same effect, remove them too.
- Correct some manual pages location from PREFIX/man to MANPREFIX/man
- Define INFO_PATH where necessary
- Document that .info files are installed in a subdirectory relative to
  PREFIX/INFO_PATH and slightly change add-plist-info to use INFO_PATH and
  subdirectory detection.

PR:		ports/111470
Approved by:	portmgr
Discussed with:	stas (Mk/*), gerald (info related stuffs)
Tested by:	pointyhat exp run
2007-07-23 09:36:51 +00:00
Martin Wilke
b134b9564a - Update to 0.12.2
PR:		114521
Submitted by:	Alex Samorukov <samm@os2.kiev.ua> (maintainer)
2007-07-12 19:58:01 +00:00
Pav Lucistnik
9a0d0575be - Mark these unmaintained ports BROKEN on HEAD: do not compile with GCC 4.2 2007-07-02 19:01:04 +00:00
Marcelo Araujo
d2101f2dd8 - Change my mail address to araujo@.
Approved by:	stas (mentor)
2007-06-29 16:29:19 +00:00
Mark Linimon
8c91d898a6 Populate the 'kld' virtual category, for ports that install Kernel Loadable
modules.

Hat:		portmgr
2007-06-29 09:16:42 +00:00
Volker Stolz
f2bdcc8a3e Unbreak by adding libsynce to LDFLAGS. Configure doesn't use pkg-config
to discover the necessary flags and neither does librapi have an explicit
dependency on libsynce.
2007-06-18 02:27:09 +00:00
Andrey Slusar
4f7ee9fa49 Try to correct works when compiled with gcc4
Reported by:	Slawa Olhovchenkov
2007-06-10 08:09:25 +00:00
Pav Lucistnik
9cb65ef132 - Unbreak on amd64
PR:		ports/110525
Submitted by:	Eric P. Scott <eps+pbug0703@ana.com>
Approved by:	maintainer timeout (ijliao; 2 months)
2007-06-06 13:31:05 +00:00
Pav Lucistnik
84773abd77 - Update to 1.4.4
PR:		ports/113282
Submitted by:	bf <bf2006a@yahoo.com>
2007-06-06 13:18:25 +00:00
Florent Thoumie
d4f0d0048a - Welcome X.org 7.2 \o/.
- Set X11BASE to ${LOCALBASE} for recent ${OSVERSION}.
- Bump PORTREVISION for ports intalling files in ${X11BASE}.
2007-05-19 20:36:56 +00:00
Kris Kennaway
b8b82e34ea BROKEN on amd64: Does not build (needs -fPIC) 2007-04-21 17:35:10 +00:00
Edwin Groothuis
e4b91ff0f7 fix breakage due to removal of bsd.port.pre.mk
Pointy hat to: gabor
Noticed by: dvl@
2007-04-19 22:33:19 +00:00
Gabor Kovesdan
c7611291ca - Remove FreeBSD 4.X support from unmaintained ports in categories starting
with letter n-p
2007-04-19 21:20:48 +00:00
Kris Kennaway
ed82c987bd Retire OPSYS (well-intentioned, but there was no way this port was
cross-BSD compatible anyway), and also retire <=4.x support while I'm
here
2007-04-15 19:53:22 +00:00
Martin Wilke
12f5d21f63 2007-03-27 emulators/kmamerun: Project was abandoned 4 years ago and expects an old version of XMAME, please use other frontends instead (like gxmame)
2007-03-28 graphics/hobbes-icons-xpm: Archaic port
2007-04-10 japanese/firefox-ja: Incomplete pkg-plist
2007-04-10 japanese/lookup-xemacs: Does not install
2007-04-10 lang/linux-hla: Does not compile
2007-04-10 mail/vmailmgr: Incomplete pkg-plist
2007-04-10 multimedia/qvamps: Touches filesystem prior to 'make install'
2007-03-10 net-mgmt/sting: Broken on all supported versions of FreeBSD
2007-04-10 net-mgmt/tas: Incomplete pkg-plist
2007-04-10 net-p2p/verlihub-plugins: Does not configure, it needs at least verlihub 1.0
2007-04-10 news/inn-stable: Fails to patch
2007-04-10 palm/malsync: Does not build with new pilot-link
2007-04-10 russian/elm.language: Leaves behind files on deinstall
2007-04-10 russian/pine.language: Leaves behind config file on deinstall
2007-04-01 science/py-scipy03: Replaced by py-scipy
2007-04-10 security/php4-cryptopp: Does not compile
2007-04-10 17:40:51 +00:00
Gabor Kovesdan
e7babf9153 - Remove old Perl support from unmaintained ports in categories starting
with letter o-z
2007-04-06 06:48:45 +00:00
Stefan Walter
77ab0bf673 Add support for WITHOUT_NLS.
PR:		110538
Submitted by:	Helge Oldach <ports-coldsync-mar07@oldach.net>
Approved by:	maintainer
2007-04-04 09:33:44 +00:00
Pav Lucistnik
2de8095fb1 - Fix after objformat removal
Reported by:	pointyhat
2007-03-29 12:53:22 +00:00
Pav Lucistnik
f4b52dc69f - Fix after objformat removal 2007-03-23 22:02:30 +00:00
Pav Lucistnik
1b87c9b7cc - Desupport 4.X 2007-03-23 22:00:42 +00:00
Pav Lucistnik
9c29057118 - Builds fine on my amd64, so give this a shot 2007-03-23 22:00:00 +00:00
Ying-Chieh Liao
3da03c21ab unbreak
PR:		109647
Submitted by:	"Eric P. Scott" <eps+pbug0702@ana.com>
2007-03-01 00:56:46 +00:00
Mark Linimon
db6e45e0eb mt@primats.org.ua no longer has access to FreeBSD machines, and has
requested these ports be returned to the pool.  We appreciate the help
in the past.

Hat:		portmgr
2007-02-27 20:20:06 +00:00
Andrey Slusar
11deffe6b9 Remove not needed dccm from RUN_DEPENDS. Internal vdccm is generalization of
dccm.

Reported by:	pointyhat via kris, pav
2007-02-12 20:27:09 +00:00
Kris Kennaway
de78dd974b Schedule these broken ports for removal on 2007-04-10 if they are still
broken at that time and no fix has been submitted.
2007-02-11 01:23:35 +00:00
Kris Kennaway
3576a30531 BROKEN: Configure fails 2007-02-10 22:54:08 +00:00
Kris Kennaway
4c46f82fd2 BROKEN: Does not build 2007-02-04 02:30:56 +00:00
Kris Kennaway
ae994c8ea8 Use libtool port instead of included version to avoid objformat a.out botch 2007-02-01 02:42:05 +00:00
Andrey Slusar
480885b1d1 Add Samsung SCH-I730 support. 2007-01-30 20:09:12 +00:00
Andrey Slusar
4f58a69b02 Add pkg-config to build depends. 2007-01-27 17:45:43 +00:00
Andrey Slusar
08fafff428 - Add needed for build depends(devel/pkg-config).
- Fix plist

Reported by:	pointyhat via kris
2007-01-27 17:37:06 +00:00
Andrey Slusar
cca779a469 Update to 0.9.3 2007-01-26 18:50:57 +00:00
Andrey Slusar
4724b4194b Update to 0.9.3 2007-01-26 00:46:00 +00:00
Andrey Slusar
134fc3cad5 Update to 0.9.3 2007-01-25 23:50:29 +00:00