Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
L
libxml2
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
OpenVMS
libraries
libxml2
Commits
e72f0059fc94
Commit
e72f0059fc94
authored
26 years ago
by
Michael Fulbright
Browse files
Options
Downloads
Patches
Plain Diff
Made spec file autogenerate, tweaked it also
Dr Mike <drmike@redhat.com>
parent
982362f5ca1d
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
Makefile.am
+4
-1
4 additions, 1 deletion
Makefile.am
configure.in
+1
-1
1 addition, 1 deletion
configure.in
libxml.spec
+0
-85
0 additions, 85 deletions
libxml.spec
libxml.spec.in
+85
-0
85 additions, 0 deletions
libxml.spec.in
with
90 additions
and
87 deletions
Makefile.am
+
4
−
1
View file @
e72f0059
...
...
@@ -57,6 +57,6 @@
confexecdir
=
$(
libdir
)
confexec_DATA
=
xmlConf.sh
EXTRA_DIST
=
xmlConf.sh.in libxml.spec doc/xml.html doc/structure.gif
\
EXTRA_DIST
=
xmlConf.sh.in libxml.spec
.in
doc/xml.html doc/structure.gif
\
doc/DOM.gif
...
...
@@ -61,5 +61,8 @@
doc/DOM.gif
dist-hook
:
cp
libxml.spec
$(
distdir
)
## We create xmlConf.sh here and not from configure because we want
## to get the paths expanded correctly. Macros like srcdir are given
## the value NONE in configure if the user doesn't specify them (this
...
...
This diff is collapsed.
Click to expand it.
configure.in
+
1
−
1
View file @
e72f0059
...
...
@@ -62,5 +62,5 @@
AC_FUNC_STRFTIME
AC_CHECK_FUNCS(strdup strndup strerror snprintf )
AC_SUBST(Z_LIBS)
AC_OUTPUT(Makefile doc/Makefile xml-config)
AC_OUTPUT(
libxml.spec
Makefile doc/Makefile xml-config)
This diff is collapsed.
Click to expand it.
libxml.spec
deleted
100644 → 0
+
0
−
85
View file @
982362f5
# Note that this is NOT a relocatable package
%define ver 0.99.8
%define rel SNAP
%define prefix /usr
Summary: libXML library
Name: libxml
Version: %ver
Release: %rel
Copyright: LGPL
Group: X11/Libraries
Source: ftp://ftp.gnome.org/pub/GNOME/sources/libxml-%{ver}.tar.gz
BuildRoot: /var/tmp/libxml-root
Packager: Michael Fulbright <msf@redhat.com>
URL: http://www.gnome.org
Prereq: /sbin/install-info
Docdir: %{prefix}/doc
%description
This library allows you to manipulate XML files.
%package devel
Summary: Libraries, includes, etc to develop libxml applications
Group: X11/libraries
Requires: libxml
%description devel
Libraries, include files, etc you can use to develop libxml applications.
%changelog
* Sun Oct 4 1998 Daniel Veillard <Daniel.Veillard@w3.org>
- Added xml-config to the package
* Thu Sep 24 1998 Michael Fulbright <msf@redhat.com>
- Built release 0.30
%prep
%setup
%build
# Needed for snapshot releases.
if [ ! -f configure ]; then
CFLAGS="$RPM_OPT_FLAGS" ./autogen.sh --prefix=%prefix
else
CFLAGS="$RPM_OPT_FLAGS" ./configure --prefix=%prefix
fi
if [ "$SMP" != "" ]; then
(make "MAKE=make -k -j $SMP"; exit 0)
make
else
make
fi
%install
rm -rf $RPM_BUILD_ROOT
make prefix=$RPM_BUILD_ROOT%{prefix} install
%clean
#rm -rf $RPM_BUILD_ROOT
%post -p /sbin/ldconfig
%postun -p /sbin/ldconfig
%files
%defattr(-, root, root)
%doc AUTHORS ChangeLog NEWS README COPYING COPYING.LIB TODO
%{prefix}/lib/lib*.so.*
%{prefix}/bin/xml-config
%files devel
%defattr(-, root, root)
%{prefix}/lib/lib*.so
%{prefix}/lib/*a
%{prefix}/lib/*.sh
%{prefix}/include/*
This diff is collapsed.
Click to expand it.
libxml.spec.in
0 → 100644
+
85
−
0
View file @
e72f0059
# Note that this is NOT a relocatable package
%define ver @VERSION@
%define rel SNAP
%define prefix /usr
Summary: libXML library
Name: libxml
Version: %ver
Release: %rel
Copyright: LGPL
Group: X11/Libraries
Source: ftp://ftp.gnome.org/pub/GNOME/sources/libxml/libxml-%{ver}.tar.gz
BuildRoot: /var/tmp/libxml-%{PACKAGE_VERSION}-root
URL: http://www.gnome.org
Prereq: /sbin/install-info
Docdir: %{prefix}/doc
%description
This library allows you to manipulate XML files.
%package devel
Summary: Libraries, includes, etc to develop libxml applications
Group: X11/libraries
Requires: libxml
%description devel
Libraries, include files, etc you can use to develop libxml applications.
%changelog
* Sun Oct 4 1998 Daniel Veillard <Daniel.Veillard@w3.org>
- Added xml-config to the package
* Thu Sep 24 1998 Michael Fulbright <msf@redhat.com>
- Built release 0.30
%prep
%setup
%build
# Needed for snapshot releases.
if [ ! -f configure ]; then
CFLAGS="$RPM_OPT_FLAGS" ./autogen.sh --prefix=%prefix
else
CFLAGS="$RPM_OPT_FLAGS" ./configure --prefix=%prefix
fi
if [ "$SMP" != "" ]; then
(make "MAKE=make -k -j $SMP"; exit 0)
make
else
make
fi
%install
rm -rf $RPM_BUILD_ROOT
make prefix=$RPM_BUILD_ROOT%{prefix} install
%clean
rm -rf $RPM_BUILD_ROOT
%post -p /sbin/ldconfig
%postun -p /sbin/ldconfig
%files
%defattr(-, root, root)
%doc AUTHORS ChangeLog NEWS README COPYING COPYING.LIB TODO
%{prefix}/lib/lib*.so.*
%{prefix}/bin/xml-config
%files devel
%defattr(-, root, root)
%{prefix}/lib/lib*.so
%{prefix}/lib/*a
%{prefix}/lib/*.sh
%{prefix}/include/*
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment