libdaemon-vl.spec 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. Summary: C library for writing of UNIX daemons
  2. Name: libdaemon
  3. Version: 0.14
  4. Release: 4%{_dist_release}
  5. Group: System Environment/Libraries
  6. Vendor: Project Vine
  7. Distribution: Vine Linux
  8. License: LGPLv2
  9. URL: http://0pointer.de/lennart/projects/libdaemon/
  10. Source0: %{name}-%{version}.tar.gz
  11. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  12. %description
  13. libdaemon is a leightweight C library which eases the writing of UNIX daemons.
  14. Shared libraries and documents is included in this package.
  15. %package devel
  16. Summary: libdaemon developing environment
  17. Group: Development/Libraries
  18. Requires: %{name} = %{version}
  19. %description devel
  20. libdaemon is a leightweight C library which eases the writing of UNIX daemons.
  21. Environment for programming using libdaemon is included in devel pakcage.
  22. %prep
  23. %setup -q
  24. %build
  25. %configure --disable-static --disable-doxygen --disable-lynx
  26. make %{_smp_mflags}
  27. %install
  28. make DESTDIR=$RPM_BUILD_ROOT install
  29. make DESTDIR=$RPM_BUILD_ROOT install-pkgconfigDATA
  30. rm -rf $RPM_BUILD_ROOT%{_docdir}/%{name}
  31. %clean
  32. [ "$RPM_BUILD_ROOT" != "/" ] && rm -rf $RPM_BUILD_ROOT
  33. %post -p /sbin/ldconfig
  34. %postun -p /sbin/ldconfig
  35. %files
  36. %defattr(-,root,root)
  37. %license LICENSE
  38. %doc README doc/README.html doc/style.css
  39. %{_libdir}/%{name}.so.*
  40. %files devel
  41. %defattr(-,root,root)
  42. %license LICENSE
  43. %doc examples
  44. %{_includedir}/%{name}/
  45. %exclude %{_libdir}/%{name}.la
  46. %{_libdir}/%{name}.so
  47. %{_libdir}/pkgconfig/*
  48. %changelog
  49. * Fri Mar 20 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 0.14-4
  50. - rebuild with current environment.
  51. * Sat Dec 28 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.14-3
  52. - rebuild with VineSeed environment
  53. * Sun Sep 26 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.14-2
  54. - rebuild with rpm-4.8.1 for pkg-config file
  55. * Fri May 21 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 0.14-1
  56. - new upstream release
  57. - removed static libraries from devel package
  58. * Wed Mar 04 2009 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> - 0.13-1
  59. - new upstream release
  60. * Mon May 05 2008 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> - 0.12-1
  61. - rebuild with new versioning policy
  62. * Sun Jul 22 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 0.12-0vl1
  63. - new upstream release
  64. * Sun Sep 17 2006 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 0.10-0vl4
  65. - changed devel Group to Development/Libraries
  66. * Fri May 12 2006 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp>
  67. - 0.10-0vl3
  68. - rebuild for VineSeed with gpg sign
  69. * Wed May 10 2006 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp>
  70. - 0.10-0vl2
  71. - rebuild for VineSeed
  72. * Wed May 10 2006 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp>
  73. - 0.10-0vl1
  74. - upstream release & build for VinePlus 3.x
  75. - update url
  76. * Sun Feb 12 2006 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp>
  77. - 0.8-0vl3
  78. - rebuild for VineSeed
  79. * Wed Aug 31 2005 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp>
  80. - 0.8-0vl2
  81. - upstream release for VinePlus 3.0/3.1/3.2
  82. - brush up doc files
  83. * Wed Aug 31 2005 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp>
  84. - 0.8-0vl1
  85. - upstream release for VinePlus 2.5/2.6
  86. - brush up doc files
  87. * Sat Mar 26 2005 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp>
  88. - 0.7-0vl2
  89. - upstream release for VinePlus 3.0/3.1
  90. * Fri Mar 25 2005 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp>
  91. - 0.7-0vl1
  92. - upstream release for VinePlus 2.5/2.6
  93. * Thu Dec 02 2004 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp>
  94. - 0.6-0vl2
  95. - upstream release for VinePlus 3.0/3.1
  96. * Thu Dec 02 2004 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp>
  97. - 0.6-0vl1
  98. - upstream release for VinePlus 2.5/2.6
  99. * Fri Feb 27 2004 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp>
  100. - 0.5-0vl1
  101. - upstream release
  102. - add files list (pkgconfig data)
  103. * Sun Aug 03 2003 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp>
  104. - 0.2-0vl2
  105. - add Vendor / Distribution tag for VineLinux
  106. * Sat Aug 02 2003 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp>
  107. - 0.2-0vl1
  108. - for Vine 2.5/2.6