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)
This commit is contained in:
Tijl Coosemans 2014-04-23 13:25:16 +00:00
parent 5c818b158c
commit aad09bc5e2
462 changed files with 727 additions and 722 deletions

12
CHANGES
View File

@ -10,6 +10,18 @@ in the release notes and/or placed into UPDATING.
All ports committers are allowed to commit to this file. All ports committers are allowed to commit to this file.
20140423:
AUTHOR: tijl@FreeBSD.org
The semantics of USES=libtool have changed. It now deletes .la libraries
from the staging area to reduce overlinking. USES=libtool:keepla can be
used in case they need to be kept. This form still modifies .la libraries
to remove references to other libraries to reduce overlinking.
Note that .la libraries have to kept around as long as there are .la
libraries from other ports that refer to them. Those ports need to use
some form of USES=libtool first such that those references are removed.
20140419: 20140419:
AUTHOR: bdrewery@FreeBSD.org AUTHOR: bdrewery@FreeBSD.org

View File

@ -3,7 +3,13 @@
# Bring libtool scripts up to date. # Bring libtool scripts up to date.
# #
# Feature: libtool # Feature: libtool
# Usage: USES=libtool # Usage: USES=libtool or USES=libtool:args
# Valid args: keepla Normally libtool libraries (*.la) are not installed.
# With this option they are. This is needed as long
# as there are dependent ports with .la libraries that
# refer to .la libraries in this port. As soon as all
# those dependent ports have some form of USES=libtool
# keepla can be removed.
# #
# MAINTAINER: autotools@FreeBSD.org # MAINTAINER: autotools@FreeBSD.org
@ -54,4 +60,13 @@ patch-libtool:
/versuffix=/s/=.*/="$$major.$$age.$$revision"/; }' /versuffix=/s/=.*/="$$major.$$age.$$revision"/; }'
.endif .endif
patch-lafiles:
.if ${libtool_ARGS} == keepla || ${libtool_ARGS} == oldver
@${FIND} ${STAGEDIR} -type f -name '*.la' | \
${XARGS} ${SED} -i '' -e "/dependency_libs=/s/=.*/=''/"
.else
@${FIND} ${STAGEDIR} -type f -name '*.la' | \
${XARGS} ${GREP} -l 'libtool library' | ${XARGS} ${RM}
.endif
.endif .endif

View File

@ -6530,22 +6530,26 @@ _STAGE_DEP= build
_STAGE_SEQ= stage-message stage-dir run-depends lib-depends apply-slist pre-install generate-plist \ _STAGE_SEQ= stage-message stage-dir run-depends lib-depends apply-slist pre-install generate-plist \
pre-su-install pre-su-install
.if defined(NEED_ROOT) .if defined(NEED_ROOT)
_STAGE_SUSEQ= create-users-groups do-install desktop-file-post-install kmod-post-install \ _STAGE_SUSEQ= create-users-groups do-install desktop-file-post-install \
shared-mime-post-install webplugin-post-install \ kmod-post-install shared-mime-post-install \
post-install post-install-script move-uniquefiles post-stage compress-man \ webplugin-post-install post-install post-install-script \
move-uniquefiles post-stage compress-man patch-lafiles \
install-rc-script install-ldconfig-file install-license \ install-rc-script install-ldconfig-file install-license \
install-desktop-entries add-plist-info add-plist-docs add-plist-examples \ install-desktop-entries add-plist-info add-plist-docs \
add-plist-data add-plist-post move-uniquefiles-plist fix-plist-sequence add-plist-examples add-plist-data add-plist-post \
move-uniquefiles-plist fix-plist-sequence
.if defined(DEVELOPER) .if defined(DEVELOPER)
_STAGE_SUSEQ+= stage-qa _STAGE_SUSEQ+= stage-qa
.endif .endif
.else .else
_STAGE_SEQ+= create-users-groups do-install desktop-file-post-install kmod-post-install \ _STAGE_SEQ+= create-users-groups do-install desktop-file-post-install \
shared-mime-post-install webplugin-post-install post-install post-install-script \ kmod-post-install shared-mime-post-install \
move-uniquefiles post-stage compress-man install-rc-script install-ldconfig-file \ webplugin-post-install post-install post-install-script \
install-license install-desktop-entries add-plist-info add-plist-docs \ move-uniquefiles post-stage compress-man patch-lafiles \
add-plist-examples add-plist-data add-plist-post move-uniquefiles-plist \ install-rc-script install-ldconfig-file install-license \
fix-plist-sequence install-desktop-entries add-plist-info add-plist-docs \
add-plist-examples add-plist-data add-plist-post \
move-uniquefiles-plist fix-plist-sequence
.if defined(DEVELOPER) .if defined(DEVELOPER)
_STAGE_SEQ+= stage-qa _STAGE_SEQ+= stage-qa
.endif .endif

View File

@ -140,7 +140,7 @@ post-install:
.endif .endif
. if ${XORG_CAT} == "lib" . if ${XORG_CAT} == "lib"
USES+= pathfix libtool USES+= pathfix libtool:keepla
USE_LDCONFIG= yes USE_LDCONFIG= yes
CONFIGURE_ARGS+=--enable-malloc0returnsnull CONFIGURE_ARGS+=--enable-malloc0returnsnull
. endif . endif

View File

@ -3,7 +3,7 @@
PORTNAME= libcomprex PORTNAME= libcomprex
PORTVERSION= 0.3.3 PORTVERSION= 0.3.3
PORTREVISION= 9 PORTREVISION= 10
CATEGORIES= archivers CATEGORIES= archivers
MASTER_SITES= SF/gnupdate/${PORTNAME}/${PORTVERSION} MASTER_SITES= SF/gnupdate/${PORTNAME}/${PORTVERSION}
@ -16,7 +16,7 @@ OPTIONS_DEFINE= NLS
OPTIONS_SUB= yes OPTIONS_SUB= yes
INSTALL_TARGET= install-strip INSTALL_TARGET= install-strip
USES= libtool pathfix pkgconfig USES= libtool:keepla pathfix pkgconfig
USE_LDCONFIG= yes USE_LDCONFIG= yes
GNU_CONFIGURE= yes GNU_CONFIGURE= yes

View File

@ -3,7 +3,7 @@
PORTNAME= libdynamite PORTNAME= libdynamite
PORTVERSION= 0.1.1 PORTVERSION= 0.1.1
PORTREVISION= 1 PORTREVISION= 2
CATEGORIES= archivers CATEGORIES= archivers
MASTER_SITES= SF/synce/Dynamite/${PORTVERSION} MASTER_SITES= SF/synce/Dynamite/${PORTVERSION}
@ -11,7 +11,7 @@ MAINTAINER= ports@FreeBSD.org
COMMENT= Decompress data compressed with PKWARE Data Compression Library COMMENT= Decompress data compressed with PKWARE Data Compression Library
GNU_CONFIGURE= yes GNU_CONFIGURE= yes
USES= libtool pathfix USES= libtool:keepla pathfix
USE_LDCONFIG= yes USE_LDCONFIG= yes
.include <bsd.port.mk> .include <bsd.port.mk>

View File

@ -3,6 +3,7 @@
PORTNAME= liborange PORTNAME= liborange
PORTVERSION= 0.4 PORTVERSION= 0.4
PORTREVISION= 1
CATEGORIES= archivers CATEGORIES= archivers
MASTER_SITES= SF/synce/Orange/${PORTVERSION} MASTER_SITES= SF/synce/Orange/${PORTVERSION}
@ -22,7 +23,7 @@ VISE_DESC= Build with expermential VISE support
MSI_DESC= Build with expermential MSI support MSI_DESC= Build with expermential MSI support
GNU_CONFIGURE= yes GNU_CONFIGURE= yes
USES= iconv libtool pathfix pkgconfig USES= iconv libtool:keepla pathfix pkgconfig
CFLAGS+= -I${LOCALBASE}/include CFLAGS+= -I${LOCALBASE}/include
LDFLAGS+= -L${LOCALBASE}/lib LDFLAGS+= -L${LOCALBASE}/lib
USE_LDCONFIG= yes USE_LDCONFIG= yes

View File

@ -3,7 +3,7 @@
PORTNAME= librtfcomp PORTNAME= librtfcomp
PORTVERSION= 1.3 PORTVERSION= 1.3
PORTREVISION= 1 PORTREVISION= 2
CATEGORIES= archivers CATEGORIES= archivers
MASTER_SITES= SF/synce/SynCE/${PORTNAME} MASTER_SITES= SF/synce/SynCE/${PORTNAME}
@ -13,8 +13,8 @@ COMMENT?= Library for handling compressed RTF documents
LICENSE= LGPL21 LICENSE= LGPL21
GNU_CONFIGURE= yes GNU_CONFIGURE= yes
USES= libtool:keepla
USE_LDCONFIG= yes USE_LDCONFIG= yes
USES= libtool
SLAVEDIRS= archivers/py-librtfcomp SLAVEDIRS= archivers/py-librtfcomp

View File

@ -3,7 +3,7 @@
PORTNAME= lzo2 PORTNAME= lzo2
PORTVERSION= 2.06 PORTVERSION= 2.06
PORTREVISION= 2 PORTREVISION= 3
CATEGORIES= archivers devel CATEGORIES= archivers devel
MASTER_SITES= http://www.oberhumer.com/opensource/lzo/download/ \ MASTER_SITES= http://www.oberhumer.com/opensource/lzo/download/ \
LOCAL/mandree LOCAL/mandree
@ -14,7 +14,7 @@ COMMENT= Portable speedy, lossless data compression library
LICENSE= GPLv2 LICENSE= GPLv2
USES= libtool USES= libtool:keepla
GNU_CONFIGURE= yes GNU_CONFIGURE= yes
CONFIGURE_ARGS= --enable-shared --docdir=${DOCSDIR} CONFIGURE_ARGS= --enable-shared --docdir=${DOCSDIR}
USE_LDCONFIG= yes USE_LDCONFIG= yes

View File

@ -3,7 +3,7 @@
PORTNAME= ucl PORTNAME= ucl
PORTVERSION= 1.03 PORTVERSION= 1.03
PORTREVISION= 2 PORTREVISION= 3
CATEGORIES= archivers devel CATEGORIES= archivers devel
MASTER_SITES= http://www.oberhumer.com/opensource/ucl/download/ MASTER_SITES= http://www.oberhumer.com/opensource/ucl/download/
@ -14,7 +14,7 @@ LICENSE= GPLv2
OPTIONS_DEFINE= DOCS OPTIONS_DEFINE= DOCS
USES= libtool USES= libtool:keepla
USE_LDCONFIG= yes USE_LDCONFIG= yes
GNU_CONFIGURE= yes GNU_CONFIGURE= yes
CONFIGURE_ARGS= --enable-shared CONFIGURE_ARGS= --enable-shared

View File

@ -3,7 +3,7 @@
PORTNAME= unshield PORTNAME= unshield
PORTVERSION= 0.6 PORTVERSION= 0.6
PORTREVISION= 2 PORTREVISION= 3
CATEGORIES= archivers CATEGORIES= archivers
MASTER_SITES= SF/synce/Unshield/${PORTVERSION} MASTER_SITES= SF/synce/Unshield/${PORTVERSION}
@ -14,7 +14,7 @@ LICENSE= MIT
GNU_CONFIGURE= yes GNU_CONFIGURE= yes
USE_LDCONFIG= yes USE_LDCONFIG= yes
USES= libtool pathfix USES= libtool:keepla pathfix
post-build: post-build:
@${STRIP_CMD} ${WRKSRC}/lib/.libs/libunshield.so.0.0.0 @${STRIP_CMD} ${WRKSRC}/lib/.libs/libunshield.so.0.0.0

View File

@ -1,6 +1,6 @@
# $FreeBSD$ # $FreeBSD$
PORTREVISION= 0 PORTREVISION= 1
CATEGORIES= audio CATEGORIES= audio
COMMENT= Gstreamer ATSC A/52 stream aka AC-3 (dvd audio) plugin COMMENT= Gstreamer ATSC A/52 stream aka AC-3 (dvd audio) plugin

View File

@ -1,6 +1,6 @@
# $FreeBSD$ # $FreeBSD$
PORTREVISION= 0 PORTREVISION= 1
CATEGORIES= audio CATEGORIES= audio
COMMENT= Gstreamer OpenCore based Adaptive Multi-Rate Narrow-Band plugin COMMENT= Gstreamer OpenCore based Adaptive Multi-Rate Narrow-Band plugin

View File

@ -1,6 +1,6 @@
# $FreeBSD$ # $FreeBSD$
PORTREVISION= 0 PORTREVISION= 1
CATEGORIES= audio CATEGORIES= audio
PKGNAMESUFFIX= 1-plugins-amrwbdec PKGNAMESUFFIX= 1-plugins-amrwbdec

View File

@ -1,6 +1,6 @@
# $FreeBSD$ # $FreeBSD$
PORTREVISION= 0 PORTREVISION= 1
CATEGORIES= audio CATEGORIES= audio
COMMENT= Gstreamer CDDA extraction (aka audio ripping) plugin COMMENT= Gstreamer CDDA extraction (aka audio ripping) plugin

View File

@ -1,6 +1,6 @@
# $FreeBSD$ # $FreeBSD$
PORTREVISION= 0 PORTREVISION= 1
CATEGORIES= audio CATEGORIES= audio
COMMENT= Gstreamer MPEG-2 and MPEG-4 AAC encoder plugin COMMENT= Gstreamer MPEG-2 and MPEG-4 AAC encoder plugin

View File

@ -1,6 +1,6 @@
# $FreeBSD$ # $FreeBSD$
PORTREVISION= 0 PORTREVISION= 1
CATEGORIES= audio CATEGORIES= audio
COMMENT= Gstreamer MPEG-2 and MPEG-4 AAC decoder plugin COMMENT= Gstreamer MPEG-2 and MPEG-4 AAC decoder plugin

View File

@ -1,6 +1,6 @@
# $FreeBSD$ # $FreeBSD$
PORTREVISION= 0 PORTREVISION= 1
CATEGORIES= audio CATEGORIES= audio
COMMENT= Gstreamer free lossless audio encoder/decoder plugin COMMENT= Gstreamer free lossless audio encoder/decoder plugin

View File

@ -1,6 +1,6 @@
# $FreeBSD$ # $FreeBSD$
PORTREVISION= 0 PORTREVISION= 1
CATEGORIES= audio CATEGORIES= audio
COMMENT= Gstreamer flite run-time speech synthesis engine plugin COMMENT= Gstreamer flite run-time speech synthesis engine plugin

View File

@ -1,6 +1,6 @@
# $FreeBSD$ # $FreeBSD$
PORTREVISION= 0 PORTREVISION= 1
CATEGORIES= audio CATEGORIES= audio
COMMENT= Gstreamer gme plugin COMMENT= Gstreamer gme plugin

View File

@ -1,6 +1,6 @@
# $FreeBSD$ # $FreeBSD$
PORTREVISION= 0 PORTREVISION= 1
CATEGORIES= audio CATEGORIES= audio
COMMENT= Gstreamer gsm encoding/decoding plugin COMMENT= Gstreamer gsm encoding/decoding plugin

View File

@ -1,6 +1,6 @@
# $FreeBSD$ # $FreeBSD$
PORTREVISION= 0 PORTREVISION= 1
CATEGORIES= audio CATEGORIES= audio
COMMENT= Gstreamer low-latency audio server plugin COMMENT= Gstreamer low-latency audio server plugin

View File

@ -1,6 +1,6 @@
# $FreeBSD$ # $FreeBSD$
PORTREVISION= 0 PORTREVISION= 1
CATEGORIES= audio CATEGORIES= audio
COMMENT= Gstreamer mp3 encode plugin COMMENT= Gstreamer mp3 encode plugin

View File

@ -1,6 +1,6 @@
# $FreeBSD$ # $FreeBSD$
PORTREVISION= 0 PORTREVISION= 1
CATEGORIES= audio CATEGORIES= audio
COMMENT= Gstreamer mp3 decoder plugin COMMENT= Gstreamer mp3 decoder plugin

View File

@ -1,6 +1,6 @@
# $FreeBSD$ # $FreeBSD$
PORTREVISION= 0 PORTREVISION= 1
CATEGORIES= audio CATEGORIES= audio
COMMENT= Gstreamer modplug plugin COMMENT= Gstreamer modplug plugin

View File

@ -1,6 +1,6 @@
# $FreeBSD$ # $FreeBSD$
PORTREVISION= 0 PORTREVISION= 1
CATEGORIES= audio CATEGORIES= audio
COMMENT= Gstreamer Ogg bitstream plugin COMMENT= Gstreamer Ogg bitstream plugin

View File

@ -1,6 +1,6 @@
# $FreeBSD$ # $FreeBSD$
PORTREVISION= 0 PORTREVISION= 1
CATEGORIES= audio CATEGORIES= audio
COMMENT= Gstreamer Opus audio encoder/decoder plugin COMMENT= Gstreamer Opus audio encoder/decoder plugin

View File

@ -1,6 +1,6 @@
# $FreeBSD$ # $FreeBSD$
PORTREVISION= 0 PORTREVISION= 1
CATEGORIES= audio CATEGORIES= audio
COMMENT= Gstreamer icecast plugin COMMENT= Gstreamer icecast plugin

View File

@ -1,6 +1,6 @@
# $FreeBSD$ # $FreeBSD$
PORTREVISION= 0 PORTREVISION= 1
CATEGORIES= audio CATEGORIES= audio
COMMENT= Gstreamer Commodore SID decoder plugin COMMENT= Gstreamer Commodore SID decoder plugin

View File

@ -1,6 +1,6 @@
# $FreeBSD$ # $FreeBSD$
PORTREVISION= 0 PORTREVISION= 1
CATEGORIES= audio CATEGORIES= audio
COMMENT= GStreamer soundtouch plugin COMMENT= GStreamer soundtouch plugin

View File

@ -1,6 +1,6 @@
# $FreeBSD$ # $FreeBSD$
PORTREVISION= 0 PORTREVISION= 1
CATEGORIES= audio CATEGORIES= audio
COMMENT= Gstreamer speex voice plugin COMMENT= Gstreamer speex voice plugin

View File

@ -1,6 +1,6 @@
# $FreeBSD$ # $FreeBSD$
PORTREVISION= 0 PORTREVISION= 1
CATEGORIES= audio CATEGORIES= audio
COMMENT= Gstreamer taglib plugin COMMENT= Gstreamer taglib plugin

View File

@ -1,6 +1,6 @@
# $FreeBSD$ # $FreeBSD$
PORTREVISION= 0 PORTREVISION= 1
CATEGORIES= audio CATEGORIES= audio
COMMENT= Gstreamer High-quality free MP2 encoder plugin COMMENT= Gstreamer High-quality free MP2 encoder plugin

View File

@ -1,6 +1,6 @@
# $FreeBSD$ # $FreeBSD$
PORTREVISION= 0 PORTREVISION= 1
CATEGORIES= audio CATEGORIES= audio
COMMENT= Gstreamer vorbis encoder/decoder plugin COMMENT= Gstreamer vorbis encoder/decoder plugin

View File

@ -1,6 +1,6 @@
# $FreeBSD$ # $FreeBSD$
PORTREVISION= 0 PORTREVISION= 1
CATEGORIES= audio CATEGORIES= audio
COMMENT= Gstreamer wavpack plugin COMMENT= Gstreamer wavpack plugin

View File

@ -3,7 +3,7 @@
PORTNAME= id3lib PORTNAME= id3lib
PORTVERSION= 3.8.3 PORTVERSION= 3.8.3
PORTREVISION= 6 PORTREVISION= 7
CATEGORIES= audio CATEGORIES= audio
MASTER_SITES= SF MASTER_SITES= SF
@ -11,7 +11,7 @@ MAINTAINER= kaeru@inigo-tech.com
COMMENT= Library for manipulating ID3v1/v1.1 and ID3v2 tags COMMENT= Library for manipulating ID3v1/v1.1 and ID3v2 tags
GNU_CONFIGURE= yes GNU_CONFIGURE= yes
USES= iconv libtool USES= iconv libtool:keepla
USE_LDCONFIG= yes USE_LDCONFIG= yes
CPPFLAGS+= -I${LOCALBASE}/include CPPFLAGS+= -I${LOCALBASE}/include

View File

@ -3,7 +3,7 @@
PORTNAME= libcddb PORTNAME= libcddb
PORTVERSION= 1.3.2 PORTVERSION= 1.3.2
PORTREVISION= 2 PORTREVISION= 3
CATEGORIES= audio CATEGORIES= audio
MASTER_SITES= SF MASTER_SITES= SF

View File

@ -3,7 +3,7 @@
PORTNAME= libmad PORTNAME= libmad
PORTVERSION= 0.15.1b PORTVERSION= 0.15.1b
PORTREVISION= 4 PORTREVISION= 5
CATEGORIES= audio CATEGORIES= audio
MASTER_SITES= SF/mad/${PORTNAME}/${PORTVERSION} MASTER_SITES= SF/mad/${PORTNAME}/${PORTVERSION}

View File

@ -3,6 +3,7 @@
PORTNAME= libmikmod PORTNAME= libmikmod
PORTVERSION= 3.3.6 PORTVERSION= 3.3.6
PORTREVISION= 1
CATEGORIES= audio CATEGORIES= audio
MASTER_SITES= SF/mikmod/libmikmod/${PORTVERSION}/ MASTER_SITES= SF/mikmod/libmikmod/${PORTVERSION}/
@ -11,7 +12,7 @@ COMMENT= MikMod Sound Library
LICENSE= LGPL21 LICENSE= LGPL21
USES= gmake libtool pkgconfig USES= gmake libtool:keepla pkgconfig
GNU_CONFIGURE= yes GNU_CONFIGURE= yes
CONFIGURE_ARGS= --disable-esd CONFIGURE_ARGS= --disable-esd
USE_LDCONFIG= yes USE_LDCONFIG= yes

View File

@ -3,7 +3,7 @@
PORTNAME= libsamplerate PORTNAME= libsamplerate
PORTVERSION= 0.1.8 PORTVERSION= 0.1.8
PORTREVISION= 4 PORTREVISION= 5
CATEGORIES= audio CATEGORIES= audio
MASTER_SITES= http://www.mega-nerd.com/SRC/ MASTER_SITES= http://www.mega-nerd.com/SRC/
@ -12,7 +12,7 @@ COMMENT= Secret Rabbit Code: a Sample Rate Converter for audio
LICENSE= GPLv2 LICENSE= GPLv2
USES= pathfix pkgconfig libtool:oldver USES= libtool:oldver pathfix pkgconfig
USE_LDCONFIG= yes USE_LDCONFIG= yes
GNU_CONFIGURE= yes GNU_CONFIGURE= yes

View File

@ -3,6 +3,7 @@
PORTNAME= libtremor PORTNAME= libtremor
PORTVERSION= 1.2.0.s20040213 PORTVERSION= 1.2.0.s20040213
PORTREVISION= 1
CATEGORIES= audio CATEGORIES= audio
MASTER_SITES= http://members.chello.nl/~g.mast/distfiles/ MASTER_SITES= http://members.chello.nl/~g.mast/distfiles/
DISTNAME= tremor_snapshot_${SNAP_DATE} DISTNAME= tremor_snapshot_${SNAP_DATE}
@ -13,7 +14,7 @@ COMMENT= Integer-only fully Ogg Vorbis compliant decoder library
SNAP_DATE= 02132004 SNAP_DATE= 02132004
WRKSRC= ${WRKDIR}/Tremor WRKSRC= ${WRKDIR}/Tremor
USES= libtool USES= libtool:keepla
USE_AUTOTOOLS= aclocal automake autoconf libtoolize USE_AUTOTOOLS= aclocal automake autoconf libtoolize
AUTOMAKE_ARGS= -a -c AUTOMAKE_ARGS= -a -c
LIBTOOLIZE_ARGS=-i -c LIBTOOLIZE_ARGS=-i -c

View File

@ -3,6 +3,7 @@
PORTNAME= mpg123 PORTNAME= mpg123
PORTVERSION= 1.19.0 PORTVERSION= 1.19.0
PORTREVISION= 1
CATEGORIES= audio ipv6 CATEGORIES= audio ipv6
MASTER_SITES= SF \ MASTER_SITES= SF \
http://www.mpg123.de/download/ http://www.mpg123.de/download/
@ -12,7 +13,7 @@ COMMENT= Command-line player for MPEG Layer 1, 2, and 3 audio files
LICENSE= LGPL21 LICENSE= LGPL21
USES= libtool gmake pathfix USES= gmake libtool:keepla pathfix
USE_BZIP2= yes USE_BZIP2= yes
USE_AUTOTOOLS= libltdl USE_AUTOTOOLS= libltdl
USE_LDCONFIG= yes USE_LDCONFIG= yes

View File

@ -4,6 +4,7 @@
PORTNAME= pd PORTNAME= pd
DISTVERSION= 0.45-4 DISTVERSION= 0.45-4
DISTVERSIONSUFFIX= .src DISTVERSIONSUFFIX= .src
PORTREVISION= 1
CATEGORIES= audio CATEGORIES= audio
MASTER_SITES= http://msp.ucsd.edu/Software/ MASTER_SITES= http://msp.ucsd.edu/Software/
@ -20,7 +21,7 @@ OPTIONS_DEFAULT=FFTW
WRKSRC= ${WRKDIR}/${DISTNAME:S,${DISTVERSIONSUFFIX},,} WRKSRC= ${WRKDIR}/${DISTNAME:S,${DISTVERSIONSUFFIX},,}
USES= gettext gmake libtool pkgconfig shebangfix tk:wrapper USES= gettext gmake libtool:keepla pkgconfig shebangfix tk:wrapper
SHEBANG_FILES= tcl/pkg_mkIndex.tcl SHEBANG_FILES= tcl/pkg_mkIndex.tcl
SHEBANG_LANG= tclsh SHEBANG_LANG= tclsh
tclsh_OLD_CMD= /usr/bin/tclsh tclsh_OLD_CMD= /usr/bin/tclsh

View File

@ -4,7 +4,7 @@
PORTNAME= rhythmbox PORTNAME= rhythmbox
PORTVERSION= 0.12.8 PORTVERSION= 0.12.8
PORTREVISION= 11 PORTREVISION= 12
CATEGORIES= audio gnome CATEGORIES= audio gnome
MASTER_SITES= GNOME MASTER_SITES= GNOME
DIST_SUBDIR= gnome2 DIST_SUBDIR= gnome2
@ -24,7 +24,8 @@ LIB_DEPENDS= libmusicbrainz3.so:${PORTSDIR}/audio/libmusicbrainz3 \
CONFLICTS= rhythmbox-2.[0-9]* rhythmbox-3.[0-9]* CONFLICTS= rhythmbox-2.[0-9]* rhythmbox-3.[0-9]*
USES= gettext gmake pathfix pkgconfig tar:bzip2 libtool desktop-file-utils USES= desktop-file-utils gettext gmake libtool:keepla pathfix \
pkgconfig tar:bzip2
INSTALLS_OMF= yes INSTALLS_OMF= yes
USE_GNOME= intlhack gnomeprefix gtk20 nautilus2 USE_GNOME= intlhack gnomeprefix gtk20 nautilus2
WANT_GNOME= yes WANT_GNOME= yes

View File

@ -3,7 +3,7 @@
PORTNAME= speex PORTNAME= speex
DISTVERSION= 1.2rc1 DISTVERSION= 1.2rc1
PORTREVISION= 6 PORTREVISION= 7
PORTEPOCH= 1 PORTEPOCH= 1
CATEGORIES= audio CATEGORIES= audio
MASTER_SITES= http://downloads.us.xiph.org/releases/speex/ MASTER_SITES= http://downloads.us.xiph.org/releases/speex/
@ -13,7 +13,7 @@ COMMENT= Open-source patent-free voice codec
LIB_DEPENDS= libogg.so:${PORTSDIR}/audio/libogg LIB_DEPENDS= libogg.so:${PORTSDIR}/audio/libogg
USES= libtool pathfix USES= libtool:keepla pathfix
USE_LDCONFIG= yes USE_LDCONFIG= yes
GNU_CONFIGURE= yes GNU_CONFIGURE= yes
CONFIGURE_ARGS= --with-ogg-dir=${LOCALBASE} CONFIGURE_ARGS= --with-ogg-dir=${LOCALBASE}

View File

@ -3,6 +3,7 @@
PORTNAME= iperf PORTNAME= iperf
PORTVERSION= 3.0.3 PORTVERSION= 3.0.3
PORTREVISION= 1
CATEGORIES= benchmarks ipv6 CATEGORIES= benchmarks ipv6
MASTER_SITES= http://stats.es.net/software/ MASTER_SITES= http://stats.es.net/software/
PKGNAMESUFFIX= 3 PKGNAMESUFFIX= 3
@ -13,8 +14,8 @@ COMMENT= Improved tool to measure TCP and UDP bandwidth
LICENSE= BSD3CLAUSE LICENSE= BSD3CLAUSE
GNU_CONFIGURE= yes GNU_CONFIGURE= yes
USES= libtool:keepla
USE_LDCONFIG= yes USE_LDCONFIG= yes
USES= libtool
# Set ${DOCSDIR} to avoid conflict with benchmarks/iperf ${DOCSDIR} # Set ${DOCSDIR} to avoid conflict with benchmarks/iperf ${DOCSDIR}
DOCSDIR= ${PREFIX}/share/doc/${PORTNAME}${PKGNAMESUFFIX} DOCSDIR= ${PREFIX}/share/doc/${PORTNAME}${PKGNAMESUFFIX}

View File

@ -16,10 +16,10 @@ BROKEN= Does not build with modern compilers
LIB_DEPENDS= libao.so:${PORTSDIR}/audio/libao LIB_DEPENDS= libao.so:${PORTSDIR}/audio/libao
GNU_CONFIGURE= yes GNU_CONFIGURE= yes
USE_AUTOTOOLS= autoconf automake libtool USE_AUTOTOOLS= autoconf automake
CONFIGURE_ARGS= --includedir="${LOCALBASE}/include" \ CONFIGURE_ARGS= --includedir="${LOCALBASE}/include" \
--libdir="${LOCALBASE}/lib" --libdir="${LOCALBASE}/lib"
USES= gmake tar:bzip2 libtool USES= gmake libtool tar:bzip2
USE_GCC= any USE_GCC= any
PLIST_FILES= bin/aldo \ PLIST_FILES= bin/aldo \

View File

@ -3,7 +3,7 @@
PORTNAME= gsmlib PORTNAME= gsmlib
PORTVERSION= 1.10 PORTVERSION= 1.10
PORTREVISION= 5 PORTREVISION= 6
CATEGORIES= comms CATEGORIES= comms
MASTER_SITES= DEBIAN MASTER_SITES= DEBIAN
#TODO: examine the Debian patches, and changes in the Mandrake #TODO: examine the Debian patches, and changes in the Mandrake
@ -13,7 +13,7 @@ DISTFILES= gsmlib_1.10.orig.tar.gz
MAINTAINER= ports@FreeBSD.org MAINTAINER= ports@FreeBSD.org
COMMENT= Library to access GSM mobile phones through GSM modems COMMENT= Library to access GSM mobile phones through GSM modems
USES= gmake libtool USES= gmake libtool:keepla
USE_LDCONFIG= yes USE_LDCONFIG= yes
GNU_CONFIGURE= yes GNU_CONFIGURE= yes

View File

@ -1,6 +1,6 @@
# $FreeBSD$ # $FreeBSD$
PORTREVISION= 0 PORTREVISION= 1
CATEGORIES= comms CATEGORIES= comms
COMMENT= Gstreamer DSP library and software FAX machine plugin COMMENT= Gstreamer DSP library and software FAX machine plugin

View File

@ -2,7 +2,7 @@
PORTNAME= hidapi PORTNAME= hidapi
DISTVERSION= 0.8.0-rc1 DISTVERSION= 0.8.0-rc1
PORTREVISION= 1 PORTREVISION= 2
CATEGORIES= comms CATEGORIES= comms
MAINTAINER= tijl@FreeBSD.org MAINTAINER= tijl@FreeBSD.org

View File

@ -1,6 +1,5 @@
include/hidapi/hidapi.h include/hidapi/hidapi.h
lib/libhidapi.a lib/libhidapi.a
lib/libhidapi.la
lib/libhidapi.so lib/libhidapi.so
lib/libhidapi.so.0 lib/libhidapi.so.0
lib/libhidapi.so.0.0.0 lib/libhidapi.so.0.0.0

View File

@ -3,7 +3,7 @@
PORTNAME= recode PORTNAME= recode
PORTVERSION= 3.6 PORTVERSION= 3.6
PORTREVISION= 10 PORTREVISION= 11
CATEGORIES= converters CATEGORIES= converters
MASTER_SITES= ${MASTER_SITE_GNU} MASTER_SITES= ${MASTER_SITE_GNU}
MASTER_SITE_SUBDIR= recode MASTER_SITE_SUBDIR= recode
@ -12,7 +12,7 @@ MAINTAINER= demon@FreeBSD.org
COMMENT= Converts files between character sets and usages COMMENT= Converts files between character sets and usages
GNU_CONFIGURE= yes GNU_CONFIGURE= yes
USES= gettext iconv libtool perl5 USES= gettext iconv libtool:keepla perl5
USE_PERL5= run build USE_PERL5= run build
USE_LDCONFIG= yes USE_LDCONFIG= yes
CONFIGURE_ARGS= --without-included-gettext CONFIGURE_ARGS= --without-included-gettext

View File

@ -4,7 +4,7 @@
PORTNAME= glom PORTNAME= glom
PORTVERSION= 1.12.2 PORTVERSION= 1.12.2
PORTREVISION= 7 PORTREVISION= 8
CATEGORIES= databases gnome CATEGORIES= databases gnome
MASTER_SITES= GNOME MASTER_SITES= GNOME
DIST_SUBDIR= gnome2 DIST_SUBDIR= gnome2
@ -29,8 +29,8 @@ RUN_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/iso-codes.pc:${PORTSDIR}/misc/iso-co
USE_BZIP2= yes USE_BZIP2= yes
USE_PYTHON= yes USE_PYTHON= yes
GNU_CONFIGURE= yes GNU_CONFIGURE= yes
USES= desktop-file-utils gettext gmake libtool pathfix pkgconfig \ USES= desktop-file-utils gettext gmake libtool:keepla pathfix \
shared-mime-info pkgconfig shared-mime-info
USE_GNOME= gnomedocutils gnomeprefix pygnomeextras USE_GNOME= gnomedocutils gnomeprefix pygnomeextras
USE_LDCONFIG= yes USE_LDCONFIG= yes
USE_PGSQL= yes USE_PGSQL= yes

View File

@ -4,7 +4,7 @@
PORTNAME= libgdamm PORTNAME= libgdamm
PORTVERSION= 3.99.21 PORTVERSION= 3.99.21
PORTREVISION= 1 PORTREVISION= 2
CATEGORIES= databases gnome CATEGORIES= databases gnome
MASTER_SITES= GNOME MASTER_SITES= GNOME
DIST_SUBDIR= gnome2 DIST_SUBDIR= gnome2
@ -16,7 +16,7 @@ COMMENT= C++ wrapper for libgda4 library
BUILD_DEPENDS= gm4:${PORTSDIR}/devel/m4 BUILD_DEPENDS= gm4:${PORTSDIR}/devel/m4
USE_BZIP2= yes USE_BZIP2= yes
USES= gmake libtool pathfix pkgconfig USES= gmake libtool:keepla pathfix pkgconfig
USE_GNOME= glibmm libgda4 USE_GNOME= glibmm libgda4
GNU_CONFIGURE= yes GNU_CONFIGURE= yes
USE_LDCONFIG= yes USE_LDCONFIG= yes

View File

@ -3,6 +3,7 @@
PORTNAME= libiodbc PORTNAME= libiodbc
PORTVERSION= 3.52.8 PORTVERSION= 3.52.8
PORTREVISION= 1
CATEGORIES= databases CATEGORIES= databases
MASTER_SITES= SF/iodbc/iodbc/${PORTVERSION} MASTER_SITES= SF/iodbc/iodbc/${PORTVERSION}

View File

@ -3,7 +3,7 @@
PORTNAME= libzdb PORTNAME= libzdb
PORTVERSION= 2.11.3 PORTVERSION= 2.11.3
PORTREVISION= 1 PORTREVISION= 2
CATEGORIES= databases CATEGORIES= databases
MASTER_SITES= http://www.tildeslash.com/libzdb/dist/ \ MASTER_SITES= http://www.tildeslash.com/libzdb/dist/ \
http://www.c-s.li/ports/ http://www.c-s.li/ports/
@ -21,7 +21,7 @@ OPTIONS_DEFAULT=MYSQL SQLITE PGSQL
GNU_CONFIGURE= yes GNU_CONFIGURE= yes
INSTALL_TARGET= install-strip INSTALL_TARGET= install-strip
USES= gmake libtool pathfix USES= gmake libtool:keepla pathfix
USE_LDCONFIG= yes USE_LDCONFIG= yes
CPPFLAGS+= -I${LOCALBASE}/include ${PTHREAD_CFLAGS} CPPFLAGS+= -I${LOCALBASE}/include ${PTHREAD_CFLAGS}

View File

@ -3,7 +3,7 @@
PORTNAME= vsqlite PORTNAME= vsqlite
PORTVERSION= 0.3.12 PORTVERSION= 0.3.12
PORTREVISION= 1 PORTREVISION= 2
CATEGORIES= databases CATEGORIES= databases
MAINTAINER= kwm@FreeBSD.org MAINTAINER= kwm@FreeBSD.org
@ -20,7 +20,7 @@ GH_TAGNAME= 3fa8d32
GH_COMMIT= 3fa8d32 GH_COMMIT= 3fa8d32
USE_AUTOTOOLS= libtoolize autoconf automake USE_AUTOTOOLS= libtoolize autoconf automake
USES= compiler:c++0x libtool USES= compiler:c++0x libtool:keepla
USE_SQLITE= 3 USE_SQLITE= 3
USE_LDCONFIG= yes USE_LDCONFIG= yes
CPPFLAGS+= -I${LOCALBASE}/include CPPFLAGS+= -I${LOCALBASE}/include

View File

@ -3,7 +3,7 @@
PORTNAME= bitcollider PORTNAME= bitcollider
PORTVERSION= 0.6.0 PORTVERSION= 0.6.0
PORTREVISION= 1 PORTREVISION= 2
CATEGORIES= deskutils multimedia CATEGORIES= deskutils multimedia
MASTER_SITES= SF/${PORTNAME}/Bitcollider/${PORTVERSION} MASTER_SITES= SF/${PORTNAME}/Bitcollider/${PORTVERSION}
@ -11,7 +11,7 @@ MAINTAINER= ports@FreeBSD.org
COMMENT= Bitzi metadata generator COMMENT= Bitzi metadata generator
GNU_CONFIGURE= yes GNU_CONFIGURE= yes
USES= libtool USES= libtool:keepla
USE_LDCONFIG= yes USE_LDCONFIG= yes
CFLAGS+= -lm CFLAGS+= -lm

View File

@ -3,7 +3,7 @@
PORTNAME= gtkjournal PORTNAME= gtkjournal
PORTVERSION= 0.3.5.b PORTVERSION= 0.3.5.b
PORTREVISION= 14 PORTREVISION= 15
CATEGORIES= deskutils gnome CATEGORIES= deskutils gnome
MASTER_SITES= http://sourcefiles.org/Productivity_Tools/Diary/ \ MASTER_SITES= http://sourcefiles.org/Productivity_Tools/Diary/ \
LOCAL/beech LOCAL/beech
@ -21,9 +21,9 @@ PLIST_FILES= bin/gtkjournal man/man1/gtkjournal.1.gz \
lib/libsqlitemm.so lib/libsqlitemm.so.0 \ lib/libsqlitemm.so lib/libsqlitemm.so.0 \
lib/libsqlitemm.so.0.0.1 lib/libsqlitemm.so.0.0.1
USES= gmake libtool:keepla pathfix pkgconfig
USE_OPENSSL= yes USE_OPENSSL= yes
GNU_CONFIGURE= yes GNU_CONFIGURE= yes
USES= gmake libtool pathfix pkgconfig
CONFIGURE_ARGS= --enable-gtkspell CONFIGURE_ARGS= --enable-gtkspell
USE_LDCONFIG= yes USE_LDCONFIG= yes

View File

@ -3,7 +3,7 @@
PORTNAME= notify-osd PORTNAME= notify-osd
PORTVERSION= 0.9.29 PORTVERSION= 0.9.29
PORTREVISION= 5 PORTREVISION= 6
CATEGORIES= deskutils CATEGORIES= deskutils
MASTER_SITES= http://launchpadlibrarian.net/43419242/ \ MASTER_SITES= http://launchpadlibrarian.net/43419242/ \
CRITICAL CRITICAL
@ -20,8 +20,11 @@ LIB_DEPENDS= libdbus-glib-1.so:${PORTSDIR}/devel/dbus-glib \
RUN_DEPENDS= dbus-daemon:${PORTSDIR}/devel/dbus RUN_DEPENDS= dbus-daemon:${PORTSDIR}/devel/dbus
GNU_CONFIGURE= yes GNU_CONFIGURE= yes
USES= gmake pkgconfig USES= gmake libtool pkgconfig
USE_GNOME= libwnck gconf2 USE_GNOME= libwnck gconf2
USE_XORG= pixman
USE_GCC= yes USE_GCC= yes
LDFLAGS+= -L${LOCALBASE}/lib -lpixman-1
.include <bsd.port.mk> .include <bsd.port.mk>

View File

@ -4,7 +4,7 @@
PORTNAME= anjuta-extras PORTNAME= anjuta-extras
PORTVERSION= 2.32.1.1 PORTVERSION= 2.32.1.1
PORTREVISION= 2 PORTREVISION= 3
CATEGORIES= devel CATEGORIES= devel
MASTER_SITES= GNOME MASTER_SITES= GNOME
@ -13,7 +13,7 @@ COMMENT= Extra anjuta plugins
LIB_DEPENDS= libanjuta.so:${PORTSDIR}/devel/anjuta LIB_DEPENDS= libanjuta.so:${PORTSDIR}/devel/anjuta
USES= gmake libtool tar:bzip2 USES= gmake libtool:keepla tar:bzip2
USE_LDCONFIG= yes USE_LDCONFIG= yes
GNU_CONFIGURE= yes GNU_CONFIGURE= yes
INSTALL_TARGET= install-strip INSTALL_TARGET= install-strip

View File

@ -4,7 +4,7 @@
PORTNAME= anjuta PORTNAME= anjuta
PORTVERSION= 2.32.1.1 PORTVERSION= 2.32.1.1
PORTREVISION= 9 PORTREVISION= 10
CATEGORIES= devel gnome CATEGORIES= devel gnome
MASTER_SITES= GNOME MASTER_SITES= GNOME
DIST_SUBDIR= gnome2 DIST_SUBDIR= gnome2
@ -30,8 +30,8 @@ RUN_DEPENDS= bash:${PORTSDIR}/shells/bash \
CONFLICTS= anjuta-3.[0-9]* CONFLICTS= anjuta-3.[0-9]*
USES= desktop-file-utils gmake gettext libtool pathfix perl5 pkgconfig \ USES= desktop-file-utils gmake gettext libtool:keepla pathfix \
shebangfix shared-mime-info tar:bzip2 perl5 pkgconfig shared-mime-info shebangfix tar:bzip2
INSTALLS_OMF= yes INSTALLS_OMF= yes
INSTALLS_ICONS= yes INSTALLS_ICONS= yes
INSTALL_TARGET= install-strip INSTALL_TARGET= install-strip

View File

@ -4,7 +4,7 @@
PORTNAME= bug-buddy PORTNAME= bug-buddy
PORTVERSION= 2.32.0 PORTVERSION= 2.32.0
PORTREVISION= 3 PORTREVISION= 4
CATEGORIES= devel gnome CATEGORIES= devel gnome
MASTER_SITES= GNOME MASTER_SITES= GNOME
DIST_SUBDIR= gnome2 DIST_SUBDIR= gnome2
@ -15,7 +15,7 @@ COMMENT= Bug reporting tool for GNOME 2
LIB_DEPENDS= libgtop-2.0.so:${PORTSDIR}/devel/libgtop \ LIB_DEPENDS= libgtop-2.0.so:${PORTSDIR}/devel/libgtop \
libsoup-2.4.so:${PORTSDIR}/devel/libsoup libsoup-2.4.so:${PORTSDIR}/devel/libsoup
USES= gettext gmake libtool pathfix pkgconfig tar:bzip2 USES= gettext gmake libtool:keepla pathfix pkgconfig tar:bzip2
INSTALLS_ICONS= yes INSTALLS_ICONS= yes
GNU_CONFIGURE= yes GNU_CONFIGURE= yes
INSTALL_TARGET= install-strip INSTALL_TARGET= install-strip

View File

@ -4,7 +4,7 @@
PORTNAME= dbus PORTNAME= dbus
PORTVERSION= 1.6.18 PORTVERSION= 1.6.18
PORTREVISION= 1 PORTREVISION= 2
CATEGORIES= devel gnome CATEGORIES= devel gnome
MASTER_SITES= http://dbus.freedesktop.org/releases/dbus/ MASTER_SITES= http://dbus.freedesktop.org/releases/dbus/
@ -16,7 +16,7 @@ LIB_DEPENDS= libexpat.so:${PORTSDIR}/textproc/expat2
PORTSCOUT= limitw:1,even PORTSCOUT= limitw:1,even
USE_GNOME= libxml2 USE_GNOME= libxml2
USES= gmake libtool pathfix USES= gmake libtool:keepla pathfix
GNU_CONFIGURE= yes GNU_CONFIGURE= yes
USE_LDCONFIG= yes USE_LDCONFIG= yes
CONFIGURE_ARGS=--localstatedir=/var \ CONFIGURE_ARGS=--localstatedir=/var \

View File

@ -4,7 +4,7 @@
PORTNAME= devhelp PORTNAME= devhelp
PORTVERSION= 2.32.0 PORTVERSION= 2.32.0
PORTREVISION= 4 PORTREVISION= 5
PORTEPOCH= 1 PORTEPOCH= 1
CATEGORIES= devel gnome CATEGORIES= devel gnome
MASTER_SITES= GNOME MASTER_SITES= GNOME
@ -19,7 +19,7 @@ LIB_DEPENDS= libwebkitgtk-1.0.so:${PORTSDIR}/www/webkit-gtk2 \
CONFLICTS= devhelp-3.[0-9]* CONFLICTS= devhelp-3.[0-9]*
USE_XORG= x11 USE_XORG= x11
USES= gettext gmake libtool pathfix pkgconfig tar:bzip2 USES= gettext gmake libtool:keepla pathfix pkgconfig tar:bzip2
USE_GNOME= intlhack gnomeprefix libgnomeui libwnck USE_GNOME= intlhack gnomeprefix libgnomeui libwnck
GNU_CONFIGURE= yes GNU_CONFIGURE= yes
INSTALLS_ICONS= yes INSTALLS_ICONS= yes

View File

@ -4,7 +4,7 @@
PORTNAME= eggdbus PORTNAME= eggdbus
PORTVERSION= 0.6 PORTVERSION= 0.6
PORTREVISION= 2 PORTREVISION= 3
CATEGORIES= devel CATEGORIES= devel
MASTER_SITES= http://hal.freedesktop.org/releases/ MASTER_SITES= http://hal.freedesktop.org/releases/
@ -14,7 +14,7 @@ COMMENT= D-Bus bindings for GObject
LIB_DEPENDS= libdbus-glib-1.so:${PORTSDIR}/devel/dbus-glib LIB_DEPENDS= libdbus-glib-1.so:${PORTSDIR}/devel/dbus-glib
USE_GNOME= glib20 USE_GNOME= glib20
USES= gettext gmake libtool pathfix pkgconfig USES= gettext gmake libtool:keepla pathfix pkgconfig
MAKE_JOBS_UNSAFE=yes MAKE_JOBS_UNSAFE=yes
GNU_CONFIGURE= yes GNU_CONFIGURE= yes
USE_LDCONFIG= yes USE_LDCONFIG= yes

View File

@ -4,7 +4,7 @@
PORTNAME= gconfmm PORTNAME= gconfmm
PORTVERSION= 2.28.2 PORTVERSION= 2.28.2
PORTREVISION= 2 PORTREVISION= 3
CATEGORIES= devel gnome CATEGORIES= devel gnome
MASTER_SITES= GNOME MASTER_SITES= GNOME
DIST_SUBDIR= gnome2 DIST_SUBDIR= gnome2
@ -16,7 +16,7 @@ LIB_DEPENDS= libglibmm-2.4.so:${PORTSDIR}/devel/glibmm
BUILD_DEPENDS= gm4:${PORTSDIR}/devel/m4 \ BUILD_DEPENDS= gm4:${PORTSDIR}/devel/m4 \
${LOCALBASE}/lib/libgtkmm-2.4.so.1:${PORTSDIR}/x11-toolkits/gtkmm24 ${LOCALBASE}/lib/libgtkmm-2.4.so.1:${PORTSDIR}/x11-toolkits/gtkmm24
USES= gmake libtool pathfix pkgconfig tar:bzip2 USES= gmake libtool:keepla pathfix pkgconfig tar:bzip2
USE_XORG= x11 USE_XORG= x11
USE_GNOME= gconf2 referencehack USE_GNOME= gconf2 referencehack
GNU_CONFIGURE= yes GNU_CONFIGURE= yes

View File

@ -4,7 +4,7 @@
PORTNAME= glade3 PORTNAME= glade3
PORTVERSION= 3.8.3 PORTVERSION= 3.8.3
PORTREVISION= 2 PORTREVISION= 3
CATEGORIES= devel gnome CATEGORIES= devel gnome
MASTER_SITES= GNOME MASTER_SITES= GNOME
DIST_SUBDIR= gnome2 DIST_SUBDIR= gnome2
@ -17,7 +17,7 @@ PORTSCOUT= ignore
INSTALLS_ICONS= yes INSTALLS_ICONS= yes
USE_GNOME= gtk20 libxml2 gnomeprefix gnomedocutils USE_GNOME= gtk20 libxml2 gnomeprefix gnomedocutils
USES= gmake gettext libtool pathfix desktop-file-utils pkgconfig tar:xz USES= gmake gettext libtool:keepla pathfix desktop-file-utils pkgconfig tar:xz
INSTALLS_OMF= yes INSTALLS_OMF= yes
INSTALL_TARGET= install-strip INSTALL_TARGET= install-strip
USE_LDCONFIG= yes USE_LDCONFIG= yes

View File

@ -4,7 +4,7 @@
PORTNAME= glibmm PORTNAME= glibmm
PORTVERSION= 2.36.2 PORTVERSION= 2.36.2
PORTREVISION?= 0 PORTREVISION?= 1
PORTEPOCH= 1 PORTEPOCH= 1
CATEGORIES= devel CATEGORIES= devel
MASTER_SITES= GNOME MASTER_SITES= GNOME
@ -21,7 +21,7 @@ PLIST_SUB= VERSION="2.4" API_VERSION="2.4"
BUILD_DEPENDS= gm4:${PORTSDIR}/devel/m4 BUILD_DEPENDS= gm4:${PORTSDIR}/devel/m4
USES= gettext gmake libtool pathfix perl5 pkgconfig USES= gettext gmake libtool:keepla pathfix perl5 pkgconfig
USE_GNOME= glib20 libsigc++20 USE_GNOME= glib20 libsigc++20
GNU_CONFIGURE= yes GNU_CONFIGURE= yes
USE_LDCONFIG= yes USE_LDCONFIG= yes

View File

@ -4,15 +4,15 @@
PORTNAME= gnome-vfs-monikers PORTNAME= gnome-vfs-monikers
PORTVERSION= 2.15.3 PORTVERSION= 2.15.3
PORTREVISION= 10 PORTREVISION= 11
CATEGORIES= devel CATEGORIES= devel
MASTER_SITES= GNOME MASTER_SITES= GNOME
MAINTAINER= gnome@FreeBSD.org MAINTAINER= gnome@FreeBSD.org
COMMENT= Gnome-vfs monikers module COMMENT= Gnome-vfs monikers module
USES= gmake libtool:keepla pkgconfig
USE_GNOME= gnomevfs2 libbonobo USE_GNOME= gnomevfs2 libbonobo
USES= gmake libtool pkgconfig
INSTALL_TARGET= install-strip INSTALL_TARGET= install-strip
GNU_CONFIGURE= yes GNU_CONFIGURE= yes
CPPFLAGS+= -I${LOCALBASE}/include CPPFLAGS+= -I${LOCALBASE}/include

View File

@ -4,7 +4,7 @@
PORTNAME= gnome-vfs PORTNAME= gnome-vfs
PORTVERSION= 2.24.4 PORTVERSION= 2.24.4
PORTREVISION?= 2 PORTREVISION?= 3
CATEGORIES= devel gnome CATEGORIES= devel gnome
MASTER_SITES= GNOME MASTER_SITES= GNOME
DIST_SUBDIR= gnome2 DIST_SUBDIR= gnome2
@ -18,7 +18,7 @@ USES= tar:bzip2
RUN_DEPENDS= ${LOCALBASE}/share/mime/magic:${PORTSDIR}/misc/shared-mime-info RUN_DEPENDS= ${LOCALBASE}/share/mime/magic:${PORTSDIR}/misc/shared-mime-info
USES+= libtool pathfix gettext gmake pkgconfig USES+= gettext gmake libtool:keepla pathfix pkgconfig
USE_GNOME= gnomeprefix intlhack gnomemimedata gconf2 \ USE_GNOME= gnomeprefix intlhack gnomemimedata gconf2 \
referencehack referencehack
INSTALL_TARGET= install-strip INSTALL_TARGET= install-strip

View File

@ -4,7 +4,7 @@
PORTNAME= gnome-vfsmm PORTNAME= gnome-vfsmm
PORTVERSION= 2.26.0 PORTVERSION= 2.26.0
PORTREVISION= 4 PORTREVISION= 5
CATEGORIES= devel gnome CATEGORIES= devel gnome
MASTER_SITES= GNOME MASTER_SITES= GNOME
DIST_SUBDIR= gnome2 DIST_SUBDIR= gnome2
@ -14,7 +14,7 @@ COMMENT= C++ wrapper for gnomevfs2 library
BUILD_DEPENDS= gm4:${PORTSDIR}/devel/m4 BUILD_DEPENDS= gm4:${PORTSDIR}/devel/m4
USES= gmake libtool pathfix pkgconfig tar:bzip2 USES= gmake libtool:keepla pathfix pkgconfig tar:bzip2
USE_GNOME= glibmm gnomevfs2 USE_GNOME= glibmm gnomevfs2
GNU_CONFIGURE= yes GNU_CONFIGURE= yes
USE_LDCONFIG= yes USE_LDCONFIG= yes

View File

@ -4,6 +4,7 @@
PORTNAME= goffice PORTNAME= goffice
PORTVERSION= 0.10.11 PORTVERSION= 0.10.11
PORTREVISION= 1
CATEGORIES= devel gnome CATEGORIES= devel gnome
MASTER_SITES= GNOME MASTER_SITES= GNOME
PKGNAMESUFFIX= 010 PKGNAMESUFFIX= 010
@ -16,7 +17,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING
USE_XZ= yes USE_XZ= yes
USE_GNOME= gnomeprefix gtk30 intlhack libgsf librsvg2 USE_GNOME= gnomeprefix gtk30 intlhack libgsf librsvg2
USES= gettext gmake libtool pathfix pkgconfig USES= gettext gmake libtool:keepla pathfix pkgconfig
GNU_CONFIGURE= yes GNU_CONFIGURE= yes
USE_LDCONFIG= yes USE_LDCONFIG= yes
CPPFLAGS+= -I${LOCALBASE}/include CPPFLAGS+= -I${LOCALBASE}/include

View File

@ -1,6 +1,6 @@
# $FreeBSD$ # $FreeBSD$
PORTREVISION= 0 PORTREVISION= 1
CATEGORIES= devel CATEGORIES= devel
COMMENT= Gstreamer soup http src plugin COMMENT= Gstreamer soup http src plugin

View File

@ -3,6 +3,7 @@
PORTNAME= Judy PORTNAME= Judy
PORTVERSION= 1.0.5 PORTVERSION= 1.0.5
PORTREVISION= 1
CATEGORIES= devel CATEGORIES= devel
MASTER_SITES= SF/${PORTNAME:L}/${PORTNAME:L}/${PORTNAME}-${PORTVERSION} MASTER_SITES= SF/${PORTNAME:L}/${PORTNAME:L}/${PORTNAME}-${PORTVERSION}
@ -11,7 +12,7 @@ COMMENT= General purpose dynamic array
LICENSE= LGPL21 LICENSE= LGPL21
USES= gmake libtool USES= gmake libtool:keepla
GNU_CONFIGURE= yes GNU_CONFIGURE= yes
USE_LDCONFIG= YES USE_LDCONFIG= YES
MAKE_JOBS_UNSAFE= yes MAKE_JOBS_UNSAFE= yes

View File

@ -4,7 +4,7 @@
PORTNAME= libIDL PORTNAME= libIDL
PORTVERSION= 0.8.14 PORTVERSION= 0.8.14
PORTREVISION= 1 PORTREVISION= 2
CATEGORIES= devel CATEGORIES= devel
MASTER_SITES= GNOME MASTER_SITES= GNOME
DIST_SUBDIR= gnome2 DIST_SUBDIR= gnome2
@ -12,7 +12,7 @@ DIST_SUBDIR= gnome2
MAINTAINER= gnome@FreeBSD.org MAINTAINER= gnome@FreeBSD.org
COMMENT= Library for creating trees of CORBA IDL files COMMENT= Library for creating trees of CORBA IDL files
USES= gmake bison libtool pathfix pkgconfig gettext tar:bzip2 USES= bison gettext gmake libtool:keepla pathfix pkgconfig tar:bzip2
USE_GNOME= glib20 USE_GNOME= glib20
INSTALL_TARGET= install-strip INSTALL_TARGET= install-strip
USE_LDCONFIG= yes USE_LDCONFIG= yes

View File

@ -3,6 +3,7 @@
PORTNAME= libdaemon PORTNAME= libdaemon
PORTVERSION= 0.14 PORTVERSION= 0.14
PORTREVISION= 1
CATEGORIES= devel CATEGORIES= devel
MASTER_SITES= http://0pointer.de/lennart/projects/${PORTNAME}/ MASTER_SITES= http://0pointer.de/lennart/projects/${PORTNAME}/
@ -10,8 +11,8 @@ MAINTAINER= gnome@FreeBSD.org
COMMENT= Lightweight C library that eases the writing of UNIX daemons COMMENT= Lightweight C library that eases the writing of UNIX daemons
CONFIGURE_ARGS= --disable-lynx CONFIGURE_ARGS= --disable-lynx
USES= libtool pathfix
GNU_CONFIGURE= yes GNU_CONFIGURE= yes
USES= libtool:keepla pathfix
USE_LDCONFIG= yes USE_LDCONFIG= yes
.include <bsd.port.mk> .include <bsd.port.mk>

View File

@ -3,7 +3,7 @@
PORTNAME= libdnsres PORTNAME= libdnsres
PORTVERSION= 0.1a PORTVERSION= 0.1a
PORTREVISION= 5 PORTREVISION= 6
CATEGORIES= devel CATEGORIES= devel
MASTER_SITES= http://monkey.org/~provos/ MASTER_SITES= http://monkey.org/~provos/
@ -12,7 +12,7 @@ COMMENT= Provides a non-blocking thread-safe API for resolving DNS names
BUILD_DEPENDS= ${LOCALBASE}/lib/libevent.a:${PORTSDIR}/devel/libevent BUILD_DEPENDS= ${LOCALBASE}/lib/libevent.a:${PORTSDIR}/devel/libevent
USES= libtool USES= libtool:keepla
GNU_CONFIGURE= yes GNU_CONFIGURE= yes
USE_LDCONFIG= yes USE_LDCONFIG= yes
CONFIGURE_ARGS=--with-libevent=${LOCALBASE} CONFIGURE_ARGS=--with-libevent=${LOCALBASE}

View File

@ -3,6 +3,7 @@
PORTNAME= libevt PORTNAME= libevt
DISTVERSION= alpha-20140411 DISTVERSION= alpha-20140411
PORTREVISION= 1
CATEGORIES= devel CATEGORIES= devel
MASTER_SITES= https://googledrive.com/host/0B3fBvzttpiiSYm01VnUtLXNUZ2M/ \ MASTER_SITES= https://googledrive.com/host/0B3fBvzttpiiSYm01VnUtLXNUZ2M/ \
LOCAL/antoine LOCAL/antoine
@ -14,7 +15,7 @@ LICENSE= LGPL3
GNU_CONFIGURE= yes GNU_CONFIGURE= yes
CONFIGURE_ARGS= --enable-python --with-libintl-prefix=${LOCALBASE} ${ICONV_CONFIGURE_ARG} CONFIGURE_ARGS= --enable-python --with-libintl-prefix=${LOCALBASE} ${ICONV_CONFIGURE_ARG}
USES= gettext iconv libtool pathfix USES= gettext iconv libtool:keepla pathfix
USE_PYTHON= 2 USE_PYTHON= 2
USE_LDCONFIG= yes USE_LDCONFIG= yes
INSTALL_TARGET= install-strip INSTALL_TARGET= install-strip

View File

@ -3,6 +3,7 @@
PORTNAME= libevtx PORTNAME= libevtx
DISTVERSION= alpha-20140323 DISTVERSION= alpha-20140323
PORTREVISION= 1
CATEGORIES= devel CATEGORIES= devel
MASTER_SITES= https://googledrive.com/host/0B3fBvzttpiiSRnQ0SExzX3JjdFE/ \ MASTER_SITES= https://googledrive.com/host/0B3fBvzttpiiSRnQ0SExzX3JjdFE/ \
LOCAL/antoine LOCAL/antoine
@ -14,7 +15,7 @@ LICENSE= LGPL3
GNU_CONFIGURE= yes GNU_CONFIGURE= yes
CONFIGURE_ARGS= --enable-python --with-libintl-prefix=${LOCALBASE} ${ICONV_CONFIGURE_ARG} CONFIGURE_ARGS= --enable-python --with-libintl-prefix=${LOCALBASE} ${ICONV_CONFIGURE_ARG}
USES= gettext iconv libtool pathfix USES= gettext iconv libtool:keepla pathfix
USE_PYTHON= 2 USE_PYTHON= 2
USE_LDCONFIG= yes USE_LDCONFIG= yes
INSTALL_TARGET= install-strip INSTALL_TARGET= install-strip

View File

@ -3,6 +3,7 @@
PORTNAME= libewf PORTNAME= libewf
PORTVERSION= 20140406 PORTVERSION= 20140406
PORTREVISION= 1
CATEGORIES= devel CATEGORIES= devel
MASTER_SITES= https://googledrive.com/host/0B3fBvzttpiiSMTdoaVExWWNsRjg/ \ MASTER_SITES= https://googledrive.com/host/0B3fBvzttpiiSMTdoaVExWWNsRjg/ \
LOCAL/antoine LOCAL/antoine
@ -15,7 +16,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING
LIB_DEPENDS= libuuid.so:${PORTSDIR}/misc/e2fsprogs-libuuid LIB_DEPENDS= libuuid.so:${PORTSDIR}/misc/e2fsprogs-libuuid
USES= fuse gettext iconv libtool pathfix pkgconfig USES= fuse gettext iconv libtool:keepla pathfix pkgconfig
USE_LDCONFIG= yes USE_LDCONFIG= yes
USE_OPENSSL= yes USE_OPENSSL= yes
USE_PYTHON= 2 USE_PYTHON= 2

View File

@ -4,7 +4,7 @@
PORTNAME= libgdata PORTNAME= libgdata
PORTVERSION= 0.6.6 PORTVERSION= 0.6.6
PORTREVISION= 1 PORTREVISION= 2
CATEGORIES= devel CATEGORIES= devel
MASTER_SITES= GNOME MASTER_SITES= GNOME
@ -15,7 +15,7 @@ LIB_DEPENDS= libsoup-gnome-2.4.so:${PORTSDIR}/devel/libsoup-gnome
USE_BZIP2= yes USE_BZIP2= yes
USE_LDCONFIG= yes USE_LDCONFIG= yes
USES= gettext gmake libtool pathfix pkgconfig USES= gettext gmake libtool:keepla pathfix pkgconfig
GNU_CONFIGURE= yes GNU_CONFIGURE= yes
USE_GNOME= glib20 intltool introspection:build USE_GNOME= glib20 intltool introspection:build
CPPFLAGS+= -I${LOCALBASE}/include CPPFLAGS+= -I${LOCALBASE}/include

View File

@ -4,6 +4,7 @@
PORTNAME= libgee PORTNAME= libgee
PORTVERSION= 0.12.0 PORTVERSION= 0.12.0
PORTREVISION= 1
CATEGORIES= devel CATEGORIES= devel
MASTER_SITES= GNOME MASTER_SITES= GNOME
@ -15,7 +16,7 @@ BUILD_DEPENDS= valac:${PORTSDIR}/lang/vala
GNU_CONFIGURE= yes GNU_CONFIGURE= yes
CONFIGURE_ARGS= --enable-introspection=yes CONFIGURE_ARGS= --enable-introspection=yes
USE_XZ= yes USE_XZ= yes
USES= gmake libtool pathfix pkgconfig USES= gmake libtool:keepla pathfix pkgconfig
USE_GNOME= glib20 gnomehier introspection:build USE_GNOME= glib20 gnomehier introspection:build
USE_LDCONFIG= yes USE_LDCONFIG= yes
INSTALL_TARGET= install-strip INSTALL_TARGET= install-strip

View File

@ -3,7 +3,7 @@
PORTNAME= libghthash PORTNAME= libghthash
PORTVERSION= 0.6.2 PORTVERSION= 0.6.2
PORTREVISION= 3 PORTREVISION= 4
CATEGORIES= devel CATEGORIES= devel
MASTER_SITES= http://www.ipd.bth.se/ska/sim_home/filer/ MASTER_SITES= http://www.ipd.bth.se/ska/sim_home/filer/
@ -12,7 +12,7 @@ COMMENT= Generic Hash Table
OPTIONS_DEFINE= DOCS EXAMPLES OPTIONS_DEFINE= DOCS EXAMPLES
USES= libtool USES= libtool:keepla
GNU_CONFIGURE= yes GNU_CONFIGURE= yes
USE_AUTOTOOLS= aclocal autoheader automake autoconf libtoolize USE_AUTOTOOLS= aclocal autoheader automake autoconf libtoolize
AUTOMAKE_ARGS= -a -c -f AUTOMAKE_ARGS= -a -c -f

View File

@ -4,7 +4,7 @@
PORTNAME= libglademm PORTNAME= libglademm
PORTVERSION= 2.6.7 PORTVERSION= 2.6.7
PORTREVISION= 5 PORTREVISION= 6
CATEGORIES= devel gnome CATEGORIES= devel gnome
MASTER_SITES= GNOME MASTER_SITES= GNOME
DIST_SUBDIR= gnome2 DIST_SUBDIR= gnome2
@ -18,7 +18,7 @@ LIB_DEPENDS= libgtkmm-2.4.so:${PORTSDIR}/x11-toolkits/gtkmm24
BUILD_DEPENDS= gm4:${PORTSDIR}/devel/m4 BUILD_DEPENDS= gm4:${PORTSDIR}/devel/m4
USE_XORG= x11 ice USE_XORG= x11 ice
USES= gmake libtool pathfix pkgconfig tar:bzip2 USES= gmake libtool:keepla pathfix pkgconfig tar:bzip2
USE_GNOME= libglade2 USE_GNOME= libglade2
GNU_CONFIGURE= yes GNU_CONFIGURE= yes
USE_LDCONFIG= yes USE_LDCONFIG= yes

View File

@ -3,6 +3,7 @@
PORTNAME= liblnk PORTNAME= liblnk
PORTVERSION= 20140323 PORTVERSION= 20140323
PORTREVISION= 1
CATEGORIES= devel CATEGORIES= devel
MASTER_SITES= https://googledrive.com/host/0B3fBvzttpiiSQmluVC1YeDVvZWM/ \ MASTER_SITES= https://googledrive.com/host/0B3fBvzttpiiSQmluVC1YeDVvZWM/ \
LOCAL/antoine LOCAL/antoine
@ -15,7 +16,7 @@ LICENSE= LGPL3
GNU_CONFIGURE= yes GNU_CONFIGURE= yes
CONFIGURE_ARGS= --enable-python --with-libintl-prefix=${LOCALBASE} ${ICONV_CONFIGURE_ARG} CONFIGURE_ARGS= --enable-python --with-libintl-prefix=${LOCALBASE} ${ICONV_CONFIGURE_ARG}
USES= gettext iconv libtool pathfix USES= gettext iconv libtool:keepla pathfix
USE_PYTHON= 2 USE_PYTHON= 2
USE_LDCONFIG= yes USE_LDCONFIG= yes
INSTALL_TARGET= install-strip INSTALL_TARGET= install-strip

View File

@ -3,6 +3,7 @@
PORTNAME= liblogging PORTNAME= liblogging
PORTVERSION= 1.0.1 PORTVERSION= 1.0.1
PORTREVISION= 1
CATEGORIES= devel CATEGORIES= devel
MASTER_SITES= http://download.rsyslog.com/liblogging/ MASTER_SITES= http://download.rsyslog.com/liblogging/
@ -12,7 +13,7 @@ COMMENT= Easy to use system logging library
LICENSE= BSD2CLAUSE LICENSE= BSD2CLAUSE
GNU_CONFIGURE= yes GNU_CONFIGURE= yes
USES= libtool pathfix USES= libtool:keepla pathfix
post-install: post-install:
${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/liblogging-stdlog.so.0.0.0 ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/liblogging-stdlog.so.0.0.0

View File

@ -3,13 +3,14 @@
PORTNAME= libmimedir PORTNAME= libmimedir
PORTVERSION= 0.5.1 PORTVERSION= 0.5.1
PORTREVISION= 1
CATEGORIES= devel CATEGORIES= devel
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION} MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION}
MAINTAINER= ports@FreeBSD.org MAINTAINER= ports@FreeBSD.org
COMMENT= Library for parsing RFC2425 MIME Directory Profile information COMMENT= Library for parsing RFC2425 MIME Directory Profile information
USES= bison desthack libtool USES= bison desthack libtool:keepla
GNU_CONFIGURE= yes GNU_CONFIGURE= yes
USE_LDCONFIG= yes USE_LDCONFIG= yes

View File

@ -3,6 +3,7 @@
PORTNAME= libmsiecf PORTNAME= libmsiecf
DISTVERSION= alpha-20140323 DISTVERSION= alpha-20140323
PORTREVISION= 1
CATEGORIES= devel CATEGORIES= devel
MASTER_SITES= https://googledrive.com/host/0B3fBvzttpiiSVm1MNkw5cU1mUG8/ \ MASTER_SITES= https://googledrive.com/host/0B3fBvzttpiiSVm1MNkw5cU1mUG8/ \
LOCAL/antoine LOCAL/antoine
@ -14,7 +15,7 @@ LICENSE= LGPL3
GNU_CONFIGURE= yes GNU_CONFIGURE= yes
CONFIGURE_ARGS= --enable-python --with-libintl-prefix=${LOCALBASE} ${ICONV_CONFIGURE_ARG} CONFIGURE_ARGS= --enable-python --with-libintl-prefix=${LOCALBASE} ${ICONV_CONFIGURE_ARG}
USES= gettext iconv libtool pathfix USES= gettext iconv libtool:keepla pathfix
USE_PYTHON= 2 USE_PYTHON= 2
USE_LDCONFIG= yes USE_LDCONFIG= yes
INSTALL_TARGET= install-strip INSTALL_TARGET= install-strip

View File

@ -4,6 +4,7 @@
PORTNAME= liboil PORTNAME= liboil
PORTVERSION= 0.3.17 PORTVERSION= 0.3.17
PORTREVISION= 1
CATEGORIES= devel CATEGORIES= devel
MASTER_SITES= http://liboil.freedesktop.org/download/ MASTER_SITES= http://liboil.freedesktop.org/download/
@ -12,7 +13,7 @@ COMMENT= Library of optimized inner loops
LICENSE= BSD2CLAUSE LICENSE= BSD2CLAUSE
USES= libtool pkgconfig USES= libtool:keepla pkgconfig
GNU_CONFIGURE= yes GNU_CONFIGURE= yes
USE_LDCONFIG= yes USE_LDCONFIG= yes
CONFIGURE_ARGS= --disable-gtk-doc \ CONFIGURE_ARGS= --disable-gtk-doc \

View File

@ -3,6 +3,7 @@
PORTNAME= libolecf PORTNAME= libolecf
DISTVERSION= alpha-20140329 DISTVERSION= alpha-20140329
PORTREVISION= 1
CATEGORIES= devel CATEGORIES= devel
MASTER_SITES= https://googledrive.com/host/0B3fBvzttpiiSS0hEb0pjU2h6a2c/ \ MASTER_SITES= https://googledrive.com/host/0B3fBvzttpiiSS0hEb0pjU2h6a2c/ \
LOCAL/antoine LOCAL/antoine
@ -14,7 +15,7 @@ LICENSE= LGPL3
GNU_CONFIGURE= yes GNU_CONFIGURE= yes
CONFIGURE_ARGS= --enable-python --with-libintl-prefix=${LOCALBASE} ${ICONV_CONFIGURE_ARG} CONFIGURE_ARGS= --enable-python --with-libintl-prefix=${LOCALBASE} ${ICONV_CONFIGURE_ARG}
USES= fuse gettext iconv libtool pathfix pkgconfig USES= fuse gettext iconv libtool:keepla pathfix pkgconfig
USE_PYTHON= 2 USE_PYTHON= 2
USE_LDCONFIG= yes USE_LDCONFIG= yes
INSTALL_TARGET= install-strip INSTALL_TARGET= install-strip

View File

@ -4,7 +4,7 @@
PORTNAME= liboobs PORTNAME= liboobs
PORTVERSION= 2.32.0 PORTVERSION= 2.32.0
PORTREVISION= 1 PORTREVISION= 2
CATEGORIES= devel gnome CATEGORIES= devel gnome
MASTER_SITES= GNOME MASTER_SITES= GNOME
DIST_SUBDIR= gnome2 DIST_SUBDIR= gnome2
@ -17,7 +17,7 @@ LIB_DEPENDS= libdbus-glib-1.so:${PORTSDIR}/devel/dbus-glib \
libhal.so:${PORTSDIR}/sysutils/hal libhal.so:${PORTSDIR}/sysutils/hal
RUN_DEPENDS= ${LOCALBASE}/etc/dbus-1/system.d/org.freedesktop.SystemToolsBackends.conf:${PORTSDIR}/sysutils/system-tools-backends RUN_DEPENDS= ${LOCALBASE}/etc/dbus-1/system.d/org.freedesktop.SystemToolsBackends.conf:${PORTSDIR}/sysutils/system-tools-backends
USES= gmake libtool pathfix pkgconfig tar:bzip2 USES= gmake libtool:keepla pathfix pkgconfig tar:bzip2
GNU_CONFIGURE= yes GNU_CONFIGURE= yes
USE_GNOME= glib20 USE_GNOME= glib20
INSTALL_TARGET= install-strip INSTALL_TARGET= install-strip

View File

@ -2,7 +2,7 @@
PORTNAME= libpciaccess PORTNAME= libpciaccess
PORTVERSION= 0.13.2 PORTVERSION= 0.13.2
PORTREVISION= 1 PORTREVISION= 2
CATEGORIES= devel CATEGORIES= devel
MAINTAINER= x11@FreeBSD.org MAINTAINER= x11@FreeBSD.org

View File

@ -4,6 +4,7 @@
PORTNAME= libpeas PORTNAME= libpeas
PORTVERSION= 1.8.1 PORTVERSION= 1.8.1
PORTREVISION= 1
CATEGORIES= devel gnome CATEGORIES= devel gnome
MASTER_SITES= GNOME MASTER_SITES= GNOME
DIST_SUBDIR= gnome3 DIST_SUBDIR= gnome3
@ -16,7 +17,7 @@ BUILD_DEPENDS= valac:${PORTSDIR}/lang/vala
USE_XZ= yes USE_XZ= yes
USE_PYTHON= 2 USE_PYTHON= 2
USE_LDCONFIG= yes USE_LDCONFIG= yes
USES= gettext gmake libtool pathfix pkgconfig USES= gettext gmake libtool:keepla pathfix pkgconfig
USE_GNOME= gtk30 introspection:build USE_GNOME= gtk30 introspection:build
INSTALLS_ICONS= yes INSTALLS_ICONS= yes
GNU_CONFIGURE= yes GNU_CONFIGURE= yes

View File

@ -3,6 +3,7 @@
PORTNAME= libregf PORTNAME= libregf
DISTVERSION= alpha-20140323 DISTVERSION= alpha-20140323
PORTREVISION= 1
CATEGORIES= devel CATEGORIES= devel
MASTER_SITES= https://googledrive.com/host/0B3fBvzttpiiSSC1yUDZpb3l0UHM/ \ MASTER_SITES= https://googledrive.com/host/0B3fBvzttpiiSSC1yUDZpb3l0UHM/ \
LOCAL/antoine LOCAL/antoine
@ -14,7 +15,7 @@ LICENSE= LGPL3
GNU_CONFIGURE= yes GNU_CONFIGURE= yes
CONFIGURE_ARGS= --enable-python --with-libintl-prefix=${LOCALBASE} ${ICONV_CONFIGURE_ARG} CONFIGURE_ARGS= --enable-python --with-libintl-prefix=${LOCALBASE} ${ICONV_CONFIGURE_ARG}
USES= fuse gettext iconv libtool pathfix pkgconfig USES= fuse gettext iconv libtool:keepla pathfix pkgconfig
USE_PYTHON= 2 USE_PYTHON= 2
USE_LDCONFIG= yes USE_LDCONFIG= yes
INSTALL_TARGET= install-strip INSTALL_TARGET= install-strip

View File

@ -3,7 +3,7 @@
PORTNAME= libsigcx PORTNAME= libsigcx
PORTVERSION= 0.6.6 PORTVERSION= 0.6.6
PORTREVISION= 6 PORTREVISION= 7
CATEGORIES= devel CATEGORIES= devel
MASTER_SITES= SF MASTER_SITES= SF
@ -15,7 +15,7 @@ LIB_DEPENDS= libsigc-1.2.so:${PORTSDIR}/devel/libsigc++12
OPTIONS_DEFINE= STATIC OPTIONS_DEFINE= STATIC
USES= gmake libtool pathfix pkgconfig USES= gmake libtool:keepla pathfix pkgconfig
USE_GNOME= gtk20 USE_GNOME= gtk20
GNU_CONFIGURE= yes GNU_CONFIGURE= yes
CONFIGURE_ENV= ac_cv_path_DOXYGEN="" CONFIGURE_ENV= ac_cv_path_DOXYGEN=""

View File

@ -4,7 +4,7 @@
PORTNAME= libsoup PORTNAME= libsoup
PORTVERSION= 2.40.3 PORTVERSION= 2.40.3
PORTREVISION?= 3 PORTREVISION?= 4
CATEGORIES= devel gnome CATEGORIES= devel gnome
MASTER_SITES= GNOME MASTER_SITES= GNOME
DIST_SUBDIR= gnome2 DIST_SUBDIR= gnome2
@ -20,7 +20,7 @@ USE_XZ= yes
.if !defined(REFERENCE_PORT) .if !defined(REFERENCE_PORT)
USES= gettext gmake libtool pathfix pkgconfig USES= gettext gmake libtool:keepla pathfix pkgconfig
USE_GNOME= gnomehier glib20 libxml2 referencehack intltool USE_GNOME= gnomehier glib20 libxml2 referencehack intltool
USE_SQLITE= 3 USE_SQLITE= 3
USE_LDCONFIG= yes USE_LDCONFIG= yes

View File

@ -3,18 +3,19 @@
PORTNAME= libvshadow PORTNAME= libvshadow
PORTVERSION= 20140323 PORTVERSION= 20140323
PORTREVISION= 1
CATEGORIES= devel CATEGORIES= devel
MASTER_SITES= https://googledrive.com/host/0B3fBvzttpiiSZDZXRFVMdnZCeHc/ \ MASTER_SITES= https://googledrive.com/host/0B3fBvzttpiiSZDZXRFVMdnZCeHc/ \
LOCAL/antoine LOCAL/antoine
DISTNAME= ${PORTNAME}-alpha-${PORTVERSION} DISTNAME= ${PORTNAME}-alpha-${PORTVERSION}
MAINTAINER= nobutaka@FreeBSD.org MAINTAINER= nobutaka@FreeBSD.org
COMMENT= A library to support the Volume Service Snapshot (VSS) format COMMENT= Library to support the Volume Service Snapshot (VSS) format
LICENSE= LGPL3 LICENSE= LGPL3
LICENSE_FILE= ${WRKSRC}/COPYING LICENSE_FILE= ${WRKSRC}/COPYING
USES= fuse gettext iconv libtool pathfix pkgconfig USES= fuse gettext iconv libtool:keepla pathfix pkgconfig
USE_PYTHON= 2 USE_PYTHON= 2
USE_LDCONFIG= yes USE_LDCONFIG= yes

View File

@ -3,6 +3,7 @@
PORTNAME= log4cplus PORTNAME= log4cplus
PORTVERSION= 1.1.2 PORTVERSION= 1.1.2
PORTREVISION= 1
CATEGORIES= devel CATEGORIES= devel
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}-stable/${PORTVERSION} MASTER_SITES= SF/${PORTNAME}/${PORTNAME}-stable/${PORTVERSION}
@ -11,7 +12,7 @@ COMMENT= Logging library for C++
OPTIONS_DEFINE= DOCS OPTIONS_DEFINE= DOCS
USES= libtool pathfix USES= libtool:keepla pathfix
USE_XZ= yes USE_XZ= yes
USE_LDCONFIG= yes USE_LDCONFIG= yes
GNU_CONFIGURE= yes GNU_CONFIGURE= yes

View File

@ -3,7 +3,7 @@
PORTNAME= mq4cpp PORTNAME= mq4cpp
PORTVERSION= 1.16 PORTVERSION= 1.16
PORTREVISION= 1 PORTREVISION= 2
CATEGORIES= devel CATEGORIES= devel
MASTER_SITES= http://www.sixtyfourbit.org/Download/ MASTER_SITES= http://www.sixtyfourbit.org/Download/
@ -13,7 +13,7 @@ COMMENT= Message Queuing for C++
OPTIONS_DEFINE= DOCS OPTIONS_DEFINE= DOCS
USE_LDCONFIG= yes USE_LDCONFIG= yes
USES= dos2unix libtool pathfix pkgconfig USES= dos2unix libtool:keepla pathfix pkgconfig
USE_BZIP2= yes USE_BZIP2= yes
GNU_CONFIGURE= yes GNU_CONFIGURE= yes

Some files were not shown because too many files have changed in this diff Show More