add a pc file for libmetacity-private
Thu Nov 7 17:07:21 2002 Jonathan Blandford <jrb@redhat.com> * src/libmetacity-private.pc.in: add a pc file for libmetacity-private * src/Makefile.am: Install a few files as a shared library so that others can draw metacity themes.
This commit is contained in:
parent
b56824f650
commit
765cb51df3
6 changed files with 49 additions and 4 deletions
|
@ -26,3 +26,4 @@ intl
|
||||||
ABOUT-NLS
|
ABOUT-NLS
|
||||||
COPYING
|
COPYING
|
||||||
intltool-*
|
intltool-*
|
||||||
|
metacity.spec
|
||||||
|
|
|
@ -1,3 +1,11 @@
|
||||||
|
Thu Nov 7 17:07:21 2002 Jonathan Blandford <jrb@redhat.com>
|
||||||
|
|
||||||
|
* src/libmetacity-private.pc.in: add a pc file for
|
||||||
|
libmetacity-private
|
||||||
|
|
||||||
|
* src/Makefile.am: Install a few files as a shared library so that
|
||||||
|
others can draw metacity themes.
|
||||||
|
|
||||||
2002-11-06 Havoc Pennington <hp@pobox.com>
|
2002-11-06 Havoc Pennington <hp@pobox.com>
|
||||||
|
|
||||||
* src/keybindings.c (grab_keys): push an error trap around the
|
* src/keybindings.c (grab_keys): push an error trap around the
|
||||||
|
|
|
@ -242,6 +242,7 @@ AC_OUTPUT([
|
||||||
Makefile
|
Makefile
|
||||||
src/Makefile
|
src/Makefile
|
||||||
src/wm-tester/Makefile
|
src/wm-tester/Makefile
|
||||||
|
src/libmetacity-private.pc
|
||||||
src/tools/Makefile
|
src/tools/Makefile
|
||||||
src/themes/Makefile
|
src/themes/Makefile
|
||||||
po/Makefile.in
|
po/Makefile.in
|
||||||
|
|
|
@ -9,3 +9,4 @@ testgradient
|
||||||
inlinepixbufs.h
|
inlinepixbufs.h
|
||||||
metacity.desktop
|
metacity.desktop
|
||||||
metacity.schemas
|
metacity.schemas
|
||||||
|
libmetacity-private.pc
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
lib_LTLIBRARIES = libmetacity-private.la
|
||||||
|
|
||||||
SUBDIRS=wm-tester tools themes
|
SUBDIRS=wm-tester tools themes
|
||||||
|
|
||||||
|
@ -80,7 +81,7 @@ metacity_SOURCES= \
|
||||||
xprops.h \
|
xprops.h \
|
||||||
$(EGGFILES)
|
$(EGGFILES)
|
||||||
|
|
||||||
metacity_theme_viewer_SOURCES= \
|
libmetacity_private_la_SOURCES= \
|
||||||
gradient.c \
|
gradient.c \
|
||||||
gradient.h \
|
gradient.h \
|
||||||
preview-widget.c \
|
preview-widget.c \
|
||||||
|
@ -89,10 +90,21 @@ metacity_theme_viewer_SOURCES= \
|
||||||
theme.h \
|
theme.h \
|
||||||
theme-parser.c \
|
theme-parser.c \
|
||||||
theme-parser.h \
|
theme-parser.h \
|
||||||
theme-viewer.c \
|
|
||||||
util.c \
|
util.c \
|
||||||
util.h
|
util.h
|
||||||
|
|
||||||
|
libmetacityincludedir = $(includedir)/metacity-1/metacity-private
|
||||||
|
|
||||||
|
libmetacityinclude_HEADERS = \
|
||||||
|
gradient.h \
|
||||||
|
preview-widget.h \
|
||||||
|
theme.h \
|
||||||
|
theme-parser.h \
|
||||||
|
util.h
|
||||||
|
|
||||||
|
metacity_theme_viewer_SOURCES= \
|
||||||
|
theme-viewer.c
|
||||||
|
|
||||||
metacity_dialog_SOURCES= \
|
metacity_dialog_SOURCES= \
|
||||||
metacity-dialog.c
|
metacity-dialog.c
|
||||||
|
|
||||||
|
@ -100,7 +112,7 @@ bin_PROGRAMS=metacity metacity-theme-viewer
|
||||||
libexec_PROGRAMS=metacity-dialog
|
libexec_PROGRAMS=metacity-dialog
|
||||||
|
|
||||||
metacity_LDADD= @METACITY_LIBS@
|
metacity_LDADD= @METACITY_LIBS@
|
||||||
metacity_theme_viewer_LDADD= @METACITY_LIBS@
|
metacity_theme_viewer_LDADD= @METACITY_LIBS@ libmetacity-private.la
|
||||||
metacity_dialog_LDADD=@METACITY_LIBS@
|
metacity_dialog_LDADD=@METACITY_LIBS@
|
||||||
|
|
||||||
testgradient_SOURCES=gradient.h gradient.c testgradient.c
|
testgradient_SOURCES=gradient.h gradient.c testgradient.c
|
||||||
|
@ -137,7 +149,17 @@ CLEANFILES = inlinepixbufs.h
|
||||||
inlinepixbufs.h: $(IMAGES)
|
inlinepixbufs.h: $(IMAGES)
|
||||||
$(GDK_PIXBUF_CSOURCE) --raw --build-list $(VARIABLES) >$(srcdir)/inlinepixbufs.h
|
$(GDK_PIXBUF_CSOURCE) --raw --build-list $(VARIABLES) >$(srcdir)/inlinepixbufs.h
|
||||||
|
|
||||||
EXTRA_DIST=$(desktopfiles_DATA) $(IMAGES) $(schema_DATA) update-from-egg.sh $(desktopfiles_in_files) $(schema_in_files)
|
pkgconfigdir = $(libdir)/pkgconfig
|
||||||
|
|
||||||
|
pkgconfig_DATA = libmetacity-private.pc
|
||||||
|
|
||||||
|
EXTRA_DIST=$(desktopfiles_DATA) \
|
||||||
|
$(IMAGES) $(schema_DATA) \
|
||||||
|
update-from-egg.sh \
|
||||||
|
$(desktopfiles_in_files) \
|
||||||
|
$(schema_in_files) \
|
||||||
|
libmetacity-private.pc.in
|
||||||
|
|
||||||
|
|
||||||
EGGDIR=$(srcdir)/../../libegg/libegg
|
EGGDIR=$(srcdir)/../../libegg/libegg
|
||||||
|
|
||||||
|
|
12
src/libmetacity-private.pc.in
Normal file
12
src/libmetacity-private.pc.in
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
prefix=@prefix@
|
||||||
|
exec_prefix=@exec_prefix@
|
||||||
|
libdir=@libdir@
|
||||||
|
includedir=@includedir@
|
||||||
|
libgnome_serverdir=@libexecdir@
|
||||||
|
|
||||||
|
Name: libmetacity-private
|
||||||
|
Description: Metacity internals shared
|
||||||
|
Requires: gtk+-2.0
|
||||||
|
Version: @VERSION@
|
||||||
|
Libs: -L${libdir} -lmetacity-private
|
||||||
|
Cflags: -I${includedir}/metacity-1
|
Loading…
Add table
Reference in a new issue