summaryrefslogtreecommitdiff
path: root/graphics/aalib
AgeCommit message (Collapse)AuthorFilesLines
2006-07-08Change the format of BUILDLINK_ORDER to contain depth information as well,jlam1-2/+2
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
2006-07-08Track information in a new variable BUILDLINK_ORDER that informs usjlam1-1/+2
of the order in which buildlink3.mk files are (recursively) included by a package Makefile.
2006-04-12Aligned the last line of the buildlink3.mk files with the first line, sorillig1-2/+2
that they look nicer.
2006-04-06Over 1200 files touched but no revisions bumped :)reed1-3/+3
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).
2006-03-31List the info pages directly in the PLIST and ensure that we honorjlam2-4/+4
PKGINFODIR.
2006-03-31* Avoid an unnecessary SUBST_FILES class by using environnment variablesjlam4-30/+41
to accomplish the same thing. * Move the arm compiler hack into a hacks.mk file.
2006-02-05Recursive revision bump / recommended bump for gettext ABI change.joerg2-4/+4
2005-12-12Remove obsolete file. Noted by Leonard Schmidt in private mail.wiz1-7/+0
2005-12-11Convert aalib to options framework, adding an 'x11' option, and removewiz7-46/+137
aalib-x11 and aview-x11. SDL dependencies change, so bump PKGREVISION (and BUILDLINK_RECOMMENDED) for affected packages. Addresses PR 32046 by Leonard Schmidt.
2005-04-27Fix AC_DEFUN argument quoting for automake 1.8 and newer. Addresseswiz2-1/+15
part of PR 30053. No PKGREVISION bump because most people won't care.
2005-04-11Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used.tv1-2/+1
2005-03-29Update to 1.4.0.5: minor undocumented changes.wiz3-9/+8
2005-02-24Add RMD160 digestsagc1-1/+2
2005-02-23Enable pkgviews installation. Patches provided by Joachim Kuebart onminskim1-1/+3
tech-pkg@.
2004-10-03Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10tv2-3/+4
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.
2004-09-22Mechanical changes to package PLISTs to make use of LIBTOOLIZE_PLIST.jlam1-5/+1
All library names listed by *.la files no longer need to be listed in the PLIST, e.g., instead of: lib/libfoo.a lib/libfoo.la lib/libfoo.so lib/libfoo.so.0 lib/libfoo.so.0.1 one simply needs: lib/libfoo.la and bsd.pkg.mk will automatically ensure that the additional library names are listed in the installed package +CONTENTS file. Also make LIBTOOLIZE_PLIST default to "yes".
2004-05-03Unused.wiz1-19/+0
2004-04-13Make sure doesn't build with slang support.reed1-1/+2
(I am using LOCALBASE as /usr and later noticed that gphoto2 wants libslang due to this aalib. aalib is one of the very rare situations where it brings in extra support for me.)
2004-03-05Reorder location and setting of BUILDLINK_PACKAGES to match templatejlam1-11/+7
buildlink3.mk file in revision 1.101 of bsd.buildlink3.mk.
2004-02-17Remove info files entries from PLIST.seb1-5/+1
2004-02-14LIBTOOL_OVERRIDE and SHLIBTOOL_OVERRIDE are now lists of shell globsjlam1-2/+1
relative to ${WRKSRC}. Remove redundant LIBTOOL_OVERRIDE settings that are automatically handled by the default setting in bsd.pkg.mk.
2004-02-11bl3ify and replace LTCONFIG_OVERRIDE with LIBTOOL_OVERRIDE.xtraeme3-4/+26
2004-02-01In the new compiler selection framework, GCC_REQD is appended to, notjlam1-2/+2
overridden.
2004-01-27Use $FIND with "-print". Noted by Georg Schwarz in PR pkg/24248heinz1-2/+2
2004-01-24Use GCC_REQD instead of USE_PKGSRC_GCC when overriding the compilerkristerw1-2/+2
for arm, so that we don't need to install the gcc package(s) on machines that already have a working compiler in their /usr/bin.
2004-01-20Move WRKSRC definition away from the first paragraph in a Makefile.agc1-2/+2
2003-12-03Since ncurses is not buildlinked, then make sure thatreed1-1/+3
curses is not used. This is so for pkgsrc-users who have a curses and they use LOCALBASE=/usr, it won't be detected, configured, and built with it. (Because then could break devel/SDL build later due to missing libncurses.la.) The real fix is to improve the buildlink system to work with LOCALBASE=/usr too. But this will work until that is done.
2003-10-26replace <malloc.h> with <stdlib.h>, allowing this to build on systemsgrant1-1/+9
without a working <malloc.h>, eg. FreeBSD 5.x.
2003-09-17get rid of USE_GCC2/3 in pkg Makefiles, and set GCC_REQD orgrant1-2/+2
USE_PKGSRC_GCC as appropriate, as this is handled by compiler.mk now.
2003-09-12kill all references to gcc.buildlink2.mk and compiler.mk, and definegrant1-2/+2
USE_GCC2 or USE_GCC3 where appropriate. the functionality of the old gcc.buildlink2.mk has been rolled into compiler.mk now, which is automatically used. more changes to come later...
2003-08-09USE_NEW_TEXINFO is unnecessary now.seb1-2/+1
2003-07-17s/netbsd.org/NetBSD.org/grant1-2/+2
2003-07-03Convert to USE_NEW_TEXINFO.seb3-6/+6
2003-06-11Update for the fact that 'arm' ports have been called NetBSD-*-arm for a whileabs1-2/+2
now and not NetBSD-*-arm32. Changes include one or more of: - Change MACHINE_ARCH == arm32 to also match arm - Where ONLY_FOR_PLATFORM includes NetBSD-*-arm32, add NetBSD-*-arm - Where BROKEN or worked around for arm gcc bugs, set USE_GCC3 The last may shake out a few more broken packages the next bulk build.
2003-06-02Use mk/gcc.buildlink2.mk rather than gcc/buildlink2.mk so lang/gcc3abs1-2/+2
is accepted. Suggested by Grant.
2003-03-29Place WRKSRC where it belongs, to make pkglint happy; ok'ed by wiz.jmmv1-3/+2
2002-09-29Use gcc/buildlink2.mk instead of Makefile.gcc.jlam1-5/+2
2002-09-24Complete standardization of messages according to latest pkglint.wiz1-3/+3
2002-08-27Remove aalib/buildlink.mk -- gphoto2 was the last remaining user but it'sjlam1-47/+0
been converted to use buildlink2 now.
2002-08-27Fix name of guard for multiple-inclusion protection.jlam1-3/+3
2002-08-26Share common pkgsrc bits between the aalib and aalib-x11 packages. Shrinkjlam2-26/+34
the aalib-x11 package to installing just the libraries and headers and to install them with new names so that aalib-x11 and aalib no longer conflict. Also, remove the aalib-x11/buildlink.mk file as it will be no longer used. This solves part of pkg/16354.
2002-08-26Narrow down conflict list to just the existing aalib-x11 versions, lookingjlam1-2/+2
forward to when aalib and aalib-x11 don't conflict.
2002-08-25Merge changes in packages from the buildlink2 branch that havejlam2-3/+23
buildlink2.mk files back into the main trunk. This provides sufficient buildlink2 infrastructure to start merging other packages from the buildlink2 branch that have already been converted to use the buildlink2 framework.
2002-03-25On arm32, pull in gcc-2.95.3 (to avoid egcs internal compiler error --cjep1-1/+10
after a discussion with abs (the commit, not the compiler error :-)).
2002-02-18Introduce new framework for handling info files generation and installation.seb2-4/+5
Summary of changes: - removal of USE_GTEXINFO - addition of mk/texinfo.mk - inclusion of this file in package Makefiles requiring it - `install-info' substituted by `${INSTALL_INFO}' in PLISTs - tuning of mk/bsd.pkg.mk: removal of USE_GTEXINFO INSTALL_INFO added to PLIST_SUBST `${INSTALL_INFO}' replace `install-info' in target rules print-PLIST target now generate `${INSTALL_INFO}' instead of `install-info' - a couple of new patch files added for a handful of packages - setting of the TEXINFO_OVERRIDE "switch" in packages Makefiles requiring it - devel/cssc marked requiring texinfo 4.0 - a couple of packages Makefiles were tuned with respect of INFO_FILES and makeinfo command usage See -newly added by this commit- section 10.24 of Packages.txt for further information.
2002-01-30Now that the aalib-x11 package has been added, remove support for X11 fromagc3-7/+21
this package, and bump version number to nb1. Provided in PR 15268 by Lubomir Sedlacik <salo@Xtrmntr.org>
2002-01-08Make package name dewey conform.wiz2-3/+4
2002-01-03Add buildlink.mk filehubertf1-0/+47
Contributed by Lubomir Sedlacik <salo@xtrmntr.org> in private mail.
2001-10-31Move pkg/ files into package's toplevel directoryzuntum2-1/+1
2001-09-15minor improvements:drochner4-17/+103
-use the newest version (1.4rc4) -we don't really need ncurses, the incompatibility is easily patched away -USE_LIBTOOL