Commit graph

71 commits

Author SHA1 Message Date
asau
88feb4ac62 Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 20:11:34 +00:00
wiz
2b0b56df41 Update to 5.1.5.
Lua 5.1.5 released. This is a bug-fix release.
(no further changelog found)

Remove master site that doesn't have new tarball.
Fix pkglint warning in patch-ac.
2012-03-12 15:49:27 +00:00
dholland
0654e0e108 Belated revbump for Makefile rev 1.45 (from January), which changed
the linkage of the package and gives me a non-broken liblua.so on
current. The one I had around from sometime last year had broken
compatibility references in it.
2011-10-03 04:29:24 +00:00
zafer
02f6b1f280 update master_sites. remove dead mirrors. 2011-03-11 12:44:30 +00:00
adam
ce7956aa04 Pass LDFLAGS during linking; pkglint clean-up 2011-01-19 13:46:13 +00:00
dholland
b54e5f1cd6 Apply Solaris build fix from Joern Clausen in PR 43350. 2010-05-28 05:35:50 +00:00
jmmv
1a6121ebce Fix build with new libtool by specifying --tag=CC in all calls. 2009-12-17 16:42:45 +00:00
joerg
646dd8b85d Override CC in the Makefiles as newer libtool does not handle
alternative compiler names without explicit tag.
2009-11-05 18:03:49 +00:00
ahoka
f2150e714a Honour compiler selection. 2009-10-30 18:34:56 +00:00
minskim
cbaafa1e97 Set LICENSE for lua. 2009-07-10 20:30:21 +00:00
joerg
76039544d1 Remove @dirrm related logic. 2009-06-14 22:57:58 +00:00
joerg
edbc2fac64 Replace @exec/@unexec with @pkgdir or drop it. 2009-06-14 20:34:12 +00:00
joerg
62d1ba2bac Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
joerg
d2e6ad1de3 Unbreak shared library loading for cases when mk.conf explicitly sets
CFLAGS. Bump revision.
2009-05-30 16:08:58 +00:00
wiz
272d51cc21 Recursive ABI depends update and PKGREVISION bump for readline-6.0 shlib
major change.

Reported by Robert Elz in PR 41345.
2009-05-20 00:58:05 +00:00
joerg
2d1ba244e9 Simply and speed up buildlink3.mk files and processing.
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.
2009-03-20 19:23:50 +00:00
obache
e4a95c963b Add to PRINT_PLIST_AWK for LUA_LDIR and LUA_CDIR. 2009-01-24 02:56:19 +00:00
sketch
3948e33bd7 Use our INSTALL_DATA. 2009-01-20 16:30:39 +00:00
minskim
e20441ad00 Add module.mk for Lua packages.
Suggested by Aleksey Cheusov on pkgsrc-users@.
2009-01-11 23:15:55 +00:00
wiz
d581a24b8b Update to 5.1.4:
Bugfix release.
2008-09-07 14:03:42 +00:00
jlam
a06055f4cb The lua library definitely needs the readline library around when
linking, so include readline/buildlink3.mk in lua/buildlink3.mk.
2008-02-27 18:59:38 +00:00
jlam
a8d45e1a94 + Remove dependency on ncurses (!!) of all things -- lua doens't have
any curses code in it.  It only needs readline for the "io" module,
  and the readline/buildlink3.mk now handles pulling in any necessary
  dependencies for the terminal library that it uses.

Bump the PKGREVISION to 1.
2008-02-27 18:52:16 +00:00
adam
6800e4b351 Changes 5.1.3:
* This is a bug-fix release.
2008-02-11 19:54:55 +00:00
wiz
a89d36b654 Remove ex-MASTER_SITEs. From Zafer Aydogan. 2007-12-02 00:10:40 +00:00
joerg
0b38b08309 Override /usr/local as LUA_ROOT and ensure that the default search path
matches the pkgsrc environment. Bump revision.

From Simon Schubert via IRC.
2007-07-02 13:36:38 +00:00
obache
52beb69044 Update lua to 5.1.2.
Patch provided by Holger Weiss in PR 36333.
And specify more platform target.

This release fixes all known bugs in 5.1.1.
2007-06-15 17:45:37 +00:00
joerg
79de670626 DESTDIR support. 2006-11-03 06:46:21 +00:00
abs
b2ef40e6f7 update lua to 5.1.1nb1 - fix build on linux (and hopefully some others) 2006-09-06 14:58:00 +00:00
rillig
3c0f27aa1d Fixed the path where the manual pages are installed. 2006-09-02 19:22:32 +00:00
wiz
c1f87ab1d4 Update to 5.1.1. Almost all dependencies need adaptation -> bump API.
Changes:

* Changes from version 5.0 to 5.1
  -------------------------------
  Language:
  + new module system.
  + new semantics for control variables of fors.
  + new semantics for setn/getn.
  + new syntax/semantics for varargs.
  + new long strings and comments.
  + new `mod' operator (`%')
  + new length operator #t
  + metatables for all types
  API:
  + new functions: lua_createtable, lua_get(set)field, lua_push(to)integer.
  + user supplies memory allocator (lua_open becomes lua_newstate).
  + luaopen_* functionst must be called through Lua.
  Implementation:
  + new configuration scheme via luaconf.h.
  + incremental garbage collection.
  + better handling of end-of-line in the lexer.
  + fully reentrant parser (new Lua function `load')
  + better support for 64-bit machines.
  + native loadlib support for Mac OS X.
  + standard distribution in only one library (lualib.a merged into lua.a)
2006-08-14 22:31:39 +00:00
jlam
c16221a4db Change the format of BUILDLINK_ORDER to contain depth information as well,
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-08 23:10:35 +00:00
jlam
9430e49307 Track information in a new variable BUILDLINK_ORDER that informs us
of the order in which buildlink3.mk files are (recursively) included
by a package Makefile.
2006-07-08 22:38:58 +00:00
rillig
8f2159e5e8 On Linux, -ldl must be included into the libtool archive to make other
packages work, for example games/fillet-ng. This fixes PR 31171.

Bumped PKGREVISION.
2006-06-01 06:52:27 +00:00
reed
2580a59ef1 Use PKGMANDIR. 2006-05-26 18:29:27 +00:00
rillig
96fc47c14f Aligned the last line of the buildlink3.mk files with the first line, so
that they look nicer.
2006-04-12 10:26:59 +00:00
reed
5abef9be14 Over 1200 files touched but no revisions bumped :)
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-04-06 06:21:32 +00:00
jlam
9c8b5ede43 Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no
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.
2006-03-04 21:28:51 +00:00
reed
15c2f6db62 Set maintainer to tech-pkg. Bruce is not maintaining these
packages. Thank you Bruce for helping with pkgsrc.
2005-09-07 02:13:18 +00:00
jlam
7c866619ef Add ${BUILDLINK_LDADD.dl} to LIBS as lua has no configure script to
detect and add "-ldl" (on systems that need it) by itself during the
build.  This addresses pkg/31171.
2005-09-06 18:31:37 +00:00
jlam
bc9d159416 Libtoolize lua build. Since the shared library version has changed,
bump the PKGREVISION to 4, and set BUILDLINK_RECOMMENDED.lua appropriately
in the buildlink3.mk file.
2005-09-04 04:59:36 +00:00
minskim
64e70de383 Make libraries link against libdl if it is available. This fixes PR
pkg/29389.

Bump PKGREVISION.
2005-06-07 03:52:10 +00:00
minskim
6a660e824c Add BUILDLINK_LDADD.dl to LIBS instead of defining platform-specific LIBS. 2005-06-07 03:47:24 +00:00
tv
f816d81489 Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used. 2005-04-11 21:44:48 +00:00
agc
475ab002d7 Add RMD160 digests 2005-02-24 09:03:05 +00:00
minskim
01e3f21824 "-ldl" is needed to build on Linux. 2004-12-14 18:22:44 +00:00
wiz
6e02d7ee41 Rename ALL_TARGET to BUILD_TARGET for consistency with other *_TARGETs.
Suggested by Roland Illig, ok'd by various.
2004-12-03 15:14:50 +00:00
kristerw
ce9c9f7e51 Add -fPIC to CFLAGS to make this work on more architectures.
Bump PKGREVISION.

Thanks to Masao Uebayashi for the patch.
2004-10-23 19:10:25 +00:00
minskim
05c9134f25 Needs -ldl on Interix. 2004-10-15 21:17:50 +00:00
cube
a3d7a97543 o Unconditionally enable popen() support.
o Enable pkgviews installation (hi cube, the one from pkgsrcCon 2004 who
  forgot to commit this)

Bump PKGREVISION.
2004-10-02 20:54:59 +00:00
grant
0880f4dc02 set ${MAKE_ENV} in the environment before calling ${MAKE}. 2004-06-12 03:02:27 +00:00