diff options
author | Maxim Sobolev <sobomax@FreeBSD.org> | 2001-12-10 10:03:32 +0000 |
---|---|---|
committer | Maxim Sobolev <sobomax@FreeBSD.org> | 2001-12-10 10:03:32 +0000 |
commit | fb37a4b86c9b00cff0f7c2255f63e39f25549690 (patch) | |
tree | bd83b4bae871cde0ff984f8468fc94dcfd7ec7d6 /misc/libelysium/files | |
parent | add qmls (diff) |
Add libelysium 0.2.6, a library of utility functions used by
several Elysium (yet another GNU/Linux distro) projects.
Diffstat (limited to 'misc/libelysium/files')
-rw-r--r-- | misc/libelysium/files/patch-Makefile.in | 14 | ||||
-rw-r--r-- | misc/libelysium/files/patch-configure | 25 | ||||
-rw-r--r-- | misc/libelysium/files/patch-ltmain.sh | 28 |
3 files changed, 67 insertions, 0 deletions
diff --git a/misc/libelysium/files/patch-Makefile.in b/misc/libelysium/files/patch-Makefile.in new file mode 100644 index 000000000000..c4d542a1e489 --- /dev/null +++ b/misc/libelysium/files/patch-Makefile.in @@ -0,0 +1,14 @@ + +$FreeBSD$ + +--- Makefile.in 2001/12/10 09:35:00 1.1 ++++ Makefile.in 2001/12/10 09:35:18 +@@ -85,7 +85,7 @@ + EXTRA_DIST = libelysium.spec.in libelysiumConf.sh.in + + +-confexecdir = $(libdir) ++confexecdir = $(sysconfdir) + confexec_DATA = libelysiumConf.sh + + CLEANFILES = libelysiumConf.sh diff --git a/misc/libelysium/files/patch-configure b/misc/libelysium/files/patch-configure new file mode 100644 index 000000000000..27791c093d59 --- /dev/null +++ b/misc/libelysium/files/patch-configure @@ -0,0 +1,25 @@ + +$FreeBSD$ + +--- configure.orig Mon Dec 10 11:37:09 2001 ++++ configure Mon Dec 10 11:53:37 2001 +@@ -952,7 +952,7 @@ + + ELYSIUM_LIBDIR='-L${libdir}' + ELYSIUM_INCLUDEDIR='-I${includedir}' +-ELYSIUM_LIBS="-lelysium -lglib" ++ELYSIUM_LIBS="-lelysium `$GLIB_CONFIG --libs`" + + echo $ac_n "checking whether to enable maintainer-specific portions of Makefiles""... $ac_c" 1>&6 + echo "configure:959: checking whether to enable maintainer-specific portions of Makefiles" >&5 +@@ -5462,8 +5462,8 @@ + + + +-CFLAGS="`glib-config --cflags`" +-LDFLAGS="`glib-config --libs`" ++CFLAGS="`$GLIB_CONFIG --cflags`" ++LDFLAGS="`$GLIB_CONFIG --libs`" + + + diff --git a/misc/libelysium/files/patch-ltmain.sh b/misc/libelysium/files/patch-ltmain.sh new file mode 100644 index 000000000000..98cb05e4ddb3 --- /dev/null +++ b/misc/libelysium/files/patch-ltmain.sh @@ -0,0 +1,28 @@ + +$FreeBSD$ + +--- ltmain.sh 2001/08/27 09:51:26 1.1 ++++ ltmain.sh 2001/08/27 09:51:42 +@@ -2408,6 +2408,9 @@ + *-*-netbsd*) + # Don't link with libc until the a.out ld.so is fixed. + ;; ++ *-*-freebsd*) ++ # FreeBSD doesn't need this... ++ ;; + *) + # Add libc to deplibs on all other systems if necessary. + if test "$build_libtool_need_lc" = "yes"; then +@@ -4175,10 +4178,12 @@ + fi + + # Install the pseudo-library for information purposes. ++ if /usr/bin/false; then + name=`$echo "X$file" | $Xsed -e 's%^.*/%%'` + instname="$dir/$name"i + $show "$install_prog $instname $destdir/$name" + $run eval "$install_prog $instname $destdir/$name" || exit $? ++ fi + + # Maybe install the static library, too. + test -n "$old_library" && staticlibs="$staticlibs $dir/$old_library" |