summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Hammond <chipx86@chipx86.com>2005-07-12 19:29:55 +0000
committerChristian Hammond <chipx86@chipx86.com>2005-07-12 19:29:55 +0000
commitedccbd1f404de5069449575d894ffcc0f7960939 (patch)
tree38af89524d44f2eb14ca9b0cca0c5f6f24dd9e3f
parent711ba22be4313aa45ae044a83aeaeb6656665dcb (diff)
downloadlibnotify-edccbd1f404de5069449575d894ffcc0f7960939.tar.gz
Patch by Richard Hughes to fix make distcheck, and to provide a Fedora Core 4 RPM spec file.
-rw-r--r--ChangeLog8
-rw-r--r--libnotify.spec.in53
-rw-r--r--tests/Makefile.am2
-rw-r--r--tools/Makefile.am2
4 files changed, 63 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index e51ede7..e2c9db3 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+Tue Jul 12 12:28:16 PDT 2005 Christian Hammond <chipx86@chipx86.com>
+
+ * tests/Makefile.am:
+ * tools/Makefile.am:
+ * libnotify.spec.in:
+ - Patch by Richard Hughes to fix make distcheck, and to provide a
+ Fedora Core 4 RPM spec file.
+
Sun Jul 10 16:46:57 PDT 2005 Christian Hammond <chipx86@chipx86.com>
* tests/test-replace.c:
diff --git a/libnotify.spec.in b/libnotify.spec.in
index e69de29..154020b 100644
--- a/libnotify.spec.in
+++ b/libnotify.spec.in
@@ -0,0 +1,53 @@
+Summary: Desktop notifications library
+Name: libnotify
+Version: @VERSION@
+Release: 1%{?dist}
+License: GPL
+Group: Applications/System
+Source: http://www.galago.info/files/releases/source/libnotify-%{version}.tar.gz
+BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
+URL: http://svn.galago.info/trunk/libnotify
+BuildPrereq: dbus-devel >= 0.30
+Requires: dbus >= 0.30
+
+%description
+A library that sends desktop notifications to a notification daemon, as
+defined in the Desktop Notifications spec. These notifications can be
+used to inform the user about an event or display some form of
+information without getting in the user's way.
+
+%prep
+%setup -q
+
+%build
+%configure
+make
+
+%install
+rm -rf $RPM_BUILD_ROOT
+%makeinstall
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%post
+/sbin/ldconfig
+
+%postun
+/sbin/ldconfig
+
+%files
+%defattr(-,root,root)
+%doc AUTHORS ChangeLog COPYING README
+%{_bindir}/*
+%{_libdir}/lib*.a
+%{_libdir}/lib*.so
+%{_libdir}/lib*.la
+%{_libdir}/lib*.so.*
+%{_libdir}/pkgconfig/*
+%{_includedir}/*
+
+%changelog
+* Mon Jul 12 2005 Richard Hughes <richard@hughsie.com> 0.0.1-1
+- initial packaging of 0.0.1
+
diff --git a/tests/Makefile.am b/tests/Makefile.am
index 2475d71..04248ce 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -48,4 +48,4 @@ test_xy_LDADD = $(common_ldflags)
test_xy_stress_LDADD = $(common_ldflags)
-INCLUDES = $(PACKAGE_CFLAGS) $(GDK_CFLAGS)
+INCLUDES = $(PACKAGE_CFLAGS) $(GDK_CFLAGS) -I$(top_srcdir)
diff --git a/tools/Makefile.am b/tools/Makefile.am
index 7cba1c9..41b1b69 100644
--- a/tools/Makefile.am
+++ b/tools/Makefile.am
@@ -8,4 +8,4 @@ common_ldflags = \
notify_send_SOURCES = notify-send.c
notify_send_LDADD = $(common_ldflags)
-INCLUDES = $(PACKAGE_CFLAGS)
+INCLUDES = $(PACKAGE_CFLAGS) -I$(top_srcdir)