Age | Commit message (Collapse) | Author | Files | Lines |
|
Problems found locating distfiles:
Package adobe-flash-plugin11: missing distfile flash-plugin-11.2.202.540-release.i386.rpm
Package gmplayer: missing distfile mplayer/AlienMind-1.2.tar.bz2
Package gmplayer: missing distfile mplayer/BlueHeart-1.5.tar.bz2
Package gmplayer: missing distfile mplayer/CornerMP-aqua-1.4.tar.bz2
Package gmplayer: missing distfile mplayer/MPlayer-1.1.1.tar.xz
Package gmplayer: missing distfile mplayer/WMP6-2.2.tar.bz2
Package gmplayer: missing distfile mplayer/gnome-1.1.tar.bz2
Package gmplayer: missing distfile mplayer/hwswskin-1.3.tar.bz2
Package gmplayer: missing distfile mplayer/neutron-1.6.tar.bz2
Package gmplayer: missing distfile mplayer/plastic-1.3.tar.bz2
Package gmplayer: missing distfile mplayer/slim-1.3.tar.bz2
Package gmplayer: missing distfile mplayer/xine-lcd-1.2.tar.bz2
Package handbrake: missing distfile handbrake/HandBrake-0.9.3.tar.gz
Package handbrake: missing distfile handbrake/bzip2-1.0.5.tar.gz
Package handbrake: missing distfile handbrake/faad2-2.6.1.tar.gz
Package handbrake: missing distfile handbrake/lame-3.98.tar.gz
Package handbrake: missing distfile handbrake/libdvdread-0.9.7.tar.gz
Package handbrake: missing distfile handbrake/libmp4v2-r45.tar.gz
Package handbrake: missing distfile handbrake/libquicktime-0.9.10.tar.gz
Package handbrake: missing distfile handbrake/libtheora-1.0.tar.gz
Package handbrake: missing distfile handbrake/mpeg2dec-0.5.1.tar.gz
Package handbrake: missing distfile handbrake/x264-r1028-83baa7f.tar.gz
Package handbrake: missing distfile handbrake/zlib-1.2.3.tar.gz
Package libdvdcss: missing distfile libdvdcss-1.3.99.tar.bz2
Package mplayer-share: missing distfile mplayer/MPlayer-1.1.1.tar.xz
Package mpv: missing distfile mpv-0.12.0.tar.gz
Package realplayer-codecs: missing distfile rp8codecs-20040626.tar.bz2
Package realplayer-codecs: missing distfile rp8codecs-alpha-20050115.tar.bz2
Package win32-codecs: missing distfile rp9codecs-win32-20050115.tar.bz2
Package xanim: missing distfile xa2.0_cvid_netbsd386.o.gz
Package xanim: missing distfile xa2.0_iv32_netbsd386.o.gz
Package xanim: missing distfile xa1.0_cyuv_netbsd68k.o.gz
Package xanim: missing distfile xa2.0_cvid_linuxELF.o.gz
Package xanim: missing distfile xa2.0_iv32_linuxELF.o.gz
Package xanim: missing distfile xa1.0_cyuv_sparcAOUT.o.gz
Package xanim: missing distfile xa2.0_cvid_sparcELF.o.gz
Package xanim: missing distfile xa2.0_iv32_sparcELF.o.gz
Package xanim: missing distfile xa1.0_cyuv_linuxPPC.o.gz
Otherwise, existing SHA1 digests verified and found to be the same on
the machine holding the existing distfiles (morden). All existing
SHA1 digests retained for now as an audit trail.
|
|
|
|
|
|
(additionaly, reset PKGREVISION of qt4-* sub packages from base qt4 update)
|
|
It turns out there were a lot of these.
|
|
|
|
a) tiff update to 4.0 (shlib major change)
b) glib2 update 2.30.2 (adds libffi dependency to buildlink3.mk)
Enjoy.
|
|
PR pkg/45376.
|
|
|
|
alternative from mk/jpeg.buildlink3.mk
This allows selection of an alternative jpeg library (namely the x86 MMX,
SSE, SSE2 accelerated libjpeg-turbo) via JPEG_DEFAULT=libjpeg-turbo, and
follows the current standard model for alternatives (fam, motif, fuse etc).
The mechanical edits were applied via the following script:
#!/bin/sh
for d in */*; do
[ -d "$d" ] || continue
for i in "$d/"Makefile* "$d/"*.mk; do
case "$i" in *.orig|*"*"*) continue;; esac
out="$d/x"
sed -e 's;graphics/jpeg/buildlink3\.mk;mk/jpeg.buildlink3.mk;g' \
-e 's;BUILDLINK_PREFIX\.jpeg;JPEGBASE;g' \
< "$i" > "$out"
if cmp -s "$i" "$out"; then
rm -f "$out"
else
echo "Edited $i"
mv -f "$i" "$i.orig" && mv "$out" "$i"
fi
done
done
|
|
|
|
|
|
|
|
|
|
This changes the buildlink3.mk files to use an include guard for the
recursive include. The use of BUILDLINK_DEPTH, BUILDLINK_DEPENDS,
BUILDLINK_PACKAGES and BUILDLINK_ORDER is handled by a single new
variable BUILDLINK_TREE. Each buildlink3.mk file adds a pair of
enter/exit marker, which can be used to reconstruct the tree and
to determine first level includes. Avoiding := for large variables
(BUILDLINK_ORDER) speeds up parse time as += has linear complexity.
The include guard reduces system time by avoiding reading files over and
over again. For complex packages this reduces both %user and %sys time to
half of the former time.
|
|
and add a new helper target and script, "show-buildlink3", that outputs
a listing of the buildlink3.mk files included as well as the depth at
which they are included.
For example, "make show-buildlink3" in fonts/Xft2 displays:
zlib
fontconfig
iconv
zlib
freetype2
expat
freetype2
Xrender
renderproto
|
|
of the order in which buildlink3.mk files are (recursively) included
by a package Makefile.
|
|
openquicklime needs libz. Bumped PKGREVISION.
|
|
|
|
that they look nicer.
|
|
RECOMMENDED is removed. It becomes ABI_DEPENDS.
BUILDLINK_RECOMMENDED.foo becomes BUILDLINK_ABI_DEPENDS.foo.
BUILDLINK_DEPENDS.foo becomes BUILDLINK_API_DEPENDS.foo.
BUILDLINK_DEPENDS does not change.
IGNORE_RECOMMENDED (which defaulted to "no") becomes USE_ABI_DEPENDS
which defaults to "yes".
Added to obsolete.mk checking for IGNORE_RECOMMENDED.
I did not manually go through and fix any aesthetic tab/spacing issues.
I have tested the above patch on DragonFly building and packaging
subversion and pkglint and their many dependencies.
I have also tested USE_ABI_DEPENDS=no on my NetBSD workstation (where I
have used IGNORE_RECOMMENDED for a long time). I have been an active user
of IGNORE_RECOMMENDED since it was available.
As suggested, I removed the documentation sentences suggesting bumping for
"security" issues.
As discussed on tech-pkg.
I will commit to revbump, pkglint, pkg_install, createbuildlink separately.
Note that if you use wip, it will fail! I will commit to pkgsrc-wip
later (within day).
|
|
developer is officially maintaining the package.
The rationale for changing this from "tech-pkg" to "pkgsrc-users" is
that it implies that any user can try to maintain the package (by
submitting patches to the mailing list). Since the folks most likely
to care about the package are the folks that want to use it or are
already using it, this would leverage the energy of users who aren't
developers.
|
|
|
|
|
|
file's sole purpose was to provide a dependency on pkg-config and set
some environment variables. Instead, turn pkg-config into a "tool"
in the tools framework, where the pkg-config wrapper automatically
adds PKG_CONFIG_LIBDIR to the environment before invoking the real
pkg-config.
For all package Makefiles that included pkg-config/buildlink3.mk, remove
that inclusion and replace it with USE_TOOLS+=pkg-config.
|
|
No PKGREVISION bump since pkg-config is only a BUILD_DEPENDS.
|
|
USE_GNU_TOOLS -> USE_TOOLS
awk -> gawk
m4 -> gm4
make -> gmake
sed -> gsed
yacc -> bison
|
|
|
|
|
|
in the process. (More information on tech-pkg.)
Bump PKGREVISION and BUILDLINK_DEPENDS of all packages using libtool and
installing .la files.
Bump PKGREVISION (only) of all packages depending directly on the above
via a buildlink3 include.
|
|
will now automatically pre-create the buildlink bin directory.
|
|
|
|
|
|
by moving the inclusion of buildlink3.mk files outside of the protected
region. This bug would be seen by users that have set PREFER_PKGSRC
or PREFER_NATIVE to non-default values.
BUILDLINK_PACKAGES should be ordered so that for any package in the
list, that package doesn't depend on any packages to the left of it
in the list. This ordering property is used to check for builtin
packages in the correct order. The problem was that including a
buildlink3.mk file for <pkg> correctly ensured that <pkg> was removed
from BUILDLINK_PACKAGES and appended to the end. However, since the
inclusion of any other buildlink3.mk files within that buildlink3.mk
was in a region that was protected against multiple inclusion, those
dependencies weren't also moved to the end of BUILDLINK_PACKAGES.
|
|
This is version 1.0nb2.
|