1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-26 00:55:14 +00:00
Commit Graph

52 Commits

Author SHA1 Message Date
Tijl Coosemans
c958a48581 Remove two libtool fixes from Mk/Uses/libtool.mk. They don't always work
when an older version of a package is installed.  This is the case when an
executable links with installed libraries and with uninstalled libraries
that link with other uninstalled libraries.  For each of the directly
linked libraries the executable will have an rpath (/usr/local/lib for the
installed libraries and a path under WRKDIR for each of the uninstalled
libraries), but not for the indirect libraries.  Both ld(1) and rtld(1)
search the rpath of the executable first before any rpath of libraries, so
the indirectly linked libraries will be found in /usr/local/lib if they are
installed instead of in WRKDIR.

With this commit executables will overlink with uninstalled indirect
libraries again so their location is added to the rpath of the executable.

This partially reverts r358784.

PR:		191611
Approved by:	portmgr (bapt)
2014-07-23 10:28:03 +00:00
Antoine Brodin
8a4dc3ad8b Deprecate GGI ports, they are unmaintained upstream since several years
and the project website is now squatted.
2014-07-21 19:52:43 +00:00
Baptiste Daroussin
06af334ab9 Fix non default LIB_DEPENDS
With hat:	portmgr
2014-07-16 08:05:11 +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
Antoine Brodin
951d48382a - Use libtool and tar:bzip2
- Strip binaries
- Use sample keyword
2014-04-26 21:16:13 +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
Antoine Brodin
025ce29c04 Convert to STAGEDIR 2013-10-04 20:51:45 +00:00
Baptiste Daroussin
eb08c5441c Add NO_STAGE all over the place in preparation for the staging support (cat: graphics) 2013-09-20 18:35:44 +00:00
Antoine Brodin
1862a9f852 Cleanup the GGI ports:
- trim header
- remove a dead master site
- update my email address
- remove article in COMMENT
- add LICENSE
- use OPTIONS(NG)
- do not specify lib version in LIB_DEPENDS
- libvgl can be used on amd64 since ~3 years (libgii and libggi)
- libgii can use xxf86dga extension

PR:		ports/177332
Approved by:	bapt
2013-03-24 12:12:31 +00:00
Doug Barton
989772c9ac The vast majority of pkg-descr files had the following format when they
had both lines:

Author: ...
WWW: ....

So standardize on that, and move them to the end of the file when necessary.

Also fix some more whitespace, and remove more "signature tags" of varying
forms, like -- name, etc.

s/AUTHOR/Author/

A few other various formatting issues
2011-10-24 09:11:38 +00:00
Dmitry Marakasov
6f6fbe4bdf - Add LDFLAGS to CONFIGURE_ENV and MAKE_ENV (as it was done with LDFLAGS)
- Fix all ports that add {CPP,LD}FLAGS to *_ENV to modify flags instead

PR:		157936
Submitted by:	myself
Exp-runs by:	pav
Approved by:	pav
2011-09-23 22:26:39 +00:00
Olli Hauer
30f9161773 -remove MD5 2011-07-03 14:12:22 +00:00
Pav Lucistnik
e3aede5bc2 - Chase direct-fb update
Submitted by:	Anatoly Borodin <anatoly.borodin@gmail.com>
2010-06-03 12:35:42 +00:00
Dmitry Marakasov
6b5fb87219 - Switch SourceForge ports to the new File Release System: categories starting with G 2009-08-22 00:23:13 +00:00
Martin Wilke
f2566cd510 - Add missing xxf86vm to USE_XORG
Submitted by:	Antoine Brodin <antoine.brodin@laposte.net> (maintainer via privat mail)
2008-03-27 20:07:35 +00:00
Martin Wilke
270a2cb06b - Remove USE_XLIB/USE_X_PREFIX/USE_XPM in favor of USE_XORG
- Bump PORTREVISION

Approved by:	portmgr (xorg cleanup)
2008-03-24 13:03:55 +00:00
Martin Wilke
c4c8f4be45 - Remove USE_XLIB/USE_X_PREFIX/USE_XPM in favor of USE_XORG
- Bump PORTREVISION

Approved by:	portmgr (xorg cleanup)
2008-03-23 11:11:33 +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
Rong-En Fan
283399bafa - Update to 2.2.2
PR:		ports/108457
Submitted by:	Antoine Brodin <antoine.brodin at laposte.net> (maintainer)
2007-01-28 08:30:29 +00:00
Alejandro Pulver
ee6fb9a5e2 - Fix building with GCC 4.1 [1].
- Replace INSTALLS_SHLIB with USE_LDCONFIG [2].

PR:		ports/104648
Submitted by:	Antoine Brodin <antoine.brodin@laposte.net> (maintainer) [1]
Reworked by:	alepulver (myself) [2]
2006-11-05 17:10:50 +00:00
Pav Lucistnik
ced8782eb4 - Update to 2.2.1
PR:		ports/94617
Submitted by:	Antoine Brodin <antoine.brodin@laposte.net> (maintainer)
2006-03-18 13:46:20 +00:00
Ade Lovett
8503536d38 Conversion to a single libtool environment.
Approved by:	portmgr (kris)
2006-02-23 10:40:44 +00:00
Marcus Alves Grando
1bd23c6664 - Fix when WITHOUT_X11 is set
- Bump PORTREVISION

PR:		92274
Submitted by:	Antoine Brodin <antoine.brodin@laposte.net> (maintainer)
2006-01-24 18:32:15 +00:00
Jean-Yves Lefort
77cd0e150a - Update to 2.2.0 [1]
- Unsilence post-install and use ${INSTALL_DATA} rather than ${CP}

[1]:
PR:		ports/90285
Submitted by:	maintainer
2005-12-12 19:23:17 +00:00
Sergey Matveychuk
618ef898cc - Add SHA256
ggiterm port:
- Don't use gmake
- Install ggitem.termcap and add message about it
- Utilize DATADIR
- Bump PORTREVISION

PR:             ports/89280
Submitted by:   Antoine Brodin (maintainer)
2005-11-19 19:48:05 +00:00
Ade Lovett
54a0b86543 Mass-conversion to the USE_AUTOTOOLS New World Order. The code present
in bsd.autotools.mk essentially makes this a no-op given that all the
old variables set a USE_AUTOTOOLS_COMPAT variable, which is parsed in
exactly the same way as USE_AUTOTOOLS itself.

Moreover, USE_AUTOTOOLS has already been extensively tested by the GNOME
team -- all GNOME 2.12.x ports use it.

Preliminary documentation can be found at:
	http://people.FreeBSD.org/~ade/autotools.txt

which is in the process of being SGMLized before introduction into the
Porters Handbook.

Light blue touch-paper.  Run.
2005-11-15 06:52:12 +00:00
Renato Botelho
5bf48b7469 - Update to 2.1.2
PR:		86504
Submitted by:	maintainer
2005-09-23 16:04:22 +00:00
Jean-Yves Lefort
0783d1f230 - Update to 2.1.1
- Give maintainership to antoine.brodin@laposte.net
- Fix build on 4.X
- Use USE_LIBTOOL_VER=15

PR:		ports/80030
Submitted by:	Antoine Brodin <antoine.brodin@laposte.net>
Approved by:	adamw (mentor)
2005-04-18 21:21:13 +00:00
Pav Lucistnik
b0216b7f8b - Update to 2.1.0
PR:		ports/74744
Submitted by:	Antoine Brodin <antoine.brodin@laposte.net>
2004-12-06 21:44:18 +00:00
Pav Lucistnik
974e67983d - Update to 2.0.5
PR:		ports/67635
Submitted by:	nsouch
2004-06-07 22:43:08 +00:00
Trevor Johnson
33fdc4cde2 SIZEify. 2004-03-17 18:29:46 +00:00
Dirk Meyer
2c2523234f - Fix package for non-i386 2004-03-05 13:08:09 +00:00
Dirk Meyer
3f3a57a2a7 - fix package 2004-03-02 21:53:16 +00:00
Pav Lucistnik
853bac4c1d - Fix MLINKS
PR:		ports/62831
Submitted by:	Matthew Seaman <m.seaman@infracaninophile.co.uk>
2004-02-15 10:01:23 +00:00
Mark Linimon
b051a314fe Update to 2.0.4 and fix plist. This encompasses nearly 9 months'
worth of changes, some of which are extensive; see ChangeLog
for details.  Note that the patchfiles are now incorporated into
the upstream version.

PR:		ports/62352
Submitted by:	Andrew Kenneth Milton <akm@theinternet.com.au>
2004-02-08 19:07:32 +00:00
Trevor Johnson
0c881ba59c SIZEify. 2004-01-29 07:24:56 +00:00
Pav Lucistnik
db68adcd1a - Enable xf86dga
- Get rid of libtool archives
- Bump portrevision

PR:		ports/52380
Submitted by:	Pedro F. Giffuni <giffunip@yahoo.com>
2003-12-09 00:01:39 +00:00
Max Khon
3193f68d93 Fix build on -CURRENT. 2003-10-28 00:54:54 +00:00
Norikatsu Shigemura
6c8ebd92ff Although this port was updated 2.0b3 to 2.0.3, version 2.0b3 is
greater than 2.0.3.  So bump PORTEPOCH.
2003-05-19 06:41:56 +00:00
Pete Fritchman
e59c91226b - add sourceforge as a master site
- add support for KGI4BSD

While I'm here, spaces -> ^I.

PR:		52091
Submitted by:	Pedro F. Giffuni <giffunip@yahoo.com>
2003-05-16 04:14:11 +00:00
Maho Nakata
12bb06ce73 Drop maintainership to ports@FreeBSD.org
Submitted by:	"Pedro F. Giffuni" <giffunip@yahoo.com>
2003-05-06 13:53:33 +00:00
Yen-Ming Lee
af5fff43b1 update graphics/libggi from 2.0b3 to 2.0.3
transfer maintainership

PR:		51797
Submitted by:	Matthew West <mwest@uct.ac.za>
2003-05-05 20:04:26 +00:00
Akinori MUSHA
55850b547b De-pkg-comment. 2003-02-21 12:17:17 +00:00
Norikatsu Shigemura
28207337d0 Fix pkg-plist. file.{la,so} are not built because the mmap(2) check
in configure fails.

Submitted by:		bento
Approved by:		knu (mentor)
2002-09-23 17:51:15 +00:00
Jun Kuriyama
6f53c11721 Add hidden dependency.
Submitted by:	Norikatsu Shigemura <nork@ninth-nine.com>
PR:		ports/35005
2002-02-20 10:56:03 +00:00
Alexander Langer
b572e1a615 Remove non-present files.
Submitted by:	bento
2001-08-23 16:19:42 +00:00
Jimmy Olgeni
78868a31f1 Add some files to pkg-plist, and add etc/ files management. 2001-06-17 17:21:56 +00:00
James E. Housley
07fbd36a99 update graphics/libggi from 2.0b2.1 to 2.0b3
fixes MLINKS

PR:		24077
Submitted by:	Matthew West <mwest@uct.ac.za> MAINTAINER
2001-05-07 11:57:28 +00:00
Satoshi Asami
ffb21b5654 Rename INSTALLS_SHLIBS to INSTALLS_SHLIB. (There was a typo in the
previous commit message to bsd.port.mk, which said INSTALL_SHLIBS.  Boo.)

Line up the rhs of variable assignments nicely.  Remove a couple of extra
whitespaces while I'm here.

Suggested by:	 sobomax
2000-06-16 21:52:40 +00:00
Maxim Sobolev
dc1177a9a5 Fourth round of INSTALLS_SHLIBS conversion. 2000-06-16 08:48:22 +00:00