diff options
author | Marc Espie <espie@cvs.openbsd.org> | 2006-12-16 12:28:16 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 2006-12-16 12:28:16 +0000 |
commit | 9fa0416a4ea8f7c2ebae2f738ee534787b8d0e48 (patch) | |
tree | 20b7096ea1efa1a777f186ee0a2354551594c3db /usr.sbin/pkg_add/OpenBSD/PackingElement.pm | |
parent | fa8c81e0854647ba9bd3c331eb3a5477bc5db3cf (diff) |
ltlib marker for libtool convenience library.
Long-term, we want to be able to build stuff without installing dependencies
`for real', and pkgconfig and libtool files keep getting in the way, so
pkg_* will have to take control, sooner or later...
Diffstat (limited to 'usr.sbin/pkg_add/OpenBSD/PackingElement.pm')
-rw-r--r-- | usr.sbin/pkg_add/OpenBSD/PackingElement.pm | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/usr.sbin/pkg_add/OpenBSD/PackingElement.pm b/usr.sbin/pkg_add/OpenBSD/PackingElement.pm index d68e8ddbad1..cf4d384b6b1 100644 --- a/usr.sbin/pkg_add/OpenBSD/PackingElement.pm +++ b/usr.sbin/pkg_add/OpenBSD/PackingElement.pm @@ -1,5 +1,5 @@ # ex:ts=8 sw=4: -# $OpenBSD: PackingElement.pm,v 1.85 2006/12/02 10:48:03 espie Exp $ +# $OpenBSD: PackingElement.pm,v 1.86 2006/12/16 12:28:15 espie Exp $ # # Copyright (c) 2003-2004 Marc Espie <espie@openbsd.org> # @@ -441,6 +441,12 @@ our @ISA=qw(OpenBSD::PackingElement::FileBase); __PACKAGE__->setKeyword('pkgconfig'); sub keyword() { "pkgconfig" } +package OpenBSD::PackingElement::LibtoolLib; +our @ISA=qw(OpenBSD::PackingElement::FileBase); + +__PACKAGE__->setKeyword('ltlib'); +sub keyword() { "ltlib" } + package OpenBSD::PackingElement::Ignore; our @ISA=qw(OpenBSD::PackingElement::Annotation); __PACKAGE__->setKeyword('ignore'); |